2 * QEMU Cirrus CLGD 54xx VGA Emulator.
4 * Copyright (c) 2004 Fabrice Bellard
5 * Copyright (c) 2004 Makoto Suzuki (suzu)
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * Reference: Finn Thogersons' VGADOC4b
27 * available at http://home.worldonline.dk/~finth/
29 #include "qemu/osdep.h"
30 #include "qapi/error.h"
32 #include "hw/pci/pci.h"
33 #include "ui/console.h"
34 #include "ui/pixel_ops.h"
36 #include "hw/loader.h"
40 * - destination write mask support not complete (bits 5..7)
41 * - optimize linear mappings
42 * - optimize bitblt functions
45 //#define DEBUG_CIRRUS
46 //#define DEBUG_BITBLT
48 /***************************************
52 ***************************************/
55 #define CIRRUS_ID_CLGD5422 (0x23<<2)
56 #define CIRRUS_ID_CLGD5426 (0x24<<2)
57 #define CIRRUS_ID_CLGD5424 (0x25<<2)
58 #define CIRRUS_ID_CLGD5428 (0x26<<2)
59 #define CIRRUS_ID_CLGD5430 (0x28<<2)
60 #define CIRRUS_ID_CLGD5434 (0x2A<<2)
61 #define CIRRUS_ID_CLGD5436 (0x2B<<2)
62 #define CIRRUS_ID_CLGD5446 (0x2E<<2)
65 #define CIRRUS_SR7_BPP_VGA 0x00
66 #define CIRRUS_SR7_BPP_SVGA 0x01
67 #define CIRRUS_SR7_BPP_MASK 0x0e
68 #define CIRRUS_SR7_BPP_8 0x00
69 #define CIRRUS_SR7_BPP_16_DOUBLEVCLK 0x02
70 #define CIRRUS_SR7_BPP_24 0x04
71 #define CIRRUS_SR7_BPP_16 0x06
72 #define CIRRUS_SR7_BPP_32 0x08
73 #define CIRRUS_SR7_ISAADDR_MASK 0xe0
76 #define CIRRUS_MEMSIZE_512k 0x08
77 #define CIRRUS_MEMSIZE_1M 0x10
78 #define CIRRUS_MEMSIZE_2M 0x18
79 #define CIRRUS_MEMFLAGS_BANKSWITCH 0x80 // bank switching is enabled.
82 #define CIRRUS_CURSOR_SHOW 0x01
83 #define CIRRUS_CURSOR_HIDDENPEL 0x02
84 #define CIRRUS_CURSOR_LARGE 0x04 // 64x64 if set, 32x32 if clear
87 #define CIRRUS_BUSTYPE_VLBFAST 0x10
88 #define CIRRUS_BUSTYPE_PCI 0x20
89 #define CIRRUS_BUSTYPE_VLBSLOW 0x30
90 #define CIRRUS_BUSTYPE_ISA 0x38
91 #define CIRRUS_MMIO_ENABLE 0x04
92 #define CIRRUS_MMIO_USE_PCIADDR 0x40 // 0xb8000 if cleared.
93 #define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
96 #define CIRRUS_BANKING_DUAL 0x01
97 #define CIRRUS_BANKING_GRANULARITY_16K 0x20 // set:16k, clear:4k
100 #define CIRRUS_BLTMODE_BACKWARDS 0x01
101 #define CIRRUS_BLTMODE_MEMSYSDEST 0x02
102 #define CIRRUS_BLTMODE_MEMSYSSRC 0x04
103 #define CIRRUS_BLTMODE_TRANSPARENTCOMP 0x08
104 #define CIRRUS_BLTMODE_PATTERNCOPY 0x40
105 #define CIRRUS_BLTMODE_COLOREXPAND 0x80
106 #define CIRRUS_BLTMODE_PIXELWIDTHMASK 0x30
107 #define CIRRUS_BLTMODE_PIXELWIDTH8 0x00
108 #define CIRRUS_BLTMODE_PIXELWIDTH16 0x10
109 #define CIRRUS_BLTMODE_PIXELWIDTH24 0x20
110 #define CIRRUS_BLTMODE_PIXELWIDTH32 0x30
113 #define CIRRUS_BLT_BUSY 0x01
114 #define CIRRUS_BLT_START 0x02
115 #define CIRRUS_BLT_RESET 0x04
116 #define CIRRUS_BLT_FIFOUSED 0x10
117 #define CIRRUS_BLT_AUTOSTART 0x80
120 #define CIRRUS_ROP_0 0x00
121 #define CIRRUS_ROP_SRC_AND_DST 0x05
122 #define CIRRUS_ROP_NOP 0x06
123 #define CIRRUS_ROP_SRC_AND_NOTDST 0x09
124 #define CIRRUS_ROP_NOTDST 0x0b
125 #define CIRRUS_ROP_SRC 0x0d
126 #define CIRRUS_ROP_1 0x0e
127 #define CIRRUS_ROP_NOTSRC_AND_DST 0x50
128 #define CIRRUS_ROP_SRC_XOR_DST 0x59
129 #define CIRRUS_ROP_SRC_OR_DST 0x6d
130 #define CIRRUS_ROP_NOTSRC_OR_NOTDST 0x90
131 #define CIRRUS_ROP_SRC_NOTXOR_DST 0x95
132 #define CIRRUS_ROP_SRC_OR_NOTDST 0xad
133 #define CIRRUS_ROP_NOTSRC 0xd0
134 #define CIRRUS_ROP_NOTSRC_OR_DST 0xd6
135 #define CIRRUS_ROP_NOTSRC_AND_NOTDST 0xda
137 #define CIRRUS_ROP_NOP_INDEX 2
138 #define CIRRUS_ROP_SRC_INDEX 5
141 #define CIRRUS_BLTMODEEXT_SOLIDFILL 0x04
142 #define CIRRUS_BLTMODEEXT_COLOREXPINV 0x02
143 #define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
146 #define CIRRUS_MMIO_BLTBGCOLOR 0x00 // dword
147 #define CIRRUS_MMIO_BLTFGCOLOR 0x04 // dword
148 #define CIRRUS_MMIO_BLTWIDTH 0x08 // word
149 #define CIRRUS_MMIO_BLTHEIGHT 0x0a // word
150 #define CIRRUS_MMIO_BLTDESTPITCH 0x0c // word
151 #define CIRRUS_MMIO_BLTSRCPITCH 0x0e // word
152 #define CIRRUS_MMIO_BLTDESTADDR 0x10 // dword
153 #define CIRRUS_MMIO_BLTSRCADDR 0x14 // dword
154 #define CIRRUS_MMIO_BLTWRITEMASK 0x17 // byte
155 #define CIRRUS_MMIO_BLTMODE 0x18 // byte
156 #define CIRRUS_MMIO_BLTROP 0x1a // byte
157 #define CIRRUS_MMIO_BLTMODEEXT 0x1b // byte
158 #define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c // word?
159 #define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20 // word?
160 #define CIRRUS_MMIO_LINEARDRAW_START_X 0x24 // word
161 #define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26 // word
162 #define CIRRUS_MMIO_LINEARDRAW_END_X 0x28 // word
163 #define CIRRUS_MMIO_LINEARDRAW_END_Y 0x2a // word
164 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c // byte
165 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d // byte
166 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e // byte
167 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f // byte
168 #define CIRRUS_MMIO_BRESENHAM_K1 0x30 // word
169 #define CIRRUS_MMIO_BRESENHAM_K3 0x32 // word
170 #define CIRRUS_MMIO_BRESENHAM_ERROR 0x34 // word
171 #define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36 // word
172 #define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38 // byte
173 #define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
174 #define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
176 #define CIRRUS_PNPMMIO_SIZE 0x1000
178 struct CirrusVGAState
;
179 typedef void (*cirrus_bitblt_rop_t
) (struct CirrusVGAState
*s
,
180 uint8_t * dst
, const uint8_t * src
,
181 int dstpitch
, int srcpitch
,
182 int bltwidth
, int bltheight
);
183 typedef void (*cirrus_fill_t
)(struct CirrusVGAState
*s
,
184 uint8_t *dst
, int dst_pitch
, int width
, int height
);
186 typedef struct CirrusVGAState
{
189 MemoryRegion cirrus_vga_io
;
190 MemoryRegion cirrus_linear_io
;
191 MemoryRegion cirrus_linear_bitblt_io
;
192 MemoryRegion cirrus_mmio_io
;
193 MemoryRegion pci_bar
;
194 bool linear_vram
; /* vga.vram mapped over cirrus_linear_io */
195 MemoryRegion low_mem_container
; /* container for 0xa0000-0xc0000 */
196 MemoryRegion low_mem
; /* always mapped, overridden by: */
197 MemoryRegion cirrus_bank
[2]; /* aliases at 0xa0000-0xb0000 */
198 uint32_t cirrus_addr_mask
;
199 uint32_t linear_mmio_mask
;
200 uint8_t cirrus_shadow_gr0
;
201 uint8_t cirrus_shadow_gr1
;
202 uint8_t cirrus_hidden_dac_lockindex
;
203 uint8_t cirrus_hidden_dac_data
;
204 uint32_t cirrus_bank_base
[2];
205 uint32_t cirrus_bank_limit
[2];
206 uint8_t cirrus_hidden_palette
[48];
207 int cirrus_blt_pixelwidth
;
208 int cirrus_blt_width
;
209 int cirrus_blt_height
;
210 int cirrus_blt_dstpitch
;
211 int cirrus_blt_srcpitch
;
212 uint32_t cirrus_blt_fgcol
;
213 uint32_t cirrus_blt_bgcol
;
214 uint32_t cirrus_blt_dstaddr
;
215 uint32_t cirrus_blt_srcaddr
;
216 uint8_t cirrus_blt_mode
;
217 uint8_t cirrus_blt_modeext
;
218 cirrus_bitblt_rop_t cirrus_rop
;
219 #define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
220 uint8_t cirrus_bltbuf
[CIRRUS_BLTBUFSIZE
];
221 uint8_t *cirrus_srcptr
;
222 uint8_t *cirrus_srcptr_end
;
223 uint32_t cirrus_srccounter
;
224 /* hwcursor display state */
225 int last_hw_cursor_size
;
226 int last_hw_cursor_x
;
227 int last_hw_cursor_y
;
228 int last_hw_cursor_y_start
;
229 int last_hw_cursor_y_end
;
230 int real_vram_size
; /* XXX: suppress that */
235 typedef struct PCICirrusVGAState
{
237 CirrusVGAState cirrus_vga
;
240 #define TYPE_PCI_CIRRUS_VGA "cirrus-vga"
241 #define PCI_CIRRUS_VGA(obj) \
242 OBJECT_CHECK(PCICirrusVGAState, (obj), TYPE_PCI_CIRRUS_VGA)
244 #define TYPE_ISA_CIRRUS_VGA "isa-cirrus-vga"
245 #define ISA_CIRRUS_VGA(obj) \
246 OBJECT_CHECK(ISACirrusVGAState, (obj), TYPE_ISA_CIRRUS_VGA)
248 typedef struct ISACirrusVGAState
{
249 ISADevice parent_obj
;
251 CirrusVGAState cirrus_vga
;
254 static uint8_t rop_to_index
[256];
256 /***************************************
260 ***************************************/
263 static void cirrus_bitblt_reset(CirrusVGAState
*s
);
264 static void cirrus_update_memory_access(CirrusVGAState
*s
);
266 /***************************************
270 ***************************************/
272 static bool blit_region_is_unsafe(struct CirrusVGAState
*s
,
273 int32_t pitch
, int32_t addr
)
280 + ((int64_t)s
->cirrus_blt_height
-1) * pitch
;
282 + s
->cirrus_blt_width
;
283 if (min
< 0 || max
> s
->vga
.vram_size
) {
288 + ((int64_t)s
->cirrus_blt_height
-1) * pitch
289 + s
->cirrus_blt_width
;
290 if (max
> s
->vga
.vram_size
) {
297 static bool blit_is_unsafe(struct CirrusVGAState
*s
, bool dst_only
)
299 /* should be the case, see cirrus_bitblt_start */
300 assert(s
->cirrus_blt_width
> 0);
301 assert(s
->cirrus_blt_height
> 0);
303 if (s
->cirrus_blt_width
> CIRRUS_BLTBUFSIZE
) {
307 if (blit_region_is_unsafe(s
, s
->cirrus_blt_dstpitch
,
308 s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
)) {
314 if (blit_region_is_unsafe(s
, s
->cirrus_blt_srcpitch
,
315 s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
)) {
322 static void cirrus_bitblt_rop_nop(CirrusVGAState
*s
,
323 uint8_t *dst
,const uint8_t *src
,
324 int dstpitch
,int srcpitch
,
325 int bltwidth
,int bltheight
)
329 static void cirrus_bitblt_fill_nop(CirrusVGAState
*s
,
331 int dstpitch
, int bltwidth
,int bltheight
)
336 #define ROP_FN(d, s) 0
337 #include "cirrus_vga_rop.h"
339 #define ROP_NAME src_and_dst
340 #define ROP_FN(d, s) (s) & (d)
341 #include "cirrus_vga_rop.h"
343 #define ROP_NAME src_and_notdst
344 #define ROP_FN(d, s) (s) & (~(d))
345 #include "cirrus_vga_rop.h"
347 #define ROP_NAME notdst
348 #define ROP_FN(d, s) ~(d)
349 #include "cirrus_vga_rop.h"
352 #define ROP_FN(d, s) s
353 #include "cirrus_vga_rop.h"
356 #define ROP_FN(d, s) ~0
357 #include "cirrus_vga_rop.h"
359 #define ROP_NAME notsrc_and_dst
360 #define ROP_FN(d, s) (~(s)) & (d)
361 #include "cirrus_vga_rop.h"
363 #define ROP_NAME src_xor_dst
364 #define ROP_FN(d, s) (s) ^ (d)
365 #include "cirrus_vga_rop.h"
367 #define ROP_NAME src_or_dst
368 #define ROP_FN(d, s) (s) | (d)
369 #include "cirrus_vga_rop.h"
371 #define ROP_NAME notsrc_or_notdst
372 #define ROP_FN(d, s) (~(s)) | (~(d))
373 #include "cirrus_vga_rop.h"
375 #define ROP_NAME src_notxor_dst
376 #define ROP_FN(d, s) ~((s) ^ (d))
377 #include "cirrus_vga_rop.h"
379 #define ROP_NAME src_or_notdst
380 #define ROP_FN(d, s) (s) | (~(d))
381 #include "cirrus_vga_rop.h"
383 #define ROP_NAME notsrc
384 #define ROP_FN(d, s) (~(s))
385 #include "cirrus_vga_rop.h"
387 #define ROP_NAME notsrc_or_dst
388 #define ROP_FN(d, s) (~(s)) | (d)
389 #include "cirrus_vga_rop.h"
391 #define ROP_NAME notsrc_and_notdst
392 #define ROP_FN(d, s) (~(s)) & (~(d))
393 #include "cirrus_vga_rop.h"
395 static const cirrus_bitblt_rop_t cirrus_fwd_rop
[16] = {
396 cirrus_bitblt_rop_fwd_0
,
397 cirrus_bitblt_rop_fwd_src_and_dst
,
398 cirrus_bitblt_rop_nop
,
399 cirrus_bitblt_rop_fwd_src_and_notdst
,
400 cirrus_bitblt_rop_fwd_notdst
,
401 cirrus_bitblt_rop_fwd_src
,
402 cirrus_bitblt_rop_fwd_1
,
403 cirrus_bitblt_rop_fwd_notsrc_and_dst
,
404 cirrus_bitblt_rop_fwd_src_xor_dst
,
405 cirrus_bitblt_rop_fwd_src_or_dst
,
406 cirrus_bitblt_rop_fwd_notsrc_or_notdst
,
407 cirrus_bitblt_rop_fwd_src_notxor_dst
,
408 cirrus_bitblt_rop_fwd_src_or_notdst
,
409 cirrus_bitblt_rop_fwd_notsrc
,
410 cirrus_bitblt_rop_fwd_notsrc_or_dst
,
411 cirrus_bitblt_rop_fwd_notsrc_and_notdst
,
414 static const cirrus_bitblt_rop_t cirrus_bkwd_rop
[16] = {
415 cirrus_bitblt_rop_bkwd_0
,
416 cirrus_bitblt_rop_bkwd_src_and_dst
,
417 cirrus_bitblt_rop_nop
,
418 cirrus_bitblt_rop_bkwd_src_and_notdst
,
419 cirrus_bitblt_rop_bkwd_notdst
,
420 cirrus_bitblt_rop_bkwd_src
,
421 cirrus_bitblt_rop_bkwd_1
,
422 cirrus_bitblt_rop_bkwd_notsrc_and_dst
,
423 cirrus_bitblt_rop_bkwd_src_xor_dst
,
424 cirrus_bitblt_rop_bkwd_src_or_dst
,
425 cirrus_bitblt_rop_bkwd_notsrc_or_notdst
,
426 cirrus_bitblt_rop_bkwd_src_notxor_dst
,
427 cirrus_bitblt_rop_bkwd_src_or_notdst
,
428 cirrus_bitblt_rop_bkwd_notsrc
,
429 cirrus_bitblt_rop_bkwd_notsrc_or_dst
,
430 cirrus_bitblt_rop_bkwd_notsrc_and_notdst
,
433 #define TRANSP_ROP(name) {\
437 #define TRANSP_NOP(func) {\
442 static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop
[16][2] = {
443 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0
),
444 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst
),
445 TRANSP_NOP(cirrus_bitblt_rop_nop
),
446 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst
),
447 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst
),
448 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src
),
449 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1
),
450 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst
),
451 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst
),
452 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst
),
453 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst
),
454 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst
),
455 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst
),
456 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc
),
457 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst
),
458 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst
),
461 static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop
[16][2] = {
462 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0
),
463 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst
),
464 TRANSP_NOP(cirrus_bitblt_rop_nop
),
465 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst
),
466 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst
),
467 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src
),
468 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1
),
469 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst
),
470 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst
),
471 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst
),
472 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst
),
473 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst
),
474 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst
),
475 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc
),
476 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst
),
477 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst
),
480 #define ROP2(name) {\
487 #define ROP_NOP2(func) {\
494 static const cirrus_bitblt_rop_t cirrus_patternfill
[16][4] = {
495 ROP2(cirrus_patternfill_0
),
496 ROP2(cirrus_patternfill_src_and_dst
),
497 ROP_NOP2(cirrus_bitblt_rop_nop
),
498 ROP2(cirrus_patternfill_src_and_notdst
),
499 ROP2(cirrus_patternfill_notdst
),
500 ROP2(cirrus_patternfill_src
),
501 ROP2(cirrus_patternfill_1
),
502 ROP2(cirrus_patternfill_notsrc_and_dst
),
503 ROP2(cirrus_patternfill_src_xor_dst
),
504 ROP2(cirrus_patternfill_src_or_dst
),
505 ROP2(cirrus_patternfill_notsrc_or_notdst
),
506 ROP2(cirrus_patternfill_src_notxor_dst
),
507 ROP2(cirrus_patternfill_src_or_notdst
),
508 ROP2(cirrus_patternfill_notsrc
),
509 ROP2(cirrus_patternfill_notsrc_or_dst
),
510 ROP2(cirrus_patternfill_notsrc_and_notdst
),
513 static const cirrus_bitblt_rop_t cirrus_colorexpand_transp
[16][4] = {
514 ROP2(cirrus_colorexpand_transp_0
),
515 ROP2(cirrus_colorexpand_transp_src_and_dst
),
516 ROP_NOP2(cirrus_bitblt_rop_nop
),
517 ROP2(cirrus_colorexpand_transp_src_and_notdst
),
518 ROP2(cirrus_colorexpand_transp_notdst
),
519 ROP2(cirrus_colorexpand_transp_src
),
520 ROP2(cirrus_colorexpand_transp_1
),
521 ROP2(cirrus_colorexpand_transp_notsrc_and_dst
),
522 ROP2(cirrus_colorexpand_transp_src_xor_dst
),
523 ROP2(cirrus_colorexpand_transp_src_or_dst
),
524 ROP2(cirrus_colorexpand_transp_notsrc_or_notdst
),
525 ROP2(cirrus_colorexpand_transp_src_notxor_dst
),
526 ROP2(cirrus_colorexpand_transp_src_or_notdst
),
527 ROP2(cirrus_colorexpand_transp_notsrc
),
528 ROP2(cirrus_colorexpand_transp_notsrc_or_dst
),
529 ROP2(cirrus_colorexpand_transp_notsrc_and_notdst
),
532 static const cirrus_bitblt_rop_t cirrus_colorexpand
[16][4] = {
533 ROP2(cirrus_colorexpand_0
),
534 ROP2(cirrus_colorexpand_src_and_dst
),
535 ROP_NOP2(cirrus_bitblt_rop_nop
),
536 ROP2(cirrus_colorexpand_src_and_notdst
),
537 ROP2(cirrus_colorexpand_notdst
),
538 ROP2(cirrus_colorexpand_src
),
539 ROP2(cirrus_colorexpand_1
),
540 ROP2(cirrus_colorexpand_notsrc_and_dst
),
541 ROP2(cirrus_colorexpand_src_xor_dst
),
542 ROP2(cirrus_colorexpand_src_or_dst
),
543 ROP2(cirrus_colorexpand_notsrc_or_notdst
),
544 ROP2(cirrus_colorexpand_src_notxor_dst
),
545 ROP2(cirrus_colorexpand_src_or_notdst
),
546 ROP2(cirrus_colorexpand_notsrc
),
547 ROP2(cirrus_colorexpand_notsrc_or_dst
),
548 ROP2(cirrus_colorexpand_notsrc_and_notdst
),
551 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp
[16][4] = {
552 ROP2(cirrus_colorexpand_pattern_transp_0
),
553 ROP2(cirrus_colorexpand_pattern_transp_src_and_dst
),
554 ROP_NOP2(cirrus_bitblt_rop_nop
),
555 ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst
),
556 ROP2(cirrus_colorexpand_pattern_transp_notdst
),
557 ROP2(cirrus_colorexpand_pattern_transp_src
),
558 ROP2(cirrus_colorexpand_pattern_transp_1
),
559 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst
),
560 ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst
),
561 ROP2(cirrus_colorexpand_pattern_transp_src_or_dst
),
562 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst
),
563 ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst
),
564 ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst
),
565 ROP2(cirrus_colorexpand_pattern_transp_notsrc
),
566 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst
),
567 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst
),
570 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern
[16][4] = {
571 ROP2(cirrus_colorexpand_pattern_0
),
572 ROP2(cirrus_colorexpand_pattern_src_and_dst
),
573 ROP_NOP2(cirrus_bitblt_rop_nop
),
574 ROP2(cirrus_colorexpand_pattern_src_and_notdst
),
575 ROP2(cirrus_colorexpand_pattern_notdst
),
576 ROP2(cirrus_colorexpand_pattern_src
),
577 ROP2(cirrus_colorexpand_pattern_1
),
578 ROP2(cirrus_colorexpand_pattern_notsrc_and_dst
),
579 ROP2(cirrus_colorexpand_pattern_src_xor_dst
),
580 ROP2(cirrus_colorexpand_pattern_src_or_dst
),
581 ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst
),
582 ROP2(cirrus_colorexpand_pattern_src_notxor_dst
),
583 ROP2(cirrus_colorexpand_pattern_src_or_notdst
),
584 ROP2(cirrus_colorexpand_pattern_notsrc
),
585 ROP2(cirrus_colorexpand_pattern_notsrc_or_dst
),
586 ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst
),
589 static const cirrus_fill_t cirrus_fill
[16][4] = {
591 ROP2(cirrus_fill_src_and_dst
),
592 ROP_NOP2(cirrus_bitblt_fill_nop
),
593 ROP2(cirrus_fill_src_and_notdst
),
594 ROP2(cirrus_fill_notdst
),
595 ROP2(cirrus_fill_src
),
597 ROP2(cirrus_fill_notsrc_and_dst
),
598 ROP2(cirrus_fill_src_xor_dst
),
599 ROP2(cirrus_fill_src_or_dst
),
600 ROP2(cirrus_fill_notsrc_or_notdst
),
601 ROP2(cirrus_fill_src_notxor_dst
),
602 ROP2(cirrus_fill_src_or_notdst
),
603 ROP2(cirrus_fill_notsrc
),
604 ROP2(cirrus_fill_notsrc_or_dst
),
605 ROP2(cirrus_fill_notsrc_and_notdst
),
608 static inline void cirrus_bitblt_fgcol(CirrusVGAState
*s
)
611 switch (s
->cirrus_blt_pixelwidth
) {
613 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
;
616 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8);
617 s
->cirrus_blt_fgcol
= le16_to_cpu(color
);
620 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
|
621 (s
->vga
.gr
[0x11] << 8) | (s
->vga
.gr
[0x13] << 16);
625 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8) |
626 (s
->vga
.gr
[0x13] << 16) | (s
->vga
.gr
[0x15] << 24);
627 s
->cirrus_blt_fgcol
= le32_to_cpu(color
);
632 static inline void cirrus_bitblt_bgcol(CirrusVGAState
*s
)
635 switch (s
->cirrus_blt_pixelwidth
) {
637 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
;
640 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8);
641 s
->cirrus_blt_bgcol
= le16_to_cpu(color
);
644 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
|
645 (s
->vga
.gr
[0x10] << 8) | (s
->vga
.gr
[0x12] << 16);
649 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8) |
650 (s
->vga
.gr
[0x12] << 16) | (s
->vga
.gr
[0x14] << 24);
651 s
->cirrus_blt_bgcol
= le32_to_cpu(color
);
656 static void cirrus_invalidate_region(CirrusVGAState
* s
, int off_begin
,
657 int off_pitch
, int bytesperline
,
664 for (y
= 0; y
< lines
; y
++) {
666 off_cur_end
= (off_cur
+ bytesperline
) & s
->cirrus_addr_mask
;
667 memory_region_set_dirty(&s
->vga
.vram
, off_cur
, off_cur_end
- off_cur
);
668 off_begin
+= off_pitch
;
672 static int cirrus_bitblt_common_patterncopy(CirrusVGAState
* s
,
677 dst
= s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
);
679 if (blit_is_unsafe(s
, false))
682 (*s
->cirrus_rop
) (s
, dst
, src
,
683 s
->cirrus_blt_dstpitch
, 0,
684 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
685 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
686 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
687 s
->cirrus_blt_height
);
693 static int cirrus_bitblt_solidfill(CirrusVGAState
*s
, int blt_rop
)
695 cirrus_fill_t rop_func
;
697 if (blit_is_unsafe(s
, true)) {
700 rop_func
= cirrus_fill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
701 rop_func(s
, s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
702 s
->cirrus_blt_dstpitch
,
703 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
704 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
705 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
706 s
->cirrus_blt_height
);
707 cirrus_bitblt_reset(s
);
711 /***************************************
713 * bitblt (video-to-video)
715 ***************************************/
717 static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState
* s
)
719 return cirrus_bitblt_common_patterncopy(s
,
720 s
->vga
.vram_ptr
+ ((s
->cirrus_blt_srcaddr
& ~7) &
721 s
->cirrus_addr_mask
));
724 static int cirrus_do_copy(CirrusVGAState
*s
, int dst
, int src
, int w
, int h
)
731 /* make sure to only copy if it's a plain copy ROP */
732 if (*s
->cirrus_rop
== cirrus_bitblt_rop_fwd_src
||
733 *s
->cirrus_rop
== cirrus_bitblt_rop_bkwd_src
) {
737 depth
= s
->vga
.get_bpp(&s
->vga
) / 8;
741 s
->vga
.get_resolution(&s
->vga
, &width
, &height
);
744 sx
= (src
% ABS(s
->cirrus_blt_srcpitch
)) / depth
;
745 sy
= (src
/ ABS(s
->cirrus_blt_srcpitch
));
746 dx
= (dst
% ABS(s
->cirrus_blt_dstpitch
)) / depth
;
747 dy
= (dst
/ ABS(s
->cirrus_blt_dstpitch
));
749 /* normalize width */
752 /* if we're doing a backward copy, we have to adjust
753 our x/y to be the upper left corner (instead of the lower
755 if (s
->cirrus_blt_dstpitch
< 0) {
756 sx
-= (s
->cirrus_blt_width
/ depth
) - 1;
757 dx
-= (s
->cirrus_blt_width
/ depth
) - 1;
758 sy
-= s
->cirrus_blt_height
- 1;
759 dy
-= s
->cirrus_blt_height
- 1;
762 /* are we in the visible portion of memory? */
763 if (sx
>= 0 && sy
>= 0 && dx
>= 0 && dy
>= 0 &&
764 (sx
+ w
) <= width
&& (sy
+ h
) <= height
&&
765 (dx
+ w
) <= width
&& (dy
+ h
) <= height
) {
770 /* we have to flush all pending changes so that the copy
771 is generated at the appropriate moment in time */
773 graphic_hw_update(s
->vga
.con
);
775 (*s
->cirrus_rop
) (s
, s
->vga
.vram_ptr
+
776 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
778 (s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
),
779 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_srcpitch
,
780 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
783 qemu_console_copy(s
->vga
.con
,
785 s
->cirrus_blt_width
/ depth
,
786 s
->cirrus_blt_height
);
789 /* we don't have to notify the display that this portion has
790 changed since qemu_console_copy implies this */
792 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
793 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
794 s
->cirrus_blt_height
);
799 static int cirrus_bitblt_videotovideo_copy(CirrusVGAState
* s
)
801 if (blit_is_unsafe(s
, false))
804 return cirrus_do_copy(s
, s
->cirrus_blt_dstaddr
- s
->vga
.start_addr
,
805 s
->cirrus_blt_srcaddr
- s
->vga
.start_addr
,
806 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
809 /***************************************
811 * bitblt (cpu-to-video)
813 ***************************************/
815 static void cirrus_bitblt_cputovideo_next(CirrusVGAState
* s
)
820 if (s
->cirrus_srccounter
> 0) {
821 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
822 cirrus_bitblt_common_patterncopy(s
, s
->cirrus_bltbuf
);
824 s
->cirrus_srccounter
= 0;
825 cirrus_bitblt_reset(s
);
827 /* at least one scan line */
829 (*s
->cirrus_rop
)(s
, s
->vga
.vram_ptr
+
830 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
831 s
->cirrus_bltbuf
, 0, 0, s
->cirrus_blt_width
, 1);
832 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
, 0,
833 s
->cirrus_blt_width
, 1);
834 s
->cirrus_blt_dstaddr
+= s
->cirrus_blt_dstpitch
;
835 s
->cirrus_srccounter
-= s
->cirrus_blt_srcpitch
;
836 if (s
->cirrus_srccounter
<= 0)
838 /* more bytes than needed can be transferred because of
839 word alignment, so we keep them for the next line */
840 /* XXX: keep alignment to speed up transfer */
841 end_ptr
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
842 copy_count
= s
->cirrus_srcptr_end
- end_ptr
;
843 memmove(s
->cirrus_bltbuf
, end_ptr
, copy_count
);
844 s
->cirrus_srcptr
= s
->cirrus_bltbuf
+ copy_count
;
845 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
846 } while (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
);
851 /***************************************
855 ***************************************/
857 static void cirrus_bitblt_reset(CirrusVGAState
* s
)
862 ~(CIRRUS_BLT_START
| CIRRUS_BLT_BUSY
| CIRRUS_BLT_FIFOUSED
);
863 need_update
= s
->cirrus_srcptr
!= &s
->cirrus_bltbuf
[0]
864 || s
->cirrus_srcptr_end
!= &s
->cirrus_bltbuf
[0];
865 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
866 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
867 s
->cirrus_srccounter
= 0;
870 cirrus_update_memory_access(s
);
873 static int cirrus_bitblt_cputovideo(CirrusVGAState
* s
)
877 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_MEMSYSSRC
;
878 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
879 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
881 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
882 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
883 s
->cirrus_blt_srcpitch
= 8;
885 /* XXX: check for 24 bpp */
886 s
->cirrus_blt_srcpitch
= 8 * 8 * s
->cirrus_blt_pixelwidth
;
888 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
;
890 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
891 w
= s
->cirrus_blt_width
/ s
->cirrus_blt_pixelwidth
;
892 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_DWORDGRANULARITY
)
893 s
->cirrus_blt_srcpitch
= ((w
+ 31) >> 5);
895 s
->cirrus_blt_srcpitch
= ((w
+ 7) >> 3);
897 /* always align input size to 32 bits */
898 s
->cirrus_blt_srcpitch
= (s
->cirrus_blt_width
+ 3) & ~3;
900 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
* s
->cirrus_blt_height
;
902 s
->cirrus_srcptr
= s
->cirrus_bltbuf
;
903 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
904 cirrus_update_memory_access(s
);
908 static int cirrus_bitblt_videotocpu(CirrusVGAState
* s
)
912 printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
917 static int cirrus_bitblt_videotovideo(CirrusVGAState
* s
)
921 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
922 ret
= cirrus_bitblt_videotovideo_patterncopy(s
);
924 ret
= cirrus_bitblt_videotovideo_copy(s
);
927 cirrus_bitblt_reset(s
);
931 static void cirrus_bitblt_start(CirrusVGAState
* s
)
935 s
->vga
.gr
[0x31] |= CIRRUS_BLT_BUSY
;
937 s
->cirrus_blt_width
= (s
->vga
.gr
[0x20] | (s
->vga
.gr
[0x21] << 8)) + 1;
938 s
->cirrus_blt_height
= (s
->vga
.gr
[0x22] | (s
->vga
.gr
[0x23] << 8)) + 1;
939 s
->cirrus_blt_dstpitch
= (s
->vga
.gr
[0x24] | (s
->vga
.gr
[0x25] << 8));
940 s
->cirrus_blt_srcpitch
= (s
->vga
.gr
[0x26] | (s
->vga
.gr
[0x27] << 8));
941 s
->cirrus_blt_dstaddr
=
942 (s
->vga
.gr
[0x28] | (s
->vga
.gr
[0x29] << 8) | (s
->vga
.gr
[0x2a] << 16));
943 s
->cirrus_blt_srcaddr
=
944 (s
->vga
.gr
[0x2c] | (s
->vga
.gr
[0x2d] << 8) | (s
->vga
.gr
[0x2e] << 16));
945 s
->cirrus_blt_mode
= s
->vga
.gr
[0x30];
946 s
->cirrus_blt_modeext
= s
->vga
.gr
[0x33];
947 blt_rop
= s
->vga
.gr
[0x32];
950 printf("rop=0x%02x mode=0x%02x modeext=0x%02x w=%d h=%d dpitch=%d spitch=%d daddr=0x%08x saddr=0x%08x writemask=0x%02x\n",
953 s
->cirrus_blt_modeext
,
955 s
->cirrus_blt_height
,
956 s
->cirrus_blt_dstpitch
,
957 s
->cirrus_blt_srcpitch
,
958 s
->cirrus_blt_dstaddr
,
959 s
->cirrus_blt_srcaddr
,
963 switch (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PIXELWIDTHMASK
) {
964 case CIRRUS_BLTMODE_PIXELWIDTH8
:
965 s
->cirrus_blt_pixelwidth
= 1;
967 case CIRRUS_BLTMODE_PIXELWIDTH16
:
968 s
->cirrus_blt_pixelwidth
= 2;
970 case CIRRUS_BLTMODE_PIXELWIDTH24
:
971 s
->cirrus_blt_pixelwidth
= 3;
973 case CIRRUS_BLTMODE_PIXELWIDTH32
:
974 s
->cirrus_blt_pixelwidth
= 4;
978 printf("cirrus: bitblt - pixel width is unknown\n");
982 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_PIXELWIDTHMASK
;
985 cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSSRC
|
986 CIRRUS_BLTMODE_MEMSYSDEST
))
987 == (CIRRUS_BLTMODE_MEMSYSSRC
| CIRRUS_BLTMODE_MEMSYSDEST
)) {
989 printf("cirrus: bitblt - memory-to-memory copy is requested\n");
994 if ((s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_SOLIDFILL
) &&
995 (s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSDEST
|
996 CIRRUS_BLTMODE_TRANSPARENTCOMP
|
997 CIRRUS_BLTMODE_PATTERNCOPY
|
998 CIRRUS_BLTMODE_COLOREXPAND
)) ==
999 (CIRRUS_BLTMODE_PATTERNCOPY
| CIRRUS_BLTMODE_COLOREXPAND
)) {
1000 cirrus_bitblt_fgcol(s
);
1001 cirrus_bitblt_solidfill(s
, blt_rop
);
1003 if ((s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_COLOREXPAND
|
1004 CIRRUS_BLTMODE_PATTERNCOPY
)) ==
1005 CIRRUS_BLTMODE_COLOREXPAND
) {
1007 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1008 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1009 cirrus_bitblt_bgcol(s
);
1011 cirrus_bitblt_fgcol(s
);
1012 s
->cirrus_rop
= cirrus_colorexpand_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1014 cirrus_bitblt_fgcol(s
);
1015 cirrus_bitblt_bgcol(s
);
1016 s
->cirrus_rop
= cirrus_colorexpand
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1018 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
1019 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
1020 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1021 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1022 cirrus_bitblt_bgcol(s
);
1024 cirrus_bitblt_fgcol(s
);
1025 s
->cirrus_rop
= cirrus_colorexpand_pattern_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1027 cirrus_bitblt_fgcol(s
);
1028 cirrus_bitblt_bgcol(s
);
1029 s
->cirrus_rop
= cirrus_colorexpand_pattern
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1032 s
->cirrus_rop
= cirrus_patternfill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1035 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1036 if (s
->cirrus_blt_pixelwidth
> 2) {
1037 printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1040 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1041 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1042 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1043 s
->cirrus_rop
= cirrus_bkwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1045 s
->cirrus_rop
= cirrus_fwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1048 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1049 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1050 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1051 s
->cirrus_rop
= cirrus_bkwd_rop
[rop_to_index
[blt_rop
]];
1053 s
->cirrus_rop
= cirrus_fwd_rop
[rop_to_index
[blt_rop
]];
1057 // setup bitblt engine.
1058 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSSRC
) {
1059 if (!cirrus_bitblt_cputovideo(s
))
1061 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSDEST
) {
1062 if (!cirrus_bitblt_videotocpu(s
))
1065 if (!cirrus_bitblt_videotovideo(s
))
1071 cirrus_bitblt_reset(s
);
1074 static void cirrus_write_bitblt(CirrusVGAState
* s
, unsigned reg_value
)
1078 old_value
= s
->vga
.gr
[0x31];
1079 s
->vga
.gr
[0x31] = reg_value
;
1081 if (((old_value
& CIRRUS_BLT_RESET
) != 0) &&
1082 ((reg_value
& CIRRUS_BLT_RESET
) == 0)) {
1083 cirrus_bitblt_reset(s
);
1084 } else if (((old_value
& CIRRUS_BLT_START
) == 0) &&
1085 ((reg_value
& CIRRUS_BLT_START
) != 0)) {
1086 cirrus_bitblt_start(s
);
1091 /***************************************
1095 ***************************************/
1097 static void cirrus_get_offsets(VGACommonState
*s1
,
1098 uint32_t *pline_offset
,
1099 uint32_t *pstart_addr
,
1100 uint32_t *pline_compare
)
1102 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1103 uint32_t start_addr
, line_offset
, line_compare
;
1105 line_offset
= s
->vga
.cr
[0x13]
1106 | ((s
->vga
.cr
[0x1b] & 0x10) << 4);
1108 *pline_offset
= line_offset
;
1110 start_addr
= (s
->vga
.cr
[0x0c] << 8)
1112 | ((s
->vga
.cr
[0x1b] & 0x01) << 16)
1113 | ((s
->vga
.cr
[0x1b] & 0x0c) << 15)
1114 | ((s
->vga
.cr
[0x1d] & 0x80) << 12);
1115 *pstart_addr
= start_addr
;
1117 line_compare
= s
->vga
.cr
[0x18] |
1118 ((s
->vga
.cr
[0x07] & 0x10) << 4) |
1119 ((s
->vga
.cr
[0x09] & 0x40) << 3);
1120 *pline_compare
= line_compare
;
1123 static uint32_t cirrus_get_bpp16_depth(CirrusVGAState
* s
)
1127 switch (s
->cirrus_hidden_dac_data
& 0xf) {
1130 break; /* Sierra HiColor */
1133 break; /* XGA HiColor */
1136 printf("cirrus: invalid DAC value %x in 16bpp\n",
1137 (s
->cirrus_hidden_dac_data
& 0xf));
1145 static int cirrus_get_bpp(VGACommonState
*s1
)
1147 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1150 if ((s
->vga
.sr
[0x07] & 0x01) != 0) {
1152 switch (s
->vga
.sr
[0x07] & CIRRUS_SR7_BPP_MASK
) {
1153 case CIRRUS_SR7_BPP_8
:
1156 case CIRRUS_SR7_BPP_16_DOUBLEVCLK
:
1157 ret
= cirrus_get_bpp16_depth(s
);
1159 case CIRRUS_SR7_BPP_24
:
1162 case CIRRUS_SR7_BPP_16
:
1163 ret
= cirrus_get_bpp16_depth(s
);
1165 case CIRRUS_SR7_BPP_32
:
1170 printf("cirrus: unknown bpp - sr7=%x\n", s
->vga
.sr
[0x7]);
1183 static void cirrus_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1187 width
= (s
->cr
[0x01] + 1) * 8;
1188 height
= s
->cr
[0x12] |
1189 ((s
->cr
[0x07] & 0x02) << 7) |
1190 ((s
->cr
[0x07] & 0x40) << 3);
1191 height
= (height
+ 1);
1192 /* interlace support */
1193 if (s
->cr
[0x1a] & 0x01)
1194 height
= height
* 2;
1199 /***************************************
1203 ***************************************/
1205 static void cirrus_update_bank_ptr(CirrusVGAState
* s
, unsigned bank_index
)
1210 if ((s
->vga
.gr
[0x0b] & 0x01) != 0) /* dual bank */
1211 offset
= s
->vga
.gr
[0x09 + bank_index
];
1212 else /* single bank */
1213 offset
= s
->vga
.gr
[0x09];
1215 if ((s
->vga
.gr
[0x0b] & 0x20) != 0)
1220 if (s
->real_vram_size
<= offset
)
1223 limit
= s
->real_vram_size
- offset
;
1225 if (((s
->vga
.gr
[0x0b] & 0x01) == 0) && (bank_index
!= 0)) {
1226 if (limit
> 0x8000) {
1235 s
->cirrus_bank_base
[bank_index
] = offset
;
1236 s
->cirrus_bank_limit
[bank_index
] = limit
;
1238 s
->cirrus_bank_base
[bank_index
] = 0;
1239 s
->cirrus_bank_limit
[bank_index
] = 0;
1243 /***************************************
1245 * I/O access between 0x3c4-0x3c5
1247 ***************************************/
1249 static int cirrus_vga_read_sr(CirrusVGAState
* s
)
1251 switch (s
->vga
.sr_index
) {
1252 case 0x00: // Standard VGA
1253 case 0x01: // Standard VGA
1254 case 0x02: // Standard VGA
1255 case 0x03: // Standard VGA
1256 case 0x04: // Standard VGA
1257 return s
->vga
.sr
[s
->vga
.sr_index
];
1258 case 0x06: // Unlock Cirrus extensions
1259 return s
->vga
.sr
[s
->vga
.sr_index
];
1263 case 0x70: // Graphics Cursor X
1267 case 0xf0: // Graphics Cursor X
1268 return s
->vga
.sr
[0x10];
1272 case 0x71: // Graphics Cursor Y
1276 case 0xf1: // Graphics Cursor Y
1277 return s
->vga
.sr
[0x11];
1279 case 0x07: // Extended Sequencer Mode
1280 case 0x08: // EEPROM Control
1281 case 0x09: // Scratch Register 0
1282 case 0x0a: // Scratch Register 1
1283 case 0x0b: // VCLK 0
1284 case 0x0c: // VCLK 1
1285 case 0x0d: // VCLK 2
1286 case 0x0e: // VCLK 3
1287 case 0x0f: // DRAM Control
1288 case 0x12: // Graphics Cursor Attribute
1289 case 0x13: // Graphics Cursor Pattern Address
1290 case 0x14: // Scratch Register 2
1291 case 0x15: // Scratch Register 3
1292 case 0x16: // Performance Tuning Register
1293 case 0x17: // Configuration Readback and Extended Control
1294 case 0x18: // Signature Generator Control
1295 case 0x19: // Signal Generator Result
1296 case 0x1a: // Signal Generator Result
1297 case 0x1b: // VCLK 0 Denominator & Post
1298 case 0x1c: // VCLK 1 Denominator & Post
1299 case 0x1d: // VCLK 2 Denominator & Post
1300 case 0x1e: // VCLK 3 Denominator & Post
1301 case 0x1f: // BIOS Write Enable and MCLK select
1303 printf("cirrus: handled inport sr_index %02x\n", s
->vga
.sr_index
);
1305 return s
->vga
.sr
[s
->vga
.sr_index
];
1308 printf("cirrus: inport sr_index %02x\n", s
->vga
.sr_index
);
1315 static void cirrus_vga_write_sr(CirrusVGAState
* s
, uint32_t val
)
1317 switch (s
->vga
.sr_index
) {
1318 case 0x00: // Standard VGA
1319 case 0x01: // Standard VGA
1320 case 0x02: // Standard VGA
1321 case 0x03: // Standard VGA
1322 case 0x04: // Standard VGA
1323 s
->vga
.sr
[s
->vga
.sr_index
] = val
& sr_mask
[s
->vga
.sr_index
];
1324 if (s
->vga
.sr_index
== 1)
1325 s
->vga
.update_retrace_info(&s
->vga
);
1327 case 0x06: // Unlock Cirrus extensions
1330 s
->vga
.sr
[s
->vga
.sr_index
] = 0x12;
1332 s
->vga
.sr
[s
->vga
.sr_index
] = 0x0f;
1338 case 0x70: // Graphics Cursor X
1342 case 0xf0: // Graphics Cursor X
1343 s
->vga
.sr
[0x10] = val
;
1344 s
->vga
.hw_cursor_x
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1349 case 0x71: // Graphics Cursor Y
1353 case 0xf1: // Graphics Cursor Y
1354 s
->vga
.sr
[0x11] = val
;
1355 s
->vga
.hw_cursor_y
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1357 case 0x07: // Extended Sequencer Mode
1358 cirrus_update_memory_access(s
);
1359 case 0x08: // EEPROM Control
1360 case 0x09: // Scratch Register 0
1361 case 0x0a: // Scratch Register 1
1362 case 0x0b: // VCLK 0
1363 case 0x0c: // VCLK 1
1364 case 0x0d: // VCLK 2
1365 case 0x0e: // VCLK 3
1366 case 0x0f: // DRAM Control
1367 case 0x13: // Graphics Cursor Pattern Address
1368 case 0x14: // Scratch Register 2
1369 case 0x15: // Scratch Register 3
1370 case 0x16: // Performance Tuning Register
1371 case 0x18: // Signature Generator Control
1372 case 0x19: // Signature Generator Result
1373 case 0x1a: // Signature Generator Result
1374 case 0x1b: // VCLK 0 Denominator & Post
1375 case 0x1c: // VCLK 1 Denominator & Post
1376 case 0x1d: // VCLK 2 Denominator & Post
1377 case 0x1e: // VCLK 3 Denominator & Post
1378 case 0x1f: // BIOS Write Enable and MCLK select
1379 s
->vga
.sr
[s
->vga
.sr_index
] = val
;
1381 printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1382 s
->vga
.sr_index
, val
);
1385 case 0x12: // Graphics Cursor Attribute
1386 s
->vga
.sr
[0x12] = val
;
1387 s
->vga
.force_shadow
= !!(val
& CIRRUS_CURSOR_SHOW
);
1389 printf("cirrus: cursor ctl SR12=%02x (force shadow: %d)\n",
1390 val
, s
->vga
.force_shadow
);
1393 case 0x17: // Configuration Readback and Extended Control
1394 s
->vga
.sr
[s
->vga
.sr_index
] = (s
->vga
.sr
[s
->vga
.sr_index
] & 0x38)
1396 cirrus_update_memory_access(s
);
1400 printf("cirrus: outport sr_index %02x, sr_value %02x\n",
1401 s
->vga
.sr_index
, val
);
1407 /***************************************
1409 * I/O access at 0x3c6
1411 ***************************************/
1413 static int cirrus_read_hidden_dac(CirrusVGAState
* s
)
1415 if (++s
->cirrus_hidden_dac_lockindex
== 5) {
1416 s
->cirrus_hidden_dac_lockindex
= 0;
1417 return s
->cirrus_hidden_dac_data
;
1422 static void cirrus_write_hidden_dac(CirrusVGAState
* s
, int reg_value
)
1424 if (s
->cirrus_hidden_dac_lockindex
== 4) {
1425 s
->cirrus_hidden_dac_data
= reg_value
;
1426 #if defined(DEBUG_CIRRUS)
1427 printf("cirrus: outport hidden DAC, value %02x\n", reg_value
);
1430 s
->cirrus_hidden_dac_lockindex
= 0;
1433 /***************************************
1435 * I/O access at 0x3c9
1437 ***************************************/
1439 static int cirrus_vga_read_palette(CirrusVGAState
* s
)
1443 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1444 val
= s
->cirrus_hidden_palette
[(s
->vga
.dac_read_index
& 0x0f) * 3 +
1445 s
->vga
.dac_sub_index
];
1447 val
= s
->vga
.palette
[s
->vga
.dac_read_index
* 3 + s
->vga
.dac_sub_index
];
1449 if (++s
->vga
.dac_sub_index
== 3) {
1450 s
->vga
.dac_sub_index
= 0;
1451 s
->vga
.dac_read_index
++;
1456 static void cirrus_vga_write_palette(CirrusVGAState
* s
, int reg_value
)
1458 s
->vga
.dac_cache
[s
->vga
.dac_sub_index
] = reg_value
;
1459 if (++s
->vga
.dac_sub_index
== 3) {
1460 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1461 memcpy(&s
->cirrus_hidden_palette
[(s
->vga
.dac_write_index
& 0x0f) * 3],
1462 s
->vga
.dac_cache
, 3);
1464 memcpy(&s
->vga
.palette
[s
->vga
.dac_write_index
* 3], s
->vga
.dac_cache
, 3);
1466 /* XXX update cursor */
1467 s
->vga
.dac_sub_index
= 0;
1468 s
->vga
.dac_write_index
++;
1472 /***************************************
1474 * I/O access between 0x3ce-0x3cf
1476 ***************************************/
1478 static int cirrus_vga_read_gr(CirrusVGAState
* s
, unsigned reg_index
)
1480 switch (reg_index
) {
1481 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1482 return s
->cirrus_shadow_gr0
;
1483 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1484 return s
->cirrus_shadow_gr1
;
1485 case 0x02: // Standard VGA
1486 case 0x03: // Standard VGA
1487 case 0x04: // Standard VGA
1488 case 0x06: // Standard VGA
1489 case 0x07: // Standard VGA
1490 case 0x08: // Standard VGA
1491 return s
->vga
.gr
[s
->vga
.gr_index
];
1492 case 0x05: // Standard VGA, Cirrus extended mode
1497 if (reg_index
< 0x3a) {
1498 return s
->vga
.gr
[reg_index
];
1501 printf("cirrus: inport gr_index %02x\n", reg_index
);
1508 cirrus_vga_write_gr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1510 #if defined(DEBUG_BITBLT) && 0
1511 printf("gr%02x: %02x\n", reg_index
, reg_value
);
1513 switch (reg_index
) {
1514 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1515 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1516 s
->cirrus_shadow_gr0
= reg_value
;
1518 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1519 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1520 s
->cirrus_shadow_gr1
= reg_value
;
1522 case 0x02: // Standard VGA
1523 case 0x03: // Standard VGA
1524 case 0x04: // Standard VGA
1525 case 0x06: // Standard VGA
1526 case 0x07: // Standard VGA
1527 case 0x08: // Standard VGA
1528 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1530 case 0x05: // Standard VGA, Cirrus extended mode
1531 s
->vga
.gr
[reg_index
] = reg_value
& 0x7f;
1532 cirrus_update_memory_access(s
);
1534 case 0x09: // bank offset #0
1535 case 0x0A: // bank offset #1
1536 s
->vga
.gr
[reg_index
] = reg_value
;
1537 cirrus_update_bank_ptr(s
, 0);
1538 cirrus_update_bank_ptr(s
, 1);
1539 cirrus_update_memory_access(s
);
1542 s
->vga
.gr
[reg_index
] = reg_value
;
1543 cirrus_update_bank_ptr(s
, 0);
1544 cirrus_update_bank_ptr(s
, 1);
1545 cirrus_update_memory_access(s
);
1547 case 0x10: // BGCOLOR 0x0000ff00
1548 case 0x11: // FGCOLOR 0x0000ff00
1549 case 0x12: // BGCOLOR 0x00ff0000
1550 case 0x13: // FGCOLOR 0x00ff0000
1551 case 0x14: // BGCOLOR 0xff000000
1552 case 0x15: // FGCOLOR 0xff000000
1553 case 0x20: // BLT WIDTH 0x0000ff
1554 case 0x22: // BLT HEIGHT 0x0000ff
1555 case 0x24: // BLT DEST PITCH 0x0000ff
1556 case 0x26: // BLT SRC PITCH 0x0000ff
1557 case 0x28: // BLT DEST ADDR 0x0000ff
1558 case 0x29: // BLT DEST ADDR 0x00ff00
1559 case 0x2c: // BLT SRC ADDR 0x0000ff
1560 case 0x2d: // BLT SRC ADDR 0x00ff00
1561 case 0x2f: // BLT WRITEMASK
1562 case 0x30: // BLT MODE
1563 case 0x32: // RASTER OP
1564 case 0x33: // BLT MODEEXT
1565 case 0x34: // BLT TRANSPARENT COLOR 0x00ff
1566 case 0x35: // BLT TRANSPARENT COLOR 0xff00
1567 case 0x38: // BLT TRANSPARENT COLOR MASK 0x00ff
1568 case 0x39: // BLT TRANSPARENT COLOR MASK 0xff00
1569 s
->vga
.gr
[reg_index
] = reg_value
;
1571 case 0x21: // BLT WIDTH 0x001f00
1572 case 0x23: // BLT HEIGHT 0x001f00
1573 case 0x25: // BLT DEST PITCH 0x001f00
1574 case 0x27: // BLT SRC PITCH 0x001f00
1575 s
->vga
.gr
[reg_index
] = reg_value
& 0x1f;
1577 case 0x2a: // BLT DEST ADDR 0x3f0000
1578 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1579 /* if auto start mode, starts bit blt now */
1580 if (s
->vga
.gr
[0x31] & CIRRUS_BLT_AUTOSTART
) {
1581 cirrus_bitblt_start(s
);
1584 case 0x2e: // BLT SRC ADDR 0x3f0000
1585 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1587 case 0x31: // BLT STATUS/START
1588 cirrus_write_bitblt(s
, reg_value
);
1592 printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index
,
1599 /***************************************
1601 * I/O access between 0x3d4-0x3d5
1603 ***************************************/
1605 static int cirrus_vga_read_cr(CirrusVGAState
* s
, unsigned reg_index
)
1607 switch (reg_index
) {
1608 case 0x00: // Standard VGA
1609 case 0x01: // Standard VGA
1610 case 0x02: // Standard VGA
1611 case 0x03: // Standard VGA
1612 case 0x04: // Standard VGA
1613 case 0x05: // Standard VGA
1614 case 0x06: // Standard VGA
1615 case 0x07: // Standard VGA
1616 case 0x08: // Standard VGA
1617 case 0x09: // Standard VGA
1618 case 0x0a: // Standard VGA
1619 case 0x0b: // Standard VGA
1620 case 0x0c: // Standard VGA
1621 case 0x0d: // Standard VGA
1622 case 0x0e: // Standard VGA
1623 case 0x0f: // Standard VGA
1624 case 0x10: // Standard VGA
1625 case 0x11: // Standard VGA
1626 case 0x12: // Standard VGA
1627 case 0x13: // Standard VGA
1628 case 0x14: // Standard VGA
1629 case 0x15: // Standard VGA
1630 case 0x16: // Standard VGA
1631 case 0x17: // Standard VGA
1632 case 0x18: // Standard VGA
1633 return s
->vga
.cr
[s
->vga
.cr_index
];
1634 case 0x24: // Attribute Controller Toggle Readback (R)
1635 return (s
->vga
.ar_flip_flop
<< 7);
1636 case 0x19: // Interlace End
1637 case 0x1a: // Miscellaneous Control
1638 case 0x1b: // Extended Display Control
1639 case 0x1c: // Sync Adjust and Genlock
1640 case 0x1d: // Overlay Extended Control
1641 case 0x22: // Graphics Data Latches Readback (R)
1642 case 0x25: // Part Status
1643 case 0x27: // Part ID (R)
1644 return s
->vga
.cr
[s
->vga
.cr_index
];
1645 case 0x26: // Attribute Controller Index Readback (R)
1646 return s
->vga
.ar_index
& 0x3f;
1650 printf("cirrus: inport cr_index %02x\n", reg_index
);
1656 static void cirrus_vga_write_cr(CirrusVGAState
* s
, int reg_value
)
1658 switch (s
->vga
.cr_index
) {
1659 case 0x00: // Standard VGA
1660 case 0x01: // Standard VGA
1661 case 0x02: // Standard VGA
1662 case 0x03: // Standard VGA
1663 case 0x04: // Standard VGA
1664 case 0x05: // Standard VGA
1665 case 0x06: // Standard VGA
1666 case 0x07: // Standard VGA
1667 case 0x08: // Standard VGA
1668 case 0x09: // Standard VGA
1669 case 0x0a: // Standard VGA
1670 case 0x0b: // Standard VGA
1671 case 0x0c: // Standard VGA
1672 case 0x0d: // Standard VGA
1673 case 0x0e: // Standard VGA
1674 case 0x0f: // Standard VGA
1675 case 0x10: // Standard VGA
1676 case 0x11: // Standard VGA
1677 case 0x12: // Standard VGA
1678 case 0x13: // Standard VGA
1679 case 0x14: // Standard VGA
1680 case 0x15: // Standard VGA
1681 case 0x16: // Standard VGA
1682 case 0x17: // Standard VGA
1683 case 0x18: // Standard VGA
1684 /* handle CR0-7 protection */
1685 if ((s
->vga
.cr
[0x11] & 0x80) && s
->vga
.cr_index
<= 7) {
1686 /* can always write bit 4 of CR7 */
1687 if (s
->vga
.cr_index
== 7)
1688 s
->vga
.cr
[7] = (s
->vga
.cr
[7] & ~0x10) | (reg_value
& 0x10);
1691 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1692 switch(s
->vga
.cr_index
) {
1700 s
->vga
.update_retrace_info(&s
->vga
);
1704 case 0x19: // Interlace End
1705 case 0x1a: // Miscellaneous Control
1706 case 0x1b: // Extended Display Control
1707 case 0x1c: // Sync Adjust and Genlock
1708 case 0x1d: // Overlay Extended Control
1709 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1711 printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1712 s
->vga
.cr_index
, reg_value
);
1715 case 0x22: // Graphics Data Latches Readback (R)
1716 case 0x24: // Attribute Controller Toggle Readback (R)
1717 case 0x26: // Attribute Controller Index Readback (R)
1718 case 0x27: // Part ID (R)
1720 case 0x25: // Part Status
1723 printf("cirrus: outport cr_index %02x, cr_value %02x\n",
1724 s
->vga
.cr_index
, reg_value
);
1730 /***************************************
1732 * memory-mapped I/O (bitblt)
1734 ***************************************/
1736 static uint8_t cirrus_mmio_blt_read(CirrusVGAState
* s
, unsigned address
)
1741 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1742 value
= cirrus_vga_read_gr(s
, 0x00);
1744 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1745 value
= cirrus_vga_read_gr(s
, 0x10);
1747 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1748 value
= cirrus_vga_read_gr(s
, 0x12);
1750 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1751 value
= cirrus_vga_read_gr(s
, 0x14);
1753 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1754 value
= cirrus_vga_read_gr(s
, 0x01);
1756 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1757 value
= cirrus_vga_read_gr(s
, 0x11);
1759 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1760 value
= cirrus_vga_read_gr(s
, 0x13);
1762 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1763 value
= cirrus_vga_read_gr(s
, 0x15);
1765 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1766 value
= cirrus_vga_read_gr(s
, 0x20);
1768 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1769 value
= cirrus_vga_read_gr(s
, 0x21);
1771 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1772 value
= cirrus_vga_read_gr(s
, 0x22);
1774 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1775 value
= cirrus_vga_read_gr(s
, 0x23);
1777 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1778 value
= cirrus_vga_read_gr(s
, 0x24);
1780 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1781 value
= cirrus_vga_read_gr(s
, 0x25);
1783 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1784 value
= cirrus_vga_read_gr(s
, 0x26);
1786 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1787 value
= cirrus_vga_read_gr(s
, 0x27);
1789 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1790 value
= cirrus_vga_read_gr(s
, 0x28);
1792 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1793 value
= cirrus_vga_read_gr(s
, 0x29);
1795 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1796 value
= cirrus_vga_read_gr(s
, 0x2a);
1798 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1799 value
= cirrus_vga_read_gr(s
, 0x2c);
1801 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1802 value
= cirrus_vga_read_gr(s
, 0x2d);
1804 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1805 value
= cirrus_vga_read_gr(s
, 0x2e);
1807 case CIRRUS_MMIO_BLTWRITEMASK
:
1808 value
= cirrus_vga_read_gr(s
, 0x2f);
1810 case CIRRUS_MMIO_BLTMODE
:
1811 value
= cirrus_vga_read_gr(s
, 0x30);
1813 case CIRRUS_MMIO_BLTROP
:
1814 value
= cirrus_vga_read_gr(s
, 0x32);
1816 case CIRRUS_MMIO_BLTMODEEXT
:
1817 value
= cirrus_vga_read_gr(s
, 0x33);
1819 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1820 value
= cirrus_vga_read_gr(s
, 0x34);
1822 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1823 value
= cirrus_vga_read_gr(s
, 0x35);
1825 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1826 value
= cirrus_vga_read_gr(s
, 0x38);
1828 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1829 value
= cirrus_vga_read_gr(s
, 0x39);
1831 case CIRRUS_MMIO_BLTSTATUS
:
1832 value
= cirrus_vga_read_gr(s
, 0x31);
1836 printf("cirrus: mmio read - address 0x%04x\n", address
);
1841 return (uint8_t) value
;
1844 static void cirrus_mmio_blt_write(CirrusVGAState
* s
, unsigned address
,
1848 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1849 cirrus_vga_write_gr(s
, 0x00, value
);
1851 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1852 cirrus_vga_write_gr(s
, 0x10, value
);
1854 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1855 cirrus_vga_write_gr(s
, 0x12, value
);
1857 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1858 cirrus_vga_write_gr(s
, 0x14, value
);
1860 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1861 cirrus_vga_write_gr(s
, 0x01, value
);
1863 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1864 cirrus_vga_write_gr(s
, 0x11, value
);
1866 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1867 cirrus_vga_write_gr(s
, 0x13, value
);
1869 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1870 cirrus_vga_write_gr(s
, 0x15, value
);
1872 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1873 cirrus_vga_write_gr(s
, 0x20, value
);
1875 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1876 cirrus_vga_write_gr(s
, 0x21, value
);
1878 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1879 cirrus_vga_write_gr(s
, 0x22, value
);
1881 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1882 cirrus_vga_write_gr(s
, 0x23, value
);
1884 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1885 cirrus_vga_write_gr(s
, 0x24, value
);
1887 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1888 cirrus_vga_write_gr(s
, 0x25, value
);
1890 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1891 cirrus_vga_write_gr(s
, 0x26, value
);
1893 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1894 cirrus_vga_write_gr(s
, 0x27, value
);
1896 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1897 cirrus_vga_write_gr(s
, 0x28, value
);
1899 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1900 cirrus_vga_write_gr(s
, 0x29, value
);
1902 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1903 cirrus_vga_write_gr(s
, 0x2a, value
);
1905 case (CIRRUS_MMIO_BLTDESTADDR
+ 3):
1908 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1909 cirrus_vga_write_gr(s
, 0x2c, value
);
1911 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1912 cirrus_vga_write_gr(s
, 0x2d, value
);
1914 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1915 cirrus_vga_write_gr(s
, 0x2e, value
);
1917 case CIRRUS_MMIO_BLTWRITEMASK
:
1918 cirrus_vga_write_gr(s
, 0x2f, value
);
1920 case CIRRUS_MMIO_BLTMODE
:
1921 cirrus_vga_write_gr(s
, 0x30, value
);
1923 case CIRRUS_MMIO_BLTROP
:
1924 cirrus_vga_write_gr(s
, 0x32, value
);
1926 case CIRRUS_MMIO_BLTMODEEXT
:
1927 cirrus_vga_write_gr(s
, 0x33, value
);
1929 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1930 cirrus_vga_write_gr(s
, 0x34, value
);
1932 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1933 cirrus_vga_write_gr(s
, 0x35, value
);
1935 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1936 cirrus_vga_write_gr(s
, 0x38, value
);
1938 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1939 cirrus_vga_write_gr(s
, 0x39, value
);
1941 case CIRRUS_MMIO_BLTSTATUS
:
1942 cirrus_vga_write_gr(s
, 0x31, value
);
1946 printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1953 /***************************************
1957 ***************************************/
1959 static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState
* s
,
1965 unsigned val
= mem_value
;
1968 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1969 for (x
= 0; x
< 8; x
++) {
1971 *dst
= s
->cirrus_shadow_gr1
;
1972 } else if (mode
== 5) {
1973 *dst
= s
->cirrus_shadow_gr0
;
1978 memory_region_set_dirty(&s
->vga
.vram
, offset
, 8);
1981 static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState
* s
,
1987 unsigned val
= mem_value
;
1990 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1991 for (x
= 0; x
< 8; x
++) {
1993 *dst
= s
->cirrus_shadow_gr1
;
1994 *(dst
+ 1) = s
->vga
.gr
[0x11];
1995 } else if (mode
== 5) {
1996 *dst
= s
->cirrus_shadow_gr0
;
1997 *(dst
+ 1) = s
->vga
.gr
[0x10];
2002 memory_region_set_dirty(&s
->vga
.vram
, offset
, 16);
2005 /***************************************
2007 * memory access between 0xa0000-0xbffff
2009 ***************************************/
2011 static uint64_t cirrus_vga_mem_read(void *opaque
,
2015 CirrusVGAState
*s
= opaque
;
2016 unsigned bank_index
;
2017 unsigned bank_offset
;
2020 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
2021 return vga_mem_readb(&s
->vga
, addr
);
2024 if (addr
< 0x10000) {
2025 /* XXX handle bitblt */
2027 bank_index
= addr
>> 15;
2028 bank_offset
= addr
& 0x7fff;
2029 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2030 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2031 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2033 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2036 bank_offset
&= s
->cirrus_addr_mask
;
2037 val
= *(s
->vga
.vram_ptr
+ bank_offset
);
2040 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2041 /* memory-mapped I/O */
2043 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
2044 val
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2049 printf("cirrus: mem_readb " TARGET_FMT_plx
"\n", addr
);
2055 static void cirrus_vga_mem_write(void *opaque
,
2060 CirrusVGAState
*s
= opaque
;
2061 unsigned bank_index
;
2062 unsigned bank_offset
;
2065 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
2066 vga_mem_writeb(&s
->vga
, addr
, mem_value
);
2070 if (addr
< 0x10000) {
2071 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2073 *s
->cirrus_srcptr
++ = (uint8_t) mem_value
;
2074 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2075 cirrus_bitblt_cputovideo_next(s
);
2079 bank_index
= addr
>> 15;
2080 bank_offset
= addr
& 0x7fff;
2081 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2082 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2083 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2085 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2088 bank_offset
&= s
->cirrus_addr_mask
;
2089 mode
= s
->vga
.gr
[0x05] & 0x7;
2090 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2091 *(s
->vga
.vram_ptr
+ bank_offset
) = mem_value
;
2092 memory_region_set_dirty(&s
->vga
.vram
, bank_offset
,
2095 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2096 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
,
2100 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
,
2107 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2108 /* memory-mapped I/O */
2109 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
2110 cirrus_mmio_blt_write(s
, addr
& 0xff, mem_value
);
2114 printf("cirrus: mem_writeb " TARGET_FMT_plx
" value 0x%02" PRIu64
"\n", addr
,
2120 static const MemoryRegionOps cirrus_vga_mem_ops
= {
2121 .read
= cirrus_vga_mem_read
,
2122 .write
= cirrus_vga_mem_write
,
2123 .endianness
= DEVICE_LITTLE_ENDIAN
,
2125 .min_access_size
= 1,
2126 .max_access_size
= 1,
2130 /***************************************
2134 ***************************************/
2136 static inline void invalidate_cursor1(CirrusVGAState
*s
)
2138 if (s
->last_hw_cursor_size
) {
2139 vga_invalidate_scanlines(&s
->vga
,
2140 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_start
,
2141 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_end
);
2145 static inline void cirrus_cursor_compute_yrange(CirrusVGAState
*s
)
2149 int y
, y_min
, y_max
;
2151 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2152 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2153 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2156 for(y
= 0; y
< 64; y
++) {
2157 content
= ((uint32_t *)src
)[0] |
2158 ((uint32_t *)src
)[1] |
2159 ((uint32_t *)src
)[2] |
2160 ((uint32_t *)src
)[3];
2170 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2173 for(y
= 0; y
< 32; y
++) {
2174 content
= ((uint32_t *)src
)[0] |
2175 ((uint32_t *)(src
+ 128))[0];
2185 if (y_min
> y_max
) {
2186 s
->last_hw_cursor_y_start
= 0;
2187 s
->last_hw_cursor_y_end
= 0;
2189 s
->last_hw_cursor_y_start
= y_min
;
2190 s
->last_hw_cursor_y_end
= y_max
+ 1;
2194 /* NOTE: we do not currently handle the cursor bitmap change, so we
2195 update the cursor only if it moves. */
2196 static void cirrus_cursor_invalidate(VGACommonState
*s1
)
2198 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2201 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
)) {
2204 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
)
2209 /* invalidate last cursor and new cursor if any change */
2210 if (s
->last_hw_cursor_size
!= size
||
2211 s
->last_hw_cursor_x
!= s
->vga
.hw_cursor_x
||
2212 s
->last_hw_cursor_y
!= s
->vga
.hw_cursor_y
) {
2214 invalidate_cursor1(s
);
2216 s
->last_hw_cursor_size
= size
;
2217 s
->last_hw_cursor_x
= s
->vga
.hw_cursor_x
;
2218 s
->last_hw_cursor_y
= s
->vga
.hw_cursor_y
;
2219 /* compute the real cursor min and max y */
2220 cirrus_cursor_compute_yrange(s
);
2221 invalidate_cursor1(s
);
2225 static void vga_draw_cursor_line(uint8_t *d1
,
2226 const uint8_t *src1
,
2228 unsigned int color0
,
2229 unsigned int color1
,
2230 unsigned int color_xor
)
2232 const uint8_t *plane0
, *plane1
;
2238 plane1
= src1
+ poffset
;
2239 for (x
= 0; x
< w
; x
++) {
2240 b0
= (plane0
[x
>> 3] >> (7 - (x
& 7))) & 1;
2241 b1
= (plane1
[x
>> 3] >> (7 - (x
& 7))) & 1;
2242 switch (b0
| (b1
<< 1)) {
2246 ((uint32_t *)d
)[0] ^= color_xor
;
2249 ((uint32_t *)d
)[0] = color0
;
2252 ((uint32_t *)d
)[0] = color1
;
2259 static void cirrus_cursor_draw_line(VGACommonState
*s1
, uint8_t *d1
, int scr_y
)
2261 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2262 int w
, h
, x1
, x2
, poffset
;
2263 unsigned int color0
, color1
;
2264 const uint8_t *palette
, *src
;
2267 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
))
2269 /* fast test to see if the cursor intersects with the scan line */
2270 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2275 if (scr_y
< s
->vga
.hw_cursor_y
||
2276 scr_y
>= (s
->vga
.hw_cursor_y
+ h
)) {
2280 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2281 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2282 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2283 src
+= (scr_y
- s
->vga
.hw_cursor_y
) * 16;
2285 content
= ((uint32_t *)src
)[0] |
2286 ((uint32_t *)src
)[1] |
2287 ((uint32_t *)src
)[2] |
2288 ((uint32_t *)src
)[3];
2290 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2291 src
+= (scr_y
- s
->vga
.hw_cursor_y
) * 4;
2295 content
= ((uint32_t *)src
)[0] |
2296 ((uint32_t *)(src
+ 128))[0];
2298 /* if nothing to draw, no need to continue */
2303 x1
= s
->vga
.hw_cursor_x
;
2304 if (x1
>= s
->vga
.last_scr_width
)
2306 x2
= s
->vga
.hw_cursor_x
+ w
;
2307 if (x2
> s
->vga
.last_scr_width
)
2308 x2
= s
->vga
.last_scr_width
;
2310 palette
= s
->cirrus_hidden_palette
;
2311 color0
= rgb_to_pixel32(c6_to_8(palette
[0x0 * 3]),
2312 c6_to_8(palette
[0x0 * 3 + 1]),
2313 c6_to_8(palette
[0x0 * 3 + 2]));
2314 color1
= rgb_to_pixel32(c6_to_8(palette
[0xf * 3]),
2315 c6_to_8(palette
[0xf * 3 + 1]),
2316 c6_to_8(palette
[0xf * 3 + 2]));
2318 vga_draw_cursor_line(d1
, src
, poffset
, w
, color0
, color1
, 0xffffff);
2321 /***************************************
2325 ***************************************/
2327 static uint64_t cirrus_linear_read(void *opaque
, hwaddr addr
,
2330 CirrusVGAState
*s
= opaque
;
2333 addr
&= s
->cirrus_addr_mask
;
2335 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2336 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2337 /* memory-mapped I/O */
2338 ret
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2340 /* XXX handle bitblt */
2344 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2346 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2349 addr
&= s
->cirrus_addr_mask
;
2350 ret
= *(s
->vga
.vram_ptr
+ addr
);
2356 static void cirrus_linear_write(void *opaque
, hwaddr addr
,
2357 uint64_t val
, unsigned size
)
2359 CirrusVGAState
*s
= opaque
;
2362 addr
&= s
->cirrus_addr_mask
;
2364 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2365 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2366 /* memory-mapped I/O */
2367 cirrus_mmio_blt_write(s
, addr
& 0xff, val
);
2368 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2370 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2371 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2372 cirrus_bitblt_cputovideo_next(s
);
2376 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2378 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2381 addr
&= s
->cirrus_addr_mask
;
2383 mode
= s
->vga
.gr
[0x05] & 0x7;
2384 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2385 *(s
->vga
.vram_ptr
+ addr
) = (uint8_t) val
;
2386 memory_region_set_dirty(&s
->vga
.vram
, addr
, 1);
2388 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2389 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
, addr
, val
);
2391 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
, addr
, val
);
2397 /***************************************
2399 * system to screen memory access
2401 ***************************************/
2404 static uint64_t cirrus_linear_bitblt_read(void *opaque
,
2408 CirrusVGAState
*s
= opaque
;
2411 /* XXX handle bitblt */
2417 static void cirrus_linear_bitblt_write(void *opaque
,
2422 CirrusVGAState
*s
= opaque
;
2424 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2426 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2427 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2428 cirrus_bitblt_cputovideo_next(s
);
2433 static const MemoryRegionOps cirrus_linear_bitblt_io_ops
= {
2434 .read
= cirrus_linear_bitblt_read
,
2435 .write
= cirrus_linear_bitblt_write
,
2436 .endianness
= DEVICE_LITTLE_ENDIAN
,
2438 .min_access_size
= 1,
2439 .max_access_size
= 1,
2443 static void map_linear_vram_bank(CirrusVGAState
*s
, unsigned bank
)
2445 MemoryRegion
*mr
= &s
->cirrus_bank
[bank
];
2446 bool enabled
= !(s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
)
2447 && !((s
->vga
.sr
[0x07] & 0x01) == 0)
2448 && !((s
->vga
.gr
[0x0B] & 0x14) == 0x14)
2449 && !(s
->vga
.gr
[0x0B] & 0x02);
2451 memory_region_set_enabled(mr
, enabled
);
2452 memory_region_set_alias_offset(mr
, s
->cirrus_bank_base
[bank
]);
2455 static void map_linear_vram(CirrusVGAState
*s
)
2457 if (s
->bustype
== CIRRUS_BUSTYPE_PCI
&& !s
->linear_vram
) {
2458 s
->linear_vram
= true;
2459 memory_region_add_subregion_overlap(&s
->pci_bar
, 0, &s
->vga
.vram
, 1);
2461 map_linear_vram_bank(s
, 0);
2462 map_linear_vram_bank(s
, 1);
2465 static void unmap_linear_vram(CirrusVGAState
*s
)
2467 if (s
->bustype
== CIRRUS_BUSTYPE_PCI
&& s
->linear_vram
) {
2468 s
->linear_vram
= false;
2469 memory_region_del_subregion(&s
->pci_bar
, &s
->vga
.vram
);
2471 memory_region_set_enabled(&s
->cirrus_bank
[0], false);
2472 memory_region_set_enabled(&s
->cirrus_bank
[1], false);
2475 /* Compute the memory access functions */
2476 static void cirrus_update_memory_access(CirrusVGAState
*s
)
2480 memory_region_transaction_begin();
2481 if ((s
->vga
.sr
[0x17] & 0x44) == 0x44) {
2483 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2486 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2488 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2492 mode
= s
->vga
.gr
[0x05] & 0x7;
2493 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2497 unmap_linear_vram(s
);
2500 memory_region_transaction_commit();
2506 static uint64_t cirrus_vga_ioport_read(void *opaque
, hwaddr addr
,
2509 CirrusVGAState
*c
= opaque
;
2510 VGACommonState
*s
= &c
->vga
;
2515 if (vga_ioport_invalid(s
, addr
)) {
2520 if (s
->ar_flip_flop
== 0) {
2527 index
= s
->ar_index
& 0x1f;
2540 val
= cirrus_vga_read_sr(c
);
2542 #ifdef DEBUG_VGA_REG
2543 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
2547 val
= cirrus_read_hidden_dac(c
);
2553 val
= s
->dac_write_index
;
2554 c
->cirrus_hidden_dac_lockindex
= 0;
2557 val
= cirrus_vga_read_palette(c
);
2569 val
= cirrus_vga_read_gr(c
, s
->gr_index
);
2570 #ifdef DEBUG_VGA_REG
2571 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
2580 val
= cirrus_vga_read_cr(c
, s
->cr_index
);
2581 #ifdef DEBUG_VGA_REG
2582 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
2587 /* just toggle to fool polling */
2588 val
= s
->st01
= s
->retrace(s
);
2589 s
->ar_flip_flop
= 0;
2596 #if defined(DEBUG_VGA)
2597 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
2602 static void cirrus_vga_ioport_write(void *opaque
, hwaddr addr
, uint64_t val
,
2605 CirrusVGAState
*c
= opaque
;
2606 VGACommonState
*s
= &c
->vga
;
2611 /* check port range access depending on color/monochrome mode */
2612 if (vga_ioport_invalid(s
, addr
)) {
2616 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
2621 if (s
->ar_flip_flop
== 0) {
2625 index
= s
->ar_index
& 0x1f;
2628 s
->ar
[index
] = val
& 0x3f;
2631 s
->ar
[index
] = val
& ~0x10;
2637 s
->ar
[index
] = val
& ~0xc0;
2640 s
->ar
[index
] = val
& ~0xf0;
2643 s
->ar
[index
] = val
& ~0xf0;
2649 s
->ar_flip_flop
^= 1;
2652 s
->msr
= val
& ~0x10;
2653 s
->update_retrace_info(s
);
2659 #ifdef DEBUG_VGA_REG
2660 printf("vga: write SR%x = 0x%02" PRIu64
"\n", s
->sr_index
, val
);
2662 cirrus_vga_write_sr(c
, val
);
2665 cirrus_write_hidden_dac(c
, val
);
2668 s
->dac_read_index
= val
;
2669 s
->dac_sub_index
= 0;
2673 s
->dac_write_index
= val
;
2674 s
->dac_sub_index
= 0;
2678 cirrus_vga_write_palette(c
, val
);
2684 #ifdef DEBUG_VGA_REG
2685 printf("vga: write GR%x = 0x%02" PRIu64
"\n", s
->gr_index
, val
);
2687 cirrus_vga_write_gr(c
, s
->gr_index
, val
);
2695 #ifdef DEBUG_VGA_REG
2696 printf("vga: write CR%x = 0x%02"PRIu64
"\n", s
->cr_index
, val
);
2698 cirrus_vga_write_cr(c
, val
);
2702 s
->fcr
= val
& 0x10;
2707 /***************************************
2709 * memory-mapped I/O access
2711 ***************************************/
2713 static uint64_t cirrus_mmio_read(void *opaque
, hwaddr addr
,
2716 CirrusVGAState
*s
= opaque
;
2718 if (addr
>= 0x100) {
2719 return cirrus_mmio_blt_read(s
, addr
- 0x100);
2721 return cirrus_vga_ioport_read(s
, addr
+ 0x10, size
);
2725 static void cirrus_mmio_write(void *opaque
, hwaddr addr
,
2726 uint64_t val
, unsigned size
)
2728 CirrusVGAState
*s
= opaque
;
2730 if (addr
>= 0x100) {
2731 cirrus_mmio_blt_write(s
, addr
- 0x100, val
);
2733 cirrus_vga_ioport_write(s
, addr
+ 0x10, val
, size
);
2737 static const MemoryRegionOps cirrus_mmio_io_ops
= {
2738 .read
= cirrus_mmio_read
,
2739 .write
= cirrus_mmio_write
,
2740 .endianness
= DEVICE_LITTLE_ENDIAN
,
2742 .min_access_size
= 1,
2743 .max_access_size
= 1,
2747 /* load/save state */
2749 static int cirrus_post_load(void *opaque
, int version_id
)
2751 CirrusVGAState
*s
= opaque
;
2753 s
->vga
.gr
[0x00] = s
->cirrus_shadow_gr0
& 0x0f;
2754 s
->vga
.gr
[0x01] = s
->cirrus_shadow_gr1
& 0x0f;
2756 cirrus_update_memory_access(s
);
2758 s
->vga
.graphic_mode
= -1;
2759 cirrus_update_bank_ptr(s
, 0);
2760 cirrus_update_bank_ptr(s
, 1);
2764 static const VMStateDescription vmstate_cirrus_vga
= {
2765 .name
= "cirrus_vga",
2767 .minimum_version_id
= 1,
2768 .post_load
= cirrus_post_load
,
2769 .fields
= (VMStateField
[]) {
2770 VMSTATE_UINT32(vga
.latch
, CirrusVGAState
),
2771 VMSTATE_UINT8(vga
.sr_index
, CirrusVGAState
),
2772 VMSTATE_BUFFER(vga
.sr
, CirrusVGAState
),
2773 VMSTATE_UINT8(vga
.gr_index
, CirrusVGAState
),
2774 VMSTATE_UINT8(cirrus_shadow_gr0
, CirrusVGAState
),
2775 VMSTATE_UINT8(cirrus_shadow_gr1
, CirrusVGAState
),
2776 VMSTATE_BUFFER_START_MIDDLE(vga
.gr
, CirrusVGAState
, 2),
2777 VMSTATE_UINT8(vga
.ar_index
, CirrusVGAState
),
2778 VMSTATE_BUFFER(vga
.ar
, CirrusVGAState
),
2779 VMSTATE_INT32(vga
.ar_flip_flop
, CirrusVGAState
),
2780 VMSTATE_UINT8(vga
.cr_index
, CirrusVGAState
),
2781 VMSTATE_BUFFER(vga
.cr
, CirrusVGAState
),
2782 VMSTATE_UINT8(vga
.msr
, CirrusVGAState
),
2783 VMSTATE_UINT8(vga
.fcr
, CirrusVGAState
),
2784 VMSTATE_UINT8(vga
.st00
, CirrusVGAState
),
2785 VMSTATE_UINT8(vga
.st01
, CirrusVGAState
),
2786 VMSTATE_UINT8(vga
.dac_state
, CirrusVGAState
),
2787 VMSTATE_UINT8(vga
.dac_sub_index
, CirrusVGAState
),
2788 VMSTATE_UINT8(vga
.dac_read_index
, CirrusVGAState
),
2789 VMSTATE_UINT8(vga
.dac_write_index
, CirrusVGAState
),
2790 VMSTATE_BUFFER(vga
.dac_cache
, CirrusVGAState
),
2791 VMSTATE_BUFFER(vga
.palette
, CirrusVGAState
),
2792 VMSTATE_INT32(vga
.bank_offset
, CirrusVGAState
),
2793 VMSTATE_UINT8(cirrus_hidden_dac_lockindex
, CirrusVGAState
),
2794 VMSTATE_UINT8(cirrus_hidden_dac_data
, CirrusVGAState
),
2795 VMSTATE_UINT32(vga
.hw_cursor_x
, CirrusVGAState
),
2796 VMSTATE_UINT32(vga
.hw_cursor_y
, CirrusVGAState
),
2797 /* XXX: we do not save the bitblt state - we assume we do not save
2798 the state when the blitter is active */
2799 VMSTATE_END_OF_LIST()
2803 static const VMStateDescription vmstate_pci_cirrus_vga
= {
2804 .name
= "cirrus_vga",
2806 .minimum_version_id
= 2,
2807 .fields
= (VMStateField
[]) {
2808 VMSTATE_PCI_DEVICE(dev
, PCICirrusVGAState
),
2809 VMSTATE_STRUCT(cirrus_vga
, PCICirrusVGAState
, 0,
2810 vmstate_cirrus_vga
, CirrusVGAState
),
2811 VMSTATE_END_OF_LIST()
2815 /***************************************
2819 ***************************************/
2821 static void cirrus_reset(void *opaque
)
2823 CirrusVGAState
*s
= opaque
;
2825 vga_common_reset(&s
->vga
);
2826 unmap_linear_vram(s
);
2827 s
->vga
.sr
[0x06] = 0x0f;
2828 if (s
->device_id
== CIRRUS_ID_CLGD5446
) {
2829 /* 4MB 64 bit memory config, always PCI */
2830 s
->vga
.sr
[0x1F] = 0x2d; // MemClock
2831 s
->vga
.gr
[0x18] = 0x0f; // fastest memory configuration
2832 s
->vga
.sr
[0x0f] = 0x98;
2833 s
->vga
.sr
[0x17] = 0x20;
2834 s
->vga
.sr
[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
2836 s
->vga
.sr
[0x1F] = 0x22; // MemClock
2837 s
->vga
.sr
[0x0F] = CIRRUS_MEMSIZE_2M
;
2838 s
->vga
.sr
[0x17] = s
->bustype
;
2839 s
->vga
.sr
[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
2841 s
->vga
.cr
[0x27] = s
->device_id
;
2843 s
->cirrus_hidden_dac_lockindex
= 5;
2844 s
->cirrus_hidden_dac_data
= 0;
2847 static const MemoryRegionOps cirrus_linear_io_ops
= {
2848 .read
= cirrus_linear_read
,
2849 .write
= cirrus_linear_write
,
2850 .endianness
= DEVICE_LITTLE_ENDIAN
,
2852 .min_access_size
= 1,
2853 .max_access_size
= 1,
2857 static const MemoryRegionOps cirrus_vga_io_ops
= {
2858 .read
= cirrus_vga_ioport_read
,
2859 .write
= cirrus_vga_ioport_write
,
2860 .endianness
= DEVICE_LITTLE_ENDIAN
,
2862 .min_access_size
= 1,
2863 .max_access_size
= 1,
2867 static void cirrus_init_common(CirrusVGAState
*s
, Object
*owner
,
2868 int device_id
, int is_pci
,
2869 MemoryRegion
*system_memory
,
2870 MemoryRegion
*system_io
)
2877 for(i
= 0;i
< 256; i
++)
2878 rop_to_index
[i
] = CIRRUS_ROP_NOP_INDEX
; /* nop rop */
2879 rop_to_index
[CIRRUS_ROP_0
] = 0;
2880 rop_to_index
[CIRRUS_ROP_SRC_AND_DST
] = 1;
2881 rop_to_index
[CIRRUS_ROP_NOP
] = 2;
2882 rop_to_index
[CIRRUS_ROP_SRC_AND_NOTDST
] = 3;
2883 rop_to_index
[CIRRUS_ROP_NOTDST
] = 4;
2884 rop_to_index
[CIRRUS_ROP_SRC
] = 5;
2885 rop_to_index
[CIRRUS_ROP_1
] = 6;
2886 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_DST
] = 7;
2887 rop_to_index
[CIRRUS_ROP_SRC_XOR_DST
] = 8;
2888 rop_to_index
[CIRRUS_ROP_SRC_OR_DST
] = 9;
2889 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_NOTDST
] = 10;
2890 rop_to_index
[CIRRUS_ROP_SRC_NOTXOR_DST
] = 11;
2891 rop_to_index
[CIRRUS_ROP_SRC_OR_NOTDST
] = 12;
2892 rop_to_index
[CIRRUS_ROP_NOTSRC
] = 13;
2893 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_DST
] = 14;
2894 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_NOTDST
] = 15;
2895 s
->device_id
= device_id
;
2897 s
->bustype
= CIRRUS_BUSTYPE_PCI
;
2899 s
->bustype
= CIRRUS_BUSTYPE_ISA
;
2902 /* Register ioport 0x3b0 - 0x3df */
2903 memory_region_init_io(&s
->cirrus_vga_io
, owner
, &cirrus_vga_io_ops
, s
,
2905 memory_region_set_flush_coalesced(&s
->cirrus_vga_io
);
2906 memory_region_add_subregion(system_io
, 0x3b0, &s
->cirrus_vga_io
);
2908 memory_region_init(&s
->low_mem_container
, owner
,
2909 "cirrus-lowmem-container",
2912 memory_region_init_io(&s
->low_mem
, owner
, &cirrus_vga_mem_ops
, s
,
2913 "cirrus-low-memory", 0x20000);
2914 memory_region_add_subregion(&s
->low_mem_container
, 0, &s
->low_mem
);
2915 for (i
= 0; i
< 2; ++i
) {
2916 static const char *names
[] = { "vga.bank0", "vga.bank1" };
2917 MemoryRegion
*bank
= &s
->cirrus_bank
[i
];
2918 memory_region_init_alias(bank
, owner
, names
[i
], &s
->vga
.vram
,
2920 memory_region_set_enabled(bank
, false);
2921 memory_region_add_subregion_overlap(&s
->low_mem_container
, i
* 0x8000,
2924 memory_region_add_subregion_overlap(system_memory
,
2926 &s
->low_mem_container
,
2928 memory_region_set_coalescing(&s
->low_mem
);
2930 /* I/O handler for LFB */
2931 memory_region_init_io(&s
->cirrus_linear_io
, owner
, &cirrus_linear_io_ops
, s
,
2932 "cirrus-linear-io", s
->vga
.vram_size_mb
2934 memory_region_set_flush_coalesced(&s
->cirrus_linear_io
);
2936 /* I/O handler for LFB */
2937 memory_region_init_io(&s
->cirrus_linear_bitblt_io
, owner
,
2938 &cirrus_linear_bitblt_io_ops
,
2940 "cirrus-bitblt-mmio",
2942 memory_region_set_flush_coalesced(&s
->cirrus_linear_bitblt_io
);
2944 /* I/O handler for memory-mapped I/O */
2945 memory_region_init_io(&s
->cirrus_mmio_io
, owner
, &cirrus_mmio_io_ops
, s
,
2946 "cirrus-mmio", CIRRUS_PNPMMIO_SIZE
);
2947 memory_region_set_flush_coalesced(&s
->cirrus_mmio_io
);
2950 (s
->device_id
== CIRRUS_ID_CLGD5446
) ? 4096 * 1024 : 2048 * 1024;
2952 /* XXX: s->vga.vram_size must be a power of two */
2953 s
->cirrus_addr_mask
= s
->real_vram_size
- 1;
2954 s
->linear_mmio_mask
= s
->real_vram_size
- 256;
2956 s
->vga
.get_bpp
= cirrus_get_bpp
;
2957 s
->vga
.get_offsets
= cirrus_get_offsets
;
2958 s
->vga
.get_resolution
= cirrus_get_resolution
;
2959 s
->vga
.cursor_invalidate
= cirrus_cursor_invalidate
;
2960 s
->vga
.cursor_draw_line
= cirrus_cursor_draw_line
;
2962 qemu_register_reset(cirrus_reset
, s
);
2965 /***************************************
2969 ***************************************/
2971 static void isa_cirrus_vga_realizefn(DeviceState
*dev
, Error
**errp
)
2973 ISADevice
*isadev
= ISA_DEVICE(dev
);
2974 ISACirrusVGAState
*d
= ISA_CIRRUS_VGA(dev
);
2975 VGACommonState
*s
= &d
->cirrus_vga
.vga
;
2977 /* follow real hardware, cirrus card emulated has 4 MB video memory.
2978 Also accept 8 MB/16 MB for backward compatibility. */
2979 if (s
->vram_size_mb
!= 4 && s
->vram_size_mb
!= 8 &&
2980 s
->vram_size_mb
!= 16) {
2981 error_setg(errp
, "Invalid cirrus_vga ram size '%u'",
2985 vga_common_init(s
, OBJECT(dev
), true);
2986 cirrus_init_common(&d
->cirrus_vga
, OBJECT(dev
), CIRRUS_ID_CLGD5430
, 0,
2987 isa_address_space(isadev
),
2988 isa_address_space_io(isadev
));
2989 s
->con
= graphic_console_init(dev
, 0, s
->hw_ops
, s
);
2990 rom_add_vga(VGABIOS_CIRRUS_FILENAME
);
2991 /* XXX ISA-LFB support */
2992 /* FIXME not qdev yet */
2995 static Property isa_cirrus_vga_properties
[] = {
2996 DEFINE_PROP_UINT32("vgamem_mb", struct ISACirrusVGAState
,
2997 cirrus_vga
.vga
.vram_size_mb
, 8),
2998 DEFINE_PROP_END_OF_LIST(),
3001 static void isa_cirrus_vga_class_init(ObjectClass
*klass
, void *data
)
3003 DeviceClass
*dc
= DEVICE_CLASS(klass
);
3005 dc
->vmsd
= &vmstate_cirrus_vga
;
3006 dc
->realize
= isa_cirrus_vga_realizefn
;
3007 dc
->props
= isa_cirrus_vga_properties
;
3008 set_bit(DEVICE_CATEGORY_DISPLAY
, dc
->categories
);
3011 static const TypeInfo isa_cirrus_vga_info
= {
3012 .name
= TYPE_ISA_CIRRUS_VGA
,
3013 .parent
= TYPE_ISA_DEVICE
,
3014 .instance_size
= sizeof(ISACirrusVGAState
),
3015 .class_init
= isa_cirrus_vga_class_init
,
3018 /***************************************
3022 ***************************************/
3024 static void pci_cirrus_vga_realize(PCIDevice
*dev
, Error
**errp
)
3026 PCICirrusVGAState
*d
= PCI_CIRRUS_VGA(dev
);
3027 CirrusVGAState
*s
= &d
->cirrus_vga
;
3028 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(dev
);
3029 int16_t device_id
= pc
->device_id
;
3031 /* follow real hardware, cirrus card emulated has 4 MB video memory.
3032 Also accept 8 MB/16 MB for backward compatibility. */
3033 if (s
->vga
.vram_size_mb
!= 4 && s
->vga
.vram_size_mb
!= 8 &&
3034 s
->vga
.vram_size_mb
!= 16) {
3035 error_setg(errp
, "Invalid cirrus_vga ram size '%u'",
3036 s
->vga
.vram_size_mb
);
3040 vga_common_init(&s
->vga
, OBJECT(dev
), true);
3041 cirrus_init_common(s
, OBJECT(dev
), device_id
, 1, pci_address_space(dev
),
3042 pci_address_space_io(dev
));
3043 s
->vga
.con
= graphic_console_init(DEVICE(dev
), 0, s
->vga
.hw_ops
, &s
->vga
);
3047 memory_region_init(&s
->pci_bar
, OBJECT(dev
), "cirrus-pci-bar0", 0x2000000);
3049 /* XXX: add byte swapping apertures */
3050 memory_region_add_subregion(&s
->pci_bar
, 0, &s
->cirrus_linear_io
);
3051 memory_region_add_subregion(&s
->pci_bar
, 0x1000000,
3052 &s
->cirrus_linear_bitblt_io
);
3054 /* setup memory space */
3056 /* memory #1 memory-mapped I/O */
3057 /* XXX: s->vga.vram_size must be a power of two */
3058 pci_register_bar(&d
->dev
, 0, PCI_BASE_ADDRESS_MEM_PREFETCH
, &s
->pci_bar
);
3059 if (device_id
== CIRRUS_ID_CLGD5446
) {
3060 pci_register_bar(&d
->dev
, 1, 0, &s
->cirrus_mmio_io
);
3064 static Property pci_vga_cirrus_properties
[] = {
3065 DEFINE_PROP_UINT32("vgamem_mb", struct PCICirrusVGAState
,
3066 cirrus_vga
.vga
.vram_size_mb
, 8),
3067 DEFINE_PROP_END_OF_LIST(),
3070 static void cirrus_vga_class_init(ObjectClass
*klass
, void *data
)
3072 DeviceClass
*dc
= DEVICE_CLASS(klass
);
3073 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
3075 k
->realize
= pci_cirrus_vga_realize
;
3076 k
->romfile
= VGABIOS_CIRRUS_FILENAME
;
3077 k
->vendor_id
= PCI_VENDOR_ID_CIRRUS
;
3078 k
->device_id
= CIRRUS_ID_CLGD5446
;
3079 k
->class_id
= PCI_CLASS_DISPLAY_VGA
;
3080 set_bit(DEVICE_CATEGORY_DISPLAY
, dc
->categories
);
3081 dc
->desc
= "Cirrus CLGD 54xx VGA";
3082 dc
->vmsd
= &vmstate_pci_cirrus_vga
;
3083 dc
->props
= pci_vga_cirrus_properties
;
3084 dc
->hotpluggable
= false;
3087 static const TypeInfo cirrus_vga_info
= {
3088 .name
= TYPE_PCI_CIRRUS_VGA
,
3089 .parent
= TYPE_PCI_DEVICE
,
3090 .instance_size
= sizeof(PCICirrusVGAState
),
3091 .class_init
= cirrus_vga_class_init
,
3094 static void cirrus_vga_register_types(void)
3096 type_register_static(&isa_cirrus_vga_info
);
3097 type_register_static(&cirrus_vga_info
);
3100 type_init(cirrus_vga_register_types
)