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/
39 * - destination write mask support not complete (bits 5..7)
40 * - optimize linear mappings
41 * - optimize bitblt functions
44 //#define DEBUG_CIRRUS
45 //#define DEBUG_BITBLT
47 /***************************************
51 ***************************************/
54 #define CIRRUS_ID_CLGD5422 (0x23<<2)
55 #define CIRRUS_ID_CLGD5426 (0x24<<2)
56 #define CIRRUS_ID_CLGD5424 (0x25<<2)
57 #define CIRRUS_ID_CLGD5428 (0x26<<2)
58 #define CIRRUS_ID_CLGD5430 (0x28<<2)
59 #define CIRRUS_ID_CLGD5434 (0x2A<<2)
60 #define CIRRUS_ID_CLGD5436 (0x2B<<2)
61 #define CIRRUS_ID_CLGD5446 (0x2E<<2)
64 #define CIRRUS_SR7_BPP_VGA 0x00
65 #define CIRRUS_SR7_BPP_SVGA 0x01
66 #define CIRRUS_SR7_BPP_MASK 0x0e
67 #define CIRRUS_SR7_BPP_8 0x00
68 #define CIRRUS_SR7_BPP_16_DOUBLEVCLK 0x02
69 #define CIRRUS_SR7_BPP_24 0x04
70 #define CIRRUS_SR7_BPP_16 0x06
71 #define CIRRUS_SR7_BPP_32 0x08
72 #define CIRRUS_SR7_ISAADDR_MASK 0xe0
75 #define CIRRUS_MEMSIZE_512k 0x08
76 #define CIRRUS_MEMSIZE_1M 0x10
77 #define CIRRUS_MEMSIZE_2M 0x18
78 #define CIRRUS_MEMFLAGS_BANKSWITCH 0x80 // bank switching is enabled.
81 #define CIRRUS_CURSOR_SHOW 0x01
82 #define CIRRUS_CURSOR_HIDDENPEL 0x02
83 #define CIRRUS_CURSOR_LARGE 0x04 // 64x64 if set, 32x32 if clear
86 #define CIRRUS_BUSTYPE_VLBFAST 0x10
87 #define CIRRUS_BUSTYPE_PCI 0x20
88 #define CIRRUS_BUSTYPE_VLBSLOW 0x30
89 #define CIRRUS_BUSTYPE_ISA 0x38
90 #define CIRRUS_MMIO_ENABLE 0x04
91 #define CIRRUS_MMIO_USE_PCIADDR 0x40 // 0xb8000 if cleared.
92 #define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
95 #define CIRRUS_BANKING_DUAL 0x01
96 #define CIRRUS_BANKING_GRANULARITY_16K 0x20 // set:16k, clear:4k
99 #define CIRRUS_BLTMODE_BACKWARDS 0x01
100 #define CIRRUS_BLTMODE_MEMSYSDEST 0x02
101 #define CIRRUS_BLTMODE_MEMSYSSRC 0x04
102 #define CIRRUS_BLTMODE_TRANSPARENTCOMP 0x08
103 #define CIRRUS_BLTMODE_PATTERNCOPY 0x40
104 #define CIRRUS_BLTMODE_COLOREXPAND 0x80
105 #define CIRRUS_BLTMODE_PIXELWIDTHMASK 0x30
106 #define CIRRUS_BLTMODE_PIXELWIDTH8 0x00
107 #define CIRRUS_BLTMODE_PIXELWIDTH16 0x10
108 #define CIRRUS_BLTMODE_PIXELWIDTH24 0x20
109 #define CIRRUS_BLTMODE_PIXELWIDTH32 0x30
112 #define CIRRUS_BLT_BUSY 0x01
113 #define CIRRUS_BLT_START 0x02
114 #define CIRRUS_BLT_RESET 0x04
115 #define CIRRUS_BLT_FIFOUSED 0x10
116 #define CIRRUS_BLT_AUTOSTART 0x80
119 #define CIRRUS_ROP_0 0x00
120 #define CIRRUS_ROP_SRC_AND_DST 0x05
121 #define CIRRUS_ROP_NOP 0x06
122 #define CIRRUS_ROP_SRC_AND_NOTDST 0x09
123 #define CIRRUS_ROP_NOTDST 0x0b
124 #define CIRRUS_ROP_SRC 0x0d
125 #define CIRRUS_ROP_1 0x0e
126 #define CIRRUS_ROP_NOTSRC_AND_DST 0x50
127 #define CIRRUS_ROP_SRC_XOR_DST 0x59
128 #define CIRRUS_ROP_SRC_OR_DST 0x6d
129 #define CIRRUS_ROP_NOTSRC_OR_NOTDST 0x90
130 #define CIRRUS_ROP_SRC_NOTXOR_DST 0x95
131 #define CIRRUS_ROP_SRC_OR_NOTDST 0xad
132 #define CIRRUS_ROP_NOTSRC 0xd0
133 #define CIRRUS_ROP_NOTSRC_OR_DST 0xd6
134 #define CIRRUS_ROP_NOTSRC_AND_NOTDST 0xda
136 #define CIRRUS_ROP_NOP_INDEX 2
137 #define CIRRUS_ROP_SRC_INDEX 5
140 #define CIRRUS_BLTMODEEXT_SOLIDFILL 0x04
141 #define CIRRUS_BLTMODEEXT_COLOREXPINV 0x02
142 #define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
145 #define CIRRUS_MMIO_BLTBGCOLOR 0x00 // dword
146 #define CIRRUS_MMIO_BLTFGCOLOR 0x04 // dword
147 #define CIRRUS_MMIO_BLTWIDTH 0x08 // word
148 #define CIRRUS_MMIO_BLTHEIGHT 0x0a // word
149 #define CIRRUS_MMIO_BLTDESTPITCH 0x0c // word
150 #define CIRRUS_MMIO_BLTSRCPITCH 0x0e // word
151 #define CIRRUS_MMIO_BLTDESTADDR 0x10 // dword
152 #define CIRRUS_MMIO_BLTSRCADDR 0x14 // dword
153 #define CIRRUS_MMIO_BLTWRITEMASK 0x17 // byte
154 #define CIRRUS_MMIO_BLTMODE 0x18 // byte
155 #define CIRRUS_MMIO_BLTROP 0x1a // byte
156 #define CIRRUS_MMIO_BLTMODEEXT 0x1b // byte
157 #define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c // word?
158 #define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20 // word?
159 #define CIRRUS_MMIO_LINEARDRAW_START_X 0x24 // word
160 #define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26 // word
161 #define CIRRUS_MMIO_LINEARDRAW_END_X 0x28 // word
162 #define CIRRUS_MMIO_LINEARDRAW_END_Y 0x2a // word
163 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c // byte
164 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d // byte
165 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e // byte
166 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f // byte
167 #define CIRRUS_MMIO_BRESENHAM_K1 0x30 // word
168 #define CIRRUS_MMIO_BRESENHAM_K3 0x32 // word
169 #define CIRRUS_MMIO_BRESENHAM_ERROR 0x34 // word
170 #define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36 // word
171 #define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38 // byte
172 #define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
173 #define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
175 // PCI 0x04: command(word), 0x06(word): status
176 #define PCI_COMMAND_IOACCESS 0x0001
177 #define PCI_COMMAND_MEMACCESS 0x0002
178 #define PCI_COMMAND_BUSMASTER 0x0004
179 #define PCI_COMMAND_SPECIALCYCLE 0x0008
180 #define PCI_COMMAND_MEMWRITEINVALID 0x0010
181 #define PCI_COMMAND_PALETTESNOOPING 0x0020
182 #define PCI_COMMAND_PARITYDETECTION 0x0040
183 #define PCI_COMMAND_ADDRESSDATASTEPPING 0x0080
184 #define PCI_COMMAND_SERR 0x0100
185 #define PCI_COMMAND_BACKTOBACKTRANS 0x0200
186 // PCI 0x08, 0xff000000 (0x09-0x0b:class,0x08:rev)
187 #define PCI_CLASS_BASE_DISPLAY 0x03
188 // PCI 0x08, 0x00ff0000
189 #define PCI_CLASS_SUB_VGA 0x00
190 // PCI 0x0c, 0x00ff0000 (0x0c:cacheline,0x0d:latency,0x0e:headertype,0x0f:Built-in self test)
191 // 0x10-0x3f (headertype 00h)
192 // PCI 0x10,0x14,0x18,0x1c,0x20,0x24: base address mapping registers
193 // 0x10: MEMBASE, 0x14: IOBASE(hard-coded in XFree86 3.x)
194 #define PCI_MAP_MEM 0x0
195 #define PCI_MAP_IO 0x1
196 #define PCI_MAP_MEM_ADDR_MASK (~0xf)
197 #define PCI_MAP_IO_ADDR_MASK (~0x3)
198 #define PCI_MAP_MEMFLAGS_32BIT 0x0
199 #define PCI_MAP_MEMFLAGS_32BIT_1M 0x1
200 #define PCI_MAP_MEMFLAGS_64BIT 0x4
201 #define PCI_MAP_MEMFLAGS_CACHEABLE 0x8
202 // PCI 0x28: cardbus CIS pointer
203 // PCI 0x2c: subsystem vendor id, 0x2e: subsystem id
204 // PCI 0x30: expansion ROM base address
205 #define PCI_ROMBIOS_ENABLED 0x1
206 // PCI 0x34: 0xffffff00=reserved, 0x000000ff=capabilities pointer
207 // PCI 0x38: reserved
208 // PCI 0x3c: 0x3c=int-line, 0x3d=int-pin, 0x3e=min-gnt, 0x3f=maax-lat
210 #define CIRRUS_PNPMMIO_SIZE 0x1000
212 #define ABS(a) ((signed)(a) > 0 ? a : -a)
214 #define BLTUNSAFE(s) \
216 ( /* check dst is within bounds */ \
217 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
218 + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
221 ( /* check src is within bounds */ \
222 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
223 + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
228 struct CirrusVGAState
;
229 typedef void (*cirrus_bitblt_rop_t
) (struct CirrusVGAState
*s
,
230 uint8_t * dst
, const uint8_t * src
,
231 int dstpitch
, int srcpitch
,
232 int bltwidth
, int bltheight
);
233 typedef void (*cirrus_fill_t
)(struct CirrusVGAState
*s
,
234 uint8_t *dst
, int dst_pitch
, int width
, int height
);
236 typedef struct CirrusVGAState
{
239 int cirrus_linear_io_addr
;
240 int cirrus_linear_bitblt_io_addr
;
241 int cirrus_mmio_io_addr
;
242 uint32_t cirrus_addr_mask
;
243 uint32_t linear_mmio_mask
;
244 uint8_t cirrus_shadow_gr0
;
245 uint8_t cirrus_shadow_gr1
;
246 uint8_t cirrus_hidden_dac_lockindex
;
247 uint8_t cirrus_hidden_dac_data
;
248 uint32_t cirrus_bank_base
[2];
249 uint32_t cirrus_bank_limit
[2];
250 uint8_t cirrus_hidden_palette
[48];
251 uint32_t hw_cursor_x
;
252 uint32_t hw_cursor_y
;
253 int cirrus_blt_pixelwidth
;
254 int cirrus_blt_width
;
255 int cirrus_blt_height
;
256 int cirrus_blt_dstpitch
;
257 int cirrus_blt_srcpitch
;
258 uint32_t cirrus_blt_fgcol
;
259 uint32_t cirrus_blt_bgcol
;
260 uint32_t cirrus_blt_dstaddr
;
261 uint32_t cirrus_blt_srcaddr
;
262 uint8_t cirrus_blt_mode
;
263 uint8_t cirrus_blt_modeext
;
264 cirrus_bitblt_rop_t cirrus_rop
;
265 #define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
266 uint8_t cirrus_bltbuf
[CIRRUS_BLTBUFSIZE
];
267 uint8_t *cirrus_srcptr
;
268 uint8_t *cirrus_srcptr_end
;
269 uint32_t cirrus_srccounter
;
270 /* hwcursor display state */
271 int last_hw_cursor_size
;
272 int last_hw_cursor_x
;
273 int last_hw_cursor_y
;
274 int last_hw_cursor_y_start
;
275 int last_hw_cursor_y_end
;
276 int real_vram_size
; /* XXX: suppress that */
281 typedef struct PCICirrusVGAState
{
283 CirrusVGAState cirrus_vga
;
286 static uint8_t rop_to_index
[256];
288 /***************************************
292 ***************************************/
295 static void cirrus_bitblt_reset(CirrusVGAState
*s
);
296 static void cirrus_update_memory_access(CirrusVGAState
*s
);
298 /***************************************
302 ***************************************/
304 static void cirrus_bitblt_rop_nop(CirrusVGAState
*s
,
305 uint8_t *dst
,const uint8_t *src
,
306 int dstpitch
,int srcpitch
,
307 int bltwidth
,int bltheight
)
311 static void cirrus_bitblt_fill_nop(CirrusVGAState
*s
,
313 int dstpitch
, int bltwidth
,int bltheight
)
318 #define ROP_OP(d, s) d = 0
319 #include "cirrus_vga_rop.h"
321 #define ROP_NAME src_and_dst
322 #define ROP_OP(d, s) d = (s) & (d)
323 #include "cirrus_vga_rop.h"
325 #define ROP_NAME src_and_notdst
326 #define ROP_OP(d, s) d = (s) & (~(d))
327 #include "cirrus_vga_rop.h"
329 #define ROP_NAME notdst
330 #define ROP_OP(d, s) d = ~(d)
331 #include "cirrus_vga_rop.h"
334 #define ROP_OP(d, s) d = s
335 #include "cirrus_vga_rop.h"
338 #define ROP_OP(d, s) d = ~0
339 #include "cirrus_vga_rop.h"
341 #define ROP_NAME notsrc_and_dst
342 #define ROP_OP(d, s) d = (~(s)) & (d)
343 #include "cirrus_vga_rop.h"
345 #define ROP_NAME src_xor_dst
346 #define ROP_OP(d, s) d = (s) ^ (d)
347 #include "cirrus_vga_rop.h"
349 #define ROP_NAME src_or_dst
350 #define ROP_OP(d, s) d = (s) | (d)
351 #include "cirrus_vga_rop.h"
353 #define ROP_NAME notsrc_or_notdst
354 #define ROP_OP(d, s) d = (~(s)) | (~(d))
355 #include "cirrus_vga_rop.h"
357 #define ROP_NAME src_notxor_dst
358 #define ROP_OP(d, s) d = ~((s) ^ (d))
359 #include "cirrus_vga_rop.h"
361 #define ROP_NAME src_or_notdst
362 #define ROP_OP(d, s) d = (s) | (~(d))
363 #include "cirrus_vga_rop.h"
365 #define ROP_NAME notsrc
366 #define ROP_OP(d, s) d = (~(s))
367 #include "cirrus_vga_rop.h"
369 #define ROP_NAME notsrc_or_dst
370 #define ROP_OP(d, s) d = (~(s)) | (d)
371 #include "cirrus_vga_rop.h"
373 #define ROP_NAME notsrc_and_notdst
374 #define ROP_OP(d, s) d = (~(s)) & (~(d))
375 #include "cirrus_vga_rop.h"
377 static const cirrus_bitblt_rop_t cirrus_fwd_rop
[16] = {
378 cirrus_bitblt_rop_fwd_0
,
379 cirrus_bitblt_rop_fwd_src_and_dst
,
380 cirrus_bitblt_rop_nop
,
381 cirrus_bitblt_rop_fwd_src_and_notdst
,
382 cirrus_bitblt_rop_fwd_notdst
,
383 cirrus_bitblt_rop_fwd_src
,
384 cirrus_bitblt_rop_fwd_1
,
385 cirrus_bitblt_rop_fwd_notsrc_and_dst
,
386 cirrus_bitblt_rop_fwd_src_xor_dst
,
387 cirrus_bitblt_rop_fwd_src_or_dst
,
388 cirrus_bitblt_rop_fwd_notsrc_or_notdst
,
389 cirrus_bitblt_rop_fwd_src_notxor_dst
,
390 cirrus_bitblt_rop_fwd_src_or_notdst
,
391 cirrus_bitblt_rop_fwd_notsrc
,
392 cirrus_bitblt_rop_fwd_notsrc_or_dst
,
393 cirrus_bitblt_rop_fwd_notsrc_and_notdst
,
396 static const cirrus_bitblt_rop_t cirrus_bkwd_rop
[16] = {
397 cirrus_bitblt_rop_bkwd_0
,
398 cirrus_bitblt_rop_bkwd_src_and_dst
,
399 cirrus_bitblt_rop_nop
,
400 cirrus_bitblt_rop_bkwd_src_and_notdst
,
401 cirrus_bitblt_rop_bkwd_notdst
,
402 cirrus_bitblt_rop_bkwd_src
,
403 cirrus_bitblt_rop_bkwd_1
,
404 cirrus_bitblt_rop_bkwd_notsrc_and_dst
,
405 cirrus_bitblt_rop_bkwd_src_xor_dst
,
406 cirrus_bitblt_rop_bkwd_src_or_dst
,
407 cirrus_bitblt_rop_bkwd_notsrc_or_notdst
,
408 cirrus_bitblt_rop_bkwd_src_notxor_dst
,
409 cirrus_bitblt_rop_bkwd_src_or_notdst
,
410 cirrus_bitblt_rop_bkwd_notsrc
,
411 cirrus_bitblt_rop_bkwd_notsrc_or_dst
,
412 cirrus_bitblt_rop_bkwd_notsrc_and_notdst
,
415 #define TRANSP_ROP(name) {\
419 #define TRANSP_NOP(func) {\
424 static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop
[16][2] = {
425 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0
),
426 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst
),
427 TRANSP_NOP(cirrus_bitblt_rop_nop
),
428 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst
),
429 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst
),
430 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src
),
431 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1
),
432 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst
),
433 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst
),
434 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst
),
435 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst
),
436 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst
),
437 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst
),
438 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc
),
439 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst
),
440 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst
),
443 static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop
[16][2] = {
444 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0
),
445 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst
),
446 TRANSP_NOP(cirrus_bitblt_rop_nop
),
447 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst
),
448 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst
),
449 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src
),
450 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1
),
451 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst
),
452 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst
),
453 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst
),
454 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst
),
455 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst
),
456 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst
),
457 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc
),
458 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst
),
459 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst
),
462 #define ROP2(name) {\
469 #define ROP_NOP2(func) {\
476 static const cirrus_bitblt_rop_t cirrus_patternfill
[16][4] = {
477 ROP2(cirrus_patternfill_0
),
478 ROP2(cirrus_patternfill_src_and_dst
),
479 ROP_NOP2(cirrus_bitblt_rop_nop
),
480 ROP2(cirrus_patternfill_src_and_notdst
),
481 ROP2(cirrus_patternfill_notdst
),
482 ROP2(cirrus_patternfill_src
),
483 ROP2(cirrus_patternfill_1
),
484 ROP2(cirrus_patternfill_notsrc_and_dst
),
485 ROP2(cirrus_patternfill_src_xor_dst
),
486 ROP2(cirrus_patternfill_src_or_dst
),
487 ROP2(cirrus_patternfill_notsrc_or_notdst
),
488 ROP2(cirrus_patternfill_src_notxor_dst
),
489 ROP2(cirrus_patternfill_src_or_notdst
),
490 ROP2(cirrus_patternfill_notsrc
),
491 ROP2(cirrus_patternfill_notsrc_or_dst
),
492 ROP2(cirrus_patternfill_notsrc_and_notdst
),
495 static const cirrus_bitblt_rop_t cirrus_colorexpand_transp
[16][4] = {
496 ROP2(cirrus_colorexpand_transp_0
),
497 ROP2(cirrus_colorexpand_transp_src_and_dst
),
498 ROP_NOP2(cirrus_bitblt_rop_nop
),
499 ROP2(cirrus_colorexpand_transp_src_and_notdst
),
500 ROP2(cirrus_colorexpand_transp_notdst
),
501 ROP2(cirrus_colorexpand_transp_src
),
502 ROP2(cirrus_colorexpand_transp_1
),
503 ROP2(cirrus_colorexpand_transp_notsrc_and_dst
),
504 ROP2(cirrus_colorexpand_transp_src_xor_dst
),
505 ROP2(cirrus_colorexpand_transp_src_or_dst
),
506 ROP2(cirrus_colorexpand_transp_notsrc_or_notdst
),
507 ROP2(cirrus_colorexpand_transp_src_notxor_dst
),
508 ROP2(cirrus_colorexpand_transp_src_or_notdst
),
509 ROP2(cirrus_colorexpand_transp_notsrc
),
510 ROP2(cirrus_colorexpand_transp_notsrc_or_dst
),
511 ROP2(cirrus_colorexpand_transp_notsrc_and_notdst
),
514 static const cirrus_bitblt_rop_t cirrus_colorexpand
[16][4] = {
515 ROP2(cirrus_colorexpand_0
),
516 ROP2(cirrus_colorexpand_src_and_dst
),
517 ROP_NOP2(cirrus_bitblt_rop_nop
),
518 ROP2(cirrus_colorexpand_src_and_notdst
),
519 ROP2(cirrus_colorexpand_notdst
),
520 ROP2(cirrus_colorexpand_src
),
521 ROP2(cirrus_colorexpand_1
),
522 ROP2(cirrus_colorexpand_notsrc_and_dst
),
523 ROP2(cirrus_colorexpand_src_xor_dst
),
524 ROP2(cirrus_colorexpand_src_or_dst
),
525 ROP2(cirrus_colorexpand_notsrc_or_notdst
),
526 ROP2(cirrus_colorexpand_src_notxor_dst
),
527 ROP2(cirrus_colorexpand_src_or_notdst
),
528 ROP2(cirrus_colorexpand_notsrc
),
529 ROP2(cirrus_colorexpand_notsrc_or_dst
),
530 ROP2(cirrus_colorexpand_notsrc_and_notdst
),
533 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp
[16][4] = {
534 ROP2(cirrus_colorexpand_pattern_transp_0
),
535 ROP2(cirrus_colorexpand_pattern_transp_src_and_dst
),
536 ROP_NOP2(cirrus_bitblt_rop_nop
),
537 ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst
),
538 ROP2(cirrus_colorexpand_pattern_transp_notdst
),
539 ROP2(cirrus_colorexpand_pattern_transp_src
),
540 ROP2(cirrus_colorexpand_pattern_transp_1
),
541 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst
),
542 ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst
),
543 ROP2(cirrus_colorexpand_pattern_transp_src_or_dst
),
544 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst
),
545 ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst
),
546 ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst
),
547 ROP2(cirrus_colorexpand_pattern_transp_notsrc
),
548 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst
),
549 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst
),
552 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern
[16][4] = {
553 ROP2(cirrus_colorexpand_pattern_0
),
554 ROP2(cirrus_colorexpand_pattern_src_and_dst
),
555 ROP_NOP2(cirrus_bitblt_rop_nop
),
556 ROP2(cirrus_colorexpand_pattern_src_and_notdst
),
557 ROP2(cirrus_colorexpand_pattern_notdst
),
558 ROP2(cirrus_colorexpand_pattern_src
),
559 ROP2(cirrus_colorexpand_pattern_1
),
560 ROP2(cirrus_colorexpand_pattern_notsrc_and_dst
),
561 ROP2(cirrus_colorexpand_pattern_src_xor_dst
),
562 ROP2(cirrus_colorexpand_pattern_src_or_dst
),
563 ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst
),
564 ROP2(cirrus_colorexpand_pattern_src_notxor_dst
),
565 ROP2(cirrus_colorexpand_pattern_src_or_notdst
),
566 ROP2(cirrus_colorexpand_pattern_notsrc
),
567 ROP2(cirrus_colorexpand_pattern_notsrc_or_dst
),
568 ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst
),
571 static const cirrus_fill_t cirrus_fill
[16][4] = {
573 ROP2(cirrus_fill_src_and_dst
),
574 ROP_NOP2(cirrus_bitblt_fill_nop
),
575 ROP2(cirrus_fill_src_and_notdst
),
576 ROP2(cirrus_fill_notdst
),
577 ROP2(cirrus_fill_src
),
579 ROP2(cirrus_fill_notsrc_and_dst
),
580 ROP2(cirrus_fill_src_xor_dst
),
581 ROP2(cirrus_fill_src_or_dst
),
582 ROP2(cirrus_fill_notsrc_or_notdst
),
583 ROP2(cirrus_fill_src_notxor_dst
),
584 ROP2(cirrus_fill_src_or_notdst
),
585 ROP2(cirrus_fill_notsrc
),
586 ROP2(cirrus_fill_notsrc_or_dst
),
587 ROP2(cirrus_fill_notsrc_and_notdst
),
590 static inline void cirrus_bitblt_fgcol(CirrusVGAState
*s
)
593 switch (s
->cirrus_blt_pixelwidth
) {
595 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
;
598 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8);
599 s
->cirrus_blt_fgcol
= le16_to_cpu(color
);
602 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
|
603 (s
->vga
.gr
[0x11] << 8) | (s
->vga
.gr
[0x13] << 16);
607 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8) |
608 (s
->vga
.gr
[0x13] << 16) | (s
->vga
.gr
[0x15] << 24);
609 s
->cirrus_blt_fgcol
= le32_to_cpu(color
);
614 static inline void cirrus_bitblt_bgcol(CirrusVGAState
*s
)
617 switch (s
->cirrus_blt_pixelwidth
) {
619 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
;
622 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8);
623 s
->cirrus_blt_bgcol
= le16_to_cpu(color
);
626 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
|
627 (s
->vga
.gr
[0x10] << 8) | (s
->vga
.gr
[0x12] << 16);
631 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8) |
632 (s
->vga
.gr
[0x12] << 16) | (s
->vga
.gr
[0x14] << 24);
633 s
->cirrus_blt_bgcol
= le32_to_cpu(color
);
638 static void cirrus_invalidate_region(CirrusVGAState
* s
, int off_begin
,
639 int off_pitch
, int bytesperline
,
646 for (y
= 0; y
< lines
; y
++) {
648 off_cur_end
= (off_cur
+ bytesperline
) & s
->cirrus_addr_mask
;
649 off_cur
&= TARGET_PAGE_MASK
;
650 while (off_cur
< off_cur_end
) {
651 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ off_cur
);
652 off_cur
+= TARGET_PAGE_SIZE
;
654 off_begin
+= off_pitch
;
658 static int cirrus_bitblt_common_patterncopy(CirrusVGAState
* s
,
663 dst
= s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
);
668 (*s
->cirrus_rop
) (s
, dst
, src
,
669 s
->cirrus_blt_dstpitch
, 0,
670 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
671 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
672 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
673 s
->cirrus_blt_height
);
679 static int cirrus_bitblt_solidfill(CirrusVGAState
*s
, int blt_rop
)
681 cirrus_fill_t rop_func
;
685 rop_func
= cirrus_fill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
686 rop_func(s
, s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
687 s
->cirrus_blt_dstpitch
,
688 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
689 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
690 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
691 s
->cirrus_blt_height
);
692 cirrus_bitblt_reset(s
);
696 /***************************************
698 * bitblt (video-to-video)
700 ***************************************/
702 static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState
* s
)
704 return cirrus_bitblt_common_patterncopy(s
,
705 s
->vga
.vram_ptr
+ ((s
->cirrus_blt_srcaddr
& ~7) &
706 s
->cirrus_addr_mask
));
709 static void cirrus_do_copy(CirrusVGAState
*s
, int dst
, int src
, int w
, int h
)
717 depth
= s
->vga
.get_bpp(&s
->vga
) / 8;
718 s
->vga
.get_resolution(&s
->vga
, &width
, &height
);
721 sx
= (src
% ABS(s
->cirrus_blt_srcpitch
)) / depth
;
722 sy
= (src
/ ABS(s
->cirrus_blt_srcpitch
));
723 dx
= (dst
% ABS(s
->cirrus_blt_dstpitch
)) / depth
;
724 dy
= (dst
/ ABS(s
->cirrus_blt_dstpitch
));
726 /* normalize width */
729 /* if we're doing a backward copy, we have to adjust
730 our x/y to be the upper left corner (instead of the lower
732 if (s
->cirrus_blt_dstpitch
< 0) {
733 sx
-= (s
->cirrus_blt_width
/ depth
) - 1;
734 dx
-= (s
->cirrus_blt_width
/ depth
) - 1;
735 sy
-= s
->cirrus_blt_height
- 1;
736 dy
-= s
->cirrus_blt_height
- 1;
739 /* are we in the visible portion of memory? */
740 if (sx
>= 0 && sy
>= 0 && dx
>= 0 && dy
>= 0 &&
741 (sx
+ w
) <= width
&& (sy
+ h
) <= height
&&
742 (dx
+ w
) <= width
&& (dy
+ h
) <= height
) {
746 /* make to sure only copy if it's a plain copy ROP */
747 if (*s
->cirrus_rop
!= cirrus_bitblt_rop_fwd_src
&&
748 *s
->cirrus_rop
!= cirrus_bitblt_rop_bkwd_src
)
751 /* we have to flush all pending changes so that the copy
752 is generated at the appropriate moment in time */
756 (*s
->cirrus_rop
) (s
, s
->vga
.vram_ptr
+
757 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
759 (s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
),
760 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_srcpitch
,
761 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
764 qemu_console_copy(s
->vga
.ds
,
766 s
->cirrus_blt_width
/ depth
,
767 s
->cirrus_blt_height
);
769 /* we don't have to notify the display that this portion has
770 changed since qemu_console_copy implies this */
772 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
773 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
774 s
->cirrus_blt_height
);
777 static int cirrus_bitblt_videotovideo_copy(CirrusVGAState
* s
)
782 cirrus_do_copy(s
, s
->cirrus_blt_dstaddr
- s
->vga
.start_addr
,
783 s
->cirrus_blt_srcaddr
- s
->vga
.start_addr
,
784 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
789 /***************************************
791 * bitblt (cpu-to-video)
793 ***************************************/
795 static void cirrus_bitblt_cputovideo_next(CirrusVGAState
* s
)
800 if (s
->cirrus_srccounter
> 0) {
801 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
802 cirrus_bitblt_common_patterncopy(s
, s
->cirrus_bltbuf
);
804 s
->cirrus_srccounter
= 0;
805 cirrus_bitblt_reset(s
);
807 /* at least one scan line */
809 (*s
->cirrus_rop
)(s
, s
->vga
.vram_ptr
+
810 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
811 s
->cirrus_bltbuf
, 0, 0, s
->cirrus_blt_width
, 1);
812 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
, 0,
813 s
->cirrus_blt_width
, 1);
814 s
->cirrus_blt_dstaddr
+= s
->cirrus_blt_dstpitch
;
815 s
->cirrus_srccounter
-= s
->cirrus_blt_srcpitch
;
816 if (s
->cirrus_srccounter
<= 0)
818 /* more bytes than needed can be transfered because of
819 word alignment, so we keep them for the next line */
820 /* XXX: keep alignment to speed up transfer */
821 end_ptr
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
822 copy_count
= s
->cirrus_srcptr_end
- end_ptr
;
823 memmove(s
->cirrus_bltbuf
, end_ptr
, copy_count
);
824 s
->cirrus_srcptr
= s
->cirrus_bltbuf
+ copy_count
;
825 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
826 } while (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
);
831 /***************************************
835 ***************************************/
837 static void cirrus_bitblt_reset(CirrusVGAState
* s
)
842 ~(CIRRUS_BLT_START
| CIRRUS_BLT_BUSY
| CIRRUS_BLT_FIFOUSED
);
843 need_update
= s
->cirrus_srcptr
!= &s
->cirrus_bltbuf
[0]
844 || s
->cirrus_srcptr_end
!= &s
->cirrus_bltbuf
[0];
845 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
846 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
847 s
->cirrus_srccounter
= 0;
850 cirrus_update_memory_access(s
);
853 static int cirrus_bitblt_cputovideo(CirrusVGAState
* s
)
857 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_MEMSYSSRC
;
858 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
859 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
861 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
862 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
863 s
->cirrus_blt_srcpitch
= 8;
865 /* XXX: check for 24 bpp */
866 s
->cirrus_blt_srcpitch
= 8 * 8 * s
->cirrus_blt_pixelwidth
;
868 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
;
870 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
871 w
= s
->cirrus_blt_width
/ s
->cirrus_blt_pixelwidth
;
872 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_DWORDGRANULARITY
)
873 s
->cirrus_blt_srcpitch
= ((w
+ 31) >> 5);
875 s
->cirrus_blt_srcpitch
= ((w
+ 7) >> 3);
877 /* always align input size to 32 bits */
878 s
->cirrus_blt_srcpitch
= (s
->cirrus_blt_width
+ 3) & ~3;
880 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
* s
->cirrus_blt_height
;
882 s
->cirrus_srcptr
= s
->cirrus_bltbuf
;
883 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
884 cirrus_update_memory_access(s
);
888 static int cirrus_bitblt_videotocpu(CirrusVGAState
* s
)
892 printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
897 static int cirrus_bitblt_videotovideo(CirrusVGAState
* s
)
901 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
902 ret
= cirrus_bitblt_videotovideo_patterncopy(s
);
904 ret
= cirrus_bitblt_videotovideo_copy(s
);
907 cirrus_bitblt_reset(s
);
911 static void cirrus_bitblt_start(CirrusVGAState
* s
)
915 s
->vga
.gr
[0x31] |= CIRRUS_BLT_BUSY
;
917 s
->cirrus_blt_width
= (s
->vga
.gr
[0x20] | (s
->vga
.gr
[0x21] << 8)) + 1;
918 s
->cirrus_blt_height
= (s
->vga
.gr
[0x22] | (s
->vga
.gr
[0x23] << 8)) + 1;
919 s
->cirrus_blt_dstpitch
= (s
->vga
.gr
[0x24] | (s
->vga
.gr
[0x25] << 8));
920 s
->cirrus_blt_srcpitch
= (s
->vga
.gr
[0x26] | (s
->vga
.gr
[0x27] << 8));
921 s
->cirrus_blt_dstaddr
=
922 (s
->vga
.gr
[0x28] | (s
->vga
.gr
[0x29] << 8) | (s
->vga
.gr
[0x2a] << 16));
923 s
->cirrus_blt_srcaddr
=
924 (s
->vga
.gr
[0x2c] | (s
->vga
.gr
[0x2d] << 8) | (s
->vga
.gr
[0x2e] << 16));
925 s
->cirrus_blt_mode
= s
->vga
.gr
[0x30];
926 s
->cirrus_blt_modeext
= s
->vga
.gr
[0x33];
927 blt_rop
= s
->vga
.gr
[0x32];
930 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",
933 s
->cirrus_blt_modeext
,
935 s
->cirrus_blt_height
,
936 s
->cirrus_blt_dstpitch
,
937 s
->cirrus_blt_srcpitch
,
938 s
->cirrus_blt_dstaddr
,
939 s
->cirrus_blt_srcaddr
,
943 switch (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PIXELWIDTHMASK
) {
944 case CIRRUS_BLTMODE_PIXELWIDTH8
:
945 s
->cirrus_blt_pixelwidth
= 1;
947 case CIRRUS_BLTMODE_PIXELWIDTH16
:
948 s
->cirrus_blt_pixelwidth
= 2;
950 case CIRRUS_BLTMODE_PIXELWIDTH24
:
951 s
->cirrus_blt_pixelwidth
= 3;
953 case CIRRUS_BLTMODE_PIXELWIDTH32
:
954 s
->cirrus_blt_pixelwidth
= 4;
958 printf("cirrus: bitblt - pixel width is unknown\n");
962 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_PIXELWIDTHMASK
;
965 cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSSRC
|
966 CIRRUS_BLTMODE_MEMSYSDEST
))
967 == (CIRRUS_BLTMODE_MEMSYSSRC
| CIRRUS_BLTMODE_MEMSYSDEST
)) {
969 printf("cirrus: bitblt - memory-to-memory copy is requested\n");
974 if ((s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_SOLIDFILL
) &&
975 (s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSDEST
|
976 CIRRUS_BLTMODE_TRANSPARENTCOMP
|
977 CIRRUS_BLTMODE_PATTERNCOPY
|
978 CIRRUS_BLTMODE_COLOREXPAND
)) ==
979 (CIRRUS_BLTMODE_PATTERNCOPY
| CIRRUS_BLTMODE_COLOREXPAND
)) {
980 cirrus_bitblt_fgcol(s
);
981 cirrus_bitblt_solidfill(s
, blt_rop
);
983 if ((s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_COLOREXPAND
|
984 CIRRUS_BLTMODE_PATTERNCOPY
)) ==
985 CIRRUS_BLTMODE_COLOREXPAND
) {
987 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
988 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
989 cirrus_bitblt_bgcol(s
);
991 cirrus_bitblt_fgcol(s
);
992 s
->cirrus_rop
= cirrus_colorexpand_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
994 cirrus_bitblt_fgcol(s
);
995 cirrus_bitblt_bgcol(s
);
996 s
->cirrus_rop
= cirrus_colorexpand
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
998 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
999 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
1000 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1001 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1002 cirrus_bitblt_bgcol(s
);
1004 cirrus_bitblt_fgcol(s
);
1005 s
->cirrus_rop
= cirrus_colorexpand_pattern_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1007 cirrus_bitblt_fgcol(s
);
1008 cirrus_bitblt_bgcol(s
);
1009 s
->cirrus_rop
= cirrus_colorexpand_pattern
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1012 s
->cirrus_rop
= cirrus_patternfill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1015 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1016 if (s
->cirrus_blt_pixelwidth
> 2) {
1017 printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1020 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1021 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1022 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1023 s
->cirrus_rop
= cirrus_bkwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1025 s
->cirrus_rop
= cirrus_fwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1028 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1029 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1030 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1031 s
->cirrus_rop
= cirrus_bkwd_rop
[rop_to_index
[blt_rop
]];
1033 s
->cirrus_rop
= cirrus_fwd_rop
[rop_to_index
[blt_rop
]];
1037 // setup bitblt engine.
1038 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSSRC
) {
1039 if (!cirrus_bitblt_cputovideo(s
))
1041 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSDEST
) {
1042 if (!cirrus_bitblt_videotocpu(s
))
1045 if (!cirrus_bitblt_videotovideo(s
))
1051 cirrus_bitblt_reset(s
);
1054 static void cirrus_write_bitblt(CirrusVGAState
* s
, unsigned reg_value
)
1058 old_value
= s
->vga
.gr
[0x31];
1059 s
->vga
.gr
[0x31] = reg_value
;
1061 if (((old_value
& CIRRUS_BLT_RESET
) != 0) &&
1062 ((reg_value
& CIRRUS_BLT_RESET
) == 0)) {
1063 cirrus_bitblt_reset(s
);
1064 } else if (((old_value
& CIRRUS_BLT_START
) == 0) &&
1065 ((reg_value
& CIRRUS_BLT_START
) != 0)) {
1066 cirrus_bitblt_start(s
);
1071 /***************************************
1075 ***************************************/
1077 static void cirrus_get_offsets(VGACommonState
*s1
,
1078 uint32_t *pline_offset
,
1079 uint32_t *pstart_addr
,
1080 uint32_t *pline_compare
)
1082 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1083 uint32_t start_addr
, line_offset
, line_compare
;
1085 line_offset
= s
->vga
.cr
[0x13]
1086 | ((s
->vga
.cr
[0x1b] & 0x10) << 4);
1088 *pline_offset
= line_offset
;
1090 start_addr
= (s
->vga
.cr
[0x0c] << 8)
1092 | ((s
->vga
.cr
[0x1b] & 0x01) << 16)
1093 | ((s
->vga
.cr
[0x1b] & 0x0c) << 15)
1094 | ((s
->vga
.cr
[0x1d] & 0x80) << 12);
1095 *pstart_addr
= start_addr
;
1097 line_compare
= s
->vga
.cr
[0x18] |
1098 ((s
->vga
.cr
[0x07] & 0x10) << 4) |
1099 ((s
->vga
.cr
[0x09] & 0x40) << 3);
1100 *pline_compare
= line_compare
;
1103 static uint32_t cirrus_get_bpp16_depth(CirrusVGAState
* s
)
1107 switch (s
->cirrus_hidden_dac_data
& 0xf) {
1110 break; /* Sierra HiColor */
1113 break; /* XGA HiColor */
1116 printf("cirrus: invalid DAC value %x in 16bpp\n",
1117 (s
->cirrus_hidden_dac_data
& 0xf));
1125 static int cirrus_get_bpp(VGACommonState
*s1
)
1127 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1130 if ((s
->vga
.sr
[0x07] & 0x01) != 0) {
1132 switch (s
->vga
.sr
[0x07] & CIRRUS_SR7_BPP_MASK
) {
1133 case CIRRUS_SR7_BPP_8
:
1136 case CIRRUS_SR7_BPP_16_DOUBLEVCLK
:
1137 ret
= cirrus_get_bpp16_depth(s
);
1139 case CIRRUS_SR7_BPP_24
:
1142 case CIRRUS_SR7_BPP_16
:
1143 ret
= cirrus_get_bpp16_depth(s
);
1145 case CIRRUS_SR7_BPP_32
:
1150 printf("cirrus: unknown bpp - sr7=%x\n", s
->vga
.sr
[0x7]);
1163 static void cirrus_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1167 width
= (s
->cr
[0x01] + 1) * 8;
1168 height
= s
->cr
[0x12] |
1169 ((s
->cr
[0x07] & 0x02) << 7) |
1170 ((s
->cr
[0x07] & 0x40) << 3);
1171 height
= (height
+ 1);
1172 /* interlace support */
1173 if (s
->cr
[0x1a] & 0x01)
1174 height
= height
* 2;
1179 /***************************************
1183 ***************************************/
1185 static void cirrus_update_bank_ptr(CirrusVGAState
* s
, unsigned bank_index
)
1190 if ((s
->vga
.gr
[0x0b] & 0x01) != 0) /* dual bank */
1191 offset
= s
->vga
.gr
[0x09 + bank_index
];
1192 else /* single bank */
1193 offset
= s
->vga
.gr
[0x09];
1195 if ((s
->vga
.gr
[0x0b] & 0x20) != 0)
1200 if (s
->real_vram_size
<= offset
)
1203 limit
= s
->real_vram_size
- offset
;
1205 if (((s
->vga
.gr
[0x0b] & 0x01) == 0) && (bank_index
!= 0)) {
1206 if (limit
> 0x8000) {
1215 /* Thinking about changing bank base? First, drop the dirty bitmap information
1216 * on the current location, otherwise we lose this pointer forever */
1217 if (s
->vga
.lfb_vram_mapped
) {
1218 target_phys_addr_t base_addr
= isa_mem_base
+ 0xa0000 + bank_index
* 0x8000;
1219 cpu_physical_sync_dirty_bitmap(base_addr
, base_addr
+ 0x8000);
1221 s
->cirrus_bank_base
[bank_index
] = offset
;
1222 s
->cirrus_bank_limit
[bank_index
] = limit
;
1224 s
->cirrus_bank_base
[bank_index
] = 0;
1225 s
->cirrus_bank_limit
[bank_index
] = 0;
1229 /***************************************
1231 * I/O access between 0x3c4-0x3c5
1233 ***************************************/
1235 static int cirrus_vga_read_sr(CirrusVGAState
* s
)
1237 switch (s
->vga
.sr_index
) {
1238 case 0x00: // Standard VGA
1239 case 0x01: // Standard VGA
1240 case 0x02: // Standard VGA
1241 case 0x03: // Standard VGA
1242 case 0x04: // Standard VGA
1243 return s
->vga
.sr
[s
->vga
.sr_index
];
1244 case 0x06: // Unlock Cirrus extensions
1245 return s
->vga
.sr
[s
->vga
.sr_index
];
1249 case 0x70: // Graphics Cursor X
1253 case 0xf0: // Graphics Cursor X
1254 return s
->vga
.sr
[0x10];
1258 case 0x71: // Graphics Cursor Y
1262 case 0xf1: // Graphics Cursor Y
1263 return s
->vga
.sr
[0x11];
1265 case 0x07: // Extended Sequencer Mode
1266 case 0x08: // EEPROM Control
1267 case 0x09: // Scratch Register 0
1268 case 0x0a: // Scratch Register 1
1269 case 0x0b: // VCLK 0
1270 case 0x0c: // VCLK 1
1271 case 0x0d: // VCLK 2
1272 case 0x0e: // VCLK 3
1273 case 0x0f: // DRAM Control
1274 case 0x12: // Graphics Cursor Attribute
1275 case 0x13: // Graphics Cursor Pattern Address
1276 case 0x14: // Scratch Register 2
1277 case 0x15: // Scratch Register 3
1278 case 0x16: // Performance Tuning Register
1279 case 0x17: // Configuration Readback and Extended Control
1280 case 0x18: // Signature Generator Control
1281 case 0x19: // Signal Generator Result
1282 case 0x1a: // Signal Generator Result
1283 case 0x1b: // VCLK 0 Denominator & Post
1284 case 0x1c: // VCLK 1 Denominator & Post
1285 case 0x1d: // VCLK 2 Denominator & Post
1286 case 0x1e: // VCLK 3 Denominator & Post
1287 case 0x1f: // BIOS Write Enable and MCLK select
1289 printf("cirrus: handled inport sr_index %02x\n", s
->vga
.sr_index
);
1291 return s
->vga
.sr
[s
->vga
.sr_index
];
1294 printf("cirrus: inport sr_index %02x\n", s
->vga
.sr_index
);
1301 static void cirrus_vga_write_sr(CirrusVGAState
* s
, uint32_t val
)
1303 switch (s
->vga
.sr_index
) {
1304 case 0x00: // Standard VGA
1305 case 0x01: // Standard VGA
1306 case 0x02: // Standard VGA
1307 case 0x03: // Standard VGA
1308 case 0x04: // Standard VGA
1309 s
->vga
.sr
[s
->vga
.sr_index
] = val
& sr_mask
[s
->vga
.sr_index
];
1310 if (s
->vga
.sr_index
== 1)
1311 s
->vga
.update_retrace_info(&s
->vga
);
1313 case 0x06: // Unlock Cirrus extensions
1316 s
->vga
.sr
[s
->vga
.sr_index
] = 0x12;
1318 s
->vga
.sr
[s
->vga
.sr_index
] = 0x0f;
1324 case 0x70: // Graphics Cursor X
1328 case 0xf0: // Graphics Cursor X
1329 s
->vga
.sr
[0x10] = val
;
1330 s
->hw_cursor_x
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1335 case 0x71: // Graphics Cursor Y
1339 case 0xf1: // Graphics Cursor Y
1340 s
->vga
.sr
[0x11] = val
;
1341 s
->hw_cursor_y
= (val
<< 3) | (s
->vga
.sr_index
>> 5);
1343 case 0x07: // Extended Sequencer Mode
1344 cirrus_update_memory_access(s
);
1345 case 0x08: // EEPROM Control
1346 case 0x09: // Scratch Register 0
1347 case 0x0a: // Scratch Register 1
1348 case 0x0b: // VCLK 0
1349 case 0x0c: // VCLK 1
1350 case 0x0d: // VCLK 2
1351 case 0x0e: // VCLK 3
1352 case 0x0f: // DRAM Control
1353 case 0x12: // Graphics Cursor Attribute
1354 case 0x13: // Graphics Cursor Pattern Address
1355 case 0x14: // Scratch Register 2
1356 case 0x15: // Scratch Register 3
1357 case 0x16: // Performance Tuning Register
1358 case 0x18: // Signature Generator Control
1359 case 0x19: // Signature Generator Result
1360 case 0x1a: // Signature Generator Result
1361 case 0x1b: // VCLK 0 Denominator & Post
1362 case 0x1c: // VCLK 1 Denominator & Post
1363 case 0x1d: // VCLK 2 Denominator & Post
1364 case 0x1e: // VCLK 3 Denominator & Post
1365 case 0x1f: // BIOS Write Enable and MCLK select
1366 s
->vga
.sr
[s
->vga
.sr_index
] = val
;
1368 printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1369 s
->vga
.sr_index
, val
);
1372 case 0x17: // Configuration Readback and Extended Control
1373 s
->vga
.sr
[s
->vga
.sr_index
] = (s
->vga
.sr
[s
->vga
.sr_index
] & 0x38)
1375 cirrus_update_memory_access(s
);
1379 printf("cirrus: outport sr_index %02x, sr_value %02x\n",
1380 s
->vga
.sr_index
, val
);
1386 /***************************************
1388 * I/O access at 0x3c6
1390 ***************************************/
1392 static int cirrus_read_hidden_dac(CirrusVGAState
* s
)
1394 if (++s
->cirrus_hidden_dac_lockindex
== 5) {
1395 s
->cirrus_hidden_dac_lockindex
= 0;
1396 return s
->cirrus_hidden_dac_data
;
1401 static void cirrus_write_hidden_dac(CirrusVGAState
* s
, int reg_value
)
1403 if (s
->cirrus_hidden_dac_lockindex
== 4) {
1404 s
->cirrus_hidden_dac_data
= reg_value
;
1405 #if defined(DEBUG_CIRRUS)
1406 printf("cirrus: outport hidden DAC, value %02x\n", reg_value
);
1409 s
->cirrus_hidden_dac_lockindex
= 0;
1412 /***************************************
1414 * I/O access at 0x3c9
1416 ***************************************/
1418 static int cirrus_vga_read_palette(CirrusVGAState
* s
)
1422 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1423 val
= s
->cirrus_hidden_palette
[(s
->vga
.dac_read_index
& 0x0f) * 3 +
1424 s
->vga
.dac_sub_index
];
1426 val
= s
->vga
.palette
[s
->vga
.dac_read_index
* 3 + s
->vga
.dac_sub_index
];
1428 if (++s
->vga
.dac_sub_index
== 3) {
1429 s
->vga
.dac_sub_index
= 0;
1430 s
->vga
.dac_read_index
++;
1435 static void cirrus_vga_write_palette(CirrusVGAState
* s
, int reg_value
)
1437 s
->vga
.dac_cache
[s
->vga
.dac_sub_index
] = reg_value
;
1438 if (++s
->vga
.dac_sub_index
== 3) {
1439 if ((s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
)) {
1440 memcpy(&s
->cirrus_hidden_palette
[(s
->vga
.dac_write_index
& 0x0f) * 3],
1441 s
->vga
.dac_cache
, 3);
1443 memcpy(&s
->vga
.palette
[s
->vga
.dac_write_index
* 3], s
->vga
.dac_cache
, 3);
1445 /* XXX update cursor */
1446 s
->vga
.dac_sub_index
= 0;
1447 s
->vga
.dac_write_index
++;
1451 /***************************************
1453 * I/O access between 0x3ce-0x3cf
1455 ***************************************/
1457 static int cirrus_vga_read_gr(CirrusVGAState
* s
, unsigned reg_index
)
1459 switch (reg_index
) {
1460 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1461 return s
->cirrus_shadow_gr0
;
1462 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1463 return s
->cirrus_shadow_gr1
;
1464 case 0x02: // Standard VGA
1465 case 0x03: // Standard VGA
1466 case 0x04: // Standard VGA
1467 case 0x06: // Standard VGA
1468 case 0x07: // Standard VGA
1469 case 0x08: // Standard VGA
1470 return s
->vga
.gr
[s
->vga
.gr_index
];
1471 case 0x05: // Standard VGA, Cirrus extended mode
1476 if (reg_index
< 0x3a) {
1477 return s
->vga
.gr
[reg_index
];
1480 printf("cirrus: inport gr_index %02x\n", reg_index
);
1487 cirrus_vga_write_gr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1489 #if defined(DEBUG_BITBLT) && 0
1490 printf("gr%02x: %02x\n", reg_index
, reg_value
);
1492 switch (reg_index
) {
1493 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1494 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1495 s
->cirrus_shadow_gr0
= reg_value
;
1497 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1498 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1499 s
->cirrus_shadow_gr1
= reg_value
;
1501 case 0x02: // Standard VGA
1502 case 0x03: // Standard VGA
1503 case 0x04: // Standard VGA
1504 case 0x06: // Standard VGA
1505 case 0x07: // Standard VGA
1506 case 0x08: // Standard VGA
1507 s
->vga
.gr
[reg_index
] = reg_value
& gr_mask
[reg_index
];
1509 case 0x05: // Standard VGA, Cirrus extended mode
1510 s
->vga
.gr
[reg_index
] = reg_value
& 0x7f;
1511 cirrus_update_memory_access(s
);
1513 case 0x09: // bank offset #0
1514 case 0x0A: // bank offset #1
1515 s
->vga
.gr
[reg_index
] = reg_value
;
1516 cirrus_update_bank_ptr(s
, 0);
1517 cirrus_update_bank_ptr(s
, 1);
1518 cirrus_update_memory_access(s
);
1521 s
->vga
.gr
[reg_index
] = reg_value
;
1522 cirrus_update_bank_ptr(s
, 0);
1523 cirrus_update_bank_ptr(s
, 1);
1524 cirrus_update_memory_access(s
);
1526 case 0x10: // BGCOLOR 0x0000ff00
1527 case 0x11: // FGCOLOR 0x0000ff00
1528 case 0x12: // BGCOLOR 0x00ff0000
1529 case 0x13: // FGCOLOR 0x00ff0000
1530 case 0x14: // BGCOLOR 0xff000000
1531 case 0x15: // FGCOLOR 0xff000000
1532 case 0x20: // BLT WIDTH 0x0000ff
1533 case 0x22: // BLT HEIGHT 0x0000ff
1534 case 0x24: // BLT DEST PITCH 0x0000ff
1535 case 0x26: // BLT SRC PITCH 0x0000ff
1536 case 0x28: // BLT DEST ADDR 0x0000ff
1537 case 0x29: // BLT DEST ADDR 0x00ff00
1538 case 0x2c: // BLT SRC ADDR 0x0000ff
1539 case 0x2d: // BLT SRC ADDR 0x00ff00
1540 case 0x2f: // BLT WRITEMASK
1541 case 0x30: // BLT MODE
1542 case 0x32: // RASTER OP
1543 case 0x33: // BLT MODEEXT
1544 case 0x34: // BLT TRANSPARENT COLOR 0x00ff
1545 case 0x35: // BLT TRANSPARENT COLOR 0xff00
1546 case 0x38: // BLT TRANSPARENT COLOR MASK 0x00ff
1547 case 0x39: // BLT TRANSPARENT COLOR MASK 0xff00
1548 s
->vga
.gr
[reg_index
] = reg_value
;
1550 case 0x21: // BLT WIDTH 0x001f00
1551 case 0x23: // BLT HEIGHT 0x001f00
1552 case 0x25: // BLT DEST PITCH 0x001f00
1553 case 0x27: // BLT SRC PITCH 0x001f00
1554 s
->vga
.gr
[reg_index
] = reg_value
& 0x1f;
1556 case 0x2a: // BLT DEST ADDR 0x3f0000
1557 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1558 /* if auto start mode, starts bit blt now */
1559 if (s
->vga
.gr
[0x31] & CIRRUS_BLT_AUTOSTART
) {
1560 cirrus_bitblt_start(s
);
1563 case 0x2e: // BLT SRC ADDR 0x3f0000
1564 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1566 case 0x31: // BLT STATUS/START
1567 cirrus_write_bitblt(s
, reg_value
);
1571 printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index
,
1578 /***************************************
1580 * I/O access between 0x3d4-0x3d5
1582 ***************************************/
1584 static int cirrus_vga_read_cr(CirrusVGAState
* s
, unsigned reg_index
)
1586 switch (reg_index
) {
1587 case 0x00: // Standard VGA
1588 case 0x01: // Standard VGA
1589 case 0x02: // Standard VGA
1590 case 0x03: // Standard VGA
1591 case 0x04: // Standard VGA
1592 case 0x05: // Standard VGA
1593 case 0x06: // Standard VGA
1594 case 0x07: // Standard VGA
1595 case 0x08: // Standard VGA
1596 case 0x09: // Standard VGA
1597 case 0x0a: // Standard VGA
1598 case 0x0b: // Standard VGA
1599 case 0x0c: // Standard VGA
1600 case 0x0d: // Standard VGA
1601 case 0x0e: // Standard VGA
1602 case 0x0f: // Standard VGA
1603 case 0x10: // Standard VGA
1604 case 0x11: // Standard VGA
1605 case 0x12: // Standard VGA
1606 case 0x13: // Standard VGA
1607 case 0x14: // Standard VGA
1608 case 0x15: // Standard VGA
1609 case 0x16: // Standard VGA
1610 case 0x17: // Standard VGA
1611 case 0x18: // Standard VGA
1612 return s
->vga
.cr
[s
->vga
.cr_index
];
1613 case 0x24: // Attribute Controller Toggle Readback (R)
1614 return (s
->vga
.ar_flip_flop
<< 7);
1615 case 0x19: // Interlace End
1616 case 0x1a: // Miscellaneous Control
1617 case 0x1b: // Extended Display Control
1618 case 0x1c: // Sync Adjust and Genlock
1619 case 0x1d: // Overlay Extended Control
1620 case 0x22: // Graphics Data Latches Readback (R)
1621 case 0x25: // Part Status
1622 case 0x27: // Part ID (R)
1623 return s
->vga
.cr
[s
->vga
.cr_index
];
1624 case 0x26: // Attribute Controller Index Readback (R)
1625 return s
->vga
.ar_index
& 0x3f;
1629 printf("cirrus: inport cr_index %02x\n", reg_index
);
1635 static void cirrus_vga_write_cr(CirrusVGAState
* s
, int reg_value
)
1637 switch (s
->vga
.cr_index
) {
1638 case 0x00: // Standard VGA
1639 case 0x01: // Standard VGA
1640 case 0x02: // Standard VGA
1641 case 0x03: // Standard VGA
1642 case 0x04: // Standard VGA
1643 case 0x05: // Standard VGA
1644 case 0x06: // Standard VGA
1645 case 0x07: // Standard VGA
1646 case 0x08: // Standard VGA
1647 case 0x09: // Standard VGA
1648 case 0x0a: // Standard VGA
1649 case 0x0b: // Standard VGA
1650 case 0x0c: // Standard VGA
1651 case 0x0d: // Standard VGA
1652 case 0x0e: // Standard VGA
1653 case 0x0f: // Standard VGA
1654 case 0x10: // Standard VGA
1655 case 0x11: // Standard VGA
1656 case 0x12: // Standard VGA
1657 case 0x13: // Standard VGA
1658 case 0x14: // Standard VGA
1659 case 0x15: // Standard VGA
1660 case 0x16: // Standard VGA
1661 case 0x17: // Standard VGA
1662 case 0x18: // Standard VGA
1663 /* handle CR0-7 protection */
1664 if ((s
->vga
.cr
[0x11] & 0x80) && s
->vga
.cr_index
<= 7) {
1665 /* can always write bit 4 of CR7 */
1666 if (s
->vga
.cr_index
== 7)
1667 s
->vga
.cr
[7] = (s
->vga
.cr
[7] & ~0x10) | (reg_value
& 0x10);
1670 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1671 switch(s
->vga
.cr_index
) {
1679 s
->vga
.update_retrace_info(&s
->vga
);
1683 case 0x19: // Interlace End
1684 case 0x1a: // Miscellaneous Control
1685 case 0x1b: // Extended Display Control
1686 case 0x1c: // Sync Adjust and Genlock
1687 case 0x1d: // Overlay Extended Control
1688 s
->vga
.cr
[s
->vga
.cr_index
] = reg_value
;
1690 printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1691 s
->vga
.cr_index
, reg_value
);
1694 case 0x22: // Graphics Data Latches Readback (R)
1695 case 0x24: // Attribute Controller Toggle Readback (R)
1696 case 0x26: // Attribute Controller Index Readback (R)
1697 case 0x27: // Part ID (R)
1699 case 0x25: // Part Status
1702 printf("cirrus: outport cr_index %02x, cr_value %02x\n",
1703 s
->vga
.cr_index
, reg_value
);
1709 /***************************************
1711 * memory-mapped I/O (bitblt)
1713 ***************************************/
1715 static uint8_t cirrus_mmio_blt_read(CirrusVGAState
* s
, unsigned address
)
1720 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1721 value
= cirrus_vga_read_gr(s
, 0x00);
1723 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1724 value
= cirrus_vga_read_gr(s
, 0x10);
1726 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1727 value
= cirrus_vga_read_gr(s
, 0x12);
1729 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1730 value
= cirrus_vga_read_gr(s
, 0x14);
1732 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1733 value
= cirrus_vga_read_gr(s
, 0x01);
1735 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1736 value
= cirrus_vga_read_gr(s
, 0x11);
1738 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1739 value
= cirrus_vga_read_gr(s
, 0x13);
1741 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1742 value
= cirrus_vga_read_gr(s
, 0x15);
1744 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1745 value
= cirrus_vga_read_gr(s
, 0x20);
1747 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1748 value
= cirrus_vga_read_gr(s
, 0x21);
1750 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1751 value
= cirrus_vga_read_gr(s
, 0x22);
1753 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1754 value
= cirrus_vga_read_gr(s
, 0x23);
1756 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1757 value
= cirrus_vga_read_gr(s
, 0x24);
1759 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1760 value
= cirrus_vga_read_gr(s
, 0x25);
1762 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1763 value
= cirrus_vga_read_gr(s
, 0x26);
1765 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1766 value
= cirrus_vga_read_gr(s
, 0x27);
1768 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1769 value
= cirrus_vga_read_gr(s
, 0x28);
1771 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1772 value
= cirrus_vga_read_gr(s
, 0x29);
1774 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1775 value
= cirrus_vga_read_gr(s
, 0x2a);
1777 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1778 value
= cirrus_vga_read_gr(s
, 0x2c);
1780 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1781 value
= cirrus_vga_read_gr(s
, 0x2d);
1783 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1784 value
= cirrus_vga_read_gr(s
, 0x2e);
1786 case CIRRUS_MMIO_BLTWRITEMASK
:
1787 value
= cirrus_vga_read_gr(s
, 0x2f);
1789 case CIRRUS_MMIO_BLTMODE
:
1790 value
= cirrus_vga_read_gr(s
, 0x30);
1792 case CIRRUS_MMIO_BLTROP
:
1793 value
= cirrus_vga_read_gr(s
, 0x32);
1795 case CIRRUS_MMIO_BLTMODEEXT
:
1796 value
= cirrus_vga_read_gr(s
, 0x33);
1798 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1799 value
= cirrus_vga_read_gr(s
, 0x34);
1801 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1802 value
= cirrus_vga_read_gr(s
, 0x35);
1804 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1805 value
= cirrus_vga_read_gr(s
, 0x38);
1807 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1808 value
= cirrus_vga_read_gr(s
, 0x39);
1810 case CIRRUS_MMIO_BLTSTATUS
:
1811 value
= cirrus_vga_read_gr(s
, 0x31);
1815 printf("cirrus: mmio read - address 0x%04x\n", address
);
1820 return (uint8_t) value
;
1823 static void cirrus_mmio_blt_write(CirrusVGAState
* s
, unsigned address
,
1827 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1828 cirrus_vga_write_gr(s
, 0x00, value
);
1830 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1831 cirrus_vga_write_gr(s
, 0x10, value
);
1833 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1834 cirrus_vga_write_gr(s
, 0x12, value
);
1836 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1837 cirrus_vga_write_gr(s
, 0x14, value
);
1839 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1840 cirrus_vga_write_gr(s
, 0x01, value
);
1842 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1843 cirrus_vga_write_gr(s
, 0x11, value
);
1845 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1846 cirrus_vga_write_gr(s
, 0x13, value
);
1848 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1849 cirrus_vga_write_gr(s
, 0x15, value
);
1851 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1852 cirrus_vga_write_gr(s
, 0x20, value
);
1854 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1855 cirrus_vga_write_gr(s
, 0x21, value
);
1857 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1858 cirrus_vga_write_gr(s
, 0x22, value
);
1860 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1861 cirrus_vga_write_gr(s
, 0x23, value
);
1863 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1864 cirrus_vga_write_gr(s
, 0x24, value
);
1866 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1867 cirrus_vga_write_gr(s
, 0x25, value
);
1869 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1870 cirrus_vga_write_gr(s
, 0x26, value
);
1872 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1873 cirrus_vga_write_gr(s
, 0x27, value
);
1875 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1876 cirrus_vga_write_gr(s
, 0x28, value
);
1878 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1879 cirrus_vga_write_gr(s
, 0x29, value
);
1881 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1882 cirrus_vga_write_gr(s
, 0x2a, value
);
1884 case (CIRRUS_MMIO_BLTDESTADDR
+ 3):
1887 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1888 cirrus_vga_write_gr(s
, 0x2c, value
);
1890 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1891 cirrus_vga_write_gr(s
, 0x2d, value
);
1893 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1894 cirrus_vga_write_gr(s
, 0x2e, value
);
1896 case CIRRUS_MMIO_BLTWRITEMASK
:
1897 cirrus_vga_write_gr(s
, 0x2f, value
);
1899 case CIRRUS_MMIO_BLTMODE
:
1900 cirrus_vga_write_gr(s
, 0x30, value
);
1902 case CIRRUS_MMIO_BLTROP
:
1903 cirrus_vga_write_gr(s
, 0x32, value
);
1905 case CIRRUS_MMIO_BLTMODEEXT
:
1906 cirrus_vga_write_gr(s
, 0x33, value
);
1908 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1909 cirrus_vga_write_gr(s
, 0x34, value
);
1911 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1912 cirrus_vga_write_gr(s
, 0x35, value
);
1914 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1915 cirrus_vga_write_gr(s
, 0x38, value
);
1917 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1918 cirrus_vga_write_gr(s
, 0x39, value
);
1920 case CIRRUS_MMIO_BLTSTATUS
:
1921 cirrus_vga_write_gr(s
, 0x31, value
);
1925 printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1932 /***************************************
1936 * assume TARGET_PAGE_SIZE >= 16
1938 ***************************************/
1940 static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState
* s
,
1946 unsigned val
= mem_value
;
1949 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1950 for (x
= 0; x
< 8; x
++) {
1952 *dst
= s
->cirrus_shadow_gr1
;
1953 } else if (mode
== 5) {
1954 *dst
= s
->cirrus_shadow_gr0
;
1959 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ offset
);
1960 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ offset
+ 7);
1963 static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState
* s
,
1969 unsigned val
= mem_value
;
1972 dst
= s
->vga
.vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1973 for (x
= 0; x
< 8; x
++) {
1975 *dst
= s
->cirrus_shadow_gr1
;
1976 *(dst
+ 1) = s
->vga
.gr
[0x11];
1977 } else if (mode
== 5) {
1978 *dst
= s
->cirrus_shadow_gr0
;
1979 *(dst
+ 1) = s
->vga
.gr
[0x10];
1984 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ offset
);
1985 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ offset
+ 15);
1988 /***************************************
1990 * memory access between 0xa0000-0xbffff
1992 ***************************************/
1994 static uint32_t cirrus_vga_mem_readb(void *opaque
, target_phys_addr_t addr
)
1996 CirrusVGAState
*s
= opaque
;
1997 unsigned bank_index
;
1998 unsigned bank_offset
;
2001 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
2002 return vga_mem_readb(s
, addr
);
2007 if (addr
< 0x10000) {
2008 /* XXX handle bitblt */
2010 bank_index
= addr
>> 15;
2011 bank_offset
= addr
& 0x7fff;
2012 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2013 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2014 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2016 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2019 bank_offset
&= s
->cirrus_addr_mask
;
2020 val
= *(s
->vga
.vram_ptr
+ bank_offset
);
2023 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2024 /* memory-mapped I/O */
2026 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
2027 val
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2032 printf("cirrus: mem_readb " TARGET_FMT_plx
"\n", addr
);
2038 static uint32_t cirrus_vga_mem_readw(void *opaque
, target_phys_addr_t addr
)
2041 #ifdef TARGET_WORDS_BIGENDIAN
2042 v
= cirrus_vga_mem_readb(opaque
, addr
) << 8;
2043 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1);
2045 v
= cirrus_vga_mem_readb(opaque
, addr
);
2046 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 8;
2051 static uint32_t cirrus_vga_mem_readl(void *opaque
, target_phys_addr_t addr
)
2054 #ifdef TARGET_WORDS_BIGENDIAN
2055 v
= cirrus_vga_mem_readb(opaque
, addr
) << 24;
2056 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 16;
2057 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 2) << 8;
2058 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 3);
2060 v
= cirrus_vga_mem_readb(opaque
, addr
);
2061 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 8;
2062 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 2) << 16;
2063 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 3) << 24;
2068 static void cirrus_vga_mem_writeb(void *opaque
, target_phys_addr_t addr
,
2071 CirrusVGAState
*s
= opaque
;
2072 unsigned bank_index
;
2073 unsigned bank_offset
;
2076 if ((s
->vga
.sr
[0x07] & 0x01) == 0) {
2077 vga_mem_writeb(s
, addr
, mem_value
);
2083 if (addr
< 0x10000) {
2084 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2086 *s
->cirrus_srcptr
++ = (uint8_t) mem_value
;
2087 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2088 cirrus_bitblt_cputovideo_next(s
);
2092 bank_index
= addr
>> 15;
2093 bank_offset
= addr
& 0x7fff;
2094 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2095 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2096 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2098 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2101 bank_offset
&= s
->cirrus_addr_mask
;
2102 mode
= s
->vga
.gr
[0x05] & 0x7;
2103 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2104 *(s
->vga
.vram_ptr
+ bank_offset
) = mem_value
;
2105 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+
2108 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2109 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
,
2113 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
,
2120 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2121 /* memory-mapped I/O */
2122 if ((s
->vga
.sr
[0x17] & 0x44) == 0x04) {
2123 cirrus_mmio_blt_write(s
, addr
& 0xff, mem_value
);
2127 printf("cirrus: mem_writeb " TARGET_FMT_plx
" value %02x\n", addr
,
2133 static void cirrus_vga_mem_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
2135 #ifdef TARGET_WORDS_BIGENDIAN
2136 cirrus_vga_mem_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2137 cirrus_vga_mem_writeb(opaque
, addr
+ 1, val
& 0xff);
2139 cirrus_vga_mem_writeb(opaque
, addr
, val
& 0xff);
2140 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2144 static void cirrus_vga_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
2146 #ifdef TARGET_WORDS_BIGENDIAN
2147 cirrus_vga_mem_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2148 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2149 cirrus_vga_mem_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2150 cirrus_vga_mem_writeb(opaque
, addr
+ 3, val
& 0xff);
2152 cirrus_vga_mem_writeb(opaque
, addr
, val
& 0xff);
2153 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2154 cirrus_vga_mem_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2155 cirrus_vga_mem_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2159 static CPUReadMemoryFunc
* const cirrus_vga_mem_read
[3] = {
2160 cirrus_vga_mem_readb
,
2161 cirrus_vga_mem_readw
,
2162 cirrus_vga_mem_readl
,
2165 static CPUWriteMemoryFunc
* const cirrus_vga_mem_write
[3] = {
2166 cirrus_vga_mem_writeb
,
2167 cirrus_vga_mem_writew
,
2168 cirrus_vga_mem_writel
,
2171 /***************************************
2175 ***************************************/
2177 static inline void invalidate_cursor1(CirrusVGAState
*s
)
2179 if (s
->last_hw_cursor_size
) {
2180 vga_invalidate_scanlines(&s
->vga
,
2181 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_start
,
2182 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_end
);
2186 static inline void cirrus_cursor_compute_yrange(CirrusVGAState
*s
)
2190 int y
, y_min
, y_max
;
2192 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2193 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2194 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2197 for(y
= 0; y
< 64; y
++) {
2198 content
= ((uint32_t *)src
)[0] |
2199 ((uint32_t *)src
)[1] |
2200 ((uint32_t *)src
)[2] |
2201 ((uint32_t *)src
)[3];
2211 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2214 for(y
= 0; y
< 32; y
++) {
2215 content
= ((uint32_t *)src
)[0] |
2216 ((uint32_t *)(src
+ 128))[0];
2226 if (y_min
> y_max
) {
2227 s
->last_hw_cursor_y_start
= 0;
2228 s
->last_hw_cursor_y_end
= 0;
2230 s
->last_hw_cursor_y_start
= y_min
;
2231 s
->last_hw_cursor_y_end
= y_max
+ 1;
2235 /* NOTE: we do not currently handle the cursor bitmap change, so we
2236 update the cursor only if it moves. */
2237 static void cirrus_cursor_invalidate(VGACommonState
*s1
)
2239 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2242 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
)) {
2245 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
)
2250 /* invalidate last cursor and new cursor if any change */
2251 if (s
->last_hw_cursor_size
!= size
||
2252 s
->last_hw_cursor_x
!= s
->hw_cursor_x
||
2253 s
->last_hw_cursor_y
!= s
->hw_cursor_y
) {
2255 invalidate_cursor1(s
);
2257 s
->last_hw_cursor_size
= size
;
2258 s
->last_hw_cursor_x
= s
->hw_cursor_x
;
2259 s
->last_hw_cursor_y
= s
->hw_cursor_y
;
2260 /* compute the real cursor min and max y */
2261 cirrus_cursor_compute_yrange(s
);
2262 invalidate_cursor1(s
);
2266 static void cirrus_cursor_draw_line(VGACommonState
*s1
, uint8_t *d1
, int scr_y
)
2268 CirrusVGAState
*s
= container_of(s1
, CirrusVGAState
, vga
);
2269 int w
, h
, bpp
, x1
, x2
, poffset
;
2270 unsigned int color0
, color1
;
2271 const uint8_t *palette
, *src
;
2274 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_SHOW
))
2276 /* fast test to see if the cursor intersects with the scan line */
2277 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2282 if (scr_y
< s
->hw_cursor_y
||
2283 scr_y
>= (s
->hw_cursor_y
+ h
))
2286 src
= s
->vga
.vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2287 if (s
->vga
.sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2288 src
+= (s
->vga
.sr
[0x13] & 0x3c) * 256;
2289 src
+= (scr_y
- s
->hw_cursor_y
) * 16;
2291 content
= ((uint32_t *)src
)[0] |
2292 ((uint32_t *)src
)[1] |
2293 ((uint32_t *)src
)[2] |
2294 ((uint32_t *)src
)[3];
2296 src
+= (s
->vga
.sr
[0x13] & 0x3f) * 256;
2297 src
+= (scr_y
- s
->hw_cursor_y
) * 4;
2299 content
= ((uint32_t *)src
)[0] |
2300 ((uint32_t *)(src
+ 128))[0];
2302 /* if nothing to draw, no need to continue */
2307 x1
= s
->hw_cursor_x
;
2308 if (x1
>= s
->vga
.last_scr_width
)
2310 x2
= s
->hw_cursor_x
+ w
;
2311 if (x2
> s
->vga
.last_scr_width
)
2312 x2
= s
->vga
.last_scr_width
;
2314 palette
= s
->cirrus_hidden_palette
;
2315 color0
= s
->vga
.rgb_to_pixel(c6_to_8(palette
[0x0 * 3]),
2316 c6_to_8(palette
[0x0 * 3 + 1]),
2317 c6_to_8(palette
[0x0 * 3 + 2]));
2318 color1
= s
->vga
.rgb_to_pixel(c6_to_8(palette
[0xf * 3]),
2319 c6_to_8(palette
[0xf * 3 + 1]),
2320 c6_to_8(palette
[0xf * 3 + 2]));
2321 bpp
= ((ds_get_bits_per_pixel(s
->vga
.ds
) + 7) >> 3);
2323 switch(ds_get_bits_per_pixel(s
->vga
.ds
)) {
2327 vga_draw_cursor_line_8(d1
, src
, poffset
, w
, color0
, color1
, 0xff);
2330 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0x7fff);
2333 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0xffff);
2336 vga_draw_cursor_line_32(d1
, src
, poffset
, w
, color0
, color1
, 0xffffff);
2341 /***************************************
2345 ***************************************/
2347 static uint32_t cirrus_linear_readb(void *opaque
, target_phys_addr_t addr
)
2349 CirrusVGAState
*s
= opaque
;
2352 addr
&= s
->cirrus_addr_mask
;
2354 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2355 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2356 /* memory-mapped I/O */
2357 ret
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2359 /* XXX handle bitblt */
2363 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2365 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2368 addr
&= s
->cirrus_addr_mask
;
2369 ret
= *(s
->vga
.vram_ptr
+ addr
);
2375 static uint32_t cirrus_linear_readw(void *opaque
, target_phys_addr_t addr
)
2378 #ifdef TARGET_WORDS_BIGENDIAN
2379 v
= cirrus_linear_readb(opaque
, addr
) << 8;
2380 v
|= cirrus_linear_readb(opaque
, addr
+ 1);
2382 v
= cirrus_linear_readb(opaque
, addr
);
2383 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 8;
2388 static uint32_t cirrus_linear_readl(void *opaque
, target_phys_addr_t addr
)
2391 #ifdef TARGET_WORDS_BIGENDIAN
2392 v
= cirrus_linear_readb(opaque
, addr
) << 24;
2393 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 16;
2394 v
|= cirrus_linear_readb(opaque
, addr
+ 2) << 8;
2395 v
|= cirrus_linear_readb(opaque
, addr
+ 3);
2397 v
= cirrus_linear_readb(opaque
, addr
);
2398 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 8;
2399 v
|= cirrus_linear_readb(opaque
, addr
+ 2) << 16;
2400 v
|= cirrus_linear_readb(opaque
, addr
+ 3) << 24;
2405 static void cirrus_linear_writeb(void *opaque
, target_phys_addr_t addr
,
2408 CirrusVGAState
*s
= opaque
;
2411 addr
&= s
->cirrus_addr_mask
;
2413 if (((s
->vga
.sr
[0x17] & 0x44) == 0x44) &&
2414 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2415 /* memory-mapped I/O */
2416 cirrus_mmio_blt_write(s
, addr
& 0xff, val
);
2417 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2419 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2420 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2421 cirrus_bitblt_cputovideo_next(s
);
2425 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2427 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2430 addr
&= s
->cirrus_addr_mask
;
2432 mode
= s
->vga
.gr
[0x05] & 0x7;
2433 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2434 *(s
->vga
.vram_ptr
+ addr
) = (uint8_t) val
;
2435 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ addr
);
2437 if ((s
->vga
.gr
[0x0B] & 0x14) != 0x14) {
2438 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
, addr
, val
);
2440 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
, addr
, val
);
2446 static void cirrus_linear_writew(void *opaque
, target_phys_addr_t addr
,
2449 #ifdef TARGET_WORDS_BIGENDIAN
2450 cirrus_linear_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2451 cirrus_linear_writeb(opaque
, addr
+ 1, val
& 0xff);
2453 cirrus_linear_writeb(opaque
, addr
, val
& 0xff);
2454 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2458 static void cirrus_linear_writel(void *opaque
, target_phys_addr_t addr
,
2461 #ifdef TARGET_WORDS_BIGENDIAN
2462 cirrus_linear_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2463 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2464 cirrus_linear_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2465 cirrus_linear_writeb(opaque
, addr
+ 3, val
& 0xff);
2467 cirrus_linear_writeb(opaque
, addr
, val
& 0xff);
2468 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2469 cirrus_linear_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2470 cirrus_linear_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2475 static CPUReadMemoryFunc
* const cirrus_linear_read
[3] = {
2476 cirrus_linear_readb
,
2477 cirrus_linear_readw
,
2478 cirrus_linear_readl
,
2481 static CPUWriteMemoryFunc
* const cirrus_linear_write
[3] = {
2482 cirrus_linear_writeb
,
2483 cirrus_linear_writew
,
2484 cirrus_linear_writel
,
2487 /***************************************
2489 * system to screen memory access
2491 ***************************************/
2494 static uint32_t cirrus_linear_bitblt_readb(void *opaque
, target_phys_addr_t addr
)
2498 /* XXX handle bitblt */
2503 static uint32_t cirrus_linear_bitblt_readw(void *opaque
, target_phys_addr_t addr
)
2506 #ifdef TARGET_WORDS_BIGENDIAN
2507 v
= cirrus_linear_bitblt_readb(opaque
, addr
) << 8;
2508 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1);
2510 v
= cirrus_linear_bitblt_readb(opaque
, addr
);
2511 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 8;
2516 static uint32_t cirrus_linear_bitblt_readl(void *opaque
, target_phys_addr_t addr
)
2519 #ifdef TARGET_WORDS_BIGENDIAN
2520 v
= cirrus_linear_bitblt_readb(opaque
, addr
) << 24;
2521 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 16;
2522 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 2) << 8;
2523 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 3);
2525 v
= cirrus_linear_bitblt_readb(opaque
, addr
);
2526 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 8;
2527 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 2) << 16;
2528 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 3) << 24;
2533 static void cirrus_linear_bitblt_writeb(void *opaque
, target_phys_addr_t addr
,
2536 CirrusVGAState
*s
= opaque
;
2538 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2540 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2541 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2542 cirrus_bitblt_cputovideo_next(s
);
2547 static void cirrus_linear_bitblt_writew(void *opaque
, target_phys_addr_t addr
,
2550 #ifdef TARGET_WORDS_BIGENDIAN
2551 cirrus_linear_bitblt_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2552 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, val
& 0xff);
2554 cirrus_linear_bitblt_writeb(opaque
, addr
, val
& 0xff);
2555 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2559 static void cirrus_linear_bitblt_writel(void *opaque
, target_phys_addr_t addr
,
2562 #ifdef TARGET_WORDS_BIGENDIAN
2563 cirrus_linear_bitblt_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2564 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2565 cirrus_linear_bitblt_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2566 cirrus_linear_bitblt_writeb(opaque
, addr
+ 3, val
& 0xff);
2568 cirrus_linear_bitblt_writeb(opaque
, addr
, val
& 0xff);
2569 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2570 cirrus_linear_bitblt_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2571 cirrus_linear_bitblt_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2576 static CPUReadMemoryFunc
* const cirrus_linear_bitblt_read
[3] = {
2577 cirrus_linear_bitblt_readb
,
2578 cirrus_linear_bitblt_readw
,
2579 cirrus_linear_bitblt_readl
,
2582 static CPUWriteMemoryFunc
* const cirrus_linear_bitblt_write
[3] = {
2583 cirrus_linear_bitblt_writeb
,
2584 cirrus_linear_bitblt_writew
,
2585 cirrus_linear_bitblt_writel
,
2588 static void map_linear_vram(CirrusVGAState
*s
)
2590 if (!s
->vga
.map_addr
&& s
->vga
.lfb_addr
&& s
->vga
.lfb_end
) {
2591 s
->vga
.map_addr
= s
->vga
.lfb_addr
;
2592 s
->vga
.map_end
= s
->vga
.lfb_end
;
2593 cpu_register_physical_memory(s
->vga
.map_addr
, s
->vga
.map_end
- s
->vga
.map_addr
, s
->vga
.vram_offset
);
2596 if (!s
->vga
.map_addr
)
2599 s
->vga
.lfb_vram_mapped
= 0;
2601 if (!(s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
)
2602 && !((s
->vga
.sr
[0x07] & 0x01) == 0)
2603 && !((s
->vga
.gr
[0x0B] & 0x14) == 0x14)
2604 && !(s
->vga
.gr
[0x0B] & 0x02)) {
2606 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x8000,
2607 (s
->vga
.vram_offset
+ s
->cirrus_bank_base
[0]) | IO_MEM_RAM
);
2608 cpu_register_physical_memory(isa_mem_base
+ 0xa8000, 0x8000,
2609 (s
->vga
.vram_offset
+ s
->cirrus_bank_base
[1]) | IO_MEM_RAM
);
2611 s
->vga
.lfb_vram_mapped
= 1;
2614 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x20000,
2615 s
->vga
.vga_io_memory
);
2618 vga_dirty_log_start(&s
->vga
);
2621 static void unmap_linear_vram(CirrusVGAState
*s
)
2623 if (s
->vga
.map_addr
&& s
->vga
.lfb_addr
&& s
->vga
.lfb_end
)
2624 s
->vga
.map_addr
= s
->vga
.map_end
= 0;
2626 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x20000,
2627 s
->vga
.vga_io_memory
);
2630 /* Compute the memory access functions */
2631 static void cirrus_update_memory_access(CirrusVGAState
*s
)
2635 if ((s
->vga
.sr
[0x17] & 0x44) == 0x44) {
2637 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2640 if ((s
->vga
.gr
[0x0B] & 0x14) == 0x14) {
2642 } else if (s
->vga
.gr
[0x0B] & 0x02) {
2646 mode
= s
->vga
.gr
[0x05] & 0x7;
2647 if (mode
< 4 || mode
> 5 || ((s
->vga
.gr
[0x0B] & 0x4) == 0)) {
2651 unmap_linear_vram(s
);
2659 static uint32_t cirrus_vga_ioport_read(void *opaque
, uint32_t addr
)
2661 CirrusVGAState
*c
= opaque
;
2662 VGACommonState
*s
= &c
->vga
;
2665 if (vga_ioport_invalid(s
, addr
)) {
2670 if (s
->ar_flip_flop
== 0) {
2677 index
= s
->ar_index
& 0x1f;
2690 val
= cirrus_vga_read_sr(c
);
2692 #ifdef DEBUG_VGA_REG
2693 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
2697 val
= cirrus_read_hidden_dac(c
);
2703 val
= s
->dac_write_index
;
2704 c
->cirrus_hidden_dac_lockindex
= 0;
2707 val
= cirrus_vga_read_palette(c
);
2719 val
= cirrus_vga_read_gr(c
, s
->gr_index
);
2720 #ifdef DEBUG_VGA_REG
2721 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
2730 val
= cirrus_vga_read_cr(c
, s
->cr_index
);
2731 #ifdef DEBUG_VGA_REG
2732 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
2737 /* just toggle to fool polling */
2738 val
= s
->st01
= s
->retrace(s
);
2739 s
->ar_flip_flop
= 0;
2746 #if defined(DEBUG_VGA)
2747 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
2752 static void cirrus_vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
2754 CirrusVGAState
*c
= opaque
;
2755 VGACommonState
*s
= &c
->vga
;
2758 /* check port range access depending on color/monochrome mode */
2759 if (vga_ioport_invalid(s
, addr
)) {
2763 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
2768 if (s
->ar_flip_flop
== 0) {
2772 index
= s
->ar_index
& 0x1f;
2775 s
->ar
[index
] = val
& 0x3f;
2778 s
->ar
[index
] = val
& ~0x10;
2784 s
->ar
[index
] = val
& ~0xc0;
2787 s
->ar
[index
] = val
& ~0xf0;
2790 s
->ar
[index
] = val
& ~0xf0;
2796 s
->ar_flip_flop
^= 1;
2799 s
->msr
= val
& ~0x10;
2800 s
->update_retrace_info(s
);
2806 #ifdef DEBUG_VGA_REG
2807 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
2809 cirrus_vga_write_sr(c
, val
);
2813 cirrus_write_hidden_dac(c
, val
);
2816 s
->dac_read_index
= val
;
2817 s
->dac_sub_index
= 0;
2821 s
->dac_write_index
= val
;
2822 s
->dac_sub_index
= 0;
2826 cirrus_vga_write_palette(c
, val
);
2832 #ifdef DEBUG_VGA_REG
2833 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
2835 cirrus_vga_write_gr(c
, s
->gr_index
, val
);
2843 #ifdef DEBUG_VGA_REG
2844 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
2846 cirrus_vga_write_cr(c
, val
);
2850 s
->fcr
= val
& 0x10;
2855 /***************************************
2857 * memory-mapped I/O access
2859 ***************************************/
2861 static uint32_t cirrus_mmio_readb(void *opaque
, target_phys_addr_t addr
)
2863 CirrusVGAState
*s
= opaque
;
2865 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
2867 if (addr
>= 0x100) {
2868 return cirrus_mmio_blt_read(s
, addr
- 0x100);
2870 return cirrus_vga_ioport_read(s
, addr
+ 0x3c0);
2874 static uint32_t cirrus_mmio_readw(void *opaque
, target_phys_addr_t addr
)
2877 #ifdef TARGET_WORDS_BIGENDIAN
2878 v
= cirrus_mmio_readb(opaque
, addr
) << 8;
2879 v
|= cirrus_mmio_readb(opaque
, addr
+ 1);
2881 v
= cirrus_mmio_readb(opaque
, addr
);
2882 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
2887 static uint32_t cirrus_mmio_readl(void *opaque
, target_phys_addr_t addr
)
2890 #ifdef TARGET_WORDS_BIGENDIAN
2891 v
= cirrus_mmio_readb(opaque
, addr
) << 24;
2892 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 16;
2893 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 8;
2894 v
|= cirrus_mmio_readb(opaque
, addr
+ 3);
2896 v
= cirrus_mmio_readb(opaque
, addr
);
2897 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
2898 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 16;
2899 v
|= cirrus_mmio_readb(opaque
, addr
+ 3) << 24;
2904 static void cirrus_mmio_writeb(void *opaque
, target_phys_addr_t addr
,
2907 CirrusVGAState
*s
= opaque
;
2909 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
2911 if (addr
>= 0x100) {
2912 cirrus_mmio_blt_write(s
, addr
- 0x100, val
);
2914 cirrus_vga_ioport_write(s
, addr
+ 0x3c0, val
);
2918 static void cirrus_mmio_writew(void *opaque
, target_phys_addr_t addr
,
2921 #ifdef TARGET_WORDS_BIGENDIAN
2922 cirrus_mmio_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2923 cirrus_mmio_writeb(opaque
, addr
+ 1, val
& 0xff);
2925 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
2926 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2930 static void cirrus_mmio_writel(void *opaque
, target_phys_addr_t addr
,
2933 #ifdef TARGET_WORDS_BIGENDIAN
2934 cirrus_mmio_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2935 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2936 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2937 cirrus_mmio_writeb(opaque
, addr
+ 3, val
& 0xff);
2939 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
2940 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2941 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2942 cirrus_mmio_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2947 static CPUReadMemoryFunc
* const cirrus_mmio_read
[3] = {
2953 static CPUWriteMemoryFunc
* const cirrus_mmio_write
[3] = {
2959 /* load/save state */
2961 static int cirrus_post_load(void *opaque
, int version_id
)
2963 CirrusVGAState
*s
= opaque
;
2965 s
->vga
.gr
[0x00] = s
->cirrus_shadow_gr0
& 0x0f;
2966 s
->vga
.gr
[0x01] = s
->cirrus_shadow_gr1
& 0x0f;
2968 cirrus_update_memory_access(s
);
2970 s
->vga
.graphic_mode
= -1;
2971 cirrus_update_bank_ptr(s
, 0);
2972 cirrus_update_bank_ptr(s
, 1);
2976 static const VMStateDescription vmstate_cirrus_vga
= {
2977 .name
= "cirrus_vga",
2979 .minimum_version_id
= 1,
2980 .minimum_version_id_old
= 1,
2981 .post_load
= cirrus_post_load
,
2982 .fields
= (VMStateField
[]) {
2983 VMSTATE_UINT32(vga
.latch
, CirrusVGAState
),
2984 VMSTATE_UINT8(vga
.sr_index
, CirrusVGAState
),
2985 VMSTATE_BUFFER(vga
.sr
, CirrusVGAState
),
2986 VMSTATE_UINT8(vga
.gr_index
, CirrusVGAState
),
2987 VMSTATE_UINT8(cirrus_shadow_gr0
, CirrusVGAState
),
2988 VMSTATE_UINT8(cirrus_shadow_gr1
, CirrusVGAState
),
2989 VMSTATE_BUFFER_START_MIDDLE(vga
.gr
, CirrusVGAState
, 2),
2990 VMSTATE_UINT8(vga
.ar_index
, CirrusVGAState
),
2991 VMSTATE_BUFFER(vga
.ar
, CirrusVGAState
),
2992 VMSTATE_INT32(vga
.ar_flip_flop
, CirrusVGAState
),
2993 VMSTATE_UINT8(vga
.cr_index
, CirrusVGAState
),
2994 VMSTATE_BUFFER(vga
.cr
, CirrusVGAState
),
2995 VMSTATE_UINT8(vga
.msr
, CirrusVGAState
),
2996 VMSTATE_UINT8(vga
.fcr
, CirrusVGAState
),
2997 VMSTATE_UINT8(vga
.st00
, CirrusVGAState
),
2998 VMSTATE_UINT8(vga
.st01
, CirrusVGAState
),
2999 VMSTATE_UINT8(vga
.dac_state
, CirrusVGAState
),
3000 VMSTATE_UINT8(vga
.dac_sub_index
, CirrusVGAState
),
3001 VMSTATE_UINT8(vga
.dac_read_index
, CirrusVGAState
),
3002 VMSTATE_UINT8(vga
.dac_write_index
, CirrusVGAState
),
3003 VMSTATE_BUFFER(vga
.dac_cache
, CirrusVGAState
),
3004 VMSTATE_BUFFER(vga
.palette
, CirrusVGAState
),
3005 VMSTATE_INT32(vga
.bank_offset
, CirrusVGAState
),
3006 VMSTATE_UINT8(cirrus_hidden_dac_lockindex
, CirrusVGAState
),
3007 VMSTATE_UINT8(cirrus_hidden_dac_data
, CirrusVGAState
),
3008 VMSTATE_UINT32(hw_cursor_x
, CirrusVGAState
),
3009 VMSTATE_UINT32(hw_cursor_y
, CirrusVGAState
),
3010 /* XXX: we do not save the bitblt state - we assume we do not save
3011 the state when the blitter is active */
3012 VMSTATE_END_OF_LIST()
3016 static const VMStateDescription vmstate_pci_cirrus_vga
= {
3017 .name
= "cirrus_vga",
3019 .minimum_version_id
= 2,
3020 .minimum_version_id_old
= 2,
3021 .post_load
= cirrus_post_load
,
3022 .fields
= (VMStateField
[]) {
3023 VMSTATE_PCI_DEVICE(dev
, PCICirrusVGAState
),
3024 VMSTATE_STRUCT(cirrus_vga
, PCICirrusVGAState
, 0,
3025 vmstate_cirrus_vga
, CirrusVGAState
),
3026 VMSTATE_END_OF_LIST()
3030 /***************************************
3034 ***************************************/
3036 static void cirrus_reset(void *opaque
)
3038 CirrusVGAState
*s
= opaque
;
3040 vga_common_reset(&s
->vga
);
3041 unmap_linear_vram(s
);
3042 s
->vga
.sr
[0x06] = 0x0f;
3043 if (s
->device_id
== CIRRUS_ID_CLGD5446
) {
3044 /* 4MB 64 bit memory config, always PCI */
3045 s
->vga
.sr
[0x1F] = 0x2d; // MemClock
3046 s
->vga
.gr
[0x18] = 0x0f; // fastest memory configuration
3047 s
->vga
.sr
[0x0f] = 0x98;
3048 s
->vga
.sr
[0x17] = 0x20;
3049 s
->vga
.sr
[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
3051 s
->vga
.sr
[0x1F] = 0x22; // MemClock
3052 s
->vga
.sr
[0x0F] = CIRRUS_MEMSIZE_2M
;
3053 s
->vga
.sr
[0x17] = s
->bustype
;
3054 s
->vga
.sr
[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
3056 s
->vga
.cr
[0x27] = s
->device_id
;
3058 /* Win2K seems to assume that the pattern buffer is at 0xff
3060 memset(s
->vga
.vram_ptr
, 0xff, s
->real_vram_size
);
3062 s
->cirrus_hidden_dac_lockindex
= 5;
3063 s
->cirrus_hidden_dac_data
= 0;
3066 static void cirrus_init_common(CirrusVGAState
* s
, int device_id
, int is_pci
)
3073 for(i
= 0;i
< 256; i
++)
3074 rop_to_index
[i
] = CIRRUS_ROP_NOP_INDEX
; /* nop rop */
3075 rop_to_index
[CIRRUS_ROP_0
] = 0;
3076 rop_to_index
[CIRRUS_ROP_SRC_AND_DST
] = 1;
3077 rop_to_index
[CIRRUS_ROP_NOP
] = 2;
3078 rop_to_index
[CIRRUS_ROP_SRC_AND_NOTDST
] = 3;
3079 rop_to_index
[CIRRUS_ROP_NOTDST
] = 4;
3080 rop_to_index
[CIRRUS_ROP_SRC
] = 5;
3081 rop_to_index
[CIRRUS_ROP_1
] = 6;
3082 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_DST
] = 7;
3083 rop_to_index
[CIRRUS_ROP_SRC_XOR_DST
] = 8;
3084 rop_to_index
[CIRRUS_ROP_SRC_OR_DST
] = 9;
3085 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_NOTDST
] = 10;
3086 rop_to_index
[CIRRUS_ROP_SRC_NOTXOR_DST
] = 11;
3087 rop_to_index
[CIRRUS_ROP_SRC_OR_NOTDST
] = 12;
3088 rop_to_index
[CIRRUS_ROP_NOTSRC
] = 13;
3089 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_DST
] = 14;
3090 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_NOTDST
] = 15;
3091 s
->device_id
= device_id
;
3093 s
->bustype
= CIRRUS_BUSTYPE_PCI
;
3095 s
->bustype
= CIRRUS_BUSTYPE_ISA
;
3098 register_ioport_write(0x3c0, 16, 1, cirrus_vga_ioport_write
, s
);
3100 register_ioport_write(0x3b4, 2, 1, cirrus_vga_ioport_write
, s
);
3101 register_ioport_write(0x3d4, 2, 1, cirrus_vga_ioport_write
, s
);
3102 register_ioport_write(0x3ba, 1, 1, cirrus_vga_ioport_write
, s
);
3103 register_ioport_write(0x3da, 1, 1, cirrus_vga_ioport_write
, s
);
3105 register_ioport_read(0x3c0, 16, 1, cirrus_vga_ioport_read
, s
);
3107 register_ioport_read(0x3b4, 2, 1, cirrus_vga_ioport_read
, s
);
3108 register_ioport_read(0x3d4, 2, 1, cirrus_vga_ioport_read
, s
);
3109 register_ioport_read(0x3ba, 1, 1, cirrus_vga_ioport_read
, s
);
3110 register_ioport_read(0x3da, 1, 1, cirrus_vga_ioport_read
, s
);
3112 s
->vga
.vga_io_memory
= cpu_register_io_memory(cirrus_vga_mem_read
,
3113 cirrus_vga_mem_write
, s
);
3114 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
3115 s
->vga
.vga_io_memory
);
3116 qemu_register_coalesced_mmio(isa_mem_base
+ 0x000a0000, 0x20000);
3118 /* I/O handler for LFB */
3119 s
->cirrus_linear_io_addr
=
3120 cpu_register_io_memory(cirrus_linear_read
, cirrus_linear_write
, s
);
3122 /* I/O handler for LFB */
3123 s
->cirrus_linear_bitblt_io_addr
=
3124 cpu_register_io_memory(cirrus_linear_bitblt_read
,
3125 cirrus_linear_bitblt_write
, s
);
3127 /* I/O handler for memory-mapped I/O */
3128 s
->cirrus_mmio_io_addr
=
3129 cpu_register_io_memory(cirrus_mmio_read
, cirrus_mmio_write
, s
);
3132 (s
->device_id
== CIRRUS_ID_CLGD5446
) ? 4096 * 1024 : 2048 * 1024;
3134 /* XXX: s->vga.vram_size must be a power of two */
3135 s
->cirrus_addr_mask
= s
->real_vram_size
- 1;
3136 s
->linear_mmio_mask
= s
->real_vram_size
- 256;
3138 s
->vga
.get_bpp
= cirrus_get_bpp
;
3139 s
->vga
.get_offsets
= cirrus_get_offsets
;
3140 s
->vga
.get_resolution
= cirrus_get_resolution
;
3141 s
->vga
.cursor_invalidate
= cirrus_cursor_invalidate
;
3142 s
->vga
.cursor_draw_line
= cirrus_cursor_draw_line
;
3144 qemu_register_reset(cirrus_reset
, s
);
3148 /***************************************
3152 ***************************************/
3154 void isa_cirrus_vga_init(void)
3158 s
= qemu_mallocz(sizeof(CirrusVGAState
));
3160 vga_common_init(&s
->vga
, VGA_RAM_SIZE
);
3161 cirrus_init_common(s
, CIRRUS_ID_CLGD5430
, 0);
3162 s
->vga
.ds
= graphic_console_init(s
->vga
.update
, s
->vga
.invalidate
,
3163 s
->vga
.screen_dump
, s
->vga
.text_update
,
3165 vmstate_register(0, &vmstate_cirrus_vga
, s
);
3166 rom_add_vga(VGABIOS_CIRRUS_FILENAME
);
3167 /* XXX ISA-LFB support */
3170 /***************************************
3174 ***************************************/
3176 static void cirrus_pci_lfb_map(PCIDevice
*d
, int region_num
,
3177 uint32_t addr
, uint32_t size
, int type
)
3179 CirrusVGAState
*s
= &DO_UPCAST(PCICirrusVGAState
, dev
, d
)->cirrus_vga
;
3181 /* XXX: add byte swapping apertures */
3182 cpu_register_physical_memory(addr
, s
->vga
.vram_size
,
3183 s
->cirrus_linear_io_addr
);
3184 cpu_register_physical_memory(addr
+ 0x1000000, 0x400000,
3185 s
->cirrus_linear_bitblt_io_addr
);
3187 s
->vga
.map_addr
= s
->vga
.map_end
= 0;
3188 s
->vga
.lfb_addr
= addr
& TARGET_PAGE_MASK
;
3189 s
->vga
.lfb_end
= ((addr
+ VGA_RAM_SIZE
) + TARGET_PAGE_SIZE
- 1) & TARGET_PAGE_MASK
;
3190 /* account for overflow */
3191 if (s
->vga
.lfb_end
< addr
+ VGA_RAM_SIZE
)
3192 s
->vga
.lfb_end
= addr
+ VGA_RAM_SIZE
;
3194 vga_dirty_log_start(&s
->vga
);
3197 static void cirrus_pci_mmio_map(PCIDevice
*d
, int region_num
,
3198 uint32_t addr
, uint32_t size
, int type
)
3200 CirrusVGAState
*s
= &DO_UPCAST(PCICirrusVGAState
, dev
, d
)->cirrus_vga
;
3202 cpu_register_physical_memory(addr
, CIRRUS_PNPMMIO_SIZE
,
3203 s
->cirrus_mmio_io_addr
);
3206 static void pci_cirrus_write_config(PCIDevice
*d
,
3207 uint32_t address
, uint32_t val
, int len
)
3209 PCICirrusVGAState
*pvs
= DO_UPCAST(PCICirrusVGAState
, dev
, d
);
3210 CirrusVGAState
*s
= &pvs
->cirrus_vga
;
3212 pci_default_write_config(d
, address
, val
, len
);
3213 if (s
->vga
.map_addr
&& d
->io_regions
[0].addr
== -1)
3214 s
->vga
.map_addr
= 0;
3215 cirrus_update_memory_access(s
);
3218 static int pci_cirrus_vga_initfn(PCIDevice
*dev
)
3220 PCICirrusVGAState
*d
= DO_UPCAST(PCICirrusVGAState
, dev
, dev
);
3221 CirrusVGAState
*s
= &d
->cirrus_vga
;
3222 uint8_t *pci_conf
= d
->dev
.config
;
3223 int device_id
= CIRRUS_ID_CLGD5446
;
3226 vga_common_init(&s
->vga
, VGA_RAM_SIZE
);
3227 cirrus_init_common(s
, device_id
, 1);
3228 s
->vga
.ds
= graphic_console_init(s
->vga
.update
, s
->vga
.invalidate
,
3229 s
->vga
.screen_dump
, s
->vga
.text_update
,
3233 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_CIRRUS
);
3234 pci_config_set_device_id(pci_conf
, device_id
);
3235 pci_conf
[0x04] = PCI_COMMAND_IOACCESS
| PCI_COMMAND_MEMACCESS
;
3236 pci_config_set_class(pci_conf
, PCI_CLASS_DISPLAY_VGA
);
3237 pci_conf
[PCI_HEADER_TYPE
] = PCI_HEADER_TYPE_NORMAL
;
3239 /* setup memory space */
3241 /* memory #1 memory-mapped I/O */
3242 /* XXX: s->vga.vram_size must be a power of two */
3243 pci_register_bar((PCIDevice
*)d
, 0, 0x2000000,
3244 PCI_ADDRESS_SPACE_MEM_PREFETCH
, cirrus_pci_lfb_map
);
3245 if (device_id
== CIRRUS_ID_CLGD5446
) {
3246 pci_register_bar((PCIDevice
*)d
, 1, CIRRUS_PNPMMIO_SIZE
,
3247 PCI_ADDRESS_SPACE_MEM
, cirrus_pci_mmio_map
);
3249 vmstate_register(0, &vmstate_pci_cirrus_vga
, d
);
3252 rom_add_vga(VGABIOS_CIRRUS_FILENAME
);
3256 void pci_cirrus_vga_init(PCIBus
*bus
)
3258 pci_create_simple(bus
, -1, "Cirrus VGA");
3261 static PCIDeviceInfo cirrus_vga_info
= {
3262 .qdev
.name
= "Cirrus VGA",
3263 .qdev
.size
= sizeof(PCICirrusVGAState
),
3264 .init
= pci_cirrus_vga_initfn
,
3265 .config_write
= pci_cirrus_write_config
,
3268 static void cirrus_vga_register(void)
3270 pci_qdev_register(&cirrus_vga_info
);
3272 device_init(cirrus_vga_register
);