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/
30 #include "hw/pci/pci.h"
31 #include "ui/console.h"
33 #include "hw/loader.h"
37 * - destination write mask support not complete (bits 5..7)
38 * - optimize linear mappings
39 * - optimize bitblt functions
42 //#define DEBUG_CIRRUS
43 //#define DEBUG_BITBLT
45 /***************************************
49 ***************************************/
52 #define CIRRUS_ID_CLGD5422 (0x23<<2)
53 #define CIRRUS_ID_CLGD5426 (0x24<<2)
54 #define CIRRUS_ID_CLGD5424 (0x25<<2)
55 #define CIRRUS_ID_CLGD5428 (0x26<<2)
56 #define CIRRUS_ID_CLGD5430 (0x28<<2)
57 #define CIRRUS_ID_CLGD5434 (0x2A<<2)
58 #define CIRRUS_ID_CLGD5436 (0x2B<<2)
59 #define CIRRUS_ID_CLGD5446 (0x2E<<2)
62 #define CIRRUS_SR7_BPP_VGA 0x00
63 #define CIRRUS_SR7_BPP_SVGA 0x01
64 #define CIRRUS_SR7_BPP_MASK 0x0e
65 #define CIRRUS_SR7_BPP_8 0x00
66 #define CIRRUS_SR7_BPP_16_DOUBLEVCLK 0x02
67 #define CIRRUS_SR7_BPP_24 0x04
68 #define CIRRUS_SR7_BPP_16 0x06
69 #define CIRRUS_SR7_BPP_32 0x08
70 #define CIRRUS_SR7_ISAADDR_MASK 0xe0
73 #define CIRRUS_MEMSIZE_512k 0x08
74 #define CIRRUS_MEMSIZE_1M 0x10
75 #define CIRRUS_MEMSIZE_2M 0x18
76 #define CIRRUS_MEMFLAGS_BANKSWITCH 0x80 // bank switching is enabled.
79 #define CIRRUS_CURSOR_SHOW 0x01
80 #define CIRRUS_CURSOR_HIDDENPEL 0x02
81 #define CIRRUS_CURSOR_LARGE 0x04 // 64x64 if set, 32x32 if clear
84 #define CIRRUS_BUSTYPE_VLBFAST 0x10
85 #define CIRRUS_BUSTYPE_PCI 0x20
86 #define CIRRUS_BUSTYPE_VLBSLOW 0x30
87 #define CIRRUS_BUSTYPE_ISA 0x38
88 #define CIRRUS_MMIO_ENABLE 0x04
89 #define CIRRUS_MMIO_USE_PCIADDR 0x40 // 0xb8000 if cleared.
90 #define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
93 #define CIRRUS_BANKING_DUAL 0x01
94 #define CIRRUS_BANKING_GRANULARITY_16K 0x20 // set:16k, clear:4k
97 #define CIRRUS_BLTMODE_BACKWARDS 0x01
98 #define CIRRUS_BLTMODE_MEMSYSDEST 0x02
99 #define CIRRUS_BLTMODE_MEMSYSSRC 0x04
100 #define CIRRUS_BLTMODE_TRANSPARENTCOMP 0x08
101 #define CIRRUS_BLTMODE_PATTERNCOPY 0x40
102 #define CIRRUS_BLTMODE_COLOREXPAND 0x80
103 #define CIRRUS_BLTMODE_PIXELWIDTHMASK 0x30
104 #define CIRRUS_BLTMODE_PIXELWIDTH8 0x00
105 #define CIRRUS_BLTMODE_PIXELWIDTH16 0x10
106 #define CIRRUS_BLTMODE_PIXELWIDTH24 0x20
107 #define CIRRUS_BLTMODE_PIXELWIDTH32 0x30
110 #define CIRRUS_BLT_BUSY 0x01
111 #define CIRRUS_BLT_START 0x02
112 #define CIRRUS_BLT_RESET 0x04
113 #define CIRRUS_BLT_FIFOUSED 0x10
114 #define CIRRUS_BLT_AUTOSTART 0x80
117 #define CIRRUS_ROP_0 0x00
118 #define CIRRUS_ROP_SRC_AND_DST 0x05
119 #define CIRRUS_ROP_NOP 0x06
120 #define CIRRUS_ROP_SRC_AND_NOTDST 0x09
121 #define CIRRUS_ROP_NOTDST 0x0b
122 #define CIRRUS_ROP_SRC 0x0d
123 #define CIRRUS_ROP_1 0x0e
124 #define CIRRUS_ROP_NOTSRC_AND_DST 0x50
125 #define CIRRUS_ROP_SRC_XOR_DST 0x59
126 #define CIRRUS_ROP_SRC_OR_DST 0x6d
127 #define CIRRUS_ROP_NOTSRC_OR_NOTDST 0x90
128 #define CIRRUS_ROP_SRC_NOTXOR_DST 0x95
129 #define CIRRUS_ROP_SRC_OR_NOTDST 0xad
130 #define CIRRUS_ROP_NOTSRC 0xd0
131 #define CIRRUS_ROP_NOTSRC_OR_DST 0xd6
132 #define CIRRUS_ROP_NOTSRC_AND_NOTDST 0xda
134 #define CIRRUS_ROP_NOP_INDEX 2
135 #define CIRRUS_ROP_SRC_INDEX 5
138 #define CIRRUS_BLTMODEEXT_SOLIDFILL 0x04
139 #define CIRRUS_BLTMODEEXT_COLOREXPINV 0x02
140 #define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
143 #define CIRRUS_MMIO_BLTBGCOLOR 0x00 // dword
144 #define CIRRUS_MMIO_BLTFGCOLOR 0x04 // dword
145 #define CIRRUS_MMIO_BLTWIDTH 0x08 // word
146 #define CIRRUS_MMIO_BLTHEIGHT 0x0a // word
147 #define CIRRUS_MMIO_BLTDESTPITCH 0x0c // word
148 #define CIRRUS_MMIO_BLTSRCPITCH 0x0e // word
149 #define CIRRUS_MMIO_BLTDESTADDR 0x10 // dword
150 #define CIRRUS_MMIO_BLTSRCADDR 0x14 // dword
151 #define CIRRUS_MMIO_BLTWRITEMASK 0x17 // byte
152 #define CIRRUS_MMIO_BLTMODE 0x18 // byte
153 #define CIRRUS_MMIO_BLTROP 0x1a // byte
154 #define CIRRUS_MMIO_BLTMODEEXT 0x1b // byte
155 #define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c // word?
156 #define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20 // word?
157 #define CIRRUS_MMIO_LINEARDRAW_START_X 0x24 // word
158 #define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26 // word
159 #define CIRRUS_MMIO_LINEARDRAW_END_X 0x28 // word
160 #define CIRRUS_MMIO_LINEARDRAW_END_Y 0x2a // word
161 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c // byte
162 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d // byte
163 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e // byte
164 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f // byte
165 #define CIRRUS_MMIO_BRESENHAM_K1 0x30 // word
166 #define CIRRUS_MMIO_BRESENHAM_K3 0x32 // word
167 #define CIRRUS_MMIO_BRESENHAM_ERROR 0x34 // word
168 #define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36 // word
169 #define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38 // byte
170 #define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
171 #define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
173 #define CIRRUS_PNPMMIO_SIZE 0x1000
175 #define BLTUNSAFE(s) \
177 ( /* check dst is within bounds */ \
178 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
179 + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
182 ( /* check src is within bounds */ \
183 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
184 + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
189 struct CirrusVGAState
;
190 typedef void (*cirrus_bitblt_rop_t
) (struct CirrusVGAState
*s
,
191 uint8_t * dst
, const uint8_t * src
,
192 int dstpitch
, int srcpitch
,
193 int bltwidth
, int bltheight
);
194 typedef void (*cirrus_fill_t
)(struct CirrusVGAState
*s
,
195 uint8_t *dst
, int dst_pitch
, int width
, int height
);
197 typedef struct CirrusVGAState
{
200 MemoryRegion cirrus_vga_io
;
201 MemoryRegion cirrus_linear_io
;
202 MemoryRegion cirrus_linear_bitblt_io
;
203 MemoryRegion cirrus_mmio_io
;
204 MemoryRegion pci_bar
;
205 bool linear_vram
; /* vga.vram mapped over cirrus_linear_io */
206 MemoryRegion low_mem_container
; /* container for 0xa0000-0xc0000 */
207 MemoryRegion low_mem
; /* always mapped, overridden by: */
208 MemoryRegion cirrus_bank
[2]; /* aliases at 0xa0000-0xb0000 */
209 uint32_t cirrus_addr_mask
;
210 uint32_t linear_mmio_mask
;
211 uint8_t cirrus_shadow_gr0
;
212 uint8_t cirrus_shadow_gr1
;
213 uint8_t cirrus_hidden_dac_lockindex
;
214 uint8_t cirrus_hidden_dac_data
;
215 uint32_t cirrus_bank_base
[2];
216 uint32_t cirrus_bank_limit
[2];
217 uint8_t cirrus_hidden_palette
[48];
218 uint32_t hw_cursor_x
;
219 uint32_t hw_cursor_y
;
220 int cirrus_blt_pixelwidth
;
221 int cirrus_blt_width
;
222 int cirrus_blt_height
;
223 int cirrus_blt_dstpitch
;
224 int cirrus_blt_srcpitch
;
225 uint32_t cirrus_blt_fgcol
;
226 uint32_t cirrus_blt_bgcol
;
227 uint32_t cirrus_blt_dstaddr
;
228 uint32_t cirrus_blt_srcaddr
;
229 uint8_t cirrus_blt_mode
;
230 uint8_t cirrus_blt_modeext
;
231 cirrus_bitblt_rop_t cirrus_rop
;
232 #define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
233 uint8_t cirrus_bltbuf
[CIRRUS_BLTBUFSIZE
];
234 uint8_t *cirrus_srcptr
;
235 uint8_t *cirrus_srcptr_end
;
236 uint32_t cirrus_srccounter
;
237 /* hwcursor display state */
238 int last_hw_cursor_size
;
239 int last_hw_cursor_x
;
240 int last_hw_cursor_y
;
241 int last_hw_cursor_y_start
;
242 int last_hw_cursor_y_end
;
243 int real_vram_size
; /* XXX: suppress that */
248 typedef struct PCICirrusVGAState
{
250 CirrusVGAState cirrus_vga
;
253 #define TYPE_ISA_CIRRUS_VGA "isa-cirrus-vga"
254 #define ISA_CIRRUS_VGA(obj) \
255 OBJECT_CHECK(ISACirrusVGAState, (obj), TYPE_ISA_CIRRUS_VGA)
257 typedef struct ISACirrusVGAState
{
258 ISADevice parent_obj
;
260 CirrusVGAState cirrus_vga
;
263 static uint8_t rop_to_index
[256];
265 /***************************************
269 ***************************************/
272 static void cirrus_bitblt_reset(CirrusVGAState
*s
);
273 static void cirrus_update_memory_access(CirrusVGAState
*s
);
275 /***************************************
279 ***************************************/
281 static void cirrus_bitblt_rop_nop(CirrusVGAState
*s
,
282 uint8_t *dst
,const uint8_t *src
,
283 int dstpitch
,int srcpitch
,
284 int bltwidth
,int bltheight
)
288 static void cirrus_bitblt_fill_nop(CirrusVGAState
*s
,
290 int dstpitch
, int bltwidth
,int bltheight
)
295 #define ROP_FN(d, s) 0
296 #include "cirrus_vga_rop.h"
298 #define ROP_NAME src_and_dst
299 #define ROP_FN(d, s) (s) & (d)
300 #include "cirrus_vga_rop.h"
302 #define ROP_NAME src_and_notdst
303 #define ROP_FN(d, s) (s) & (~(d))
304 #include "cirrus_vga_rop.h"
306 #define ROP_NAME notdst
307 #define ROP_FN(d, s) ~(d)
308 #include "cirrus_vga_rop.h"
311 #define ROP_FN(d, s) s
312 #include "cirrus_vga_rop.h"
315 #define ROP_FN(d, s) ~0
316 #include "cirrus_vga_rop.h"
318 #define ROP_NAME notsrc_and_dst
319 #define ROP_FN(d, s) (~(s)) & (d)
320 #include "cirrus_vga_rop.h"
322 #define ROP_NAME src_xor_dst
323 #define ROP_FN(d, s) (s) ^ (d)
324 #include "cirrus_vga_rop.h"
326 #define ROP_NAME src_or_dst
327 #define ROP_FN(d, s) (s) | (d)
328 #include "cirrus_vga_rop.h"
330 #define ROP_NAME notsrc_or_notdst
331 #define ROP_FN(d, s) (~(s)) | (~(d))
332 #include "cirrus_vga_rop.h"
334 #define ROP_NAME src_notxor_dst
335 #define ROP_FN(d, s) ~((s) ^ (d))
336 #include "cirrus_vga_rop.h"
338 #define ROP_NAME src_or_notdst
339 #define ROP_FN(d, s) (s) | (~(d))
340 #include "cirrus_vga_rop.h"
342 #define ROP_NAME notsrc
343 #define ROP_FN(d, s) (~(s))
344 #include "cirrus_vga_rop.h"
346 #define ROP_NAME notsrc_or_dst
347 #define ROP_FN(d, s) (~(s)) | (d)
348 #include "cirrus_vga_rop.h"
350 #define ROP_NAME notsrc_and_notdst
351 #define ROP_FN(d, s) (~(s)) & (~(d))
352 #include "cirrus_vga_rop.h"
354 static const cirrus_bitblt_rop_t cirrus_fwd_rop
[16] = {
355 cirrus_bitblt_rop_fwd_0
,
356 cirrus_bitblt_rop_fwd_src_and_dst
,
357 cirrus_bitblt_rop_nop
,
358 cirrus_bitblt_rop_fwd_src_and_notdst
,
359 cirrus_bitblt_rop_fwd_notdst
,
360 cirrus_bitblt_rop_fwd_src
,
361 cirrus_bitblt_rop_fwd_1
,
362 cirrus_bitblt_rop_fwd_notsrc_and_dst
,
363 cirrus_bitblt_rop_fwd_src_xor_dst
,
364 cirrus_bitblt_rop_fwd_src_or_dst
,
365 cirrus_bitblt_rop_fwd_notsrc_or_notdst
,
366 cirrus_bitblt_rop_fwd_src_notxor_dst
,
367 cirrus_bitblt_rop_fwd_src_or_notdst
,
368 cirrus_bitblt_rop_fwd_notsrc
,
369 cirrus_bitblt_rop_fwd_notsrc_or_dst
,
370 cirrus_bitblt_rop_fwd_notsrc_and_notdst
,
373 static const cirrus_bitblt_rop_t cirrus_bkwd_rop
[16] = {
374 cirrus_bitblt_rop_bkwd_0
,
375 cirrus_bitblt_rop_bkwd_src_and_dst
,
376 cirrus_bitblt_rop_nop
,
377 cirrus_bitblt_rop_bkwd_src_and_notdst
,
378 cirrus_bitblt_rop_bkwd_notdst
,
379 cirrus_bitblt_rop_bkwd_src
,
380 cirrus_bitblt_rop_bkwd_1
,
381 cirrus_bitblt_rop_bkwd_notsrc_and_dst
,
382 cirrus_bitblt_rop_bkwd_src_xor_dst
,
383 cirrus_bitblt_rop_bkwd_src_or_dst
,
384 cirrus_bitblt_rop_bkwd_notsrc_or_notdst
,
385 cirrus_bitblt_rop_bkwd_src_notxor_dst
,
386 cirrus_bitblt_rop_bkwd_src_or_notdst
,
387 cirrus_bitblt_rop_bkwd_notsrc
,
388 cirrus_bitblt_rop_bkwd_notsrc_or_dst
,
389 cirrus_bitblt_rop_bkwd_notsrc_and_notdst
,
392 #define TRANSP_ROP(name) {\
396 #define TRANSP_NOP(func) {\
401 static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop
[16][2] = {
402 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0
),
403 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst
),
404 TRANSP_NOP(cirrus_bitblt_rop_nop
),
405 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst
),
406 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst
),
407 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src
),
408 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1
),
409 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst
),
410 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst
),
411 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst
),
412 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst
),
413 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst
),
414 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst
),
415 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc
),
416 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst
),
417 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst
),
420 static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop
[16][2] = {
421 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0
),
422 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst
),
423 TRANSP_NOP(cirrus_bitblt_rop_nop
),
424 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst
),
425 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst
),
426 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src
),
427 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1
),
428 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst
),
429 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst
),
430 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst
),
431 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst
),
432 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst
),
433 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst
),
434 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc
),
435 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst
),
436 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst
),
439 #define ROP2(name) {\
446 #define ROP_NOP2(func) {\
453 static const cirrus_bitblt_rop_t cirrus_patternfill
[16][4] = {
454 ROP2(cirrus_patternfill_0
),
455 ROP2(cirrus_patternfill_src_and_dst
),
456 ROP_NOP2(cirrus_bitblt_rop_nop
),
457 ROP2(cirrus_patternfill_src_and_notdst
),
458 ROP2(cirrus_patternfill_notdst
),
459 ROP2(cirrus_patternfill_src
),
460 ROP2(cirrus_patternfill_1
),
461 ROP2(cirrus_patternfill_notsrc_and_dst
),
462 ROP2(cirrus_patternfill_src_xor_dst
),
463 ROP2(cirrus_patternfill_src_or_dst
),
464 ROP2(cirrus_patternfill_notsrc_or_notdst
),
465 ROP2(cirrus_patternfill_src_notxor_dst
),
466 ROP2(cirrus_patternfill_src_or_notdst
),
467 ROP2(cirrus_patternfill_notsrc
),
468 ROP2(cirrus_patternfill_notsrc_or_dst
),
469 ROP2(cirrus_patternfill_notsrc_and_notdst
),
472 static const cirrus_bitblt_rop_t cirrus_colorexpand_transp
[16][4] = {
473 ROP2(cirrus_colorexpand_transp_0
),
474 ROP2(cirrus_colorexpand_transp_src_and_dst
),
475 ROP_NOP2(cirrus_bitblt_rop_nop
),
476 ROP2(cirrus_colorexpand_transp_src_and_notdst
),
477 ROP2(cirrus_colorexpand_transp_notdst
),
478 ROP2(cirrus_colorexpand_transp_src
),
479 ROP2(cirrus_colorexpand_transp_1
),
480 ROP2(cirrus_colorexpand_transp_notsrc_and_dst
),
481 ROP2(cirrus_colorexpand_transp_src_xor_dst
),
482 ROP2(cirrus_colorexpand_transp_src_or_dst
),
483 ROP2(cirrus_colorexpand_transp_notsrc_or_notdst
),
484 ROP2(cirrus_colorexpand_transp_src_notxor_dst
),
485 ROP2(cirrus_colorexpand_transp_src_or_notdst
),
486 ROP2(cirrus_colorexpand_transp_notsrc
),
487 ROP2(cirrus_colorexpand_transp_notsrc_or_dst
),
488 ROP2(cirrus_colorexpand_transp_notsrc_and_notdst
),
491 static const cirrus_bitblt_rop_t cirrus_colorexpand
[16][4] = {
492 ROP2(cirrus_colorexpand_0
),
493 ROP2(cirrus_colorexpand_src_and_dst
),
494 ROP_NOP2(cirrus_bitblt_rop_nop
),
495 ROP2(cirrus_colorexpand_src_and_notdst
),
496 ROP2(cirrus_colorexpand_notdst
),
497 ROP2(cirrus_colorexpand_src
),
498 ROP2(cirrus_colorexpand_1
),
499 ROP2(cirrus_colorexpand_notsrc_and_dst
),
500 ROP2(cirrus_colorexpand_src_xor_dst
),
501 ROP2(cirrus_colorexpand_src_or_dst
),
502 ROP2(cirrus_colorexpand_notsrc_or_notdst
),
503 ROP2(cirrus_colorexpand_src_notxor_dst
),
504 ROP2(cirrus_colorexpand_src_or_notdst
),
505 ROP2(cirrus_colorexpand_notsrc
),
506 ROP2(cirrus_colorexpand_notsrc_or_dst
),
507 ROP2(cirrus_colorexpand_notsrc_and_notdst
),
510 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp
[16][4] = {
511 ROP2(cirrus_colorexpand_pattern_transp_0
),
512 ROP2(cirrus_colorexpand_pattern_transp_src_and_dst
),
513 ROP_NOP2(cirrus_bitblt_rop_nop
),
514 ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst
),
515 ROP2(cirrus_colorexpand_pattern_transp_notdst
),
516 ROP2(cirrus_colorexpand_pattern_transp_src
),
517 ROP2(cirrus_colorexpand_pattern_transp_1
),
518 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst
),
519 ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst
),
520 ROP2(cirrus_colorexpand_pattern_transp_src_or_dst
),
521 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst
),
522 ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst
),
523 ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst
),
524 ROP2(cirrus_colorexpand_pattern_transp_notsrc
),
525 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst
),
526 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst
),
529 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern
[16][4] = {
530 ROP2(cirrus_colorexpand_pattern_0
),
531 ROP2(cirrus_colorexpand_pattern_src_and_dst
),
532 ROP_NOP2(cirrus_bitblt_rop_nop
),
533 ROP2(cirrus_colorexpand_pattern_src_and_notdst
),
534 ROP2(cirrus_colorexpand_pattern_notdst
),
535 ROP2(cirrus_colorexpand_pattern_src
),
536 ROP2(cirrus_colorexpand_pattern_1
),
537 ROP2(cirrus_colorexpand_pattern_notsrc_and_dst
),
538 ROP2(cirrus_colorexpand_pattern_src_xor_dst
),
539 ROP2(cirrus_colorexpand_pattern_src_or_dst
),
540 ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst
),
541 ROP2(cirrus_colorexpand_pattern_src_notxor_dst
),
542 ROP2(cirrus_colorexpand_pattern_src_or_notdst
),
543 ROP2(cirrus_colorexpand_pattern_notsrc
),
544 ROP2(cirrus_colorexpand_pattern_notsrc_or_dst
),
545 ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst
),
548 static const cirrus_fill_t cirrus_fill
[16][4] = {
550 ROP2(cirrus_fill_src_and_dst
),
551 ROP_NOP2(cirrus_bitblt_fill_nop
),
552 ROP2(cirrus_fill_src_and_notdst
),
553 ROP2(cirrus_fill_notdst
),
554 ROP2(cirrus_fill_src
),
556 ROP2(cirrus_fill_notsrc_and_dst
),
557 ROP2(cirrus_fill_src_xor_dst
),
558 ROP2(cirrus_fill_src_or_dst
),
559 ROP2(cirrus_fill_notsrc_or_notdst
),
560 ROP2(cirrus_fill_src_notxor_dst
),
561 ROP2(cirrus_fill_src_or_notdst
),
562 ROP2(cirrus_fill_notsrc
),
563 ROP2(cirrus_fill_notsrc_or_dst
),
564 ROP2(cirrus_fill_notsrc_and_notdst
),
567 static inline void cirrus_bitblt_fgcol(CirrusVGAState
*s
)
570 switch (s
->cirrus_blt_pixelwidth
) {
572 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
;
575 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8);
576 s
->cirrus_blt_fgcol
= le16_to_cpu(color
);
579 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
|
580 (s
->vga
.gr
[0x11] << 8) | (s
->vga
.gr
[0x13] << 16);
584 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8) |
585 (s
->vga
.gr
[0x13] << 16) | (s
->vga
.gr
[0x15] << 24);
586 s
->cirrus_blt_fgcol
= le32_to_cpu(color
);
591 static inline void cirrus_bitblt_bgcol(CirrusVGAState
*s
)
594 switch (s
->cirrus_blt_pixelwidth
) {
596 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
;
599 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8);
600 s
->cirrus_blt_bgcol
= le16_to_cpu(color
);
603 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
|
604 (s
->vga
.gr
[0x10] << 8) | (s
->vga
.gr
[0x12] << 16);
608 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8) |
609 (s
->vga
.gr
[0x12] << 16) | (s
->vga
.gr
[0x14] << 24);
610 s
->cirrus_blt_bgcol
= le32_to_cpu(color
);
615 static void cirrus_invalidate_region(CirrusVGAState
* s
, int off_begin
,
616 int off_pitch
, int bytesperline
,
623 for (y
= 0; y
< lines
; y
++) {
625 off_cur_end
= (off_cur
+ bytesperline
) & s
->cirrus_addr_mask
;
626 memory_region_set_dirty(&s
->vga
.vram
, off_cur
, off_cur_end
- off_cur
);
627 off_begin
+= off_pitch
;
631 static int cirrus_bitblt_common_patterncopy(CirrusVGAState
* s
,
636 dst
= s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
);
641 (*s
->cirrus_rop
) (s
, dst
, src
,
642 s
->cirrus_blt_dstpitch
, 0,
643 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
644 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
645 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
646 s
->cirrus_blt_height
);
652 static int cirrus_bitblt_solidfill(CirrusVGAState
*s
, int blt_rop
)
654 cirrus_fill_t rop_func
;
658 rop_func
= cirrus_fill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
659 rop_func(s
, s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
660 s
->cirrus_blt_dstpitch
,
661 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
662 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
663 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
664 s
->cirrus_blt_height
);
665 cirrus_bitblt_reset(s
);
669 /***************************************
671 * bitblt (video-to-video)
673 ***************************************/
675 static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState
* s
)
677 return cirrus_bitblt_common_patterncopy(s
,
678 s
->vga
.vram_ptr
+ ((s
->cirrus_blt_srcaddr
& ~7) &
679 s
->cirrus_addr_mask
));
682 static void cirrus_do_copy(CirrusVGAState
*s
, int dst
, int src
, int w
, int h
)
689 /* make sure to only copy if it's a plain copy ROP */
690 if (*s
->cirrus_rop
== cirrus_bitblt_rop_fwd_src
||
691 *s
->cirrus_rop
== cirrus_bitblt_rop_bkwd_src
) {
695 depth
= s
->vga
.get_bpp(&s
->vga
) / 8;
696 s
->vga
.get_resolution(&s
->vga
, &width
, &height
);
699 sx
= (src
% ABS(s
->cirrus_blt_srcpitch
)) / depth
;
700 sy
= (src
/ ABS(s
->cirrus_blt_srcpitch
));
701 dx
= (dst
% ABS(s
->cirrus_blt_dstpitch
)) / depth
;
702 dy
= (dst
/ ABS(s
->cirrus_blt_dstpitch
));
704 /* normalize width */
707 /* if we're doing a backward copy, we have to adjust
708 our x/y to be the upper left corner (instead of the lower
710 if (s
->cirrus_blt_dstpitch
< 0) {
711 sx
-= (s
->cirrus_blt_width
/ depth
) - 1;
712 dx
-= (s
->cirrus_blt_width
/ depth
) - 1;
713 sy
-= s
->cirrus_blt_height
- 1;
714 dy
-= s
->cirrus_blt_height
- 1;
717 /* are we in the visible portion of memory? */
718 if (sx
>= 0 && sy
>= 0 && dx
>= 0 && dy
>= 0 &&
719 (sx
+ w
) <= width
&& (sy
+ h
) <= height
&&
720 (dx
+ w
) <= width
&& (dy
+ h
) <= height
) {
725 /* we have to flush all pending changes so that the copy
726 is generated at the appropriate moment in time */
728 graphic_hw_update(s
->vga
.con
);
730 (*s
->cirrus_rop
) (s
, s
->vga
.vram_ptr
+
731 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
733 (s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
),
734 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_srcpitch
,
735 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
738 qemu_console_copy(s
->vga
.con
,
740 s
->cirrus_blt_width
/ depth
,
741 s
->cirrus_blt_height
);
744 /* we don't have to notify the display that this portion has
745 changed since qemu_console_copy implies this */
747 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
748 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
749 s
->cirrus_blt_height
);
752 static int cirrus_bitblt_videotovideo_copy(CirrusVGAState
* s
)
757 cirrus_do_copy(s
, s
->cirrus_blt_dstaddr
- s
->vga
.start_addr
,
758 s
->cirrus_blt_srcaddr
- s
->vga
.start_addr
,
759 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
764 /***************************************
766 * bitblt (cpu-to-video)
768 ***************************************/
770 static void cirrus_bitblt_cputovideo_next(CirrusVGAState
* s
)
775 if (s
->cirrus_srccounter
> 0) {
776 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
777 cirrus_bitblt_common_patterncopy(s
, s
->cirrus_bltbuf
);
779 s
->cirrus_srccounter
= 0;
780 cirrus_bitblt_reset(s
);
782 /* at least one scan line */
784 (*s
->cirrus_rop
)(s
, s
->vga
.vram_ptr
+
785 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
786 s
->cirrus_bltbuf
, 0, 0, s
->cirrus_blt_width
, 1);
787 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
, 0,
788 s
->cirrus_blt_width
, 1);
789 s
->cirrus_blt_dstaddr
+= s
->cirrus_blt_dstpitch
;
790 s
->cirrus_srccounter
-= s
->cirrus_blt_srcpitch
;
791 if (s
->cirrus_srccounter
<= 0)
793 /* more bytes than needed can be transferred because of
794 word alignment, so we keep them for the next line */
795 /* XXX: keep alignment to speed up transfer */
796 end_ptr
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
797 copy_count
= s
->cirrus_srcptr_end
- end_ptr
;
798 memmove(s
->cirrus_bltbuf
, end_ptr
, copy_count
);
799 s
->cirrus_srcptr
= s
->cirrus_bltbuf
+ copy_count
;
800 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
801 } while (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
);
806 /***************************************
810 ***************************************/
812 static void cirrus_bitblt_reset(CirrusVGAState
* s
)
817 ~(CIRRUS_BLT_START
| CIRRUS_BLT_BUSY
| CIRRUS_BLT_FIFOUSED
);
818 need_update
= s
->cirrus_srcptr
!= &s
->cirrus_bltbuf
[0]
819 || s
->cirrus_srcptr_end
!= &s
->cirrus_bltbuf
[0];
820 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
821 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
822 s
->cirrus_srccounter
= 0;
825 cirrus_update_memory_access(s
);
828 static int cirrus_bitblt_cputovideo(CirrusVGAState
* s
)
832 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_MEMSYSSRC
;
833 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
834 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
836 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
837 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
838 s
->cirrus_blt_srcpitch
= 8;
840 /* XXX: check for 24 bpp */
841 s
->cirrus_blt_srcpitch
= 8 * 8 * s
->cirrus_blt_pixelwidth
;
843 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
;
845 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
846 w
= s
->cirrus_blt_width
/ s
->cirrus_blt_pixelwidth
;
847 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_DWORDGRANULARITY
)
848 s
->cirrus_blt_srcpitch
= ((w
+ 31) >> 5);
850 s
->cirrus_blt_srcpitch
= ((w
+ 7) >> 3);
852 /* always align input size to 32 bits */
853 s
->cirrus_blt_srcpitch
= (s
->cirrus_blt_width
+ 3) & ~3;
855 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
* s
->cirrus_blt_height
;
857 s
->cirrus_srcptr
= s
->cirrus_bltbuf
;
858 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
859 cirrus_update_memory_access(s
);
863 static int cirrus_bitblt_videotocpu(CirrusVGAState
* s
)
867 printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
872 static int cirrus_bitblt_videotovideo(CirrusVGAState
* s
)
876 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
877 ret
= cirrus_bitblt_videotovideo_patterncopy(s
);
879 ret
= cirrus_bitblt_videotovideo_copy(s
);
882 cirrus_bitblt_reset(s
);
886 static void cirrus_bitblt_start(CirrusVGAState
* s
)
890 s
->vga
.gr
[0x31] |= CIRRUS_BLT_BUSY
;
892 s
->cirrus_blt_width
= (s
->vga
.gr
[0x20] | (s
->vga
.gr
[0x21] << 8)) + 1;
893 s
->cirrus_blt_height
= (s
->vga
.gr
[0x22] | (s
->vga
.gr
[0x23] << 8)) + 1;
894 s
->cirrus_blt_dstpitch
= (s
->vga
.gr
[0x24] | (s
->vga
.gr
[0x25] << 8));
895 s
->cirrus_blt_srcpitch
= (s
->vga
.gr
[0x26] | (s
->vga
.gr
[0x27] << 8));
896 s
->cirrus_blt_dstaddr
=
897 (s
->vga
.gr
[0x28] | (s
->vga
.gr
[0x29] << 8) | (s
->vga
.gr
[0x2a] << 16));
898 s
->cirrus_blt_srcaddr
=
899 (s
->vga
.gr
[0x2c] | (s
->vga
.gr
[0x2d] << 8) | (s
->vga
.gr
[0x2e] << 16));
900 s
->cirrus_blt_mode
= s
->vga
.gr
[0x30];
901 s
->cirrus_blt_modeext
= s
->vga
.gr
[0x33];
902 blt_rop
= s
->vga
.gr
[0x32];
905 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",
908 s
->cirrus_blt_modeext
,
910 s
->cirrus_blt_height
,
911 s
->cirrus_blt_dstpitch
,
912 s
->cirrus_blt_srcpitch
,
913 s
->cirrus_blt_dstaddr
,
914 s
->cirrus_blt_srcaddr
,
918 switch (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PIXELWIDTHMASK
) {
919 case CIRRUS_BLTMODE_PIXELWIDTH8
:
920 s
->cirrus_blt_pixelwidth
= 1;
922 case CIRRUS_BLTMODE_PIXELWIDTH16
:
923 s
->cirrus_blt_pixelwidth
= 2;
925 case CIRRUS_BLTMODE_PIXELWIDTH24
:
926 s
->cirrus_blt_pixelwidth
= 3;
928 case CIRRUS_BLTMODE_PIXELWIDTH32
:
929 s
->cirrus_blt_pixelwidth
= 4;
933 printf("cirrus: bitblt - pixel width is unknown\n");
937 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_PIXELWIDTHMASK
;
940 cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSSRC
|
941 CIRRUS_BLTMODE_MEMSYSDEST
))
942 == (CIRRUS_BLTMODE_MEMSYSSRC
| CIRRUS_BLTMODE_MEMSYSDEST
)) {
944 printf("cirrus: bitblt - memory-to-memory copy is requested\n");
949 if ((s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_SOLIDFILL
) &&
950 (s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSDEST
|
951 CIRRUS_BLTMODE_TRANSPARENTCOMP
|
952 CIRRUS_BLTMODE_PATTERNCOPY
|
953 CIRRUS_BLTMODE_COLOREXPAND
)) ==
954 (CIRRUS_BLTMODE_PATTERNCOPY
| CIRRUS_BLTMODE_COLOREXPAND
)) {
955 cirrus_bitblt_fgcol(s
);
956 cirrus_bitblt_solidfill(s
, blt_rop
);
958 if ((s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_COLOREXPAND
|
959 CIRRUS_BLTMODE_PATTERNCOPY
)) ==
960 CIRRUS_BLTMODE_COLOREXPAND
) {
962 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
963 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
964 cirrus_bitblt_bgcol(s
);
966 cirrus_bitblt_fgcol(s
);
967 s
->cirrus_rop
= cirrus_colorexpand_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
969 cirrus_bitblt_fgcol(s
);
970 cirrus_bitblt_bgcol(s
);
971 s
->cirrus_rop
= cirrus_colorexpand
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
973 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
974 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
975 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
976 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
977 cirrus_bitblt_bgcol(s
);
979 cirrus_bitblt_fgcol(s
);
980 s
->cirrus_rop
= cirrus_colorexpand_pattern_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
982 cirrus_bitblt_fgcol(s
);
983 cirrus_bitblt_bgcol(s
);
984 s
->cirrus_rop
= cirrus_colorexpand_pattern
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
987 s
->cirrus_rop
= cirrus_patternfill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
990 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
991 if (s
->cirrus_blt_pixelwidth
> 2) {
992 printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
995 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
996 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
997 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
998 s
->cirrus_rop
= cirrus_bkwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1000 s
->cirrus_rop
= cirrus_fwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1003 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1004 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1005 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1006 s
->cirrus_rop
= cirrus_bkwd_rop
[rop_to_index
[blt_rop
]];
1008 s
->cirrus_rop
= cirrus_fwd_rop
[rop_to_index
[blt_rop
]];
1012 // setup bitblt engine.
1013 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSSRC
) {
1014 if (!cirrus_bitblt_cputovideo(s
))
1016 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSDEST
) {
1017 if (!cirrus_bitblt_videotocpu(s
))
1020 if (!cirrus_bitblt_videotovideo(s
))
1026 cirrus_bitblt_reset(s
);
1029 static void cirrus_write_bitblt(CirrusVGAState
* s
, unsigned reg_value
)
1033 old_value
= s
->vga
.gr
[0x31];
1034 s
->vga
.gr
[0x31] = reg_value
;
1036 if (((old_value
& CIRRUS_BLT_RESET
) != 0) &&
1037 ((reg_value
& CIRRUS_BLT_RESET
) == 0)) {
1038 cirrus_bitblt_reset(s
);
1039 } else if (((old_value
& CIRRUS_BLT_START
) == 0) &&
1040 ((reg_value
& CIRRUS_BLT_START
) != 0)) {
1041 cirrus_bitblt_start(s
);
1046 /***************************************
1050 ***************************************/
1052 static void cirrus_get_offsets(VGACommonState
*s1
,
1053 uint32_t *pline_offset
,
1054 uint32_t *pstart_addr
,
1055 uint32_t *pline_compare
)
1057 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1058 uint32_t start_addr
, line_offset
, line_compare
;
1060 line_offset
= s
->vga
.cr
[0x13]
1061 | ((s
->vga
.cr
[0x1b] & 0x10) << 4);
1063 *pline_offset
= line_offset
;
1065 start_addr
= (s
->vga
.cr
[0x0c] << 8)
1067 | ((s
->vga
.cr
[0x1b] & 0x01) << 16)
1068 | ((s
->vga
.cr
[0x1b] & 0x0c) << 15)
1069 | ((s
->vga
.cr
[0x1d] & 0x80) << 12);
1070 *pstart_addr
= start_addr
;
1072 line_compare
= s
->vga
.cr
[0x18] |
1073 ((s
->vga
.cr
[0x07] & 0x10) << 4) |
1074 ((s
->vga
.cr
[0x09] & 0x40) << 3);
1075 *pline_compare
= line_compare
;
1078 static uint32_t cirrus_get_bpp16_depth(CirrusVGAState
* s
)
1082 switch (s
->cirrus_hidden_dac_data
& 0xf) {
1085 break; /* Sierra HiColor */
1088 break; /* XGA HiColor */
1091 printf("cirrus: invalid DAC value %x in 16bpp\n",
1092 (s
->cirrus_hidden_dac_data
& 0xf));
1100 static int cirrus_get_bpp(VGACommonState
*s1
)
1102 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1105 if ((s
->vga
.sr
[0x07] & 0x01) != 0) {
1107 switch (s
->vga
.sr
[0x07] & CIRRUS_SR7_BPP_MASK
) {
1108 case CIRRUS_SR7_BPP_8
:
1111 case CIRRUS_SR7_BPP_16_DOUBLEVCLK
:
1112 ret
= cirrus_get_bpp16_depth(s
);
1114 case CIRRUS_SR7_BPP_24
:
1117 case CIRRUS_SR7_BPP_16
:
1118 ret
= cirrus_get_bpp16_depth(s
);
1120 case CIRRUS_SR7_BPP_32
:
1125 printf("cirrus: unknown bpp - sr7=%x\n", s
->vga
.sr
[0x7]);
1138 static void cirrus_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1142 width
= (s
->cr
[0x01] + 1) * 8;
1143 height
= s
->cr
[0x12] |
1144 ((s
->cr
[0x07] & 0x02) << 7) |
1145 ((s
->cr
[0x07] & 0x40) << 3);
1146 height
= (height
+ 1);
1147 /* interlace support */
1148 if (s
->cr
[0x1a] & 0x01)
1149 height
= height
* 2;
1154 /***************************************
1158 ***************************************/
1160 static void cirrus_update_bank_ptr(CirrusVGAState
* s
, unsigned bank_index
)
1165 if ((s
->vga
.gr
[0x0b] & 0x01) != 0) /* dual bank */
1166 offset
= s
->vga
.gr
[0x09 + bank_index
];
1167 else /* single bank */
1168 offset
= s
->vga
.gr
[0x09];
1170 if ((s
->vga
.gr
[0x0b] & 0x20) != 0)
1175 if (s
->real_vram_size
<= offset
)
1178 limit
= s
->real_vram_size
- offset
;
1180 if (((s
->vga
.gr
[0x0b] & 0x01) == 0) && (bank_index
!= 0)) {
1181 if (limit
> 0x8000) {
1190 s
->cirrus_bank_base
[bank_index
] = offset
;
1191 s
->cirrus_bank_limit
[bank_index
] = limit
;
1193 s
->cirrus_bank_base
[bank_index
] = 0;
1194 s
->cirrus_bank_limit
[bank_index
] = 0;
1198 /***************************************
1200 * I/O access between 0x3c4-0x3c5
1202 ***************************************/
1204 static int cirrus_vga_read_sr(CirrusVGAState
* s
)
1206 switch (s
->vga
.sr_index
) {
1207 case 0x00: // Standard VGA
1208 case 0x01: // Standard VGA
1209 case 0x02: // Standard VGA
1210 case 0x03: // Standard VGA
1211 case 0x04: // Standard VGA
1212 return s
->vga
.sr
[s
->vga
.sr_index
];
1213 case 0x06: // Unlock Cirrus extensions
1214 return s
->vga
.sr
[s
->vga
.sr_index
];
1218 case 0x70: // Graphics Cursor X
1222 case 0xf0: // Graphics Cursor X
1223 return s
->vga
.sr
[0x10];
1227 case 0x71: // Graphics Cursor Y
1231 case 0xf1: // Graphics Cursor Y
1232 return s
->vga
.sr
[0x11];
1234 case 0x07: // Extended Sequencer Mode
1235 case 0x08: // EEPROM Control
1236 case 0x09: // Scratch Register 0
1237 case 0x0a: // Scratch Register 1
1238 case 0x0b: // VCLK 0
1239 case 0x0c: // VCLK 1
1240 case 0x0d: // VCLK 2
1241 case 0x0e: // VCLK 3
1242 case 0x0f: // DRAM Control
1243 case 0x12: // Graphics Cursor Attribute
1244 case 0x13: // Graphics Cursor Pattern Address
1245 case 0x14: // Scratch Register 2
1246 case 0x15: // Scratch Register 3
1247 case 0x16: // Performance Tuning Register
1248 case 0x17: // Configuration Readback and Extended Control
1249 case 0x18: // Signature Generator Control
1250 case 0x19: // Signal Generator Result
1251 case 0x1a: // Signal Generator Result
1252 case 0x1b: // VCLK 0 Denominator & Post
1253 case 0x1c: // VCLK 1 Denominator & Post
1254 case 0x1d: // VCLK 2 Denominator & Post
1255 case 0x1e: // VCLK 3 Denominator & Post
1256 case 0x1f: // BIOS Write Enable and MCLK select
1258 printf("cirrus: handled inport sr_index %02x\n", s
->vga
.sr_index
);
1260 return s
->vga
.sr
[s
->vga
.sr_index
];
1263 printf("cirrus: inport sr_index %02x\n", s
->vga
.sr_index
);
1270 static void cirrus_vga_write_sr(CirrusVGAState
* s
, uint32_t val
)
1272 switch (s
->vga
.sr_index
) {
1273 case 0x00: // Standard VGA
1274 case 0x01: // Standard VGA
1275 case 0x02: // Standard VGA
1276 case 0x03: // Standard VGA
1277 case 0x04: // Standard VGA
1278 s
->vga
.sr
[s
->vga
.sr_index
] = val
& sr_mask
[s
->vga
.sr_index
];
1279 if (s
->vga
.sr_index
== 1)
1280 s
->vga
.update_retrace_info(&s
->vga
);
1282 case 0x06: // Unlock Cirrus extensions
1285 s
->vga
.sr
[s
->vga
.sr_index
] = 0x12;
1287 s
->vga
.sr
[s
->vga
.sr_index
] = 0x0f;
1293 case 0x70: // Graphics Cursor X
1297 case 0xf0: // Graphics Cursor X
1298 s
->vga
.sr
[0x10] = val
;
1299 s
->hw_cursor_x
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1304 case 0x71: // Graphics Cursor Y
1308 case 0xf1: // Graphics Cursor Y
1309 s
->vga
.sr
[0x11] = val
;
1310 s
->hw_cursor_y
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1312 case 0x07: // Extended Sequencer Mode
1313 cirrus_update_memory_access(s
);
1314 case 0x08: // EEPROM Control
1315 case 0x09: // Scratch Register 0
1316 case 0x0a: // Scratch Register 1
1317 case 0x0b: // VCLK 0
1318 case 0x0c: // VCLK 1
1319 case 0x0d: // VCLK 2
1320 case 0x0e: // VCLK 3
1321 case 0x0f: // DRAM Control
1322 case 0x12: // Graphics Cursor Attribute
1323 case 0x13: // Graphics Cursor Pattern Address
1324 case 0x14: // Scratch Register 2
1325 case 0x15: // Scratch Register 3
1326 case 0x16: // Performance Tuning Register
1327 case 0x18: // Signature Generator Control
1328 case 0x19: // Signature Generator Result
1329 case 0x1a: // Signature Generator Result
1330 case 0x1b: // VCLK 0 Denominator & Post
1331 case 0x1c: // VCLK 1 Denominator & Post
1332 case 0x1d: // VCLK 2 Denominator & Post
1333 case 0x1e: // VCLK 3 Denominator & Post
1334 case 0x1f: // BIOS Write Enable and MCLK select
1335 s
->vga
.sr
[s
->vga
.sr_index
] = val
;
1337 printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1338 s
->vga
.sr_index
, val
);
1341 case 0x17: // Configuration Readback and Extended Control
1342 s
->vga
.sr
[s
->vga
.sr_index
] = (s
->vga
.sr
[s
->vga
.sr_index
] & 0x38)
1344 cirrus_update_memory_access(s
);
1348 printf("cirrus: outport sr_index %02x, sr_value %02x\n",
1349 s
->vga
.sr_index
, val
);
1355 /***************************************
1357 * I/O access at 0x3c6
1359 ***************************************/
1361 static int cirrus_read_hidden_dac(CirrusVGAState
* s
)
1363 if (++s
->cirrus_hidden_dac_lockindex
== 5) {
1364 s
->cirrus_hidden_dac_lockindex
= 0;
1365 return s
->cirrus_hidden_dac_data
;
1370 static void cirrus_write_hidden_dac(CirrusVGAState
* s
, int reg_value
)
1372 if (s
->cirrus_hidden_dac_lockindex
== 4) {
1373 s
->cirrus_hidden_dac_data
= reg_value
;
1374 #if defined(DEBUG_CIRRUS)
1375 printf("cirrus: outport hidden DAC, value %02x\n", reg_value
);
1378 s
->cirrus_hidden_dac_lockindex
= 0;
1381 /***************************************
1383 * I/O access at 0x3c9
1385 ***************************************/
1387 static int cirrus_vga_read_palette(CirrusVGAState
* s
)
1391 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1392 val
= s
->cirrus_hidden_palette
[(s
->vga
.dac_read_index
& 0x0f) * 3 +
1393 s
->vga
.dac_sub_index
];
1395 val
= s
->vga
.palette
[s
->vga
.dac_read_index
* 3 + s
->vga
.dac_sub_index
];
1397 if (++s
->vga
.dac_sub_index
== 3) {
1398 s
->vga
.dac_sub_index
= 0;
1399 s
->vga
.dac_read_index
++;
1404 static void cirrus_vga_write_palette(CirrusVGAState
* s
, int reg_value
)
1406 s
->vga
.dac_cache
[s
->vga
.dac_sub_index
] = reg_value
;
1407 if (++s
->vga
.dac_sub_index
== 3) {
1408 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1409 memcpy(&s
->cirrus_hidden_palette
[(s
->vga
.dac_write_index
& 0x0f) * 3],
1410 s
->vga
.dac_cache
, 3);
1412 memcpy(&s
->vga
.palette
[s
->vga
.dac_write_index
* 3], s
->vga
.dac_cache
, 3);
1414 /* XXX update cursor */
1415 s
->vga
.dac_sub_index
= 0;
1416 s
->vga
.dac_write_index
++;
1420 /***************************************
1422 * I/O access between 0x3ce-0x3cf
1424 ***************************************/
1426 static int cirrus_vga_read_gr(CirrusVGAState
* s
, unsigned reg_index
)
1428 switch (reg_index
) {
1429 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1430 return s
->cirrus_shadow_gr0
;
1431 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1432 return s
->cirrus_shadow_gr1
;
1433 case 0x02: // Standard VGA
1434 case 0x03: // Standard VGA
1435 case 0x04: // Standard VGA
1436 case 0x06: // Standard VGA
1437 case 0x07: // Standard VGA
1438 case 0x08: // Standard VGA
1439 return s
->vga
.gr
[s
->vga
.gr_index
];
1440 case 0x05: // Standard VGA, Cirrus extended mode
1445 if (reg_index
< 0x3a) {
1446 return s
->vga
.gr
[reg_index
];
1449 printf("cirrus: inport gr_index %02x\n", reg_index
);
1456 cirrus_vga_write_gr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1458 #if defined(DEBUG_BITBLT) && 0
1459 printf("gr%02x: %02x\n", reg_index
, reg_value
);
1461 switch (reg_index
) {
1462 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1463 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1464 s
->cirrus_shadow_gr0
= reg_value
;
1466 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1467 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1468 s
->cirrus_shadow_gr1
= reg_value
;
1470 case 0x02: // Standard VGA
1471 case 0x03: // Standard VGA
1472 case 0x04: // Standard VGA
1473 case 0x06: // Standard VGA
1474 case 0x07: // Standard VGA
1475 case 0x08: // Standard VGA
1476 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1478 case 0x05: // Standard VGA, Cirrus extended mode
1479 s
->vga
.gr
[reg_index
] = reg_value
& 0x7f;
1480 cirrus_update_memory_access(s
);
1482 case 0x09: // bank offset #0
1483 case 0x0A: // bank offset #1
1484 s
->vga
.gr
[reg_index
] = reg_value
;
1485 cirrus_update_bank_ptr(s
, 0);
1486 cirrus_update_bank_ptr(s
, 1);
1487 cirrus_update_memory_access(s
);
1490 s
->vga
.gr
[reg_index
] = reg_value
;
1491 cirrus_update_bank_ptr(s
, 0);
1492 cirrus_update_bank_ptr(s
, 1);
1493 cirrus_update_memory_access(s
);
1495 case 0x10: // BGCOLOR 0x0000ff00
1496 case 0x11: // FGCOLOR 0x0000ff00
1497 case 0x12: // BGCOLOR 0x00ff0000
1498 case 0x13: // FGCOLOR 0x00ff0000
1499 case 0x14: // BGCOLOR 0xff000000
1500 case 0x15: // FGCOLOR 0xff000000
1501 case 0x20: // BLT WIDTH 0x0000ff
1502 case 0x22: // BLT HEIGHT 0x0000ff
1503 case 0x24: // BLT DEST PITCH 0x0000ff
1504 case 0x26: // BLT SRC PITCH 0x0000ff
1505 case 0x28: // BLT DEST ADDR 0x0000ff
1506 case 0x29: // BLT DEST ADDR 0x00ff00
1507 case 0x2c: // BLT SRC ADDR 0x0000ff
1508 case 0x2d: // BLT SRC ADDR 0x00ff00
1509 case 0x2f: // BLT WRITEMASK
1510 case 0x30: // BLT MODE
1511 case 0x32: // RASTER OP
1512 case 0x33: // BLT MODEEXT
1513 case 0x34: // BLT TRANSPARENT COLOR 0x00ff
1514 case 0x35: // BLT TRANSPARENT COLOR 0xff00
1515 case 0x38: // BLT TRANSPARENT COLOR MASK 0x00ff
1516 case 0x39: // BLT TRANSPARENT COLOR MASK 0xff00
1517 s
->vga
.gr
[reg_index
] = reg_value
;
1519 case 0x21: // BLT WIDTH 0x001f00
1520 case 0x23: // BLT HEIGHT 0x001f00
1521 case 0x25: // BLT DEST PITCH 0x001f00
1522 case 0x27: // BLT SRC PITCH 0x001f00
1523 s
->vga
.gr
[reg_index
] = reg_value
& 0x1f;
1525 case 0x2a: // BLT DEST ADDR 0x3f0000
1526 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1527 /* if auto start mode, starts bit blt now */
1528 if (s
->vga
.gr
[0x31] & CIRRUS_BLT_AUTOSTART
) {
1529 cirrus_bitblt_start(s
);
1532 case 0x2e: // BLT SRC ADDR 0x3f0000
1533 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1535 case 0x31: // BLT STATUS/START
1536 cirrus_write_bitblt(s
, reg_value
);
1540 printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index
,
1547 /***************************************
1549 * I/O access between 0x3d4-0x3d5
1551 ***************************************/
1553 static int cirrus_vga_read_cr(CirrusVGAState
* s
, unsigned reg_index
)
1555 switch (reg_index
) {
1556 case 0x00: // Standard VGA
1557 case 0x01: // Standard VGA
1558 case 0x02: // Standard VGA
1559 case 0x03: // Standard VGA
1560 case 0x04: // Standard VGA
1561 case 0x05: // Standard VGA
1562 case 0x06: // Standard VGA
1563 case 0x07: // Standard VGA
1564 case 0x08: // Standard VGA
1565 case 0x09: // Standard VGA
1566 case 0x0a: // Standard VGA
1567 case 0x0b: // Standard VGA
1568 case 0x0c: // Standard VGA
1569 case 0x0d: // Standard VGA
1570 case 0x0e: // Standard VGA
1571 case 0x0f: // Standard VGA
1572 case 0x10: // Standard VGA
1573 case 0x11: // Standard VGA
1574 case 0x12: // Standard VGA
1575 case 0x13: // Standard VGA
1576 case 0x14: // Standard VGA
1577 case 0x15: // Standard VGA
1578 case 0x16: // Standard VGA
1579 case 0x17: // Standard VGA
1580 case 0x18: // Standard VGA
1581 return s
->vga
.cr
[s
->vga
.cr_index
];
1582 case 0x24: // Attribute Controller Toggle Readback (R)
1583 return (s
->vga
.ar_flip_flop
<< 7);
1584 case 0x19: // Interlace End
1585 case 0x1a: // Miscellaneous Control
1586 case 0x1b: // Extended Display Control
1587 case 0x1c: // Sync Adjust and Genlock
1588 case 0x1d: // Overlay Extended Control
1589 case 0x22: // Graphics Data Latches Readback (R)
1590 case 0x25: // Part Status
1591 case 0x27: // Part ID (R)
1592 return s
->vga
.cr
[s
->vga
.cr_index
];
1593 case 0x26: // Attribute Controller Index Readback (R)
1594 return s
->vga
.ar_index
& 0x3f;
1598 printf("cirrus: inport cr_index %02x\n", reg_index
);
1604 static void cirrus_vga_write_cr(CirrusVGAState
* s
, int reg_value
)
1606 switch (s
->vga
.cr_index
) {
1607 case 0x00: // Standard VGA
1608 case 0x01: // Standard VGA
1609 case 0x02: // Standard VGA
1610 case 0x03: // Standard VGA
1611 case 0x04: // Standard VGA
1612 case 0x05: // Standard VGA
1613 case 0x06: // Standard VGA
1614 case 0x07: // Standard VGA
1615 case 0x08: // Standard VGA
1616 case 0x09: // Standard VGA
1617 case 0x0a: // Standard VGA
1618 case 0x0b: // Standard VGA
1619 case 0x0c: // Standard VGA
1620 case 0x0d: // Standard VGA
1621 case 0x0e: // Standard VGA
1622 case 0x0f: // Standard VGA
1623 case 0x10: // Standard VGA
1624 case 0x11: // Standard VGA
1625 case 0x12: // Standard VGA
1626 case 0x13: // Standard VGA
1627 case 0x14: // Standard VGA
1628 case 0x15: // Standard VGA
1629 case 0x16: // Standard VGA
1630 case 0x17: // Standard VGA
1631 case 0x18: // Standard VGA
1632 /* handle CR0-7 protection */
1633 if ((s
->vga
.cr
[0x11] & 0x80) && s
->vga
.cr_index
<= 7) {
1634 /* can always write bit 4 of CR7 */
1635 if (s
->vga
.cr_index
== 7)
1636 s
->vga
.cr
[7] = (s
->vga
.cr
[7] & ~0x10) | (reg_value
& 0x10);
1639 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1640 switch(s
->vga
.cr_index
) {
1648 s
->vga
.update_retrace_info(&s
->vga
);
1652 case 0x19: // Interlace End
1653 case 0x1a: // Miscellaneous Control
1654 case 0x1b: // Extended Display Control
1655 case 0x1c: // Sync Adjust and Genlock
1656 case 0x1d: // Overlay Extended Control
1657 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1659 printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1660 s
->vga
.cr_index
, reg_value
);
1663 case 0x22: // Graphics Data Latches Readback (R)
1664 case 0x24: // Attribute Controller Toggle Readback (R)
1665 case 0x26: // Attribute Controller Index Readback (R)
1666 case 0x27: // Part ID (R)
1668 case 0x25: // Part Status
1671 printf("cirrus: outport cr_index %02x, cr_value %02x\n",
1672 s
->vga
.cr_index
, reg_value
);
1678 /***************************************
1680 * memory-mapped I/O (bitblt)
1682 ***************************************/
1684 static uint8_t cirrus_mmio_blt_read(CirrusVGAState
* s
, unsigned address
)
1689 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1690 value
= cirrus_vga_read_gr(s
, 0x00);
1692 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1693 value
= cirrus_vga_read_gr(s
, 0x10);
1695 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1696 value
= cirrus_vga_read_gr(s
, 0x12);
1698 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1699 value
= cirrus_vga_read_gr(s
, 0x14);
1701 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1702 value
= cirrus_vga_read_gr(s
, 0x01);
1704 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1705 value
= cirrus_vga_read_gr(s
, 0x11);
1707 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1708 value
= cirrus_vga_read_gr(s
, 0x13);
1710 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1711 value
= cirrus_vga_read_gr(s
, 0x15);
1713 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1714 value
= cirrus_vga_read_gr(s
, 0x20);
1716 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1717 value
= cirrus_vga_read_gr(s
, 0x21);
1719 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1720 value
= cirrus_vga_read_gr(s
, 0x22);
1722 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1723 value
= cirrus_vga_read_gr(s
, 0x23);
1725 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1726 value
= cirrus_vga_read_gr(s
, 0x24);
1728 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1729 value
= cirrus_vga_read_gr(s
, 0x25);
1731 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1732 value
= cirrus_vga_read_gr(s
, 0x26);
1734 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1735 value
= cirrus_vga_read_gr(s
, 0x27);
1737 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1738 value
= cirrus_vga_read_gr(s
, 0x28);
1740 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1741 value
= cirrus_vga_read_gr(s
, 0x29);
1743 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1744 value
= cirrus_vga_read_gr(s
, 0x2a);
1746 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1747 value
= cirrus_vga_read_gr(s
, 0x2c);
1749 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1750 value
= cirrus_vga_read_gr(s
, 0x2d);
1752 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1753 value
= cirrus_vga_read_gr(s
, 0x2e);
1755 case CIRRUS_MMIO_BLTWRITEMASK
:
1756 value
= cirrus_vga_read_gr(s
, 0x2f);
1758 case CIRRUS_MMIO_BLTMODE
:
1759 value
= cirrus_vga_read_gr(s
, 0x30);
1761 case CIRRUS_MMIO_BLTROP
:
1762 value
= cirrus_vga_read_gr(s
, 0x32);
1764 case CIRRUS_MMIO_BLTMODEEXT
:
1765 value
= cirrus_vga_read_gr(s
, 0x33);
1767 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1768 value
= cirrus_vga_read_gr(s
, 0x34);
1770 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1771 value
= cirrus_vga_read_gr(s
, 0x35);
1773 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1774 value
= cirrus_vga_read_gr(s
, 0x38);
1776 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1777 value
= cirrus_vga_read_gr(s
, 0x39);
1779 case CIRRUS_MMIO_BLTSTATUS
:
1780 value
= cirrus_vga_read_gr(s
, 0x31);
1784 printf("cirrus: mmio read - address 0x%04x\n", address
);
1789 return (uint8_t) value
;
1792 static void cirrus_mmio_blt_write(CirrusVGAState
* s
, unsigned address
,
1796 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1797 cirrus_vga_write_gr(s
, 0x00, value
);
1799 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1800 cirrus_vga_write_gr(s
, 0x10, value
);
1802 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1803 cirrus_vga_write_gr(s
, 0x12, value
);
1805 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1806 cirrus_vga_write_gr(s
, 0x14, value
);
1808 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1809 cirrus_vga_write_gr(s
, 0x01, value
);
1811 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1812 cirrus_vga_write_gr(s
, 0x11, value
);
1814 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1815 cirrus_vga_write_gr(s
, 0x13, value
);
1817 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1818 cirrus_vga_write_gr(s
, 0x15, value
);
1820 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1821 cirrus_vga_write_gr(s
, 0x20, value
);
1823 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1824 cirrus_vga_write_gr(s
, 0x21, value
);
1826 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1827 cirrus_vga_write_gr(s
, 0x22, value
);
1829 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1830 cirrus_vga_write_gr(s
, 0x23, value
);
1832 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1833 cirrus_vga_write_gr(s
, 0x24, value
);
1835 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1836 cirrus_vga_write_gr(s
, 0x25, value
);
1838 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1839 cirrus_vga_write_gr(s
, 0x26, value
);
1841 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1842 cirrus_vga_write_gr(s
, 0x27, value
);
1844 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1845 cirrus_vga_write_gr(s
, 0x28, value
);
1847 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1848 cirrus_vga_write_gr(s
, 0x29, value
);
1850 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1851 cirrus_vga_write_gr(s
, 0x2a, value
);
1853 case (CIRRUS_MMIO_BLTDESTADDR
+ 3):
1856 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1857 cirrus_vga_write_gr(s
, 0x2c, value
);
1859 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1860 cirrus_vga_write_gr(s
, 0x2d, value
);
1862 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1863 cirrus_vga_write_gr(s
, 0x2e, value
);
1865 case CIRRUS_MMIO_BLTWRITEMASK
:
1866 cirrus_vga_write_gr(s
, 0x2f, value
);
1868 case CIRRUS_MMIO_BLTMODE
:
1869 cirrus_vga_write_gr(s
, 0x30, value
);
1871 case CIRRUS_MMIO_BLTROP
:
1872 cirrus_vga_write_gr(s
, 0x32, value
);
1874 case CIRRUS_MMIO_BLTMODEEXT
:
1875 cirrus_vga_write_gr(s
, 0x33, value
);
1877 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1878 cirrus_vga_write_gr(s
, 0x34, value
);
1880 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1881 cirrus_vga_write_gr(s
, 0x35, value
);
1883 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1884 cirrus_vga_write_gr(s
, 0x38, value
);
1886 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1887 cirrus_vga_write_gr(s
, 0x39, value
);
1889 case CIRRUS_MMIO_BLTSTATUS
:
1890 cirrus_vga_write_gr(s
, 0x31, value
);
1894 printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1901 /***************************************
1905 ***************************************/
1907 static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState
* s
,
1913 unsigned val
= mem_value
;
1916 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1917 for (x
= 0; x
< 8; x
++) {
1919 *dst
= s
->cirrus_shadow_gr1
;
1920 } else if (mode
== 5) {
1921 *dst
= s
->cirrus_shadow_gr0
;
1926 memory_region_set_dirty(&s
->vga
.vram
, offset
, 8);
1929 static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState
* s
,
1935 unsigned val
= mem_value
;
1938 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1939 for (x
= 0; x
< 8; x
++) {
1941 *dst
= s
->cirrus_shadow_gr1
;
1942 *(dst
+ 1) = s
->vga
.gr
[0x11];
1943 } else if (mode
== 5) {
1944 *dst
= s
->cirrus_shadow_gr0
;
1945 *(dst
+ 1) = s
->vga
.gr
[0x10];
1950 memory_region_set_dirty(&s
->vga
.vram
, offset
, 16);
1953 /***************************************
1955 * memory access between 0xa0000-0xbffff
1957 ***************************************/
1959 static uint64_t cirrus_vga_mem_read(void *opaque
,
1963 CirrusVGAState
*s
= opaque
;
1964 unsigned bank_index
;
1965 unsigned bank_offset
;
1968 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
1969 return vga_mem_readb(&s
->vga
, addr
);
1972 if (addr
< 0x10000) {
1973 /* XXX handle bitblt */
1975 bank_index
= addr
>> 15;
1976 bank_offset
= addr
& 0x7fff;
1977 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
1978 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
1979 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
1981 } else if (s
->vga
.gr
[0x0B] & 0x02) {
1984 bank_offset
&= s
->cirrus_addr_mask
;
1985 val
= *(s
->vga
.vram_ptr
+ bank_offset
);
1988 } else if (addr
>= 0x18000 && addr
< 0x18100) {
1989 /* memory-mapped I/O */
1991 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
1992 val
= cirrus_mmio_blt_read(s
, addr
& 0xff);
1997 printf("cirrus: mem_readb " TARGET_FMT_plx
"\n", addr
);
2003 static void cirrus_vga_mem_write(void *opaque
,
2008 CirrusVGAState
*s
= opaque
;
2009 unsigned bank_index
;
2010 unsigned bank_offset
;
2013 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
2014 vga_mem_writeb(&s
->vga
, addr
, mem_value
);
2018 if (addr
< 0x10000) {
2019 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2021 *s
->cirrus_srcptr
++ = (uint8_t) mem_value
;
2022 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2023 cirrus_bitblt_cputovideo_next(s
);
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 mode
= s
->vga
.gr
[0x05] & 0x7;
2038 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2039 *(s
->vga
.vram_ptr
+ bank_offset
) = mem_value
;
2040 memory_region_set_dirty(&s
->vga
.vram
, bank_offset
,
2043 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2044 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
,
2048 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
,
2055 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2056 /* memory-mapped I/O */
2057 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
2058 cirrus_mmio_blt_write(s
, addr
& 0xff, mem_value
);
2062 printf("cirrus: mem_writeb " TARGET_FMT_plx
" value %02x\n", addr
,
2068 static const MemoryRegionOps cirrus_vga_mem_ops
= {
2069 .read
= cirrus_vga_mem_read
,
2070 .write
= cirrus_vga_mem_write
,
2071 .endianness
= DEVICE_LITTLE_ENDIAN
,
2073 .min_access_size
= 1,
2074 .max_access_size
= 1,
2078 /***************************************
2082 ***************************************/
2084 static inline void invalidate_cursor1(CirrusVGAState
*s
)
2086 if (s
->last_hw_cursor_size
) {
2087 vga_invalidate_scanlines(&s
->vga
,
2088 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_start
,
2089 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_end
);
2093 static inline void cirrus_cursor_compute_yrange(CirrusVGAState
*s
)
2097 int y
, y_min
, y_max
;
2099 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2100 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2101 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2104 for(y
= 0; y
< 64; y
++) {
2105 content
= ((uint32_t *)src
)[0] |
2106 ((uint32_t *)src
)[1] |
2107 ((uint32_t *)src
)[2] |
2108 ((uint32_t *)src
)[3];
2118 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2121 for(y
= 0; y
< 32; y
++) {
2122 content
= ((uint32_t *)src
)[0] |
2123 ((uint32_t *)(src
+ 128))[0];
2133 if (y_min
> y_max
) {
2134 s
->last_hw_cursor_y_start
= 0;
2135 s
->last_hw_cursor_y_end
= 0;
2137 s
->last_hw_cursor_y_start
= y_min
;
2138 s
->last_hw_cursor_y_end
= y_max
+ 1;
2142 /* NOTE: we do not currently handle the cursor bitmap change, so we
2143 update the cursor only if it moves. */
2144 static void cirrus_cursor_invalidate(VGACommonState
*s1
)
2146 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2149 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
)) {
2152 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
)
2157 /* invalidate last cursor and new cursor if any change */
2158 if (s
->last_hw_cursor_size
!= size
||
2159 s
->last_hw_cursor_x
!= s
->hw_cursor_x
||
2160 s
->last_hw_cursor_y
!= s
->hw_cursor_y
) {
2162 invalidate_cursor1(s
);
2164 s
->last_hw_cursor_size
= size
;
2165 s
->last_hw_cursor_x
= s
->hw_cursor_x
;
2166 s
->last_hw_cursor_y
= s
->hw_cursor_y
;
2167 /* compute the real cursor min and max y */
2168 cirrus_cursor_compute_yrange(s
);
2169 invalidate_cursor1(s
);
2174 #include "cirrus_vga_template.h"
2177 #include "cirrus_vga_template.h"
2180 #include "cirrus_vga_template.h"
2182 static void cirrus_cursor_draw_line(VGACommonState
*s1
, uint8_t *d1
, int scr_y
)
2184 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2185 DisplaySurface
*surface
= qemu_console_surface(s
->vga
.con
);
2186 int w
, h
, bpp
, x1
, x2
, poffset
;
2187 unsigned int color0
, color1
;
2188 const uint8_t *palette
, *src
;
2191 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
))
2193 /* fast test to see if the cursor intersects with the scan line */
2194 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2199 if (scr_y
< s
->hw_cursor_y
||
2200 scr_y
>= (s
->hw_cursor_y
+ h
))
2203 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2204 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2205 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2206 src
+= (scr_y
- s
->hw_cursor_y
) * 16;
2208 content
= ((uint32_t *)src
)[0] |
2209 ((uint32_t *)src
)[1] |
2210 ((uint32_t *)src
)[2] |
2211 ((uint32_t *)src
)[3];
2213 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2214 src
+= (scr_y
- s
->hw_cursor_y
) * 4;
2216 content
= ((uint32_t *)src
)[0] |
2217 ((uint32_t *)(src
+ 128))[0];
2219 /* if nothing to draw, no need to continue */
2224 x1
= s
->hw_cursor_x
;
2225 if (x1
>= s
->vga
.last_scr_width
)
2227 x2
= s
->hw_cursor_x
+ w
;
2228 if (x2
> s
->vga
.last_scr_width
)
2229 x2
= s
->vga
.last_scr_width
;
2231 palette
= s
->cirrus_hidden_palette
;
2232 color0
= s
->vga
.rgb_to_pixel(c6_to_8(palette
[0x0 * 3]),
2233 c6_to_8(palette
[0x0 * 3 + 1]),
2234 c6_to_8(palette
[0x0 * 3 + 2]));
2235 color1
= s
->vga
.rgb_to_pixel(c6_to_8(palette
[0xf * 3]),
2236 c6_to_8(palette
[0xf * 3 + 1]),
2237 c6_to_8(palette
[0xf * 3 + 2]));
2238 bpp
= surface_bytes_per_pixel(surface
);
2240 switch (surface_bits_per_pixel(surface
)) {
2244 vga_draw_cursor_line_8(d1
, src
, poffset
, w
, color0
, color1
, 0xff);
2247 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0x7fff);
2250 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0xffff);
2253 vga_draw_cursor_line_32(d1
, src
, poffset
, w
, color0
, color1
, 0xffffff);
2258 /***************************************
2262 ***************************************/
2264 static uint64_t cirrus_linear_read(void *opaque
, hwaddr addr
,
2267 CirrusVGAState
*s
= opaque
;
2270 addr
&= s
->cirrus_addr_mask
;
2272 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2273 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2274 /* memory-mapped I/O */
2275 ret
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2277 /* XXX handle bitblt */
2281 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2283 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2286 addr
&= s
->cirrus_addr_mask
;
2287 ret
= *(s
->vga
.vram_ptr
+ addr
);
2293 static void cirrus_linear_write(void *opaque
, hwaddr addr
,
2294 uint64_t val
, unsigned size
)
2296 CirrusVGAState
*s
= opaque
;
2299 addr
&= s
->cirrus_addr_mask
;
2301 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2302 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2303 /* memory-mapped I/O */
2304 cirrus_mmio_blt_write(s
, addr
& 0xff, val
);
2305 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2307 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2308 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2309 cirrus_bitblt_cputovideo_next(s
);
2313 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2315 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2318 addr
&= s
->cirrus_addr_mask
;
2320 mode
= s
->vga
.gr
[0x05] & 0x7;
2321 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2322 *(s
->vga
.vram_ptr
+ addr
) = (uint8_t) val
;
2323 memory_region_set_dirty(&s
->vga
.vram
, addr
, 1);
2325 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2326 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
, addr
, val
);
2328 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
, addr
, val
);
2334 /***************************************
2336 * system to screen memory access
2338 ***************************************/
2341 static uint64_t cirrus_linear_bitblt_read(void *opaque
,
2345 CirrusVGAState
*s
= opaque
;
2348 /* XXX handle bitblt */
2354 static void cirrus_linear_bitblt_write(void *opaque
,
2359 CirrusVGAState
*s
= opaque
;
2361 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2363 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2364 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2365 cirrus_bitblt_cputovideo_next(s
);
2370 static const MemoryRegionOps cirrus_linear_bitblt_io_ops
= {
2371 .read
= cirrus_linear_bitblt_read
,
2372 .write
= cirrus_linear_bitblt_write
,
2373 .endianness
= DEVICE_LITTLE_ENDIAN
,
2375 .min_access_size
= 1,
2376 .max_access_size
= 1,
2380 static void map_linear_vram_bank(CirrusVGAState
*s
, unsigned bank
)
2382 MemoryRegion
*mr
= &s
->cirrus_bank
[bank
];
2383 bool enabled
= !(s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
)
2384 && !((s
->vga
.sr
[0x07] & 0x01) == 0)
2385 && !((s
->vga
.gr
[0x0B] & 0x14) == 0x14)
2386 && !(s
->vga
.gr
[0x0B] & 0x02);
2388 memory_region_set_enabled(mr
, enabled
);
2389 memory_region_set_alias_offset(mr
, s
->cirrus_bank_base
[bank
]);
2392 static void map_linear_vram(CirrusVGAState
*s
)
2394 if (s
->bustype
== CIRRUS_BUSTYPE_PCI
&& !s
->linear_vram
) {
2395 s
->linear_vram
= true;
2396 memory_region_add_subregion_overlap(&s
->pci_bar
, 0, &s
->vga
.vram
, 1);
2398 map_linear_vram_bank(s
, 0);
2399 map_linear_vram_bank(s
, 1);
2402 static void unmap_linear_vram(CirrusVGAState
*s
)
2404 if (s
->bustype
== CIRRUS_BUSTYPE_PCI
&& s
->linear_vram
) {
2405 s
->linear_vram
= false;
2406 memory_region_del_subregion(&s
->pci_bar
, &s
->vga
.vram
);
2408 memory_region_set_enabled(&s
->cirrus_bank
[0], false);
2409 memory_region_set_enabled(&s
->cirrus_bank
[1], false);
2412 /* Compute the memory access functions */
2413 static void cirrus_update_memory_access(CirrusVGAState
*s
)
2417 memory_region_transaction_begin();
2418 if ((s
->vga
.sr
[0x17] & 0x44) == 0x44) {
2420 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2423 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2425 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2429 mode
= s
->vga
.gr
[0x05] & 0x7;
2430 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2434 unmap_linear_vram(s
);
2437 memory_region_transaction_commit();
2443 static uint64_t cirrus_vga_ioport_read(void *opaque
, hwaddr addr
,
2446 CirrusVGAState
*c
= opaque
;
2447 VGACommonState
*s
= &c
->vga
;
2450 qemu_flush_coalesced_mmio_buffer();
2453 if (vga_ioport_invalid(s
, addr
)) {
2458 if (s
->ar_flip_flop
== 0) {
2465 index
= s
->ar_index
& 0x1f;
2478 val
= cirrus_vga_read_sr(c
);
2480 #ifdef DEBUG_VGA_REG
2481 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
2485 val
= cirrus_read_hidden_dac(c
);
2491 val
= s
->dac_write_index
;
2492 c
->cirrus_hidden_dac_lockindex
= 0;
2495 val
= cirrus_vga_read_palette(c
);
2507 val
= cirrus_vga_read_gr(c
, s
->gr_index
);
2508 #ifdef DEBUG_VGA_REG
2509 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
2518 val
= cirrus_vga_read_cr(c
, s
->cr_index
);
2519 #ifdef DEBUG_VGA_REG
2520 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
2525 /* just toggle to fool polling */
2526 val
= s
->st01
= s
->retrace(s
);
2527 s
->ar_flip_flop
= 0;
2534 #if defined(DEBUG_VGA)
2535 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
2540 static void cirrus_vga_ioport_write(void *opaque
, hwaddr addr
, uint64_t val
,
2543 CirrusVGAState
*c
= opaque
;
2544 VGACommonState
*s
= &c
->vga
;
2547 qemu_flush_coalesced_mmio_buffer();
2550 /* check port range access depending on color/monochrome mode */
2551 if (vga_ioport_invalid(s
, addr
)) {
2555 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
2560 if (s
->ar_flip_flop
== 0) {
2564 index
= s
->ar_index
& 0x1f;
2567 s
->ar
[index
] = val
& 0x3f;
2570 s
->ar
[index
] = val
& ~0x10;
2576 s
->ar
[index
] = val
& ~0xc0;
2579 s
->ar
[index
] = val
& ~0xf0;
2582 s
->ar
[index
] = val
& ~0xf0;
2588 s
->ar_flip_flop
^= 1;
2591 s
->msr
= val
& ~0x10;
2592 s
->update_retrace_info(s
);
2598 #ifdef DEBUG_VGA_REG
2599 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
2601 cirrus_vga_write_sr(c
, val
);
2605 cirrus_write_hidden_dac(c
, val
);
2608 s
->dac_read_index
= val
;
2609 s
->dac_sub_index
= 0;
2613 s
->dac_write_index
= val
;
2614 s
->dac_sub_index
= 0;
2618 cirrus_vga_write_palette(c
, val
);
2624 #ifdef DEBUG_VGA_REG
2625 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
2627 cirrus_vga_write_gr(c
, s
->gr_index
, val
);
2635 #ifdef DEBUG_VGA_REG
2636 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
2638 cirrus_vga_write_cr(c
, val
);
2642 s
->fcr
= val
& 0x10;
2647 /***************************************
2649 * memory-mapped I/O access
2651 ***************************************/
2653 static uint64_t cirrus_mmio_read(void *opaque
, hwaddr addr
,
2656 CirrusVGAState
*s
= opaque
;
2658 if (addr
>= 0x100) {
2659 return cirrus_mmio_blt_read(s
, addr
- 0x100);
2661 return cirrus_vga_ioport_read(s
, addr
+ 0x10, size
);
2665 static void cirrus_mmio_write(void *opaque
, hwaddr addr
,
2666 uint64_t val
, unsigned size
)
2668 CirrusVGAState
*s
= opaque
;
2670 if (addr
>= 0x100) {
2671 cirrus_mmio_blt_write(s
, addr
- 0x100, val
);
2673 cirrus_vga_ioport_write(s
, addr
+ 0x10, val
, size
);
2677 static const MemoryRegionOps cirrus_mmio_io_ops
= {
2678 .read
= cirrus_mmio_read
,
2679 .write
= cirrus_mmio_write
,
2680 .endianness
= DEVICE_LITTLE_ENDIAN
,
2682 .min_access_size
= 1,
2683 .max_access_size
= 1,
2687 /* load/save state */
2689 static int cirrus_post_load(void *opaque
, int version_id
)
2691 CirrusVGAState
*s
= opaque
;
2693 s
->vga
.gr
[0x00] = s
->cirrus_shadow_gr0
& 0x0f;
2694 s
->vga
.gr
[0x01] = s
->cirrus_shadow_gr1
& 0x0f;
2696 cirrus_update_memory_access(s
);
2698 s
->vga
.graphic_mode
= -1;
2699 cirrus_update_bank_ptr(s
, 0);
2700 cirrus_update_bank_ptr(s
, 1);
2704 static const VMStateDescription vmstate_cirrus_vga
= {
2705 .name
= "cirrus_vga",
2707 .minimum_version_id
= 1,
2708 .minimum_version_id_old
= 1,
2709 .post_load
= cirrus_post_load
,
2710 .fields
= (VMStateField
[]) {
2711 VMSTATE_UINT32(vga
.latch
, CirrusVGAState
),
2712 VMSTATE_UINT8(vga
.sr_index
, CirrusVGAState
),
2713 VMSTATE_BUFFER(vga
.sr
, CirrusVGAState
),
2714 VMSTATE_UINT8(vga
.gr_index
, CirrusVGAState
),
2715 VMSTATE_UINT8(cirrus_shadow_gr0
, CirrusVGAState
),
2716 VMSTATE_UINT8(cirrus_shadow_gr1
, CirrusVGAState
),
2717 VMSTATE_BUFFER_START_MIDDLE(vga
.gr
, CirrusVGAState
, 2),
2718 VMSTATE_UINT8(vga
.ar_index
, CirrusVGAState
),
2719 VMSTATE_BUFFER(vga
.ar
, CirrusVGAState
),
2720 VMSTATE_INT32(vga
.ar_flip_flop
, CirrusVGAState
),
2721 VMSTATE_UINT8(vga
.cr_index
, CirrusVGAState
),
2722 VMSTATE_BUFFER(vga
.cr
, CirrusVGAState
),
2723 VMSTATE_UINT8(vga
.msr
, CirrusVGAState
),
2724 VMSTATE_UINT8(vga
.fcr
, CirrusVGAState
),
2725 VMSTATE_UINT8(vga
.st00
, CirrusVGAState
),
2726 VMSTATE_UINT8(vga
.st01
, CirrusVGAState
),
2727 VMSTATE_UINT8(vga
.dac_state
, CirrusVGAState
),
2728 VMSTATE_UINT8(vga
.dac_sub_index
, CirrusVGAState
),
2729 VMSTATE_UINT8(vga
.dac_read_index
, CirrusVGAState
),
2730 VMSTATE_UINT8(vga
.dac_write_index
, CirrusVGAState
),
2731 VMSTATE_BUFFER(vga
.dac_cache
, CirrusVGAState
),
2732 VMSTATE_BUFFER(vga
.palette
, CirrusVGAState
),
2733 VMSTATE_INT32(vga
.bank_offset
, CirrusVGAState
),
2734 VMSTATE_UINT8(cirrus_hidden_dac_lockindex
, CirrusVGAState
),
2735 VMSTATE_UINT8(cirrus_hidden_dac_data
, CirrusVGAState
),
2736 VMSTATE_UINT32(hw_cursor_x
, CirrusVGAState
),
2737 VMSTATE_UINT32(hw_cursor_y
, CirrusVGAState
),
2738 /* XXX: we do not save the bitblt state - we assume we do not save
2739 the state when the blitter is active */
2740 VMSTATE_END_OF_LIST()
2744 static const VMStateDescription vmstate_pci_cirrus_vga
= {
2745 .name
= "cirrus_vga",
2747 .minimum_version_id
= 2,
2748 .minimum_version_id_old
= 2,
2749 .fields
= (VMStateField
[]) {
2750 VMSTATE_PCI_DEVICE(dev
, PCICirrusVGAState
),
2751 VMSTATE_STRUCT(cirrus_vga
, PCICirrusVGAState
, 0,
2752 vmstate_cirrus_vga
, CirrusVGAState
),
2753 VMSTATE_END_OF_LIST()
2757 /***************************************
2761 ***************************************/
2763 static void cirrus_reset(void *opaque
)
2765 CirrusVGAState
*s
= opaque
;
2767 vga_common_reset(&s
->vga
);
2768 unmap_linear_vram(s
);
2769 s
->vga
.sr
[0x06] = 0x0f;
2770 if (s
->device_id
== CIRRUS_ID_CLGD5446
) {
2771 /* 4MB 64 bit memory config, always PCI */
2772 s
->vga
.sr
[0x1F] = 0x2d; // MemClock
2773 s
->vga
.gr
[0x18] = 0x0f; // fastest memory configuration
2774 s
->vga
.sr
[0x0f] = 0x98;
2775 s
->vga
.sr
[0x17] = 0x20;
2776 s
->vga
.sr
[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
2778 s
->vga
.sr
[0x1F] = 0x22; // MemClock
2779 s
->vga
.sr
[0x0F] = CIRRUS_MEMSIZE_2M
;
2780 s
->vga
.sr
[0x17] = s
->bustype
;
2781 s
->vga
.sr
[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
2783 s
->vga
.cr
[0x27] = s
->device_id
;
2785 s
->cirrus_hidden_dac_lockindex
= 5;
2786 s
->cirrus_hidden_dac_data
= 0;
2789 static const MemoryRegionOps cirrus_linear_io_ops
= {
2790 .read
= cirrus_linear_read
,
2791 .write
= cirrus_linear_write
,
2792 .endianness
= DEVICE_LITTLE_ENDIAN
,
2794 .min_access_size
= 1,
2795 .max_access_size
= 1,
2799 static const MemoryRegionOps cirrus_vga_io_ops
= {
2800 .read
= cirrus_vga_ioport_read
,
2801 .write
= cirrus_vga_ioport_write
,
2802 .endianness
= DEVICE_LITTLE_ENDIAN
,
2804 .min_access_size
= 1,
2805 .max_access_size
= 1,
2809 static void cirrus_init_common(CirrusVGAState
* s
, int device_id
, int is_pci
,
2810 MemoryRegion
*system_memory
,
2811 MemoryRegion
*system_io
)
2818 for(i
= 0;i
< 256; i
++)
2819 rop_to_index
[i
] = CIRRUS_ROP_NOP_INDEX
; /* nop rop */
2820 rop_to_index
[CIRRUS_ROP_0
] = 0;
2821 rop_to_index
[CIRRUS_ROP_SRC_AND_DST
] = 1;
2822 rop_to_index
[CIRRUS_ROP_NOP
] = 2;
2823 rop_to_index
[CIRRUS_ROP_SRC_AND_NOTDST
] = 3;
2824 rop_to_index
[CIRRUS_ROP_NOTDST
] = 4;
2825 rop_to_index
[CIRRUS_ROP_SRC
] = 5;
2826 rop_to_index
[CIRRUS_ROP_1
] = 6;
2827 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_DST
] = 7;
2828 rop_to_index
[CIRRUS_ROP_SRC_XOR_DST
] = 8;
2829 rop_to_index
[CIRRUS_ROP_SRC_OR_DST
] = 9;
2830 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_NOTDST
] = 10;
2831 rop_to_index
[CIRRUS_ROP_SRC_NOTXOR_DST
] = 11;
2832 rop_to_index
[CIRRUS_ROP_SRC_OR_NOTDST
] = 12;
2833 rop_to_index
[CIRRUS_ROP_NOTSRC
] = 13;
2834 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_DST
] = 14;
2835 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_NOTDST
] = 15;
2836 s
->device_id
= device_id
;
2838 s
->bustype
= CIRRUS_BUSTYPE_PCI
;
2840 s
->bustype
= CIRRUS_BUSTYPE_ISA
;
2843 /* Register ioport 0x3b0 - 0x3df */
2844 memory_region_init_io(&s
->cirrus_vga_io
, &cirrus_vga_io_ops
, s
,
2846 memory_region_add_subregion(system_io
, 0x3b0, &s
->cirrus_vga_io
);
2848 memory_region_init(&s
->low_mem_container
,
2849 "cirrus-lowmem-container",
2852 memory_region_init_io(&s
->low_mem
, &cirrus_vga_mem_ops
, s
,
2853 "cirrus-low-memory", 0x20000);
2854 memory_region_add_subregion(&s
->low_mem_container
, 0, &s
->low_mem
);
2855 for (i
= 0; i
< 2; ++i
) {
2856 static const char *names
[] = { "vga.bank0", "vga.bank1" };
2857 MemoryRegion
*bank
= &s
->cirrus_bank
[i
];
2858 memory_region_init_alias(bank
, names
[i
], &s
->vga
.vram
, 0, 0x8000);
2859 memory_region_set_enabled(bank
, false);
2860 memory_region_add_subregion_overlap(&s
->low_mem_container
, i
* 0x8000,
2863 memory_region_add_subregion_overlap(system_memory
,
2864 isa_mem_base
+ 0x000a0000,
2865 &s
->low_mem_container
,
2867 memory_region_set_coalescing(&s
->low_mem
);
2869 /* I/O handler for LFB */
2870 memory_region_init_io(&s
->cirrus_linear_io
, &cirrus_linear_io_ops
, s
,
2871 "cirrus-linear-io", s
->vga
.vram_size_mb
2873 memory_region_set_flush_coalesced(&s
->cirrus_linear_io
);
2875 /* I/O handler for LFB */
2876 memory_region_init_io(&s
->cirrus_linear_bitblt_io
,
2877 &cirrus_linear_bitblt_io_ops
,
2879 "cirrus-bitblt-mmio",
2881 memory_region_set_flush_coalesced(&s
->cirrus_linear_bitblt_io
);
2883 /* I/O handler for memory-mapped I/O */
2884 memory_region_init_io(&s
->cirrus_mmio_io
, &cirrus_mmio_io_ops
, s
,
2885 "cirrus-mmio", CIRRUS_PNPMMIO_SIZE
);
2886 memory_region_set_flush_coalesced(&s
->cirrus_mmio_io
);
2889 (s
->device_id
== CIRRUS_ID_CLGD5446
) ? 4096 * 1024 : 2048 * 1024;
2891 /* XXX: s->vga.vram_size must be a power of two */
2892 s
->cirrus_addr_mask
= s
->real_vram_size
- 1;
2893 s
->linear_mmio_mask
= s
->real_vram_size
- 256;
2895 s
->vga
.get_bpp
= cirrus_get_bpp
;
2896 s
->vga
.get_offsets
= cirrus_get_offsets
;
2897 s
->vga
.get_resolution
= cirrus_get_resolution
;
2898 s
->vga
.cursor_invalidate
= cirrus_cursor_invalidate
;
2899 s
->vga
.cursor_draw_line
= cirrus_cursor_draw_line
;
2901 qemu_register_reset(cirrus_reset
, s
);
2904 /***************************************
2908 ***************************************/
2910 static int vga_initfn(ISADevice
*dev
)
2912 ISACirrusVGAState
*d
= ISA_CIRRUS_VGA(dev
);
2913 VGACommonState
*s
= &d
->cirrus_vga
.vga
;
2916 cirrus_init_common(&d
->cirrus_vga
, CIRRUS_ID_CLGD5430
, 0,
2917 isa_address_space(dev
), isa_address_space_io(dev
));
2918 s
->con
= graphic_console_init(DEVICE(dev
), s
->hw_ops
, s
);
2919 rom_add_vga(VGABIOS_CIRRUS_FILENAME
);
2920 /* XXX ISA-LFB support */
2921 /* FIXME not qdev yet */
2925 static Property isa_cirrus_vga_properties
[] = {
2926 DEFINE_PROP_UINT32("vgamem_mb", struct ISACirrusVGAState
,
2927 cirrus_vga
.vga
.vram_size_mb
, 8),
2928 DEFINE_PROP_END_OF_LIST(),
2931 static void isa_cirrus_vga_class_init(ObjectClass
*klass
, void *data
)
2933 ISADeviceClass
*k
= ISA_DEVICE_CLASS(klass
);
2934 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2936 dc
->vmsd
= &vmstate_cirrus_vga
;
2937 k
->init
= vga_initfn
;
2938 dc
->props
= isa_cirrus_vga_properties
;
2941 static const TypeInfo isa_cirrus_vga_info
= {
2942 .name
= TYPE_ISA_CIRRUS_VGA
,
2943 .parent
= TYPE_ISA_DEVICE
,
2944 .instance_size
= sizeof(ISACirrusVGAState
),
2945 .class_init
= isa_cirrus_vga_class_init
,
2948 /***************************************
2952 ***************************************/
2954 static int pci_cirrus_vga_initfn(PCIDevice
*dev
)
2956 PCICirrusVGAState
*d
= DO_UPCAST(PCICirrusVGAState
, dev
, dev
);
2957 CirrusVGAState
*s
= &d
->cirrus_vga
;
2958 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(dev
);
2959 int16_t device_id
= pc
->device_id
;
2962 vga_common_init(&s
->vga
);
2963 cirrus_init_common(s
, device_id
, 1, pci_address_space(dev
),
2964 pci_address_space_io(dev
));
2965 s
->vga
.con
= graphic_console_init(DEVICE(dev
), s
->vga
.hw_ops
, &s
->vga
);
2969 memory_region_init(&s
->pci_bar
, "cirrus-pci-bar0", 0x2000000);
2971 /* XXX: add byte swapping apertures */
2972 memory_region_add_subregion(&s
->pci_bar
, 0, &s
->cirrus_linear_io
);
2973 memory_region_add_subregion(&s
->pci_bar
, 0x1000000,
2974 &s
->cirrus_linear_bitblt_io
);
2976 /* setup memory space */
2978 /* memory #1 memory-mapped I/O */
2979 /* XXX: s->vga.vram_size must be a power of two */
2980 pci_register_bar(&d
->dev
, 0, PCI_BASE_ADDRESS_MEM_PREFETCH
, &s
->pci_bar
);
2981 if (device_id
== CIRRUS_ID_CLGD5446
) {
2982 pci_register_bar(&d
->dev
, 1, 0, &s
->cirrus_mmio_io
);
2987 static Property pci_vga_cirrus_properties
[] = {
2988 DEFINE_PROP_UINT32("vgamem_mb", struct PCICirrusVGAState
,
2989 cirrus_vga
.vga
.vram_size_mb
, 8),
2990 DEFINE_PROP_END_OF_LIST(),
2993 static void cirrus_vga_class_init(ObjectClass
*klass
, void *data
)
2995 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2996 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
2999 k
->init
= pci_cirrus_vga_initfn
;
3000 k
->romfile
= VGABIOS_CIRRUS_FILENAME
;
3001 k
->vendor_id
= PCI_VENDOR_ID_CIRRUS
;
3002 k
->device_id
= CIRRUS_ID_CLGD5446
;
3003 k
->class_id
= PCI_CLASS_DISPLAY_VGA
;
3004 dc
->desc
= "Cirrus CLGD 54xx VGA";
3005 dc
->vmsd
= &vmstate_pci_cirrus_vga
;
3006 dc
->props
= pci_vga_cirrus_properties
;
3009 static const TypeInfo cirrus_vga_info
= {
3010 .name
= "cirrus-vga",
3011 .parent
= TYPE_PCI_DEVICE
,
3012 .instance_size
= sizeof(PCICirrusVGAState
),
3013 .class_init
= cirrus_vga_class_init
,
3016 static void cirrus_vga_register_types(void)
3018 type_register_static(&isa_cirrus_vga_info
);
3019 type_register_static(&cirrus_vga_info
);
3022 type_init(cirrus_vga_register_types
)