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"
32 //#define DEBUG_VGA_MEM
33 //#define DEBUG_VGA_REG
35 //#define DEBUG_BOCHS_VBE
37 /* force some bits to zero */
38 const uint8_t sr_mask
[8] = {
49 const uint8_t gr_mask
[16] = {
50 (uint8_t)~0xf0, /* 0x00 */
51 (uint8_t)~0xf0, /* 0x01 */
52 (uint8_t)~0xf0, /* 0x02 */
53 (uint8_t)~0xe0, /* 0x03 */
54 (uint8_t)~0xfc, /* 0x04 */
55 (uint8_t)~0x84, /* 0x05 */
56 (uint8_t)~0xf0, /* 0x06 */
57 (uint8_t)~0xf0, /* 0x07 */
58 (uint8_t)~0x00, /* 0x08 */
59 (uint8_t)~0xff, /* 0x09 */
60 (uint8_t)~0xff, /* 0x0a */
61 (uint8_t)~0xff, /* 0x0b */
62 (uint8_t)~0xff, /* 0x0c */
63 (uint8_t)~0xff, /* 0x0d */
64 (uint8_t)~0xff, /* 0x0e */
65 (uint8_t)~0xff, /* 0x0f */
68 #define cbswap_32(__x) \
70 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
71 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
72 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
73 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) ))
75 #ifdef WORDS_BIGENDIAN
76 #define PAT(x) cbswap_32(x)
81 #ifdef WORDS_BIGENDIAN
87 #ifdef WORDS_BIGENDIAN
88 #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff)
90 #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff)
93 static const uint32_t mask16
[16] = {
114 #ifdef WORDS_BIGENDIAN
117 #define PAT(x) cbswap_32(x)
120 static const uint32_t dmask16
[16] = {
139 static const uint32_t dmask4
[4] = {
146 static uint32_t expand4
[256];
147 static uint16_t expand2
[256];
148 static uint8_t expand4to8
[16];
150 static void vga_screen_dump(void *opaque
, const char *filename
);
152 static uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
154 VGAState
*s
= opaque
;
157 /* check port range access depending on color/monochrome mode */
158 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
)) ||
159 (addr
>= 0x3d0 && addr
<= 0x3df && !(s
->msr
& MSR_COLOR_EMULATION
))) {
164 if (s
->ar_flip_flop
== 0) {
171 index
= s
->ar_index
& 0x1f;
184 val
= s
->sr
[s
->sr_index
];
186 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
193 val
= s
->dac_write_index
;
196 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
197 if (++s
->dac_sub_index
== 3) {
198 s
->dac_sub_index
= 0;
212 val
= s
->gr
[s
->gr_index
];
214 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
223 val
= s
->cr
[s
->cr_index
];
225 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
230 /* just toggle to fool polling */
231 s
->st01
^= ST01_V_RETRACE
| ST01_DISP_ENABLE
;
240 #if defined(DEBUG_VGA)
241 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
246 static void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
248 VGAState
*s
= opaque
;
251 /* check port range access depending on color/monochrome mode */
252 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
)) ||
253 (addr
>= 0x3d0 && addr
<= 0x3df && !(s
->msr
& MSR_COLOR_EMULATION
)))
257 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
262 if (s
->ar_flip_flop
== 0) {
266 index
= s
->ar_index
& 0x1f;
269 s
->ar
[index
] = val
& 0x3f;
272 s
->ar
[index
] = val
& ~0x10;
278 s
->ar
[index
] = val
& ~0xc0;
281 s
->ar
[index
] = val
& ~0xf0;
284 s
->ar
[index
] = val
& ~0xf0;
290 s
->ar_flip_flop
^= 1;
293 s
->msr
= val
& ~0x10;
296 s
->sr_index
= val
& 7;
300 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
302 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
305 s
->dac_read_index
= val
;
306 s
->dac_sub_index
= 0;
310 s
->dac_write_index
= val
;
311 s
->dac_sub_index
= 0;
315 s
->dac_cache
[s
->dac_sub_index
] = val
;
316 if (++s
->dac_sub_index
== 3) {
317 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
318 s
->dac_sub_index
= 0;
319 s
->dac_write_index
++;
323 s
->gr_index
= val
& 0x0f;
327 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
329 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
338 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
340 /* handle CR0-7 protection */
341 if ((s
->cr
[0x11] & 0x80) && s
->cr_index
<= 7) {
342 /* can always write bit 4 of CR7 */
343 if (s
->cr_index
== 7)
344 s
->cr
[7] = (s
->cr
[7] & ~0x10) | (val
& 0x10);
347 switch(s
->cr_index
) {
348 case 0x01: /* horizontal display end */
353 case 0x12: /* vertical display end */
354 s
->cr
[s
->cr_index
] = val
;
357 s
->cr
[s
->cr_index
] = val
;
368 #ifdef CONFIG_BOCHS_VBE
369 static uint32_t vbe_ioport_read_index(void *opaque
, uint32_t addr
)
371 VGAState
*s
= opaque
;
377 static uint32_t vbe_ioport_read_data(void *opaque
, uint32_t addr
)
379 VGAState
*s
= opaque
;
382 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
383 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_GETCAPS
) {
384 switch(s
->vbe_index
) {
385 /* XXX: do not hardcode ? */
386 case VBE_DISPI_INDEX_XRES
:
387 val
= VBE_DISPI_MAX_XRES
;
389 case VBE_DISPI_INDEX_YRES
:
390 val
= VBE_DISPI_MAX_YRES
;
392 case VBE_DISPI_INDEX_BPP
:
393 val
= VBE_DISPI_MAX_BPP
;
396 val
= s
->vbe_regs
[s
->vbe_index
];
400 val
= s
->vbe_regs
[s
->vbe_index
];
405 #ifdef DEBUG_BOCHS_VBE
406 printf("VBE: read index=0x%x val=0x%x\n", s
->vbe_index
, val
);
411 static void vbe_ioport_write_index(void *opaque
, uint32_t addr
, uint32_t val
)
413 VGAState
*s
= opaque
;
417 static void vbe_ioport_write_data(void *opaque
, uint32_t addr
, uint32_t val
)
419 VGAState
*s
= opaque
;
421 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
422 #ifdef DEBUG_BOCHS_VBE
423 printf("VBE: write index=0x%x val=0x%x\n", s
->vbe_index
, val
);
425 switch(s
->vbe_index
) {
426 case VBE_DISPI_INDEX_ID
:
427 if (val
== VBE_DISPI_ID0
||
428 val
== VBE_DISPI_ID1
||
429 val
== VBE_DISPI_ID2
||
430 val
== VBE_DISPI_ID3
||
431 val
== VBE_DISPI_ID4
) {
432 s
->vbe_regs
[s
->vbe_index
] = val
;
435 case VBE_DISPI_INDEX_XRES
:
436 if ((val
<= VBE_DISPI_MAX_XRES
) && ((val
& 7) == 0)) {
437 s
->vbe_regs
[s
->vbe_index
] = val
;
440 case VBE_DISPI_INDEX_YRES
:
441 if (val
<= VBE_DISPI_MAX_YRES
) {
442 s
->vbe_regs
[s
->vbe_index
] = val
;
445 case VBE_DISPI_INDEX_BPP
:
448 if (val
== 4 || val
== 8 || val
== 15 ||
449 val
== 16 || val
== 24 || val
== 32) {
450 s
->vbe_regs
[s
->vbe_index
] = val
;
453 case VBE_DISPI_INDEX_BANK
:
454 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
455 val
&= (s
->vbe_bank_mask
>> 2);
457 val
&= s
->vbe_bank_mask
;
459 s
->vbe_regs
[s
->vbe_index
] = val
;
460 s
->bank_offset
= (val
<< 16);
462 case VBE_DISPI_INDEX_ENABLE
:
463 if ((val
& VBE_DISPI_ENABLED
) &&
464 !(s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
)) {
465 int h
, shift_control
;
467 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] =
468 s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
469 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] =
470 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
471 s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
472 s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
474 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
475 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 1;
477 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] *
478 ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
479 s
->vbe_start_addr
= 0;
481 /* clear the screen (should be done in BIOS) */
482 if (!(val
& VBE_DISPI_NOCLEARMEM
)) {
483 memset(s
->vram_ptr
, 0,
484 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] * s
->vbe_line_offset
);
487 /* we initialize the VGA graphic mode (should be done
489 s
->gr
[0x06] = (s
->gr
[0x06] & ~0x0c) | 0x05; /* graphic mode + memory map 1 */
490 s
->cr
[0x17] |= 3; /* no CGA modes */
491 s
->cr
[0x13] = s
->vbe_line_offset
>> 3;
493 s
->cr
[0x01] = (s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 3) - 1;
494 /* height (only meaningful if < 1024) */
495 h
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] - 1;
497 s
->cr
[0x07] = (s
->cr
[0x07] & ~0x42) |
498 ((h
>> 7) & 0x02) | ((h
>> 3) & 0x40);
499 /* line compare to 1023 */
504 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
506 s
->sr
[0x01] &= ~8; /* no double line */
509 s
->sr
[4] |= 0x08; /* set chain 4 mode */
510 s
->sr
[2] |= 0x0f; /* activate all planes */
512 s
->gr
[0x05] = (s
->gr
[0x05] & ~0x60) | (shift_control
<< 5);
513 s
->cr
[0x09] &= ~0x9f; /* no double scan */
515 /* XXX: the bios should do that */
518 s
->dac_8bit
= (val
& VBE_DISPI_8BIT_DAC
) > 0;
519 s
->vbe_regs
[s
->vbe_index
] = val
;
521 case VBE_DISPI_INDEX_VIRT_WIDTH
:
523 int w
, h
, line_offset
;
525 if (val
< s
->vbe_regs
[VBE_DISPI_INDEX_XRES
])
528 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
529 line_offset
= w
>> 1;
531 line_offset
= w
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
532 h
= s
->vram_size
/ line_offset
;
533 /* XXX: support weird bochs semantics ? */
534 if (h
< s
->vbe_regs
[VBE_DISPI_INDEX_YRES
])
536 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] = w
;
537 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] = h
;
538 s
->vbe_line_offset
= line_offset
;
541 case VBE_DISPI_INDEX_X_OFFSET
:
542 case VBE_DISPI_INDEX_Y_OFFSET
:
545 s
->vbe_regs
[s
->vbe_index
] = val
;
546 s
->vbe_start_addr
= s
->vbe_line_offset
* s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
];
547 x
= s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
];
548 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
549 s
->vbe_start_addr
+= x
>> 1;
551 s
->vbe_start_addr
+= x
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
552 s
->vbe_start_addr
>>= 2;
562 /* called for accesses between 0xa0000 and 0xc0000 */
563 uint32_t vga_mem_readb(void *opaque
, target_phys_addr_t addr
)
565 VGAState
*s
= opaque
;
566 int memory_map_mode
, plane
;
569 /* convert to VGA memory offset */
570 memory_map_mode
= (s
->gr
[6] >> 2) & 3;
572 switch(memory_map_mode
) {
578 addr
+= s
->bank_offset
;
593 if (s
->sr
[4] & 0x08) {
594 /* chain 4 mode : simplest access */
595 ret
= s
->vram_ptr
[addr
];
596 } else if (s
->gr
[5] & 0x10) {
597 /* odd/even mode (aka text mode mapping) */
598 plane
= (s
->gr
[4] & 2) | (addr
& 1);
599 ret
= s
->vram_ptr
[((addr
& ~1) << 1) | plane
];
601 /* standard VGA latched access */
602 s
->latch
= ((uint32_t *)s
->vram_ptr
)[addr
];
604 if (!(s
->gr
[5] & 0x08)) {
607 ret
= GET_PLANE(s
->latch
, plane
);
610 ret
= (s
->latch
^ mask16
[s
->gr
[2]]) & mask16
[s
->gr
[7]];
619 static uint32_t vga_mem_readw(void *opaque
, target_phys_addr_t addr
)
622 #ifdef TARGET_WORDS_BIGENDIAN
623 v
= vga_mem_readb(opaque
, addr
) << 8;
624 v
|= vga_mem_readb(opaque
, addr
+ 1);
626 v
= vga_mem_readb(opaque
, addr
);
627 v
|= vga_mem_readb(opaque
, addr
+ 1) << 8;
632 static uint32_t vga_mem_readl(void *opaque
, target_phys_addr_t addr
)
635 #ifdef TARGET_WORDS_BIGENDIAN
636 v
= vga_mem_readb(opaque
, addr
) << 24;
637 v
|= vga_mem_readb(opaque
, addr
+ 1) << 16;
638 v
|= vga_mem_readb(opaque
, addr
+ 2) << 8;
639 v
|= vga_mem_readb(opaque
, addr
+ 3);
641 v
= vga_mem_readb(opaque
, addr
);
642 v
|= vga_mem_readb(opaque
, addr
+ 1) << 8;
643 v
|= vga_mem_readb(opaque
, addr
+ 2) << 16;
644 v
|= vga_mem_readb(opaque
, addr
+ 3) << 24;
649 /* called for accesses between 0xa0000 and 0xc0000 */
650 void vga_mem_writeb(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
652 VGAState
*s
= opaque
;
653 int memory_map_mode
, plane
, write_mode
, b
, func_select
, mask
;
654 uint32_t write_mask
, bit_mask
, set_mask
;
657 printf("vga: [0x%x] = 0x%02x\n", addr
, val
);
659 /* convert to VGA memory offset */
660 memory_map_mode
= (s
->gr
[6] >> 2) & 3;
662 switch(memory_map_mode
) {
668 addr
+= s
->bank_offset
;
683 if (s
->sr
[4] & 0x08) {
684 /* chain 4 mode : simplest access */
687 if (s
->sr
[2] & mask
) {
688 s
->vram_ptr
[addr
] = val
;
690 printf("vga: chain4: [0x%x]\n", addr
);
692 s
->plane_updated
|= mask
; /* only used to detect font change */
693 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
695 } else if (s
->gr
[5] & 0x10) {
696 /* odd/even mode (aka text mode mapping) */
697 plane
= (s
->gr
[4] & 2) | (addr
& 1);
699 if (s
->sr
[2] & mask
) {
700 addr
= ((addr
& ~1) << 1) | plane
;
701 s
->vram_ptr
[addr
] = val
;
703 printf("vga: odd/even: [0x%x]\n", addr
);
705 s
->plane_updated
|= mask
; /* only used to detect font change */
706 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
709 /* standard VGA latched access */
710 write_mode
= s
->gr
[5] & 3;
716 val
= ((val
>> b
) | (val
<< (8 - b
))) & 0xff;
720 /* apply set/reset mask */
721 set_mask
= mask16
[s
->gr
[1]];
722 val
= (val
& ~set_mask
) | (mask16
[s
->gr
[0]] & set_mask
);
729 val
= mask16
[val
& 0x0f];
735 val
= (val
>> b
) | (val
<< (8 - b
));
737 bit_mask
= s
->gr
[8] & val
;
738 val
= mask16
[s
->gr
[0]];
742 /* apply logical operation */
743 func_select
= s
->gr
[3] >> 3;
744 switch(func_select
) {
764 bit_mask
|= bit_mask
<< 8;
765 bit_mask
|= bit_mask
<< 16;
766 val
= (val
& bit_mask
) | (s
->latch
& ~bit_mask
);
769 /* mask data according to sr[2] */
771 s
->plane_updated
|= mask
; /* only used to detect font change */
772 write_mask
= mask16
[mask
];
773 ((uint32_t *)s
->vram_ptr
)[addr
] =
774 (((uint32_t *)s
->vram_ptr
)[addr
] & ~write_mask
) |
777 printf("vga: latch: [0x%x] mask=0x%08x val=0x%08x\n",
778 addr
* 4, write_mask
, val
);
780 cpu_physical_memory_set_dirty(s
->vram_offset
+ (addr
<< 2));
784 static void vga_mem_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
786 #ifdef TARGET_WORDS_BIGENDIAN
787 vga_mem_writeb(opaque
, addr
, (val
>> 8) & 0xff);
788 vga_mem_writeb(opaque
, addr
+ 1, val
& 0xff);
790 vga_mem_writeb(opaque
, addr
, val
& 0xff);
791 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
795 static void vga_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
797 #ifdef TARGET_WORDS_BIGENDIAN
798 vga_mem_writeb(opaque
, addr
, (val
>> 24) & 0xff);
799 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
800 vga_mem_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
801 vga_mem_writeb(opaque
, addr
+ 3, val
& 0xff);
803 vga_mem_writeb(opaque
, addr
, val
& 0xff);
804 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
805 vga_mem_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
806 vga_mem_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
810 typedef void vga_draw_glyph8_func(uint8_t *d
, int linesize
,
811 const uint8_t *font_ptr
, int h
,
812 uint32_t fgcol
, uint32_t bgcol
);
813 typedef void vga_draw_glyph9_func(uint8_t *d
, int linesize
,
814 const uint8_t *font_ptr
, int h
,
815 uint32_t fgcol
, uint32_t bgcol
, int dup9
);
816 typedef void vga_draw_line_func(VGAState
*s1
, uint8_t *d
,
817 const uint8_t *s
, int width
);
820 #include "vga_template.h"
823 #include "vga_template.h"
827 #include "vga_template.h"
830 #include "vga_template.h"
834 #include "vga_template.h"
837 #include "vga_template.h"
841 #include "vga_template.h"
843 static unsigned int rgb_to_pixel8_dup(unsigned int r
, unsigned int g
, unsigned b
)
846 col
= rgb_to_pixel8(r
, g
, b
);
852 static unsigned int rgb_to_pixel15_dup(unsigned int r
, unsigned int g
, unsigned b
)
855 col
= rgb_to_pixel15(r
, g
, b
);
860 static unsigned int rgb_to_pixel15bgr_dup(unsigned int r
, unsigned int g
,
864 col
= rgb_to_pixel15bgr(r
, g
, b
);
869 static unsigned int rgb_to_pixel16_dup(unsigned int r
, unsigned int g
, unsigned b
)
872 col
= rgb_to_pixel16(r
, g
, b
);
877 static unsigned int rgb_to_pixel16bgr_dup(unsigned int r
, unsigned int g
,
881 col
= rgb_to_pixel16bgr(r
, g
, b
);
886 static unsigned int rgb_to_pixel32_dup(unsigned int r
, unsigned int g
, unsigned b
)
889 col
= rgb_to_pixel32(r
, g
, b
);
893 static unsigned int rgb_to_pixel32bgr_dup(unsigned int r
, unsigned int g
, unsigned b
)
896 col
= rgb_to_pixel32bgr(r
, g
, b
);
900 /* return true if the palette was modified */
901 static int update_palette16(VGAState
*s
)
904 uint32_t v
, col
, *palette
;
907 palette
= s
->last_palette
;
908 for(i
= 0; i
< 16; i
++) {
910 if (s
->ar
[0x10] & 0x80)
911 v
= ((s
->ar
[0x14] & 0xf) << 4) | (v
& 0xf);
913 v
= ((s
->ar
[0x14] & 0xc) << 4) | (v
& 0x3f);
915 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
916 c6_to_8(s
->palette
[v
+ 1]),
917 c6_to_8(s
->palette
[v
+ 2]));
918 if (col
!= palette
[i
]) {
926 /* return true if the palette was modified */
927 static int update_palette256(VGAState
*s
)
930 uint32_t v
, col
, *palette
;
933 palette
= s
->last_palette
;
935 for(i
= 0; i
< 256; i
++) {
937 col
= s
->rgb_to_pixel(s
->palette
[v
],
941 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
942 c6_to_8(s
->palette
[v
+ 1]),
943 c6_to_8(s
->palette
[v
+ 2]));
945 if (col
!= palette
[i
]) {
954 static void vga_get_offsets(VGAState
*s
,
955 uint32_t *pline_offset
,
956 uint32_t *pstart_addr
,
957 uint32_t *pline_compare
)
959 uint32_t start_addr
, line_offset
, line_compare
;
960 #ifdef CONFIG_BOCHS_VBE
961 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
962 line_offset
= s
->vbe_line_offset
;
963 start_addr
= s
->vbe_start_addr
;
964 line_compare
= 65535;
968 /* compute line_offset in bytes */
969 line_offset
= s
->cr
[0x13];
972 /* starting address */
973 start_addr
= s
->cr
[0x0d] | (s
->cr
[0x0c] << 8);
976 line_compare
= s
->cr
[0x18] |
977 ((s
->cr
[0x07] & 0x10) << 4) |
978 ((s
->cr
[0x09] & 0x40) << 3);
980 *pline_offset
= line_offset
;
981 *pstart_addr
= start_addr
;
982 *pline_compare
= line_compare
;
985 /* update start_addr and line_offset. Return TRUE if modified */
986 static int update_basic_params(VGAState
*s
)
989 uint32_t start_addr
, line_offset
, line_compare
;
993 s
->get_offsets(s
, &line_offset
, &start_addr
, &line_compare
);
995 if (line_offset
!= s
->line_offset
||
996 start_addr
!= s
->start_addr
||
997 line_compare
!= s
->line_compare
) {
998 s
->line_offset
= line_offset
;
999 s
->start_addr
= start_addr
;
1000 s
->line_compare
= line_compare
;
1008 static inline int get_depth_index(DisplayState
*s
)
1032 static vga_draw_glyph8_func
*vga_draw_glyph8_table
[NB_DEPTHS
] = {
1042 static vga_draw_glyph8_func
*vga_draw_glyph16_table
[NB_DEPTHS
] = {
1044 vga_draw_glyph16_16
,
1045 vga_draw_glyph16_16
,
1046 vga_draw_glyph16_32
,
1047 vga_draw_glyph16_32
,
1048 vga_draw_glyph16_16
,
1049 vga_draw_glyph16_16
,
1052 static vga_draw_glyph9_func
*vga_draw_glyph9_table
[NB_DEPTHS
] = {
1062 static const uint8_t cursor_glyph
[32 * 4] = {
1063 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1064 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1065 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1066 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1067 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1068 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1069 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1070 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1071 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1072 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1073 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1074 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1075 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1076 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1077 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1078 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1089 static void vga_draw_text(VGAState
*s
, int full_update
)
1091 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1092 int cx_min
, cx_max
, linesize
, x_incr
;
1093 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1094 uint8_t *d1
, *d
, *src
, *s1
, *dest
, *cursor_ptr
;
1095 const uint8_t *font_ptr
, *font_base
[2];
1096 int dup9
, line_offset
, depth_index
;
1098 uint32_t *ch_attr_ptr
;
1099 vga_draw_glyph8_func
*vga_draw_glyph8
;
1100 vga_draw_glyph9_func
*vga_draw_glyph9
;
1102 full_update
|= update_palette16(s
);
1103 palette
= s
->last_palette
;
1105 /* compute font data address (in plane 2) */
1107 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1108 if (offset
!= s
->font_offsets
[0]) {
1109 s
->font_offsets
[0] = offset
;
1112 font_base
[0] = s
->vram_ptr
+ offset
;
1114 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1115 font_base
[1] = s
->vram_ptr
+ offset
;
1116 if (offset
!= s
->font_offsets
[1]) {
1117 s
->font_offsets
[1] = offset
;
1120 if (s
->plane_updated
& (1 << 2)) {
1121 /* if the plane 2 was modified since the last display, it
1122 indicates the font may have been modified */
1123 s
->plane_updated
= 0;
1126 full_update
|= update_basic_params(s
);
1128 line_offset
= s
->line_offset
;
1129 s1
= s
->vram_ptr
+ (s
->start_addr
* 4);
1131 /* total width & height */
1132 cheight
= (s
->cr
[9] & 0x1f) + 1;
1134 if (!(s
->sr
[1] & 0x01))
1136 if (s
->sr
[1] & 0x08)
1137 cw
= 16; /* NOTE: no 18 pixel wide */
1138 x_incr
= cw
* ((s
->ds
->depth
+ 7) >> 3);
1139 width
= (s
->cr
[0x01] + 1);
1140 if (s
->cr
[0x06] == 100) {
1141 /* ugly hack for CGA 160x100x16 - explain me the logic */
1144 height
= s
->cr
[0x12] |
1145 ((s
->cr
[0x07] & 0x02) << 7) |
1146 ((s
->cr
[0x07] & 0x40) << 3);
1147 height
= (height
+ 1) / cheight
;
1149 if ((height
* width
) > CH_ATTR_SIZE
) {
1150 /* better than nothing: exit if transient size is too big */
1154 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1155 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
1156 s
->last_scr_width
= width
* cw
;
1157 s
->last_scr_height
= height
* cheight
;
1158 dpy_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
1159 s
->last_width
= width
;
1160 s
->last_height
= height
;
1161 s
->last_ch
= cheight
;
1165 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
1166 if (cursor_offset
!= s
->cursor_offset
||
1167 s
->cr
[0xa] != s
->cursor_start
||
1168 s
->cr
[0xb] != s
->cursor_end
) {
1169 /* if the cursor position changed, we update the old and new
1171 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1172 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1173 if (cursor_offset
< CH_ATTR_SIZE
)
1174 s
->last_ch_attr
[cursor_offset
] = -1;
1175 s
->cursor_offset
= cursor_offset
;
1176 s
->cursor_start
= s
->cr
[0xa];
1177 s
->cursor_end
= s
->cr
[0xb];
1179 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1181 depth_index
= get_depth_index(s
->ds
);
1183 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1185 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1186 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1189 linesize
= s
->ds
->linesize
;
1190 ch_attr_ptr
= s
->last_ch_attr
;
1191 for(cy
= 0; cy
< height
; cy
++) {
1196 for(cx
= 0; cx
< width
; cx
++) {
1197 ch_attr
= *(uint16_t *)src
;
1198 if (full_update
|| ch_attr
!= *ch_attr_ptr
) {
1203 *ch_attr_ptr
= ch_attr
;
1204 #ifdef WORDS_BIGENDIAN
1206 cattr
= ch_attr
& 0xff;
1208 ch
= ch_attr
& 0xff;
1209 cattr
= ch_attr
>> 8;
1211 font_ptr
= font_base
[(cattr
>> 3) & 1];
1212 font_ptr
+= 32 * 4 * ch
;
1213 bgcol
= palette
[cattr
>> 4];
1214 fgcol
= palette
[cattr
& 0x0f];
1216 vga_draw_glyph8(d1
, linesize
,
1217 font_ptr
, cheight
, fgcol
, bgcol
);
1220 if (ch
>= 0xb0 && ch
<= 0xdf && (s
->ar
[0x10] & 0x04))
1222 vga_draw_glyph9(d1
, linesize
,
1223 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1225 if (src
== cursor_ptr
&&
1226 !(s
->cr
[0x0a] & 0x20)) {
1227 int line_start
, line_last
, h
;
1228 /* draw the cursor */
1229 line_start
= s
->cr
[0x0a] & 0x1f;
1230 line_last
= s
->cr
[0x0b] & 0x1f;
1231 /* XXX: check that */
1232 if (line_last
> cheight
- 1)
1233 line_last
= cheight
- 1;
1234 if (line_last
>= line_start
&& line_start
< cheight
) {
1235 h
= line_last
- line_start
+ 1;
1236 d
= d1
+ linesize
* line_start
;
1238 vga_draw_glyph8(d
, linesize
,
1239 cursor_glyph
, h
, fgcol
, bgcol
);
1241 vga_draw_glyph9(d
, linesize
,
1242 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1252 dpy_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1253 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1255 dest
+= linesize
* cheight
;
1274 static vga_draw_line_func
*vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1284 vga_draw_line2d2_16
,
1285 vga_draw_line2d2_16
,
1286 vga_draw_line2d2_32
,
1287 vga_draw_line2d2_32
,
1288 vga_draw_line2d2_16
,
1289 vga_draw_line2d2_16
,
1300 vga_draw_line4d2_16
,
1301 vga_draw_line4d2_16
,
1302 vga_draw_line4d2_32
,
1303 vga_draw_line4d2_32
,
1304 vga_draw_line4d2_16
,
1305 vga_draw_line4d2_16
,
1308 vga_draw_line8d2_16
,
1309 vga_draw_line8d2_16
,
1310 vga_draw_line8d2_32
,
1311 vga_draw_line8d2_32
,
1312 vga_draw_line8d2_16
,
1313 vga_draw_line8d2_16
,
1327 vga_draw_line15_32bgr
,
1328 vga_draw_line15_15bgr
,
1329 vga_draw_line15_16bgr
,
1335 vga_draw_line16_32bgr
,
1336 vga_draw_line16_15bgr
,
1337 vga_draw_line16_16bgr
,
1343 vga_draw_line24_32bgr
,
1344 vga_draw_line24_15bgr
,
1345 vga_draw_line24_16bgr
,
1351 vga_draw_line32_32bgr
,
1352 vga_draw_line32_15bgr
,
1353 vga_draw_line32_16bgr
,
1356 typedef unsigned int rgb_to_pixel_dup_func(unsigned int r
, unsigned int g
, unsigned b
);
1358 static rgb_to_pixel_dup_func
*rgb_to_pixel_dup_table
[NB_DEPTHS
] = {
1363 rgb_to_pixel32bgr_dup
,
1364 rgb_to_pixel15bgr_dup
,
1365 rgb_to_pixel16bgr_dup
,
1368 static int vga_get_bpp(VGAState
*s
)
1371 #ifdef CONFIG_BOCHS_VBE
1372 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1373 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1382 static void vga_get_resolution(VGAState
*s
, int *pwidth
, int *pheight
)
1386 #ifdef CONFIG_BOCHS_VBE
1387 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1388 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1389 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1393 width
= (s
->cr
[0x01] + 1) * 8;
1394 height
= s
->cr
[0x12] |
1395 ((s
->cr
[0x07] & 0x02) << 7) |
1396 ((s
->cr
[0x07] & 0x40) << 3);
1397 height
= (height
+ 1);
1403 void vga_invalidate_scanlines(VGAState
*s
, int y1
, int y2
)
1406 if (y1
>= VGA_MAX_HEIGHT
)
1408 if (y2
>= VGA_MAX_HEIGHT
)
1409 y2
= VGA_MAX_HEIGHT
;
1410 for(y
= y1
; y
< y2
; y
++) {
1411 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1418 static void vga_draw_graphic(VGAState
*s
, int full_update
)
1420 int y1
, y
, update
, page_min
, page_max
, linesize
, y_start
, double_scan
, mask
;
1421 int width
, height
, shift_control
, line_offset
, page0
, page1
, bwidth
, bits
;
1422 int disp_width
, multi_scan
, multi_run
;
1424 uint32_t v
, addr1
, addr
;
1425 vga_draw_line_func
*vga_draw_line
;
1427 full_update
|= update_basic_params(s
);
1429 s
->get_resolution(s
, &width
, &height
);
1432 shift_control
= (s
->gr
[0x05] >> 5) & 3;
1433 double_scan
= (s
->cr
[0x09] >> 7);
1434 if (shift_control
!= 1) {
1435 multi_scan
= (((s
->cr
[0x09] & 0x1f) + 1) << double_scan
) - 1;
1437 /* in CGA modes, multi_scan is ignored */
1438 /* XXX: is it correct ? */
1439 multi_scan
= double_scan
;
1441 multi_run
= multi_scan
;
1442 if (shift_control
!= s
->shift_control
||
1443 double_scan
!= s
->double_scan
) {
1445 s
->shift_control
= shift_control
;
1446 s
->double_scan
= double_scan
;
1449 if (shift_control
== 0) {
1450 full_update
|= update_palette16(s
);
1451 if (s
->sr
[0x01] & 8) {
1452 v
= VGA_DRAW_LINE4D2
;
1458 } else if (shift_control
== 1) {
1459 full_update
|= update_palette16(s
);
1460 if (s
->sr
[0x01] & 8) {
1461 v
= VGA_DRAW_LINE2D2
;
1468 switch(s
->get_bpp(s
)) {
1471 full_update
|= update_palette256(s
);
1472 v
= VGA_DRAW_LINE8D2
;
1476 full_update
|= update_palette256(s
);
1481 v
= VGA_DRAW_LINE15
;
1485 v
= VGA_DRAW_LINE16
;
1489 v
= VGA_DRAW_LINE24
;
1493 v
= VGA_DRAW_LINE32
;
1498 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1500 if (disp_width
!= s
->last_width
||
1501 height
!= s
->last_height
) {
1502 dpy_resize(s
->ds
, disp_width
, height
);
1503 s
->last_scr_width
= disp_width
;
1504 s
->last_scr_height
= height
;
1505 s
->last_width
= disp_width
;
1506 s
->last_height
= height
;
1509 if (s
->cursor_invalidate
)
1510 s
->cursor_invalidate(s
);
1512 line_offset
= s
->line_offset
;
1514 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",
1515 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[0x17], s
->line_compare
, s
->sr
[0x01]);
1517 addr1
= (s
->start_addr
* 4);
1518 bwidth
= (width
* bits
+ 7) / 8;
1520 page_min
= 0x7fffffff;
1523 linesize
= s
->ds
->linesize
;
1525 for(y
= 0; y
< height
; y
++) {
1527 if (!(s
->cr
[0x17] & 1)) {
1529 /* CGA compatibility handling */
1530 shift
= 14 + ((s
->cr
[0x17] >> 6) & 1);
1531 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1533 if (!(s
->cr
[0x17] & 2)) {
1534 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1536 page0
= s
->vram_offset
+ (addr
& TARGET_PAGE_MASK
);
1537 page1
= s
->vram_offset
+ ((addr
+ bwidth
- 1) & TARGET_PAGE_MASK
);
1538 update
= full_update
|
1539 cpu_physical_memory_get_dirty(page0
, VGA_DIRTY_FLAG
) |
1540 cpu_physical_memory_get_dirty(page1
, VGA_DIRTY_FLAG
);
1541 if ((page1
- page0
) > TARGET_PAGE_SIZE
) {
1542 /* if wide line, can use another page */
1543 update
|= cpu_physical_memory_get_dirty(page0
+ TARGET_PAGE_SIZE
,
1546 /* explicit invalidation for the hardware cursor */
1547 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1551 if (page0
< page_min
)
1553 if (page1
> page_max
)
1555 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1556 if (s
->cursor_draw_line
)
1557 s
->cursor_draw_line(s
, d
, y
);
1560 /* flush to display */
1561 dpy_update(s
->ds
, 0, y_start
,
1562 disp_width
, y
- y_start
);
1567 mask
= (s
->cr
[0x17] & 3) ^ 3;
1568 if ((y1
& mask
) == mask
)
1569 addr1
+= line_offset
;
1571 multi_run
= multi_scan
;
1575 /* line compare acts on the displayed lines */
1576 if (y
== s
->line_compare
)
1581 /* flush to display */
1582 dpy_update(s
->ds
, 0, y_start
,
1583 disp_width
, y
- y_start
);
1585 /* reset modified pages */
1586 if (page_max
!= -1) {
1587 cpu_physical_memory_reset_dirty(page_min
, page_max
+ TARGET_PAGE_SIZE
,
1590 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1593 static void vga_draw_blank(VGAState
*s
, int full_update
)
1600 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1602 if (s
->ds
->depth
== 8)
1603 val
= s
->rgb_to_pixel(0, 0, 0);
1606 w
= s
->last_scr_width
* ((s
->ds
->depth
+ 7) >> 3);
1608 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1610 d
+= s
->ds
->linesize
;
1612 dpy_update(s
->ds
, 0, 0,
1613 s
->last_scr_width
, s
->last_scr_height
);
1616 #define GMODE_TEXT 0
1617 #define GMODE_GRAPH 1
1618 #define GMODE_BLANK 2
1620 static void vga_update_display(void *opaque
)
1622 VGAState
*s
= (VGAState
*)opaque
;
1623 int full_update
, graphic_mode
;
1625 if (s
->ds
->depth
== 0) {
1629 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1632 if (!(s
->ar_index
& 0x20)) {
1633 graphic_mode
= GMODE_BLANK
;
1635 graphic_mode
= s
->gr
[6] & 1;
1637 if (graphic_mode
!= s
->graphic_mode
) {
1638 s
->graphic_mode
= graphic_mode
;
1641 switch(graphic_mode
) {
1643 vga_draw_text(s
, full_update
);
1646 vga_draw_graphic(s
, full_update
);
1650 vga_draw_blank(s
, full_update
);
1656 /* force a full display refresh */
1657 static void vga_invalidate_display(void *opaque
)
1659 VGAState
*s
= (VGAState
*)opaque
;
1662 s
->last_height
= -1;
1665 static void vga_reset(VGAState
*s
)
1667 memset(s
, 0, sizeof(VGAState
));
1668 s
->graphic_mode
= -1; /* force full update */
1671 #define TEXTMODE_X(x) ((x) % width)
1672 #define TEXTMODE_Y(x) ((x) / width)
1673 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1674 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1675 /* relay text rendering to the display driver
1676 * instead of doing a full vga_update_display() */
1677 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1679 VGAState
*s
= (VGAState
*) opaque
;
1680 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1681 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1683 console_ch_t
*dst
, val
;
1684 char msg_buffer
[80];
1685 int full_update
= 0;
1687 if (!(s
->ar_index
& 0x20)) {
1688 graphic_mode
= GMODE_BLANK
;
1690 graphic_mode
= s
->gr
[6] & 1;
1692 if (graphic_mode
!= s
->graphic_mode
) {
1693 s
->graphic_mode
= graphic_mode
;
1696 if (s
->last_width
== -1) {
1701 switch (graphic_mode
) {
1703 /* TODO: update palette */
1704 full_update
|= update_basic_params(s
);
1706 /* total width & height */
1707 cheight
= (s
->cr
[9] & 0x1f) + 1;
1709 if (!(s
->sr
[1] & 0x01))
1711 if (s
->sr
[1] & 0x08)
1712 cw
= 16; /* NOTE: no 18 pixel wide */
1713 width
= (s
->cr
[0x01] + 1);
1714 if (s
->cr
[0x06] == 100) {
1715 /* ugly hack for CGA 160x100x16 - explain me the logic */
1718 height
= s
->cr
[0x12] |
1719 ((s
->cr
[0x07] & 0x02) << 7) |
1720 ((s
->cr
[0x07] & 0x40) << 3);
1721 height
= (height
+ 1) / cheight
;
1724 size
= (height
* width
);
1725 if (size
> CH_ATTR_SIZE
) {
1729 sprintf(msg_buffer
, "%i x %i Text mode", width
, height
);
1733 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1734 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
1735 s
->last_scr_width
= width
* cw
;
1736 s
->last_scr_height
= height
* cheight
;
1737 dpy_resize(s
->ds
, width
, height
);
1738 s
->last_width
= width
;
1739 s
->last_height
= height
;
1740 s
->last_ch
= cheight
;
1745 /* Update "hardware" cursor */
1746 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
1747 if (cursor_offset
!= s
->cursor_offset
||
1748 s
->cr
[0xa] != s
->cursor_start
||
1749 s
->cr
[0xb] != s
->cursor_end
|| full_update
) {
1750 cursor_visible
= !(s
->cr
[0xa] & 0x20);
1751 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
1753 TEXTMODE_X(cursor_offset
),
1754 TEXTMODE_Y(cursor_offset
));
1756 dpy_cursor(s
->ds
, -1, -1);
1757 s
->cursor_offset
= cursor_offset
;
1758 s
->cursor_start
= s
->cr
[0xa];
1759 s
->cursor_end
= s
->cr
[0xb];
1762 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
1766 for (i
= 0; i
< size
; src
++, dst
++, i
++)
1767 console_write_ch(dst
, VMEM2CHTYPE(*src
));
1769 dpy_update(s
->ds
, 0, 0, width
, height
);
1773 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
1774 console_write_ch(&val
, VMEM2CHTYPE(*src
));
1782 for (; i
< size
; src
++, dst
++, i
++) {
1783 console_write_ch(&val
, VMEM2CHTYPE(*src
));
1790 if (c_min
<= c_max
) {
1791 i
= TEXTMODE_Y(c_min
);
1792 dpy_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
1801 s
->get_resolution(s
, &width
, &height
);
1802 sprintf(msg_buffer
, "%i x %i Graphic mode", width
, height
);
1809 sprintf(msg_buffer
, "VGA Blank mode");
1813 /* Display a message */
1815 s
->last_height
= height
= 3;
1816 dpy_cursor(s
->ds
, -1, -1);
1817 dpy_resize(s
->ds
, s
->last_width
, height
);
1819 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
1820 console_write_ch(dst
++, ' ');
1822 size
= strlen(msg_buffer
);
1823 width
= (s
->last_width
- size
) / 2;
1824 dst
= chardata
+ s
->last_width
+ width
;
1825 for (i
= 0; i
< size
; i
++)
1826 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
1828 dpy_update(s
->ds
, 0, 0, s
->last_width
, height
);
1831 static CPUReadMemoryFunc
*vga_mem_read
[3] = {
1837 static CPUWriteMemoryFunc
*vga_mem_write
[3] = {
1843 static void vga_save(QEMUFile
*f
, void *opaque
)
1845 VGAState
*s
= opaque
;
1849 pci_device_save(s
->pci_dev
, f
);
1851 qemu_put_be32s(f
, &s
->latch
);
1852 qemu_put_8s(f
, &s
->sr_index
);
1853 qemu_put_buffer(f
, s
->sr
, 8);
1854 qemu_put_8s(f
, &s
->gr_index
);
1855 qemu_put_buffer(f
, s
->gr
, 16);
1856 qemu_put_8s(f
, &s
->ar_index
);
1857 qemu_put_buffer(f
, s
->ar
, 21);
1858 qemu_put_be32(f
, s
->ar_flip_flop
);
1859 qemu_put_8s(f
, &s
->cr_index
);
1860 qemu_put_buffer(f
, s
->cr
, 256);
1861 qemu_put_8s(f
, &s
->msr
);
1862 qemu_put_8s(f
, &s
->fcr
);
1863 qemu_put_byte(f
, s
->st00
);
1864 qemu_put_8s(f
, &s
->st01
);
1866 qemu_put_8s(f
, &s
->dac_state
);
1867 qemu_put_8s(f
, &s
->dac_sub_index
);
1868 qemu_put_8s(f
, &s
->dac_read_index
);
1869 qemu_put_8s(f
, &s
->dac_write_index
);
1870 qemu_put_buffer(f
, s
->dac_cache
, 3);
1871 qemu_put_buffer(f
, s
->palette
, 768);
1873 qemu_put_be32(f
, s
->bank_offset
);
1874 #ifdef CONFIG_BOCHS_VBE
1875 qemu_put_byte(f
, 1);
1876 qemu_put_be16s(f
, &s
->vbe_index
);
1877 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
1878 qemu_put_be16s(f
, &s
->vbe_regs
[i
]);
1879 qemu_put_be32s(f
, &s
->vbe_start_addr
);
1880 qemu_put_be32s(f
, &s
->vbe_line_offset
);
1881 qemu_put_be32s(f
, &s
->vbe_bank_mask
);
1883 qemu_put_byte(f
, 0);
1887 static int vga_load(QEMUFile
*f
, void *opaque
, int version_id
)
1889 VGAState
*s
= opaque
;
1895 if (s
->pci_dev
&& version_id
>= 2) {
1896 ret
= pci_device_load(s
->pci_dev
, f
);
1901 qemu_get_be32s(f
, &s
->latch
);
1902 qemu_get_8s(f
, &s
->sr_index
);
1903 qemu_get_buffer(f
, s
->sr
, 8);
1904 qemu_get_8s(f
, &s
->gr_index
);
1905 qemu_get_buffer(f
, s
->gr
, 16);
1906 qemu_get_8s(f
, &s
->ar_index
);
1907 qemu_get_buffer(f
, s
->ar
, 21);
1908 s
->ar_flip_flop
=qemu_get_be32(f
);
1909 qemu_get_8s(f
, &s
->cr_index
);
1910 qemu_get_buffer(f
, s
->cr
, 256);
1911 qemu_get_8s(f
, &s
->msr
);
1912 qemu_get_8s(f
, &s
->fcr
);
1913 qemu_get_8s(f
, &s
->st00
);
1914 qemu_get_8s(f
, &s
->st01
);
1916 qemu_get_8s(f
, &s
->dac_state
);
1917 qemu_get_8s(f
, &s
->dac_sub_index
);
1918 qemu_get_8s(f
, &s
->dac_read_index
);
1919 qemu_get_8s(f
, &s
->dac_write_index
);
1920 qemu_get_buffer(f
, s
->dac_cache
, 3);
1921 qemu_get_buffer(f
, s
->palette
, 768);
1923 s
->bank_offset
=qemu_get_be32(f
);
1924 is_vbe
= qemu_get_byte(f
);
1925 #ifdef CONFIG_BOCHS_VBE
1928 qemu_get_be16s(f
, &s
->vbe_index
);
1929 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
1930 qemu_get_be16s(f
, &s
->vbe_regs
[i
]);
1931 qemu_get_be32s(f
, &s
->vbe_start_addr
);
1932 qemu_get_be32s(f
, &s
->vbe_line_offset
);
1933 qemu_get_be32s(f
, &s
->vbe_bank_mask
);
1940 s
->graphic_mode
= -1;
1944 typedef struct PCIVGAState
{
1949 static void vga_map(PCIDevice
*pci_dev
, int region_num
,
1950 uint32_t addr
, uint32_t size
, int type
)
1952 PCIVGAState
*d
= (PCIVGAState
*)pci_dev
;
1953 VGAState
*s
= &d
->vga_state
;
1954 if (region_num
== PCI_ROM_SLOT
) {
1955 cpu_register_physical_memory(addr
, s
->bios_size
, s
->bios_offset
);
1957 cpu_register_physical_memory(addr
, s
->vram_size
, s
->vram_offset
);
1961 void vga_common_init(VGAState
*s
, DisplayState
*ds
, uint8_t *vga_ram_base
,
1962 unsigned long vga_ram_offset
, int vga_ram_size
)
1966 for(i
= 0;i
< 256; i
++) {
1968 for(j
= 0; j
< 8; j
++) {
1969 v
|= ((i
>> j
) & 1) << (j
* 4);
1974 for(j
= 0; j
< 4; j
++) {
1975 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
1979 for(i
= 0; i
< 16; i
++) {
1981 for(j
= 0; j
< 4; j
++) {
1984 v
|= b
<< (2 * j
+ 1);
1991 s
->vram_ptr
= vga_ram_base
;
1992 s
->vram_offset
= vga_ram_offset
;
1993 s
->vram_size
= vga_ram_size
;
1995 s
->get_bpp
= vga_get_bpp
;
1996 s
->get_offsets
= vga_get_offsets
;
1997 s
->get_resolution
= vga_get_resolution
;
1998 s
->update
= vga_update_display
;
1999 s
->invalidate
= vga_invalidate_display
;
2000 s
->screen_dump
= vga_screen_dump
;
2001 s
->text_update
= vga_update_text
;
2004 /* used by both ISA and PCI */
2005 void vga_init(VGAState
*s
)
2009 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2011 register_ioport_write(0x3c0, 16, 1, vga_ioport_write
, s
);
2013 register_ioport_write(0x3b4, 2, 1, vga_ioport_write
, s
);
2014 register_ioport_write(0x3d4, 2, 1, vga_ioport_write
, s
);
2015 register_ioport_write(0x3ba, 1, 1, vga_ioport_write
, s
);
2016 register_ioport_write(0x3da, 1, 1, vga_ioport_write
, s
);
2018 register_ioport_read(0x3c0, 16, 1, vga_ioport_read
, s
);
2020 register_ioport_read(0x3b4, 2, 1, vga_ioport_read
, s
);
2021 register_ioport_read(0x3d4, 2, 1, vga_ioport_read
, s
);
2022 register_ioport_read(0x3ba, 1, 1, vga_ioport_read
, s
);
2023 register_ioport_read(0x3da, 1, 1, vga_ioport_read
, s
);
2026 #ifdef CONFIG_BOCHS_VBE
2027 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID0
;
2028 s
->vbe_bank_mask
= ((s
->vram_size
>> 16) - 1);
2029 #if defined (TARGET_I386)
2030 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2031 register_ioport_read(0x1cf, 1, 2, vbe_ioport_read_data
, s
);
2033 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2034 register_ioport_write(0x1cf, 1, 2, vbe_ioport_write_data
, s
);
2036 /* old Bochs IO ports */
2037 register_ioport_read(0xff80, 1, 2, vbe_ioport_read_index
, s
);
2038 register_ioport_read(0xff81, 1, 2, vbe_ioport_read_data
, s
);
2040 register_ioport_write(0xff80, 1, 2, vbe_ioport_write_index
, s
);
2041 register_ioport_write(0xff81, 1, 2, vbe_ioport_write_data
, s
);
2043 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2044 register_ioport_read(0x1d0, 1, 2, vbe_ioport_read_data
, s
);
2046 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2047 register_ioport_write(0x1d0, 1, 2, vbe_ioport_write_data
, s
);
2049 #endif /* CONFIG_BOCHS_VBE */
2051 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2052 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
2056 /* Memory mapped interface */
2057 static uint32_t vga_mm_readb (void *opaque
, target_phys_addr_t addr
)
2059 VGAState
*s
= opaque
;
2061 return vga_ioport_read(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
) & 0xff;
2064 static void vga_mm_writeb (void *opaque
,
2065 target_phys_addr_t addr
, uint32_t value
)
2067 VGAState
*s
= opaque
;
2069 vga_ioport_write(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
, value
& 0xff);
2072 static uint32_t vga_mm_readw (void *opaque
, target_phys_addr_t addr
)
2074 VGAState
*s
= opaque
;
2076 return vga_ioport_read(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
) & 0xffff;
2079 static void vga_mm_writew (void *opaque
,
2080 target_phys_addr_t addr
, uint32_t value
)
2082 VGAState
*s
= opaque
;
2084 vga_ioport_write(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
, value
& 0xffff);
2087 static uint32_t vga_mm_readl (void *opaque
, target_phys_addr_t addr
)
2089 VGAState
*s
= opaque
;
2091 return vga_ioport_read(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
);
2094 static void vga_mm_writel (void *opaque
,
2095 target_phys_addr_t addr
, uint32_t value
)
2097 VGAState
*s
= opaque
;
2099 vga_ioport_write(s
, (addr
- s
->base_ctrl
) >> s
->it_shift
, value
);
2102 static CPUReadMemoryFunc
*vga_mm_read_ctrl
[] = {
2108 static CPUWriteMemoryFunc
*vga_mm_write_ctrl
[] = {
2114 static void vga_mm_init(VGAState
*s
, target_phys_addr_t vram_base
,
2115 target_phys_addr_t ctrl_base
, int it_shift
)
2117 int s_ioport_ctrl
, vga_io_memory
;
2119 s
->base_ctrl
= ctrl_base
;
2120 s
->it_shift
= it_shift
;
2121 s_ioport_ctrl
= cpu_register_io_memory(0, vga_mm_read_ctrl
, vga_mm_write_ctrl
, s
);
2122 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2124 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2126 cpu_register_physical_memory(ctrl_base
, 0x100000, s_ioport_ctrl
);
2128 cpu_register_physical_memory(vram_base
+ 0x000a0000, 0x20000, vga_io_memory
);
2131 int isa_vga_init(DisplayState
*ds
, uint8_t *vga_ram_base
,
2132 unsigned long vga_ram_offset
, int vga_ram_size
)
2136 s
= qemu_mallocz(sizeof(VGAState
));
2140 vga_common_init(s
, ds
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2143 graphic_console_init(s
->ds
, s
->update
, s
->invalidate
, s
->screen_dump
,
2146 #ifdef CONFIG_BOCHS_VBE
2147 /* XXX: use optimized standard vga accesses */
2148 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2149 vga_ram_size
, vga_ram_offset
);
2154 int isa_vga_mm_init(DisplayState
*ds
, uint8_t *vga_ram_base
,
2155 unsigned long vga_ram_offset
, int vga_ram_size
,
2156 target_phys_addr_t vram_base
, target_phys_addr_t ctrl_base
,
2161 s
= qemu_mallocz(sizeof(VGAState
));
2165 vga_common_init(s
, ds
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2166 vga_mm_init(s
, vram_base
, ctrl_base
, it_shift
);
2168 graphic_console_init(s
->ds
, s
->update
, s
->invalidate
, s
->screen_dump
,
2171 #ifdef CONFIG_BOCHS_VBE
2172 /* XXX: use optimized standard vga accesses */
2173 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2174 vga_ram_size
, vga_ram_offset
);
2179 int pci_vga_init(PCIBus
*bus
, DisplayState
*ds
, uint8_t *vga_ram_base
,
2180 unsigned long vga_ram_offset
, int vga_ram_size
,
2181 unsigned long vga_bios_offset
, int vga_bios_size
)
2187 d
= (PCIVGAState
*)pci_register_device(bus
, "VGA",
2188 sizeof(PCIVGAState
),
2194 vga_common_init(s
, ds
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2197 graphic_console_init(s
->ds
, s
->update
, s
->invalidate
, s
->screen_dump
,
2200 s
->pci_dev
= &d
->dev
;
2202 pci_conf
= d
->dev
.config
;
2203 pci_conf
[0x00] = 0x34; // dummy VGA (same as Bochs ID)
2204 pci_conf
[0x01] = 0x12;
2205 pci_conf
[0x02] = 0x11;
2206 pci_conf
[0x03] = 0x11;
2207 pci_conf
[0x0a] = 0x00; // VGA controller
2208 pci_conf
[0x0b] = 0x03;
2209 pci_conf
[0x0e] = 0x00; // header_type
2211 /* XXX: vga_ram_size must be a power of two */
2212 pci_register_io_region(&d
->dev
, 0, vga_ram_size
,
2213 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2214 if (vga_bios_size
!= 0) {
2215 unsigned int bios_total_size
;
2216 s
->bios_offset
= vga_bios_offset
;
2217 s
->bios_size
= vga_bios_size
;
2218 /* must be a power of two */
2219 bios_total_size
= 1;
2220 while (bios_total_size
< vga_bios_size
)
2221 bios_total_size
<<= 1;
2222 pci_register_io_region(&d
->dev
, PCI_ROM_SLOT
, bios_total_size
,
2223 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2228 /********************************************************/
2229 /* vga screen dump */
2231 static int vga_save_w
, vga_save_h
;
2233 static void vga_save_dpy_update(DisplayState
*s
,
2234 int x
, int y
, int w
, int h
)
2238 static void vga_save_dpy_resize(DisplayState
*s
, int w
, int h
)
2240 s
->linesize
= w
* 4;
2241 s
->data
= qemu_malloc(h
* s
->linesize
);
2246 static void vga_save_dpy_refresh(DisplayState
*s
)
2250 int ppm_save(const char *filename
, uint8_t *data
,
2251 int w
, int h
, int linesize
)
2258 f
= fopen(filename
, "wb");
2261 fprintf(f
, "P6\n%d %d\n%d\n",
2264 for(y
= 0; y
< h
; y
++) {
2266 for(x
= 0; x
< w
; x
++) {
2268 fputc((v
>> 16) & 0xff, f
);
2269 fputc((v
>> 8) & 0xff, f
);
2270 fputc((v
) & 0xff, f
);
2279 /* save the vga display in a PPM image even if no display is
2281 static void vga_screen_dump(void *opaque
, const char *filename
)
2283 VGAState
*s
= (VGAState
*)opaque
;
2284 DisplayState
*saved_ds
, ds1
, *ds
= &ds1
;
2286 /* XXX: this is a little hackish */
2287 vga_invalidate_display(s
);
2290 memset(ds
, 0, sizeof(DisplayState
));
2291 ds
->dpy_update
= vga_save_dpy_update
;
2292 ds
->dpy_resize
= vga_save_dpy_resize
;
2293 ds
->dpy_refresh
= vga_save_dpy_refresh
;
2297 s
->graphic_mode
= -1;
2298 vga_update_display(s
);
2301 ppm_save(filename
, ds
->data
, vga_save_w
, vga_save_h
,
2303 qemu_free(ds
->data
);