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/
38 * - destination write mask support not complete (bits 5..7)
39 * - optimize linear mappings
40 * - optimize bitblt functions
43 //#define DEBUG_CIRRUS
44 //#define DEBUG_BITBLT
46 /***************************************
50 ***************************************/
52 #define qemu_MIN(a,b) ((a) < (b) ? (a) : (b))
55 #define CIRRUS_ID_CLGD5422 (0x23<<2)
56 #define CIRRUS_ID_CLGD5426 (0x24<<2)
57 #define CIRRUS_ID_CLGD5424 (0x25<<2)
58 #define CIRRUS_ID_CLGD5428 (0x26<<2)
59 #define CIRRUS_ID_CLGD5430 (0x28<<2)
60 #define CIRRUS_ID_CLGD5434 (0x2A<<2)
61 #define CIRRUS_ID_CLGD5436 (0x2B<<2)
62 #define CIRRUS_ID_CLGD5446 (0x2E<<2)
65 #define CIRRUS_SR7_BPP_VGA 0x00
66 #define CIRRUS_SR7_BPP_SVGA 0x01
67 #define CIRRUS_SR7_BPP_MASK 0x0e
68 #define CIRRUS_SR7_BPP_8 0x00
69 #define CIRRUS_SR7_BPP_16_DOUBLEVCLK 0x02
70 #define CIRRUS_SR7_BPP_24 0x04
71 #define CIRRUS_SR7_BPP_16 0x06
72 #define CIRRUS_SR7_BPP_32 0x08
73 #define CIRRUS_SR7_ISAADDR_MASK 0xe0
76 #define CIRRUS_MEMSIZE_512k 0x08
77 #define CIRRUS_MEMSIZE_1M 0x10
78 #define CIRRUS_MEMSIZE_2M 0x18
79 #define CIRRUS_MEMFLAGS_BANKSWITCH 0x80 // bank switching is enabled.
82 #define CIRRUS_CURSOR_SHOW 0x01
83 #define CIRRUS_CURSOR_HIDDENPEL 0x02
84 #define CIRRUS_CURSOR_LARGE 0x04 // 64x64 if set, 32x32 if clear
87 #define CIRRUS_BUSTYPE_VLBFAST 0x10
88 #define CIRRUS_BUSTYPE_PCI 0x20
89 #define CIRRUS_BUSTYPE_VLBSLOW 0x30
90 #define CIRRUS_BUSTYPE_ISA 0x38
91 #define CIRRUS_MMIO_ENABLE 0x04
92 #define CIRRUS_MMIO_USE_PCIADDR 0x40 // 0xb8000 if cleared.
93 #define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
96 #define CIRRUS_BANKING_DUAL 0x01
97 #define CIRRUS_BANKING_GRANULARITY_16K 0x20 // set:16k, clear:4k
100 #define CIRRUS_BLTMODE_BACKWARDS 0x01
101 #define CIRRUS_BLTMODE_MEMSYSDEST 0x02
102 #define CIRRUS_BLTMODE_MEMSYSSRC 0x04
103 #define CIRRUS_BLTMODE_TRANSPARENTCOMP 0x08
104 #define CIRRUS_BLTMODE_PATTERNCOPY 0x40
105 #define CIRRUS_BLTMODE_COLOREXPAND 0x80
106 #define CIRRUS_BLTMODE_PIXELWIDTHMASK 0x30
107 #define CIRRUS_BLTMODE_PIXELWIDTH8 0x00
108 #define CIRRUS_BLTMODE_PIXELWIDTH16 0x10
109 #define CIRRUS_BLTMODE_PIXELWIDTH24 0x20
110 #define CIRRUS_BLTMODE_PIXELWIDTH32 0x30
113 #define CIRRUS_BLT_BUSY 0x01
114 #define CIRRUS_BLT_START 0x02
115 #define CIRRUS_BLT_RESET 0x04
116 #define CIRRUS_BLT_FIFOUSED 0x10
117 #define CIRRUS_BLT_AUTOSTART 0x80
120 #define CIRRUS_ROP_0 0x00
121 #define CIRRUS_ROP_SRC_AND_DST 0x05
122 #define CIRRUS_ROP_NOP 0x06
123 #define CIRRUS_ROP_SRC_AND_NOTDST 0x09
124 #define CIRRUS_ROP_NOTDST 0x0b
125 #define CIRRUS_ROP_SRC 0x0d
126 #define CIRRUS_ROP_1 0x0e
127 #define CIRRUS_ROP_NOTSRC_AND_DST 0x50
128 #define CIRRUS_ROP_SRC_XOR_DST 0x59
129 #define CIRRUS_ROP_SRC_OR_DST 0x6d
130 #define CIRRUS_ROP_NOTSRC_OR_NOTDST 0x90
131 #define CIRRUS_ROP_SRC_NOTXOR_DST 0x95
132 #define CIRRUS_ROP_SRC_OR_NOTDST 0xad
133 #define CIRRUS_ROP_NOTSRC 0xd0
134 #define CIRRUS_ROP_NOTSRC_OR_DST 0xd6
135 #define CIRRUS_ROP_NOTSRC_AND_NOTDST 0xda
137 #define CIRRUS_ROP_NOP_INDEX 2
138 #define CIRRUS_ROP_SRC_INDEX 5
141 #define CIRRUS_BLTMODEEXT_SOLIDFILL 0x04
142 #define CIRRUS_BLTMODEEXT_COLOREXPINV 0x02
143 #define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
146 #define CIRRUS_MMIO_BLTBGCOLOR 0x00 // dword
147 #define CIRRUS_MMIO_BLTFGCOLOR 0x04 // dword
148 #define CIRRUS_MMIO_BLTWIDTH 0x08 // word
149 #define CIRRUS_MMIO_BLTHEIGHT 0x0a // word
150 #define CIRRUS_MMIO_BLTDESTPITCH 0x0c // word
151 #define CIRRUS_MMIO_BLTSRCPITCH 0x0e // word
152 #define CIRRUS_MMIO_BLTDESTADDR 0x10 // dword
153 #define CIRRUS_MMIO_BLTSRCADDR 0x14 // dword
154 #define CIRRUS_MMIO_BLTWRITEMASK 0x17 // byte
155 #define CIRRUS_MMIO_BLTMODE 0x18 // byte
156 #define CIRRUS_MMIO_BLTROP 0x1a // byte
157 #define CIRRUS_MMIO_BLTMODEEXT 0x1b // byte
158 #define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c // word?
159 #define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20 // word?
160 #define CIRRUS_MMIO_LINEARDRAW_START_X 0x24 // word
161 #define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26 // word
162 #define CIRRUS_MMIO_LINEARDRAW_END_X 0x28 // word
163 #define CIRRUS_MMIO_LINEARDRAW_END_Y 0x2a // word
164 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c // byte
165 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d // byte
166 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e // byte
167 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f // byte
168 #define CIRRUS_MMIO_BRESENHAM_K1 0x30 // word
169 #define CIRRUS_MMIO_BRESENHAM_K3 0x32 // word
170 #define CIRRUS_MMIO_BRESENHAM_ERROR 0x34 // word
171 #define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36 // word
172 #define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38 // byte
173 #define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
174 #define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
177 #define PCI_DEVICE_CLGD5462 0x00d0
178 #define PCI_DEVICE_CLGD5465 0x00d6
180 // PCI 0x04: command(word), 0x06(word): status
181 #define PCI_COMMAND_IOACCESS 0x0001
182 #define PCI_COMMAND_MEMACCESS 0x0002
183 #define PCI_COMMAND_BUSMASTER 0x0004
184 #define PCI_COMMAND_SPECIALCYCLE 0x0008
185 #define PCI_COMMAND_MEMWRITEINVALID 0x0010
186 #define PCI_COMMAND_PALETTESNOOPING 0x0020
187 #define PCI_COMMAND_PARITYDETECTION 0x0040
188 #define PCI_COMMAND_ADDRESSDATASTEPPING 0x0080
189 #define PCI_COMMAND_SERR 0x0100
190 #define PCI_COMMAND_BACKTOBACKTRANS 0x0200
191 // PCI 0x08, 0xff000000 (0x09-0x0b:class,0x08:rev)
192 #define PCI_CLASS_BASE_DISPLAY 0x03
193 // PCI 0x08, 0x00ff0000
194 #define PCI_CLASS_SUB_VGA 0x00
195 // PCI 0x0c, 0x00ff0000 (0x0c:cacheline,0x0d:latency,0x0e:headertype,0x0f:Built-in self test)
196 #define PCI_CLASS_HEADERTYPE_00h 0x00
197 // 0x10-0x3f (headertype 00h)
198 // PCI 0x10,0x14,0x18,0x1c,0x20,0x24: base address mapping registers
199 // 0x10: MEMBASE, 0x14: IOBASE(hard-coded in XFree86 3.x)
200 #define PCI_MAP_MEM 0x0
201 #define PCI_MAP_IO 0x1
202 #define PCI_MAP_MEM_ADDR_MASK (~0xf)
203 #define PCI_MAP_IO_ADDR_MASK (~0x3)
204 #define PCI_MAP_MEMFLAGS_32BIT 0x0
205 #define PCI_MAP_MEMFLAGS_32BIT_1M 0x1
206 #define PCI_MAP_MEMFLAGS_64BIT 0x4
207 #define PCI_MAP_MEMFLAGS_CACHEABLE 0x8
208 // PCI 0x28: cardbus CIS pointer
209 // PCI 0x2c: subsystem vendor id, 0x2e: subsystem id
210 // PCI 0x30: expansion ROM base address
211 #define PCI_ROMBIOS_ENABLED 0x1
212 // PCI 0x34: 0xffffff00=reserved, 0x000000ff=capabilities pointer
213 // PCI 0x38: reserved
214 // PCI 0x3c: 0x3c=int-line, 0x3d=int-pin, 0x3e=min-gnt, 0x3f=maax-lat
216 #define CIRRUS_PNPMMIO_SIZE 0x1000
219 /* I/O and memory hook */
220 #define CIRRUS_HOOK_NOT_HANDLED 0
221 #define CIRRUS_HOOK_HANDLED 1
223 #define ABS(a) ((signed)(a) > 0 ? a : -a)
225 #define BLTUNSAFE(s) \
227 ( /* check dst is within bounds */ \
228 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
229 + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
232 ( /* check src is within bounds */ \
233 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
234 + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
239 struct CirrusVGAState
;
240 typedef void (*cirrus_bitblt_rop_t
) (struct CirrusVGAState
*s
,
241 uint8_t * dst
, const uint8_t * src
,
242 int dstpitch
, int srcpitch
,
243 int bltwidth
, int bltheight
);
244 typedef void (*cirrus_fill_t
)(struct CirrusVGAState
*s
,
245 uint8_t *dst
, int dst_pitch
, int width
, int height
);
247 typedef struct CirrusVGAState
{
250 int cirrus_linear_io_addr
;
251 int cirrus_linear_bitblt_io_addr
;
252 int cirrus_mmio_io_addr
;
253 uint32_t cirrus_addr_mask
;
254 uint32_t linear_mmio_mask
;
255 uint8_t cirrus_shadow_gr0
;
256 uint8_t cirrus_shadow_gr1
;
257 uint8_t cirrus_hidden_dac_lockindex
;
258 uint8_t cirrus_hidden_dac_data
;
259 uint32_t cirrus_bank_base
[2];
260 uint32_t cirrus_bank_limit
[2];
261 uint8_t cirrus_hidden_palette
[48];
262 uint32_t hw_cursor_x
;
263 uint32_t hw_cursor_y
;
264 int cirrus_blt_pixelwidth
;
265 int cirrus_blt_width
;
266 int cirrus_blt_height
;
267 int cirrus_blt_dstpitch
;
268 int cirrus_blt_srcpitch
;
269 uint32_t cirrus_blt_fgcol
;
270 uint32_t cirrus_blt_bgcol
;
271 uint32_t cirrus_blt_dstaddr
;
272 uint32_t cirrus_blt_srcaddr
;
273 uint8_t cirrus_blt_mode
;
274 uint8_t cirrus_blt_modeext
;
275 cirrus_bitblt_rop_t cirrus_rop
;
276 #define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
277 uint8_t cirrus_bltbuf
[CIRRUS_BLTBUFSIZE
];
278 uint8_t *cirrus_srcptr
;
279 uint8_t *cirrus_srcptr_end
;
280 uint32_t cirrus_srccounter
;
281 /* hwcursor display state */
282 int last_hw_cursor_size
;
283 int last_hw_cursor_x
;
284 int last_hw_cursor_y
;
285 int last_hw_cursor_y_start
;
286 int last_hw_cursor_y_end
;
287 int real_vram_size
; /* XXX: suppress that */
288 CPUWriteMemoryFunc
**cirrus_linear_write
;
293 typedef struct PCICirrusVGAState
{
295 CirrusVGAState cirrus_vga
;
298 static uint8_t rop_to_index
[256];
300 /***************************************
304 ***************************************/
307 static void cirrus_bitblt_reset(CirrusVGAState
*s
);
308 static void cirrus_update_memory_access(CirrusVGAState
*s
);
310 /***************************************
314 ***************************************/
316 static void cirrus_bitblt_rop_nop(CirrusVGAState
*s
,
317 uint8_t *dst
,const uint8_t *src
,
318 int dstpitch
,int srcpitch
,
319 int bltwidth
,int bltheight
)
323 static void cirrus_bitblt_fill_nop(CirrusVGAState
*s
,
325 int dstpitch
, int bltwidth
,int bltheight
)
330 #define ROP_OP(d, s) d = 0
331 #include "cirrus_vga_rop.h"
333 #define ROP_NAME src_and_dst
334 #define ROP_OP(d, s) d = (s) & (d)
335 #include "cirrus_vga_rop.h"
337 #define ROP_NAME src_and_notdst
338 #define ROP_OP(d, s) d = (s) & (~(d))
339 #include "cirrus_vga_rop.h"
341 #define ROP_NAME notdst
342 #define ROP_OP(d, s) d = ~(d)
343 #include "cirrus_vga_rop.h"
346 #define ROP_OP(d, s) d = s
347 #include "cirrus_vga_rop.h"
350 #define ROP_OP(d, s) d = ~0
351 #include "cirrus_vga_rop.h"
353 #define ROP_NAME notsrc_and_dst
354 #define ROP_OP(d, s) d = (~(s)) & (d)
355 #include "cirrus_vga_rop.h"
357 #define ROP_NAME src_xor_dst
358 #define ROP_OP(d, s) d = (s) ^ (d)
359 #include "cirrus_vga_rop.h"
361 #define ROP_NAME src_or_dst
362 #define ROP_OP(d, s) d = (s) | (d)
363 #include "cirrus_vga_rop.h"
365 #define ROP_NAME notsrc_or_notdst
366 #define ROP_OP(d, s) d = (~(s)) | (~(d))
367 #include "cirrus_vga_rop.h"
369 #define ROP_NAME src_notxor_dst
370 #define ROP_OP(d, s) d = ~((s) ^ (d))
371 #include "cirrus_vga_rop.h"
373 #define ROP_NAME src_or_notdst
374 #define ROP_OP(d, s) d = (s) | (~(d))
375 #include "cirrus_vga_rop.h"
377 #define ROP_NAME notsrc
378 #define ROP_OP(d, s) d = (~(s))
379 #include "cirrus_vga_rop.h"
381 #define ROP_NAME notsrc_or_dst
382 #define ROP_OP(d, s) d = (~(s)) | (d)
383 #include "cirrus_vga_rop.h"
385 #define ROP_NAME notsrc_and_notdst
386 #define ROP_OP(d, s) d = (~(s)) & (~(d))
387 #include "cirrus_vga_rop.h"
389 static const cirrus_bitblt_rop_t cirrus_fwd_rop
[16] = {
390 cirrus_bitblt_rop_fwd_0
,
391 cirrus_bitblt_rop_fwd_src_and_dst
,
392 cirrus_bitblt_rop_nop
,
393 cirrus_bitblt_rop_fwd_src_and_notdst
,
394 cirrus_bitblt_rop_fwd_notdst
,
395 cirrus_bitblt_rop_fwd_src
,
396 cirrus_bitblt_rop_fwd_1
,
397 cirrus_bitblt_rop_fwd_notsrc_and_dst
,
398 cirrus_bitblt_rop_fwd_src_xor_dst
,
399 cirrus_bitblt_rop_fwd_src_or_dst
,
400 cirrus_bitblt_rop_fwd_notsrc_or_notdst
,
401 cirrus_bitblt_rop_fwd_src_notxor_dst
,
402 cirrus_bitblt_rop_fwd_src_or_notdst
,
403 cirrus_bitblt_rop_fwd_notsrc
,
404 cirrus_bitblt_rop_fwd_notsrc_or_dst
,
405 cirrus_bitblt_rop_fwd_notsrc_and_notdst
,
408 static const cirrus_bitblt_rop_t cirrus_bkwd_rop
[16] = {
409 cirrus_bitblt_rop_bkwd_0
,
410 cirrus_bitblt_rop_bkwd_src_and_dst
,
411 cirrus_bitblt_rop_nop
,
412 cirrus_bitblt_rop_bkwd_src_and_notdst
,
413 cirrus_bitblt_rop_bkwd_notdst
,
414 cirrus_bitblt_rop_bkwd_src
,
415 cirrus_bitblt_rop_bkwd_1
,
416 cirrus_bitblt_rop_bkwd_notsrc_and_dst
,
417 cirrus_bitblt_rop_bkwd_src_xor_dst
,
418 cirrus_bitblt_rop_bkwd_src_or_dst
,
419 cirrus_bitblt_rop_bkwd_notsrc_or_notdst
,
420 cirrus_bitblt_rop_bkwd_src_notxor_dst
,
421 cirrus_bitblt_rop_bkwd_src_or_notdst
,
422 cirrus_bitblt_rop_bkwd_notsrc
,
423 cirrus_bitblt_rop_bkwd_notsrc_or_dst
,
424 cirrus_bitblt_rop_bkwd_notsrc_and_notdst
,
427 #define TRANSP_ROP(name) {\
431 #define TRANSP_NOP(func) {\
436 static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop
[16][2] = {
437 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0
),
438 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst
),
439 TRANSP_NOP(cirrus_bitblt_rop_nop
),
440 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst
),
441 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst
),
442 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src
),
443 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1
),
444 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst
),
445 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst
),
446 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst
),
447 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst
),
448 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst
),
449 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst
),
450 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc
),
451 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst
),
452 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst
),
455 static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop
[16][2] = {
456 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0
),
457 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst
),
458 TRANSP_NOP(cirrus_bitblt_rop_nop
),
459 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst
),
460 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst
),
461 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src
),
462 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1
),
463 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst
),
464 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst
),
465 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst
),
466 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst
),
467 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst
),
468 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst
),
469 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc
),
470 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst
),
471 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst
),
474 #define ROP2(name) {\
481 #define ROP_NOP2(func) {\
488 static const cirrus_bitblt_rop_t cirrus_patternfill
[16][4] = {
489 ROP2(cirrus_patternfill_0
),
490 ROP2(cirrus_patternfill_src_and_dst
),
491 ROP_NOP2(cirrus_bitblt_rop_nop
),
492 ROP2(cirrus_patternfill_src_and_notdst
),
493 ROP2(cirrus_patternfill_notdst
),
494 ROP2(cirrus_patternfill_src
),
495 ROP2(cirrus_patternfill_1
),
496 ROP2(cirrus_patternfill_notsrc_and_dst
),
497 ROP2(cirrus_patternfill_src_xor_dst
),
498 ROP2(cirrus_patternfill_src_or_dst
),
499 ROP2(cirrus_patternfill_notsrc_or_notdst
),
500 ROP2(cirrus_patternfill_src_notxor_dst
),
501 ROP2(cirrus_patternfill_src_or_notdst
),
502 ROP2(cirrus_patternfill_notsrc
),
503 ROP2(cirrus_patternfill_notsrc_or_dst
),
504 ROP2(cirrus_patternfill_notsrc_and_notdst
),
507 static const cirrus_bitblt_rop_t cirrus_colorexpand_transp
[16][4] = {
508 ROP2(cirrus_colorexpand_transp_0
),
509 ROP2(cirrus_colorexpand_transp_src_and_dst
),
510 ROP_NOP2(cirrus_bitblt_rop_nop
),
511 ROP2(cirrus_colorexpand_transp_src_and_notdst
),
512 ROP2(cirrus_colorexpand_transp_notdst
),
513 ROP2(cirrus_colorexpand_transp_src
),
514 ROP2(cirrus_colorexpand_transp_1
),
515 ROP2(cirrus_colorexpand_transp_notsrc_and_dst
),
516 ROP2(cirrus_colorexpand_transp_src_xor_dst
),
517 ROP2(cirrus_colorexpand_transp_src_or_dst
),
518 ROP2(cirrus_colorexpand_transp_notsrc_or_notdst
),
519 ROP2(cirrus_colorexpand_transp_src_notxor_dst
),
520 ROP2(cirrus_colorexpand_transp_src_or_notdst
),
521 ROP2(cirrus_colorexpand_transp_notsrc
),
522 ROP2(cirrus_colorexpand_transp_notsrc_or_dst
),
523 ROP2(cirrus_colorexpand_transp_notsrc_and_notdst
),
526 static const cirrus_bitblt_rop_t cirrus_colorexpand
[16][4] = {
527 ROP2(cirrus_colorexpand_0
),
528 ROP2(cirrus_colorexpand_src_and_dst
),
529 ROP_NOP2(cirrus_bitblt_rop_nop
),
530 ROP2(cirrus_colorexpand_src_and_notdst
),
531 ROP2(cirrus_colorexpand_notdst
),
532 ROP2(cirrus_colorexpand_src
),
533 ROP2(cirrus_colorexpand_1
),
534 ROP2(cirrus_colorexpand_notsrc_and_dst
),
535 ROP2(cirrus_colorexpand_src_xor_dst
),
536 ROP2(cirrus_colorexpand_src_or_dst
),
537 ROP2(cirrus_colorexpand_notsrc_or_notdst
),
538 ROP2(cirrus_colorexpand_src_notxor_dst
),
539 ROP2(cirrus_colorexpand_src_or_notdst
),
540 ROP2(cirrus_colorexpand_notsrc
),
541 ROP2(cirrus_colorexpand_notsrc_or_dst
),
542 ROP2(cirrus_colorexpand_notsrc_and_notdst
),
545 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp
[16][4] = {
546 ROP2(cirrus_colorexpand_pattern_transp_0
),
547 ROP2(cirrus_colorexpand_pattern_transp_src_and_dst
),
548 ROP_NOP2(cirrus_bitblt_rop_nop
),
549 ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst
),
550 ROP2(cirrus_colorexpand_pattern_transp_notdst
),
551 ROP2(cirrus_colorexpand_pattern_transp_src
),
552 ROP2(cirrus_colorexpand_pattern_transp_1
),
553 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst
),
554 ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst
),
555 ROP2(cirrus_colorexpand_pattern_transp_src_or_dst
),
556 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst
),
557 ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst
),
558 ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst
),
559 ROP2(cirrus_colorexpand_pattern_transp_notsrc
),
560 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst
),
561 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst
),
564 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern
[16][4] = {
565 ROP2(cirrus_colorexpand_pattern_0
),
566 ROP2(cirrus_colorexpand_pattern_src_and_dst
),
567 ROP_NOP2(cirrus_bitblt_rop_nop
),
568 ROP2(cirrus_colorexpand_pattern_src_and_notdst
),
569 ROP2(cirrus_colorexpand_pattern_notdst
),
570 ROP2(cirrus_colorexpand_pattern_src
),
571 ROP2(cirrus_colorexpand_pattern_1
),
572 ROP2(cirrus_colorexpand_pattern_notsrc_and_dst
),
573 ROP2(cirrus_colorexpand_pattern_src_xor_dst
),
574 ROP2(cirrus_colorexpand_pattern_src_or_dst
),
575 ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst
),
576 ROP2(cirrus_colorexpand_pattern_src_notxor_dst
),
577 ROP2(cirrus_colorexpand_pattern_src_or_notdst
),
578 ROP2(cirrus_colorexpand_pattern_notsrc
),
579 ROP2(cirrus_colorexpand_pattern_notsrc_or_dst
),
580 ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst
),
583 static const cirrus_fill_t cirrus_fill
[16][4] = {
585 ROP2(cirrus_fill_src_and_dst
),
586 ROP_NOP2(cirrus_bitblt_fill_nop
),
587 ROP2(cirrus_fill_src_and_notdst
),
588 ROP2(cirrus_fill_notdst
),
589 ROP2(cirrus_fill_src
),
591 ROP2(cirrus_fill_notsrc_and_dst
),
592 ROP2(cirrus_fill_src_xor_dst
),
593 ROP2(cirrus_fill_src_or_dst
),
594 ROP2(cirrus_fill_notsrc_or_notdst
),
595 ROP2(cirrus_fill_src_notxor_dst
),
596 ROP2(cirrus_fill_src_or_notdst
),
597 ROP2(cirrus_fill_notsrc
),
598 ROP2(cirrus_fill_notsrc_or_dst
),
599 ROP2(cirrus_fill_notsrc_and_notdst
),
602 static inline void cirrus_bitblt_fgcol(CirrusVGAState
*s
)
605 switch (s
->cirrus_blt_pixelwidth
) {
607 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
;
610 color
= s
->cirrus_shadow_gr1
| (s
->gr
[0x11] << 8);
611 s
->cirrus_blt_fgcol
= le16_to_cpu(color
);
614 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
|
615 (s
->gr
[0x11] << 8) | (s
->gr
[0x13] << 16);
619 color
= s
->cirrus_shadow_gr1
| (s
->gr
[0x11] << 8) |
620 (s
->gr
[0x13] << 16) | (s
->gr
[0x15] << 24);
621 s
->cirrus_blt_fgcol
= le32_to_cpu(color
);
626 static inline void cirrus_bitblt_bgcol(CirrusVGAState
*s
)
629 switch (s
->cirrus_blt_pixelwidth
) {
631 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
;
634 color
= s
->cirrus_shadow_gr0
| (s
->gr
[0x10] << 8);
635 s
->cirrus_blt_bgcol
= le16_to_cpu(color
);
638 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
|
639 (s
->gr
[0x10] << 8) | (s
->gr
[0x12] << 16);
643 color
= s
->cirrus_shadow_gr0
| (s
->gr
[0x10] << 8) |
644 (s
->gr
[0x12] << 16) | (s
->gr
[0x14] << 24);
645 s
->cirrus_blt_bgcol
= le32_to_cpu(color
);
650 static void cirrus_invalidate_region(CirrusVGAState
* s
, int off_begin
,
651 int off_pitch
, int bytesperline
,
658 for (y
= 0; y
< lines
; y
++) {
660 off_cur_end
= (off_cur
+ bytesperline
) & s
->cirrus_addr_mask
;
661 off_cur
&= TARGET_PAGE_MASK
;
662 while (off_cur
< off_cur_end
) {
663 cpu_physical_memory_set_dirty(s
->vram_offset
+ off_cur
);
664 off_cur
+= TARGET_PAGE_SIZE
;
666 off_begin
+= off_pitch
;
670 static int cirrus_bitblt_common_patterncopy(CirrusVGAState
* s
,
675 dst
= s
->vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
);
680 (*s
->cirrus_rop
) (s
, dst
, src
,
681 s
->cirrus_blt_dstpitch
, 0,
682 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
683 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
684 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
685 s
->cirrus_blt_height
);
691 static int cirrus_bitblt_solidfill(CirrusVGAState
*s
, int blt_rop
)
693 cirrus_fill_t rop_func
;
697 rop_func
= cirrus_fill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
698 rop_func(s
, s
->vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
699 s
->cirrus_blt_dstpitch
,
700 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
701 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
702 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
703 s
->cirrus_blt_height
);
704 cirrus_bitblt_reset(s
);
708 /***************************************
710 * bitblt (video-to-video)
712 ***************************************/
714 static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState
* s
)
716 return cirrus_bitblt_common_patterncopy(s
,
717 s
->vram_ptr
+ ((s
->cirrus_blt_srcaddr
& ~7) &
718 s
->cirrus_addr_mask
));
721 static void cirrus_do_copy(CirrusVGAState
*s
, int dst
, int src
, int w
, int h
)
729 depth
= s
->get_bpp((VGAState
*)s
) / 8;
730 s
->get_resolution((VGAState
*)s
, &width
, &height
);
733 sx
= (src
% ABS(s
->cirrus_blt_srcpitch
)) / depth
;
734 sy
= (src
/ ABS(s
->cirrus_blt_srcpitch
));
735 dx
= (dst
% ABS(s
->cirrus_blt_dstpitch
)) / depth
;
736 dy
= (dst
/ ABS(s
->cirrus_blt_dstpitch
));
738 /* normalize width */
741 /* if we're doing a backward copy, we have to adjust
742 our x/y to be the upper left corner (instead of the lower
744 if (s
->cirrus_blt_dstpitch
< 0) {
745 sx
-= (s
->cirrus_blt_width
/ depth
) - 1;
746 dx
-= (s
->cirrus_blt_width
/ depth
) - 1;
747 sy
-= s
->cirrus_blt_height
- 1;
748 dy
-= s
->cirrus_blt_height
- 1;
751 /* are we in the visible portion of memory? */
752 if (sx
>= 0 && sy
>= 0 && dx
>= 0 && dy
>= 0 &&
753 (sx
+ w
) <= width
&& (sy
+ h
) <= height
&&
754 (dx
+ w
) <= width
&& (dy
+ h
) <= height
) {
758 /* make to sure only copy if it's a plain copy ROP */
759 if (*s
->cirrus_rop
!= cirrus_bitblt_rop_fwd_src
&&
760 *s
->cirrus_rop
!= cirrus_bitblt_rop_bkwd_src
)
763 /* we have to flush all pending changes so that the copy
764 is generated at the appropriate moment in time */
768 (*s
->cirrus_rop
) (s
, s
->vram_ptr
+
769 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
771 (s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
),
772 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_srcpitch
,
773 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
776 qemu_console_copy(s
->ds
,
778 s
->cirrus_blt_width
/ depth
,
779 s
->cirrus_blt_height
);
781 /* we don't have to notify the display that this portion has
782 changed since qemu_console_copy implies this */
784 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
785 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
786 s
->cirrus_blt_height
);
789 static int cirrus_bitblt_videotovideo_copy(CirrusVGAState
* s
)
794 cirrus_do_copy(s
, s
->cirrus_blt_dstaddr
- s
->start_addr
,
795 s
->cirrus_blt_srcaddr
- s
->start_addr
,
796 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
801 /***************************************
803 * bitblt (cpu-to-video)
805 ***************************************/
807 static void cirrus_bitblt_cputovideo_next(CirrusVGAState
* s
)
812 if (s
->cirrus_srccounter
> 0) {
813 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
814 cirrus_bitblt_common_patterncopy(s
, s
->cirrus_bltbuf
);
816 s
->cirrus_srccounter
= 0;
817 cirrus_bitblt_reset(s
);
819 /* at least one scan line */
821 (*s
->cirrus_rop
)(s
, s
->vram_ptr
+
822 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
823 s
->cirrus_bltbuf
, 0, 0, s
->cirrus_blt_width
, 1);
824 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
, 0,
825 s
->cirrus_blt_width
, 1);
826 s
->cirrus_blt_dstaddr
+= s
->cirrus_blt_dstpitch
;
827 s
->cirrus_srccounter
-= s
->cirrus_blt_srcpitch
;
828 if (s
->cirrus_srccounter
<= 0)
830 /* more bytes than needed can be transfered because of
831 word alignment, so we keep them for the next line */
832 /* XXX: keep alignment to speed up transfer */
833 end_ptr
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
834 copy_count
= s
->cirrus_srcptr_end
- end_ptr
;
835 memmove(s
->cirrus_bltbuf
, end_ptr
, copy_count
);
836 s
->cirrus_srcptr
= s
->cirrus_bltbuf
+ copy_count
;
837 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
838 } while (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
);
843 /***************************************
847 ***************************************/
849 static void cirrus_bitblt_reset(CirrusVGAState
* s
)
854 ~(CIRRUS_BLT_START
| CIRRUS_BLT_BUSY
| CIRRUS_BLT_FIFOUSED
);
855 need_update
= s
->cirrus_srcptr
!= &s
->cirrus_bltbuf
[0]
856 || s
->cirrus_srcptr_end
!= &s
->cirrus_bltbuf
[0];
857 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
858 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
859 s
->cirrus_srccounter
= 0;
862 cirrus_update_memory_access(s
);
865 static int cirrus_bitblt_cputovideo(CirrusVGAState
* s
)
869 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_MEMSYSSRC
;
870 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
871 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
873 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
874 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
875 s
->cirrus_blt_srcpitch
= 8;
877 /* XXX: check for 24 bpp */
878 s
->cirrus_blt_srcpitch
= 8 * 8 * s
->cirrus_blt_pixelwidth
;
880 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
;
882 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
883 w
= s
->cirrus_blt_width
/ s
->cirrus_blt_pixelwidth
;
884 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_DWORDGRANULARITY
)
885 s
->cirrus_blt_srcpitch
= ((w
+ 31) >> 5);
887 s
->cirrus_blt_srcpitch
= ((w
+ 7) >> 3);
889 /* always align input size to 32 bits */
890 s
->cirrus_blt_srcpitch
= (s
->cirrus_blt_width
+ 3) & ~3;
892 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
* s
->cirrus_blt_height
;
894 s
->cirrus_srcptr
= s
->cirrus_bltbuf
;
895 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
896 cirrus_update_memory_access(s
);
900 static int cirrus_bitblt_videotocpu(CirrusVGAState
* s
)
904 printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
909 static int cirrus_bitblt_videotovideo(CirrusVGAState
* s
)
913 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
914 ret
= cirrus_bitblt_videotovideo_patterncopy(s
);
916 ret
= cirrus_bitblt_videotovideo_copy(s
);
919 cirrus_bitblt_reset(s
);
923 static void cirrus_bitblt_start(CirrusVGAState
* s
)
927 s
->gr
[0x31] |= CIRRUS_BLT_BUSY
;
929 s
->cirrus_blt_width
= (s
->gr
[0x20] | (s
->gr
[0x21] << 8)) + 1;
930 s
->cirrus_blt_height
= (s
->gr
[0x22] | (s
->gr
[0x23] << 8)) + 1;
931 s
->cirrus_blt_dstpitch
= (s
->gr
[0x24] | (s
->gr
[0x25] << 8));
932 s
->cirrus_blt_srcpitch
= (s
->gr
[0x26] | (s
->gr
[0x27] << 8));
933 s
->cirrus_blt_dstaddr
=
934 (s
->gr
[0x28] | (s
->gr
[0x29] << 8) | (s
->gr
[0x2a] << 16));
935 s
->cirrus_blt_srcaddr
=
936 (s
->gr
[0x2c] | (s
->gr
[0x2d] << 8) | (s
->gr
[0x2e] << 16));
937 s
->cirrus_blt_mode
= s
->gr
[0x30];
938 s
->cirrus_blt_modeext
= s
->gr
[0x33];
939 blt_rop
= s
->gr
[0x32];
942 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",
945 s
->cirrus_blt_modeext
,
947 s
->cirrus_blt_height
,
948 s
->cirrus_blt_dstpitch
,
949 s
->cirrus_blt_srcpitch
,
950 s
->cirrus_blt_dstaddr
,
951 s
->cirrus_blt_srcaddr
,
955 switch (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PIXELWIDTHMASK
) {
956 case CIRRUS_BLTMODE_PIXELWIDTH8
:
957 s
->cirrus_blt_pixelwidth
= 1;
959 case CIRRUS_BLTMODE_PIXELWIDTH16
:
960 s
->cirrus_blt_pixelwidth
= 2;
962 case CIRRUS_BLTMODE_PIXELWIDTH24
:
963 s
->cirrus_blt_pixelwidth
= 3;
965 case CIRRUS_BLTMODE_PIXELWIDTH32
:
966 s
->cirrus_blt_pixelwidth
= 4;
970 printf("cirrus: bitblt - pixel width is unknown\n");
974 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_PIXELWIDTHMASK
;
977 cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSSRC
|
978 CIRRUS_BLTMODE_MEMSYSDEST
))
979 == (CIRRUS_BLTMODE_MEMSYSSRC
| CIRRUS_BLTMODE_MEMSYSDEST
)) {
981 printf("cirrus: bitblt - memory-to-memory copy is requested\n");
986 if ((s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_SOLIDFILL
) &&
987 (s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSDEST
|
988 CIRRUS_BLTMODE_TRANSPARENTCOMP
|
989 CIRRUS_BLTMODE_PATTERNCOPY
|
990 CIRRUS_BLTMODE_COLOREXPAND
)) ==
991 (CIRRUS_BLTMODE_PATTERNCOPY
| CIRRUS_BLTMODE_COLOREXPAND
)) {
992 cirrus_bitblt_fgcol(s
);
993 cirrus_bitblt_solidfill(s
, blt_rop
);
995 if ((s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_COLOREXPAND
|
996 CIRRUS_BLTMODE_PATTERNCOPY
)) ==
997 CIRRUS_BLTMODE_COLOREXPAND
) {
999 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1000 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1001 cirrus_bitblt_bgcol(s
);
1003 cirrus_bitblt_fgcol(s
);
1004 s
->cirrus_rop
= cirrus_colorexpand_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1006 cirrus_bitblt_fgcol(s
);
1007 cirrus_bitblt_bgcol(s
);
1008 s
->cirrus_rop
= cirrus_colorexpand
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1010 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
1011 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
1012 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1013 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1014 cirrus_bitblt_bgcol(s
);
1016 cirrus_bitblt_fgcol(s
);
1017 s
->cirrus_rop
= cirrus_colorexpand_pattern_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1019 cirrus_bitblt_fgcol(s
);
1020 cirrus_bitblt_bgcol(s
);
1021 s
->cirrus_rop
= cirrus_colorexpand_pattern
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1024 s
->cirrus_rop
= cirrus_patternfill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1027 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1028 if (s
->cirrus_blt_pixelwidth
> 2) {
1029 printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1032 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1033 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1034 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1035 s
->cirrus_rop
= cirrus_bkwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1037 s
->cirrus_rop
= cirrus_fwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1040 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1041 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1042 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1043 s
->cirrus_rop
= cirrus_bkwd_rop
[rop_to_index
[blt_rop
]];
1045 s
->cirrus_rop
= cirrus_fwd_rop
[rop_to_index
[blt_rop
]];
1049 // setup bitblt engine.
1050 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSSRC
) {
1051 if (!cirrus_bitblt_cputovideo(s
))
1053 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSDEST
) {
1054 if (!cirrus_bitblt_videotocpu(s
))
1057 if (!cirrus_bitblt_videotovideo(s
))
1063 cirrus_bitblt_reset(s
);
1066 static void cirrus_write_bitblt(CirrusVGAState
* s
, unsigned reg_value
)
1070 old_value
= s
->gr
[0x31];
1071 s
->gr
[0x31] = reg_value
;
1073 if (((old_value
& CIRRUS_BLT_RESET
) != 0) &&
1074 ((reg_value
& CIRRUS_BLT_RESET
) == 0)) {
1075 cirrus_bitblt_reset(s
);
1076 } else if (((old_value
& CIRRUS_BLT_START
) == 0) &&
1077 ((reg_value
& CIRRUS_BLT_START
) != 0)) {
1078 cirrus_bitblt_start(s
);
1083 /***************************************
1087 ***************************************/
1089 static void cirrus_get_offsets(VGAState
*s1
,
1090 uint32_t *pline_offset
,
1091 uint32_t *pstart_addr
,
1092 uint32_t *pline_compare
)
1094 CirrusVGAState
* s
= (CirrusVGAState
*)s1
;
1095 uint32_t start_addr
, line_offset
, line_compare
;
1097 line_offset
= s
->cr
[0x13]
1098 | ((s
->cr
[0x1b] & 0x10) << 4);
1100 *pline_offset
= line_offset
;
1102 start_addr
= (s
->cr
[0x0c] << 8)
1104 | ((s
->cr
[0x1b] & 0x01) << 16)
1105 | ((s
->cr
[0x1b] & 0x0c) << 15)
1106 | ((s
->cr
[0x1d] & 0x80) << 12);
1107 *pstart_addr
= start_addr
;
1109 line_compare
= s
->cr
[0x18] |
1110 ((s
->cr
[0x07] & 0x10) << 4) |
1111 ((s
->cr
[0x09] & 0x40) << 3);
1112 *pline_compare
= line_compare
;
1115 static uint32_t cirrus_get_bpp16_depth(CirrusVGAState
* s
)
1119 switch (s
->cirrus_hidden_dac_data
& 0xf) {
1122 break; /* Sierra HiColor */
1125 break; /* XGA HiColor */
1128 printf("cirrus: invalid DAC value %x in 16bpp\n",
1129 (s
->cirrus_hidden_dac_data
& 0xf));
1137 static int cirrus_get_bpp(VGAState
*s1
)
1139 CirrusVGAState
* s
= (CirrusVGAState
*)s1
;
1142 if ((s
->sr
[0x07] & 0x01) != 0) {
1144 switch (s
->sr
[0x07] & CIRRUS_SR7_BPP_MASK
) {
1145 case CIRRUS_SR7_BPP_8
:
1148 case CIRRUS_SR7_BPP_16_DOUBLEVCLK
:
1149 ret
= cirrus_get_bpp16_depth(s
);
1151 case CIRRUS_SR7_BPP_24
:
1154 case CIRRUS_SR7_BPP_16
:
1155 ret
= cirrus_get_bpp16_depth(s
);
1157 case CIRRUS_SR7_BPP_32
:
1162 printf("cirrus: unknown bpp - sr7=%x\n", s
->sr
[0x7]);
1175 static void cirrus_get_resolution(VGAState
*s
, int *pwidth
, int *pheight
)
1179 width
= (s
->cr
[0x01] + 1) * 8;
1180 height
= s
->cr
[0x12] |
1181 ((s
->cr
[0x07] & 0x02) << 7) |
1182 ((s
->cr
[0x07] & 0x40) << 3);
1183 height
= (height
+ 1);
1184 /* interlace support */
1185 if (s
->cr
[0x1a] & 0x01)
1186 height
= height
* 2;
1191 /***************************************
1195 ***************************************/
1197 static void cirrus_update_bank_ptr(CirrusVGAState
* s
, unsigned bank_index
)
1202 if ((s
->gr
[0x0b] & 0x01) != 0) /* dual bank */
1203 offset
= s
->gr
[0x09 + bank_index
];
1204 else /* single bank */
1205 offset
= s
->gr
[0x09];
1207 if ((s
->gr
[0x0b] & 0x20) != 0)
1212 if (s
->real_vram_size
<= offset
)
1215 limit
= s
->real_vram_size
- offset
;
1217 if (((s
->gr
[0x0b] & 0x01) == 0) && (bank_index
!= 0)) {
1218 if (limit
> 0x8000) {
1227 /* Thinking about changing bank base? First, drop the dirty bitmap information
1228 * on the current location, otherwise we lose this pointer forever */
1229 if (s
->lfb_vram_mapped
) {
1230 target_phys_addr_t base_addr
= isa_mem_base
+ 0xa0000 + bank_index
* 0x8000;
1231 cpu_physical_sync_dirty_bitmap(base_addr
, base_addr
+ 0x8000);
1233 s
->cirrus_bank_base
[bank_index
] = offset
;
1234 s
->cirrus_bank_limit
[bank_index
] = limit
;
1236 s
->cirrus_bank_base
[bank_index
] = 0;
1237 s
->cirrus_bank_limit
[bank_index
] = 0;
1241 /***************************************
1243 * I/O access between 0x3c4-0x3c5
1245 ***************************************/
1248 cirrus_hook_read_sr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1250 switch (reg_index
) {
1251 case 0x00: // Standard VGA
1252 case 0x01: // Standard VGA
1253 case 0x02: // Standard VGA
1254 case 0x03: // Standard VGA
1255 case 0x04: // Standard VGA
1256 return CIRRUS_HOOK_NOT_HANDLED
;
1257 case 0x06: // Unlock Cirrus extensions
1258 *reg_value
= s
->sr
[reg_index
];
1263 case 0x70: // Graphics Cursor X
1267 case 0xf0: // Graphics Cursor X
1268 *reg_value
= s
->sr
[0x10];
1273 case 0x71: // Graphics Cursor Y
1277 case 0xf1: // Graphics Cursor Y
1278 *reg_value
= s
->sr
[0x11];
1281 case 0x07: // Extended Sequencer Mode
1282 case 0x08: // EEPROM Control
1283 case 0x09: // Scratch Register 0
1284 case 0x0a: // Scratch Register 1
1285 case 0x0b: // VCLK 0
1286 case 0x0c: // VCLK 1
1287 case 0x0d: // VCLK 2
1288 case 0x0e: // VCLK 3
1289 case 0x0f: // DRAM Control
1290 case 0x12: // Graphics Cursor Attribute
1291 case 0x13: // Graphics Cursor Pattern Address
1292 case 0x14: // Scratch Register 2
1293 case 0x15: // Scratch Register 3
1294 case 0x16: // Performance Tuning Register
1295 case 0x17: // Configuration Readback and Extended Control
1296 case 0x18: // Signature Generator Control
1297 case 0x19: // Signal Generator Result
1298 case 0x1a: // Signal Generator Result
1299 case 0x1b: // VCLK 0 Denominator & Post
1300 case 0x1c: // VCLK 1 Denominator & Post
1301 case 0x1d: // VCLK 2 Denominator & Post
1302 case 0x1e: // VCLK 3 Denominator & Post
1303 case 0x1f: // BIOS Write Enable and MCLK select
1305 printf("cirrus: handled inport sr_index %02x\n", reg_index
);
1307 *reg_value
= s
->sr
[reg_index
];
1311 printf("cirrus: inport sr_index %02x\n", reg_index
);
1317 return CIRRUS_HOOK_HANDLED
;
1321 cirrus_hook_write_sr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1323 switch (reg_index
) {
1324 case 0x00: // Standard VGA
1325 case 0x01: // Standard VGA
1326 case 0x02: // Standard VGA
1327 case 0x03: // Standard VGA
1328 case 0x04: // Standard VGA
1329 return CIRRUS_HOOK_NOT_HANDLED
;
1330 case 0x06: // Unlock Cirrus extensions
1332 if (reg_value
== 0x12) {
1333 s
->sr
[reg_index
] = 0x12;
1335 s
->sr
[reg_index
] = 0x0f;
1341 case 0x70: // Graphics Cursor X
1345 case 0xf0: // Graphics Cursor X
1346 s
->sr
[0x10] = reg_value
;
1347 s
->hw_cursor_x
= (reg_value
<< 3) | (reg_index
>> 5);
1352 case 0x71: // Graphics Cursor Y
1356 case 0xf1: // Graphics Cursor Y
1357 s
->sr
[0x11] = reg_value
;
1358 s
->hw_cursor_y
= (reg_value
<< 3) | (reg_index
>> 5);
1360 case 0x07: // Extended Sequencer Mode
1361 cirrus_update_memory_access(s
);
1362 case 0x08: // EEPROM Control
1363 case 0x09: // Scratch Register 0
1364 case 0x0a: // Scratch Register 1
1365 case 0x0b: // VCLK 0
1366 case 0x0c: // VCLK 1
1367 case 0x0d: // VCLK 2
1368 case 0x0e: // VCLK 3
1369 case 0x0f: // DRAM Control
1370 case 0x12: // Graphics Cursor Attribute
1371 case 0x13: // Graphics Cursor Pattern Address
1372 case 0x14: // Scratch Register 2
1373 case 0x15: // Scratch Register 3
1374 case 0x16: // Performance Tuning Register
1375 case 0x18: // Signature Generator Control
1376 case 0x19: // Signature Generator Result
1377 case 0x1a: // Signature Generator Result
1378 case 0x1b: // VCLK 0 Denominator & Post
1379 case 0x1c: // VCLK 1 Denominator & Post
1380 case 0x1d: // VCLK 2 Denominator & Post
1381 case 0x1e: // VCLK 3 Denominator & Post
1382 case 0x1f: // BIOS Write Enable and MCLK select
1383 s
->sr
[reg_index
] = reg_value
;
1385 printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1386 reg_index
, reg_value
);
1389 case 0x17: // Configuration Readback and Extended Control
1390 s
->sr
[reg_index
] = (s
->sr
[reg_index
] & 0x38) | (reg_value
& 0xc7);
1391 cirrus_update_memory_access(s
);
1395 printf("cirrus: outport sr_index %02x, sr_value %02x\n", reg_index
,
1401 return CIRRUS_HOOK_HANDLED
;
1404 /***************************************
1406 * I/O access at 0x3c6
1408 ***************************************/
1410 static void cirrus_read_hidden_dac(CirrusVGAState
* s
, int *reg_value
)
1413 if (++s
->cirrus_hidden_dac_lockindex
== 5) {
1414 *reg_value
= s
->cirrus_hidden_dac_data
;
1415 s
->cirrus_hidden_dac_lockindex
= 0;
1419 static void cirrus_write_hidden_dac(CirrusVGAState
* s
, int reg_value
)
1421 if (s
->cirrus_hidden_dac_lockindex
== 4) {
1422 s
->cirrus_hidden_dac_data
= reg_value
;
1423 #if defined(DEBUG_CIRRUS)
1424 printf("cirrus: outport hidden DAC, value %02x\n", reg_value
);
1427 s
->cirrus_hidden_dac_lockindex
= 0;
1430 /***************************************
1432 * I/O access at 0x3c9
1434 ***************************************/
1436 static int cirrus_hook_read_palette(CirrusVGAState
* s
, int *reg_value
)
1438 if (!(s
->sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
))
1439 return CIRRUS_HOOK_NOT_HANDLED
;
1441 s
->cirrus_hidden_palette
[(s
->dac_read_index
& 0x0f) * 3 +
1443 if (++s
->dac_sub_index
== 3) {
1444 s
->dac_sub_index
= 0;
1445 s
->dac_read_index
++;
1447 return CIRRUS_HOOK_HANDLED
;
1450 static int cirrus_hook_write_palette(CirrusVGAState
* s
, int reg_value
)
1452 if (!(s
->sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
))
1453 return CIRRUS_HOOK_NOT_HANDLED
;
1454 s
->dac_cache
[s
->dac_sub_index
] = reg_value
;
1455 if (++s
->dac_sub_index
== 3) {
1456 memcpy(&s
->cirrus_hidden_palette
[(s
->dac_write_index
& 0x0f) * 3],
1458 /* XXX update cursor */
1459 s
->dac_sub_index
= 0;
1460 s
->dac_write_index
++;
1462 return CIRRUS_HOOK_HANDLED
;
1465 /***************************************
1467 * I/O access between 0x3ce-0x3cf
1469 ***************************************/
1472 cirrus_hook_read_gr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1474 switch (reg_index
) {
1475 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1476 *reg_value
= s
->cirrus_shadow_gr0
;
1477 return CIRRUS_HOOK_HANDLED
;
1478 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1479 *reg_value
= s
->cirrus_shadow_gr1
;
1480 return CIRRUS_HOOK_HANDLED
;
1481 case 0x02: // Standard VGA
1482 case 0x03: // Standard VGA
1483 case 0x04: // Standard VGA
1484 case 0x06: // Standard VGA
1485 case 0x07: // Standard VGA
1486 case 0x08: // Standard VGA
1487 return CIRRUS_HOOK_NOT_HANDLED
;
1488 case 0x05: // Standard VGA, Cirrus extended mode
1493 if (reg_index
< 0x3a) {
1494 *reg_value
= s
->gr
[reg_index
];
1497 printf("cirrus: inport gr_index %02x\n", reg_index
);
1502 return CIRRUS_HOOK_HANDLED
;
1506 cirrus_hook_write_gr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1508 #if defined(DEBUG_BITBLT) && 0
1509 printf("gr%02x: %02x\n", reg_index
, reg_value
);
1511 switch (reg_index
) {
1512 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1513 s
->cirrus_shadow_gr0
= reg_value
;
1514 return CIRRUS_HOOK_NOT_HANDLED
;
1515 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1516 s
->cirrus_shadow_gr1
= reg_value
;
1517 return CIRRUS_HOOK_NOT_HANDLED
;
1518 case 0x02: // Standard VGA
1519 case 0x03: // Standard VGA
1520 case 0x04: // Standard VGA
1521 case 0x06: // Standard VGA
1522 case 0x07: // Standard VGA
1523 case 0x08: // Standard VGA
1524 return CIRRUS_HOOK_NOT_HANDLED
;
1525 case 0x05: // Standard VGA, Cirrus extended mode
1526 s
->gr
[reg_index
] = reg_value
& 0x7f;
1527 cirrus_update_memory_access(s
);
1529 case 0x09: // bank offset #0
1530 case 0x0A: // bank offset #1
1531 s
->gr
[reg_index
] = reg_value
;
1532 cirrus_update_bank_ptr(s
, 0);
1533 cirrus_update_bank_ptr(s
, 1);
1534 cirrus_update_memory_access(s
);
1537 s
->gr
[reg_index
] = reg_value
;
1538 cirrus_update_bank_ptr(s
, 0);
1539 cirrus_update_bank_ptr(s
, 1);
1540 cirrus_update_memory_access(s
);
1542 case 0x10: // BGCOLOR 0x0000ff00
1543 case 0x11: // FGCOLOR 0x0000ff00
1544 case 0x12: // BGCOLOR 0x00ff0000
1545 case 0x13: // FGCOLOR 0x00ff0000
1546 case 0x14: // BGCOLOR 0xff000000
1547 case 0x15: // FGCOLOR 0xff000000
1548 case 0x20: // BLT WIDTH 0x0000ff
1549 case 0x22: // BLT HEIGHT 0x0000ff
1550 case 0x24: // BLT DEST PITCH 0x0000ff
1551 case 0x26: // BLT SRC PITCH 0x0000ff
1552 case 0x28: // BLT DEST ADDR 0x0000ff
1553 case 0x29: // BLT DEST ADDR 0x00ff00
1554 case 0x2c: // BLT SRC ADDR 0x0000ff
1555 case 0x2d: // BLT SRC ADDR 0x00ff00
1556 case 0x2f: // BLT WRITEMASK
1557 case 0x30: // BLT MODE
1558 case 0x32: // RASTER OP
1559 case 0x33: // BLT MODEEXT
1560 case 0x34: // BLT TRANSPARENT COLOR 0x00ff
1561 case 0x35: // BLT TRANSPARENT COLOR 0xff00
1562 case 0x38: // BLT TRANSPARENT COLOR MASK 0x00ff
1563 case 0x39: // BLT TRANSPARENT COLOR MASK 0xff00
1564 s
->gr
[reg_index
] = reg_value
;
1566 case 0x21: // BLT WIDTH 0x001f00
1567 case 0x23: // BLT HEIGHT 0x001f00
1568 case 0x25: // BLT DEST PITCH 0x001f00
1569 case 0x27: // BLT SRC PITCH 0x001f00
1570 s
->gr
[reg_index
] = reg_value
& 0x1f;
1572 case 0x2a: // BLT DEST ADDR 0x3f0000
1573 s
->gr
[reg_index
] = reg_value
& 0x3f;
1574 /* if auto start mode, starts bit blt now */
1575 if (s
->gr
[0x31] & CIRRUS_BLT_AUTOSTART
) {
1576 cirrus_bitblt_start(s
);
1579 case 0x2e: // BLT SRC ADDR 0x3f0000
1580 s
->gr
[reg_index
] = reg_value
& 0x3f;
1582 case 0x31: // BLT STATUS/START
1583 cirrus_write_bitblt(s
, reg_value
);
1587 printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index
,
1593 return CIRRUS_HOOK_HANDLED
;
1596 /***************************************
1598 * I/O access between 0x3d4-0x3d5
1600 ***************************************/
1603 cirrus_hook_read_cr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1605 switch (reg_index
) {
1606 case 0x00: // Standard VGA
1607 case 0x01: // Standard VGA
1608 case 0x02: // Standard VGA
1609 case 0x03: // Standard VGA
1610 case 0x04: // Standard VGA
1611 case 0x05: // Standard VGA
1612 case 0x06: // Standard VGA
1613 case 0x07: // Standard VGA
1614 case 0x08: // Standard VGA
1615 case 0x09: // Standard VGA
1616 case 0x0a: // Standard VGA
1617 case 0x0b: // Standard VGA
1618 case 0x0c: // Standard VGA
1619 case 0x0d: // Standard VGA
1620 case 0x0e: // Standard VGA
1621 case 0x0f: // Standard VGA
1622 case 0x10: // Standard VGA
1623 case 0x11: // Standard VGA
1624 case 0x12: // Standard VGA
1625 case 0x13: // Standard VGA
1626 case 0x14: // Standard VGA
1627 case 0x15: // Standard VGA
1628 case 0x16: // Standard VGA
1629 case 0x17: // Standard VGA
1630 case 0x18: // Standard VGA
1631 return CIRRUS_HOOK_NOT_HANDLED
;
1632 case 0x24: // Attribute Controller Toggle Readback (R)
1633 *reg_value
= (s
->ar_flip_flop
<< 7);
1635 case 0x19: // Interlace End
1636 case 0x1a: // Miscellaneous Control
1637 case 0x1b: // Extended Display Control
1638 case 0x1c: // Sync Adjust and Genlock
1639 case 0x1d: // Overlay Extended Control
1640 case 0x22: // Graphics Data Latches Readback (R)
1641 case 0x25: // Part Status
1642 case 0x27: // Part ID (R)
1643 *reg_value
= s
->cr
[reg_index
];
1645 case 0x26: // Attribute Controller Index Readback (R)
1646 *reg_value
= s
->ar_index
& 0x3f;
1650 printf("cirrus: inport cr_index %02x\n", reg_index
);
1656 return CIRRUS_HOOK_HANDLED
;
1660 cirrus_hook_write_cr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1662 switch (reg_index
) {
1663 case 0x00: // Standard VGA
1664 case 0x01: // Standard VGA
1665 case 0x02: // Standard VGA
1666 case 0x03: // Standard VGA
1667 case 0x04: // Standard VGA
1668 case 0x05: // Standard VGA
1669 case 0x06: // Standard VGA
1670 case 0x07: // Standard VGA
1671 case 0x08: // Standard VGA
1672 case 0x09: // Standard VGA
1673 case 0x0a: // Standard VGA
1674 case 0x0b: // Standard VGA
1675 case 0x0c: // Standard VGA
1676 case 0x0d: // Standard VGA
1677 case 0x0e: // Standard VGA
1678 case 0x0f: // Standard VGA
1679 case 0x10: // Standard VGA
1680 case 0x11: // Standard VGA
1681 case 0x12: // Standard VGA
1682 case 0x13: // Standard VGA
1683 case 0x14: // Standard VGA
1684 case 0x15: // Standard VGA
1685 case 0x16: // Standard VGA
1686 case 0x17: // Standard VGA
1687 case 0x18: // Standard VGA
1688 return CIRRUS_HOOK_NOT_HANDLED
;
1689 case 0x19: // Interlace End
1690 case 0x1a: // Miscellaneous Control
1691 case 0x1b: // Extended Display Control
1692 case 0x1c: // Sync Adjust and Genlock
1693 case 0x1d: // Overlay Extended Control
1694 s
->cr
[reg_index
] = reg_value
;
1696 printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1697 reg_index
, reg_value
);
1700 case 0x22: // Graphics Data Latches Readback (R)
1701 case 0x24: // Attribute Controller Toggle Readback (R)
1702 case 0x26: // Attribute Controller Index Readback (R)
1703 case 0x27: // Part ID (R)
1705 case 0x25: // Part Status
1708 printf("cirrus: outport cr_index %02x, cr_value %02x\n", reg_index
,
1714 return CIRRUS_HOOK_HANDLED
;
1717 /***************************************
1719 * memory-mapped I/O (bitblt)
1721 ***************************************/
1723 static uint8_t cirrus_mmio_blt_read(CirrusVGAState
* s
, unsigned address
)
1728 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1729 cirrus_hook_read_gr(s
, 0x00, &value
);
1731 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1732 cirrus_hook_read_gr(s
, 0x10, &value
);
1734 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1735 cirrus_hook_read_gr(s
, 0x12, &value
);
1737 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1738 cirrus_hook_read_gr(s
, 0x14, &value
);
1740 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1741 cirrus_hook_read_gr(s
, 0x01, &value
);
1743 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1744 cirrus_hook_read_gr(s
, 0x11, &value
);
1746 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1747 cirrus_hook_read_gr(s
, 0x13, &value
);
1749 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1750 cirrus_hook_read_gr(s
, 0x15, &value
);
1752 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1753 cirrus_hook_read_gr(s
, 0x20, &value
);
1755 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1756 cirrus_hook_read_gr(s
, 0x21, &value
);
1758 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1759 cirrus_hook_read_gr(s
, 0x22, &value
);
1761 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1762 cirrus_hook_read_gr(s
, 0x23, &value
);
1764 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1765 cirrus_hook_read_gr(s
, 0x24, &value
);
1767 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1768 cirrus_hook_read_gr(s
, 0x25, &value
);
1770 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1771 cirrus_hook_read_gr(s
, 0x26, &value
);
1773 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1774 cirrus_hook_read_gr(s
, 0x27, &value
);
1776 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1777 cirrus_hook_read_gr(s
, 0x28, &value
);
1779 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1780 cirrus_hook_read_gr(s
, 0x29, &value
);
1782 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1783 cirrus_hook_read_gr(s
, 0x2a, &value
);
1785 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1786 cirrus_hook_read_gr(s
, 0x2c, &value
);
1788 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1789 cirrus_hook_read_gr(s
, 0x2d, &value
);
1791 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1792 cirrus_hook_read_gr(s
, 0x2e, &value
);
1794 case CIRRUS_MMIO_BLTWRITEMASK
:
1795 cirrus_hook_read_gr(s
, 0x2f, &value
);
1797 case CIRRUS_MMIO_BLTMODE
:
1798 cirrus_hook_read_gr(s
, 0x30, &value
);
1800 case CIRRUS_MMIO_BLTROP
:
1801 cirrus_hook_read_gr(s
, 0x32, &value
);
1803 case CIRRUS_MMIO_BLTMODEEXT
:
1804 cirrus_hook_read_gr(s
, 0x33, &value
);
1806 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1807 cirrus_hook_read_gr(s
, 0x34, &value
);
1809 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1810 cirrus_hook_read_gr(s
, 0x35, &value
);
1812 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1813 cirrus_hook_read_gr(s
, 0x38, &value
);
1815 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1816 cirrus_hook_read_gr(s
, 0x39, &value
);
1818 case CIRRUS_MMIO_BLTSTATUS
:
1819 cirrus_hook_read_gr(s
, 0x31, &value
);
1823 printf("cirrus: mmio read - address 0x%04x\n", address
);
1828 return (uint8_t) value
;
1831 static void cirrus_mmio_blt_write(CirrusVGAState
* s
, unsigned address
,
1835 case (CIRRUS_MMIO_BLTBGCOLOR
+ 0):
1836 cirrus_hook_write_gr(s
, 0x00, value
);
1838 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1839 cirrus_hook_write_gr(s
, 0x10, value
);
1841 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1842 cirrus_hook_write_gr(s
, 0x12, value
);
1844 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1845 cirrus_hook_write_gr(s
, 0x14, value
);
1847 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1848 cirrus_hook_write_gr(s
, 0x01, value
);
1850 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1851 cirrus_hook_write_gr(s
, 0x11, value
);
1853 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1854 cirrus_hook_write_gr(s
, 0x13, value
);
1856 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1857 cirrus_hook_write_gr(s
, 0x15, value
);
1859 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1860 cirrus_hook_write_gr(s
, 0x20, value
);
1862 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1863 cirrus_hook_write_gr(s
, 0x21, value
);
1865 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1866 cirrus_hook_write_gr(s
, 0x22, value
);
1868 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1869 cirrus_hook_write_gr(s
, 0x23, value
);
1871 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1872 cirrus_hook_write_gr(s
, 0x24, value
);
1874 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1875 cirrus_hook_write_gr(s
, 0x25, value
);
1877 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1878 cirrus_hook_write_gr(s
, 0x26, value
);
1880 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1881 cirrus_hook_write_gr(s
, 0x27, value
);
1883 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1884 cirrus_hook_write_gr(s
, 0x28, value
);
1886 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1887 cirrus_hook_write_gr(s
, 0x29, value
);
1889 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1890 cirrus_hook_write_gr(s
, 0x2a, value
);
1892 case (CIRRUS_MMIO_BLTDESTADDR
+ 3):
1895 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1896 cirrus_hook_write_gr(s
, 0x2c, value
);
1898 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1899 cirrus_hook_write_gr(s
, 0x2d, value
);
1901 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1902 cirrus_hook_write_gr(s
, 0x2e, value
);
1904 case CIRRUS_MMIO_BLTWRITEMASK
:
1905 cirrus_hook_write_gr(s
, 0x2f, value
);
1907 case CIRRUS_MMIO_BLTMODE
:
1908 cirrus_hook_write_gr(s
, 0x30, value
);
1910 case CIRRUS_MMIO_BLTROP
:
1911 cirrus_hook_write_gr(s
, 0x32, value
);
1913 case CIRRUS_MMIO_BLTMODEEXT
:
1914 cirrus_hook_write_gr(s
, 0x33, value
);
1916 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1917 cirrus_hook_write_gr(s
, 0x34, value
);
1919 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1920 cirrus_hook_write_gr(s
, 0x35, value
);
1922 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1923 cirrus_hook_write_gr(s
, 0x38, value
);
1925 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1926 cirrus_hook_write_gr(s
, 0x39, value
);
1928 case CIRRUS_MMIO_BLTSTATUS
:
1929 cirrus_hook_write_gr(s
, 0x31, value
);
1933 printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1940 /***************************************
1944 * assume TARGET_PAGE_SIZE >= 16
1946 ***************************************/
1948 static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState
* s
,
1954 unsigned val
= mem_value
;
1957 dst
= s
->vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1958 for (x
= 0; x
< 8; x
++) {
1960 *dst
= s
->cirrus_shadow_gr1
;
1961 } else if (mode
== 5) {
1962 *dst
= s
->cirrus_shadow_gr0
;
1967 cpu_physical_memory_set_dirty(s
->vram_offset
+ offset
);
1968 cpu_physical_memory_set_dirty(s
->vram_offset
+ offset
+ 7);
1971 static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState
* s
,
1977 unsigned val
= mem_value
;
1980 dst
= s
->vram_ptr
+ (offset
&= s
->cirrus_addr_mask
);
1981 for (x
= 0; x
< 8; x
++) {
1983 *dst
= s
->cirrus_shadow_gr1
;
1984 *(dst
+ 1) = s
->gr
[0x11];
1985 } else if (mode
== 5) {
1986 *dst
= s
->cirrus_shadow_gr0
;
1987 *(dst
+ 1) = s
->gr
[0x10];
1992 cpu_physical_memory_set_dirty(s
->vram_offset
+ offset
);
1993 cpu_physical_memory_set_dirty(s
->vram_offset
+ offset
+ 15);
1996 /***************************************
1998 * memory access between 0xa0000-0xbffff
2000 ***************************************/
2002 static uint32_t cirrus_vga_mem_readb(void *opaque
, target_phys_addr_t addr
)
2004 CirrusVGAState
*s
= opaque
;
2005 unsigned bank_index
;
2006 unsigned bank_offset
;
2009 if ((s
->sr
[0x07] & 0x01) == 0) {
2010 return vga_mem_readb(s
, addr
);
2015 if (addr
< 0x10000) {
2016 /* XXX handle bitblt */
2018 bank_index
= addr
>> 15;
2019 bank_offset
= addr
& 0x7fff;
2020 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2021 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2022 if ((s
->gr
[0x0B] & 0x14) == 0x14) {
2024 } else if (s
->gr
[0x0B] & 0x02) {
2027 bank_offset
&= s
->cirrus_addr_mask
;
2028 val
= *(s
->vram_ptr
+ bank_offset
);
2031 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2032 /* memory-mapped I/O */
2034 if ((s
->sr
[0x17] & 0x44) == 0x04) {
2035 val
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2040 printf("cirrus: mem_readb %06x\n", addr
);
2046 static uint32_t cirrus_vga_mem_readw(void *opaque
, target_phys_addr_t addr
)
2049 #ifdef TARGET_WORDS_BIGENDIAN
2050 v
= cirrus_vga_mem_readb(opaque
, addr
) << 8;
2051 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1);
2053 v
= cirrus_vga_mem_readb(opaque
, addr
);
2054 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 8;
2059 static uint32_t cirrus_vga_mem_readl(void *opaque
, target_phys_addr_t addr
)
2062 #ifdef TARGET_WORDS_BIGENDIAN
2063 v
= cirrus_vga_mem_readb(opaque
, addr
) << 24;
2064 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 16;
2065 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 2) << 8;
2066 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 3);
2068 v
= cirrus_vga_mem_readb(opaque
, addr
);
2069 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 1) << 8;
2070 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 2) << 16;
2071 v
|= cirrus_vga_mem_readb(opaque
, addr
+ 3) << 24;
2076 static void cirrus_vga_mem_writeb(void *opaque
, target_phys_addr_t addr
,
2079 CirrusVGAState
*s
= opaque
;
2080 unsigned bank_index
;
2081 unsigned bank_offset
;
2084 if ((s
->sr
[0x07] & 0x01) == 0) {
2085 vga_mem_writeb(s
, addr
, mem_value
);
2091 if (addr
< 0x10000) {
2092 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2094 *s
->cirrus_srcptr
++ = (uint8_t) mem_value
;
2095 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2096 cirrus_bitblt_cputovideo_next(s
);
2100 bank_index
= addr
>> 15;
2101 bank_offset
= addr
& 0x7fff;
2102 if (bank_offset
< s
->cirrus_bank_limit
[bank_index
]) {
2103 bank_offset
+= s
->cirrus_bank_base
[bank_index
];
2104 if ((s
->gr
[0x0B] & 0x14) == 0x14) {
2106 } else if (s
->gr
[0x0B] & 0x02) {
2109 bank_offset
&= s
->cirrus_addr_mask
;
2110 mode
= s
->gr
[0x05] & 0x7;
2111 if (mode
< 4 || mode
> 5 || ((s
->gr
[0x0B] & 0x4) == 0)) {
2112 *(s
->vram_ptr
+ bank_offset
) = mem_value
;
2113 cpu_physical_memory_set_dirty(s
->vram_offset
+
2116 if ((s
->gr
[0x0B] & 0x14) != 0x14) {
2117 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
,
2121 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
,
2128 } else if (addr
>= 0x18000 && addr
< 0x18100) {
2129 /* memory-mapped I/O */
2130 if ((s
->sr
[0x17] & 0x44) == 0x04) {
2131 cirrus_mmio_blt_write(s
, addr
& 0xff, mem_value
);
2135 printf("cirrus: mem_writeb %06x value %02x\n", addr
, mem_value
);
2140 static void cirrus_vga_mem_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
2142 #ifdef TARGET_WORDS_BIGENDIAN
2143 cirrus_vga_mem_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2144 cirrus_vga_mem_writeb(opaque
, addr
+ 1, val
& 0xff);
2146 cirrus_vga_mem_writeb(opaque
, addr
, val
& 0xff);
2147 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2151 static void cirrus_vga_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
2153 #ifdef TARGET_WORDS_BIGENDIAN
2154 cirrus_vga_mem_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2155 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2156 cirrus_vga_mem_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2157 cirrus_vga_mem_writeb(opaque
, addr
+ 3, val
& 0xff);
2159 cirrus_vga_mem_writeb(opaque
, addr
, val
& 0xff);
2160 cirrus_vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2161 cirrus_vga_mem_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2162 cirrus_vga_mem_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2166 static CPUReadMemoryFunc
*cirrus_vga_mem_read
[3] = {
2167 cirrus_vga_mem_readb
,
2168 cirrus_vga_mem_readw
,
2169 cirrus_vga_mem_readl
,
2172 static CPUWriteMemoryFunc
*cirrus_vga_mem_write
[3] = {
2173 cirrus_vga_mem_writeb
,
2174 cirrus_vga_mem_writew
,
2175 cirrus_vga_mem_writel
,
2178 /***************************************
2182 ***************************************/
2184 static inline void invalidate_cursor1(CirrusVGAState
*s
)
2186 if (s
->last_hw_cursor_size
) {
2187 vga_invalidate_scanlines((VGAState
*)s
,
2188 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_start
,
2189 s
->last_hw_cursor_y
+ s
->last_hw_cursor_y_end
);
2193 static inline void cirrus_cursor_compute_yrange(CirrusVGAState
*s
)
2197 int y
, y_min
, y_max
;
2199 src
= s
->vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2200 if (s
->sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2201 src
+= (s
->sr
[0x13] & 0x3c) * 256;
2204 for(y
= 0; y
< 64; y
++) {
2205 content
= ((uint32_t *)src
)[0] |
2206 ((uint32_t *)src
)[1] |
2207 ((uint32_t *)src
)[2] |
2208 ((uint32_t *)src
)[3];
2218 src
+= (s
->sr
[0x13] & 0x3f) * 256;
2221 for(y
= 0; y
< 32; y
++) {
2222 content
= ((uint32_t *)src
)[0] |
2223 ((uint32_t *)(src
+ 128))[0];
2233 if (y_min
> y_max
) {
2234 s
->last_hw_cursor_y_start
= 0;
2235 s
->last_hw_cursor_y_end
= 0;
2237 s
->last_hw_cursor_y_start
= y_min
;
2238 s
->last_hw_cursor_y_end
= y_max
+ 1;
2242 /* NOTE: we do not currently handle the cursor bitmap change, so we
2243 update the cursor only if it moves. */
2244 static void cirrus_cursor_invalidate(VGAState
*s1
)
2246 CirrusVGAState
*s
= (CirrusVGAState
*)s1
;
2249 if (!s
->sr
[0x12] & CIRRUS_CURSOR_SHOW
) {
2252 if (s
->sr
[0x12] & CIRRUS_CURSOR_LARGE
)
2257 /* invalidate last cursor and new cursor if any change */
2258 if (s
->last_hw_cursor_size
!= size
||
2259 s
->last_hw_cursor_x
!= s
->hw_cursor_x
||
2260 s
->last_hw_cursor_y
!= s
->hw_cursor_y
) {
2262 invalidate_cursor1(s
);
2264 s
->last_hw_cursor_size
= size
;
2265 s
->last_hw_cursor_x
= s
->hw_cursor_x
;
2266 s
->last_hw_cursor_y
= s
->hw_cursor_y
;
2267 /* compute the real cursor min and max y */
2268 cirrus_cursor_compute_yrange(s
);
2269 invalidate_cursor1(s
);
2273 static void cirrus_cursor_draw_line(VGAState
*s1
, uint8_t *d1
, int scr_y
)
2275 CirrusVGAState
*s
= (CirrusVGAState
*)s1
;
2276 int w
, h
, bpp
, x1
, x2
, poffset
;
2277 unsigned int color0
, color1
;
2278 const uint8_t *palette
, *src
;
2281 if (!(s
->sr
[0x12] & CIRRUS_CURSOR_SHOW
))
2283 /* fast test to see if the cursor intersects with the scan line */
2284 if (s
->sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2289 if (scr_y
< s
->hw_cursor_y
||
2290 scr_y
>= (s
->hw_cursor_y
+ h
))
2293 src
= s
->vram_ptr
+ s
->real_vram_size
- 16 * 1024;
2294 if (s
->sr
[0x12] & CIRRUS_CURSOR_LARGE
) {
2295 src
+= (s
->sr
[0x13] & 0x3c) * 256;
2296 src
+= (scr_y
- s
->hw_cursor_y
) * 16;
2298 content
= ((uint32_t *)src
)[0] |
2299 ((uint32_t *)src
)[1] |
2300 ((uint32_t *)src
)[2] |
2301 ((uint32_t *)src
)[3];
2303 src
+= (s
->sr
[0x13] & 0x3f) * 256;
2304 src
+= (scr_y
- s
->hw_cursor_y
) * 4;
2306 content
= ((uint32_t *)src
)[0] |
2307 ((uint32_t *)(src
+ 128))[0];
2309 /* if nothing to draw, no need to continue */
2314 x1
= s
->hw_cursor_x
;
2315 if (x1
>= s
->last_scr_width
)
2317 x2
= s
->hw_cursor_x
+ w
;
2318 if (x2
> s
->last_scr_width
)
2319 x2
= s
->last_scr_width
;
2321 palette
= s
->cirrus_hidden_palette
;
2322 color0
= s
->rgb_to_pixel(c6_to_8(palette
[0x0 * 3]),
2323 c6_to_8(palette
[0x0 * 3 + 1]),
2324 c6_to_8(palette
[0x0 * 3 + 2]));
2325 color1
= s
->rgb_to_pixel(c6_to_8(palette
[0xf * 3]),
2326 c6_to_8(palette
[0xf * 3 + 1]),
2327 c6_to_8(palette
[0xf * 3 + 2]));
2328 bpp
= ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
2330 switch(ds_get_bits_per_pixel(s
->ds
)) {
2334 vga_draw_cursor_line_8(d1
, src
, poffset
, w
, color0
, color1
, 0xff);
2337 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0x7fff);
2340 vga_draw_cursor_line_16(d1
, src
, poffset
, w
, color0
, color1
, 0xffff);
2343 vga_draw_cursor_line_32(d1
, src
, poffset
, w
, color0
, color1
, 0xffffff);
2348 /***************************************
2352 ***************************************/
2354 static uint32_t cirrus_linear_readb(void *opaque
, target_phys_addr_t addr
)
2356 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2359 addr
&= s
->cirrus_addr_mask
;
2361 if (((s
->sr
[0x17] & 0x44) == 0x44) &&
2362 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2363 /* memory-mapped I/O */
2364 ret
= cirrus_mmio_blt_read(s
, addr
& 0xff);
2366 /* XXX handle bitblt */
2370 if ((s
->gr
[0x0B] & 0x14) == 0x14) {
2372 } else if (s
->gr
[0x0B] & 0x02) {
2375 addr
&= s
->cirrus_addr_mask
;
2376 ret
= *(s
->vram_ptr
+ addr
);
2382 static uint32_t cirrus_linear_readw(void *opaque
, target_phys_addr_t addr
)
2385 #ifdef TARGET_WORDS_BIGENDIAN
2386 v
= cirrus_linear_readb(opaque
, addr
) << 8;
2387 v
|= cirrus_linear_readb(opaque
, addr
+ 1);
2389 v
= cirrus_linear_readb(opaque
, addr
);
2390 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 8;
2395 static uint32_t cirrus_linear_readl(void *opaque
, target_phys_addr_t addr
)
2398 #ifdef TARGET_WORDS_BIGENDIAN
2399 v
= cirrus_linear_readb(opaque
, addr
) << 24;
2400 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 16;
2401 v
|= cirrus_linear_readb(opaque
, addr
+ 2) << 8;
2402 v
|= cirrus_linear_readb(opaque
, addr
+ 3);
2404 v
= cirrus_linear_readb(opaque
, addr
);
2405 v
|= cirrus_linear_readb(opaque
, addr
+ 1) << 8;
2406 v
|= cirrus_linear_readb(opaque
, addr
+ 2) << 16;
2407 v
|= cirrus_linear_readb(opaque
, addr
+ 3) << 24;
2412 static void cirrus_linear_writeb(void *opaque
, target_phys_addr_t addr
,
2415 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2418 addr
&= s
->cirrus_addr_mask
;
2420 if (((s
->sr
[0x17] & 0x44) == 0x44) &&
2421 ((addr
& s
->linear_mmio_mask
) == s
->linear_mmio_mask
)) {
2422 /* memory-mapped I/O */
2423 cirrus_mmio_blt_write(s
, addr
& 0xff, val
);
2424 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2426 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2427 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2428 cirrus_bitblt_cputovideo_next(s
);
2432 if ((s
->gr
[0x0B] & 0x14) == 0x14) {
2434 } else if (s
->gr
[0x0B] & 0x02) {
2437 addr
&= s
->cirrus_addr_mask
;
2439 mode
= s
->gr
[0x05] & 0x7;
2440 if (mode
< 4 || mode
> 5 || ((s
->gr
[0x0B] & 0x4) == 0)) {
2441 *(s
->vram_ptr
+ addr
) = (uint8_t) val
;
2442 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
2444 if ((s
->gr
[0x0B] & 0x14) != 0x14) {
2445 cirrus_mem_writeb_mode4and5_8bpp(s
, mode
, addr
, val
);
2447 cirrus_mem_writeb_mode4and5_16bpp(s
, mode
, addr
, val
);
2453 static void cirrus_linear_writew(void *opaque
, target_phys_addr_t addr
,
2456 #ifdef TARGET_WORDS_BIGENDIAN
2457 cirrus_linear_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2458 cirrus_linear_writeb(opaque
, addr
+ 1, val
& 0xff);
2460 cirrus_linear_writeb(opaque
, addr
, val
& 0xff);
2461 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2465 static void cirrus_linear_writel(void *opaque
, target_phys_addr_t addr
,
2468 #ifdef TARGET_WORDS_BIGENDIAN
2469 cirrus_linear_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2470 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2471 cirrus_linear_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2472 cirrus_linear_writeb(opaque
, addr
+ 3, val
& 0xff);
2474 cirrus_linear_writeb(opaque
, addr
, val
& 0xff);
2475 cirrus_linear_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2476 cirrus_linear_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2477 cirrus_linear_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2482 static CPUReadMemoryFunc
*cirrus_linear_read
[3] = {
2483 cirrus_linear_readb
,
2484 cirrus_linear_readw
,
2485 cirrus_linear_readl
,
2488 static CPUWriteMemoryFunc
*cirrus_linear_write
[3] = {
2489 cirrus_linear_writeb
,
2490 cirrus_linear_writew
,
2491 cirrus_linear_writel
,
2494 static void cirrus_linear_mem_writeb(void *opaque
, target_phys_addr_t addr
,
2497 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2499 addr
&= s
->cirrus_addr_mask
;
2500 *(s
->vram_ptr
+ addr
) = val
;
2501 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
2504 static void cirrus_linear_mem_writew(void *opaque
, target_phys_addr_t addr
,
2507 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2509 addr
&= s
->cirrus_addr_mask
;
2510 cpu_to_le16w((uint16_t *)(s
->vram_ptr
+ addr
), val
);
2511 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
2514 static void cirrus_linear_mem_writel(void *opaque
, target_phys_addr_t addr
,
2517 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2519 addr
&= s
->cirrus_addr_mask
;
2520 cpu_to_le32w((uint32_t *)(s
->vram_ptr
+ addr
), val
);
2521 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
2524 /***************************************
2526 * system to screen memory access
2528 ***************************************/
2531 static uint32_t cirrus_linear_bitblt_readb(void *opaque
, target_phys_addr_t addr
)
2535 /* XXX handle bitblt */
2540 static uint32_t cirrus_linear_bitblt_readw(void *opaque
, target_phys_addr_t addr
)
2543 #ifdef TARGET_WORDS_BIGENDIAN
2544 v
= cirrus_linear_bitblt_readb(opaque
, addr
) << 8;
2545 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1);
2547 v
= cirrus_linear_bitblt_readb(opaque
, addr
);
2548 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 8;
2553 static uint32_t cirrus_linear_bitblt_readl(void *opaque
, target_phys_addr_t addr
)
2556 #ifdef TARGET_WORDS_BIGENDIAN
2557 v
= cirrus_linear_bitblt_readb(opaque
, addr
) << 24;
2558 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 16;
2559 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 2) << 8;
2560 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 3);
2562 v
= cirrus_linear_bitblt_readb(opaque
, addr
);
2563 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 1) << 8;
2564 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 2) << 16;
2565 v
|= cirrus_linear_bitblt_readb(opaque
, addr
+ 3) << 24;
2570 static void cirrus_linear_bitblt_writeb(void *opaque
, target_phys_addr_t addr
,
2573 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2575 if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2577 *s
->cirrus_srcptr
++ = (uint8_t) val
;
2578 if (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
) {
2579 cirrus_bitblt_cputovideo_next(s
);
2584 static void cirrus_linear_bitblt_writew(void *opaque
, target_phys_addr_t addr
,
2587 #ifdef TARGET_WORDS_BIGENDIAN
2588 cirrus_linear_bitblt_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2589 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, val
& 0xff);
2591 cirrus_linear_bitblt_writeb(opaque
, addr
, val
& 0xff);
2592 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2596 static void cirrus_linear_bitblt_writel(void *opaque
, target_phys_addr_t addr
,
2599 #ifdef TARGET_WORDS_BIGENDIAN
2600 cirrus_linear_bitblt_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2601 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2602 cirrus_linear_bitblt_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2603 cirrus_linear_bitblt_writeb(opaque
, addr
+ 3, val
& 0xff);
2605 cirrus_linear_bitblt_writeb(opaque
, addr
, val
& 0xff);
2606 cirrus_linear_bitblt_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2607 cirrus_linear_bitblt_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
2608 cirrus_linear_bitblt_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
2613 static CPUReadMemoryFunc
*cirrus_linear_bitblt_read
[3] = {
2614 cirrus_linear_bitblt_readb
,
2615 cirrus_linear_bitblt_readw
,
2616 cirrus_linear_bitblt_readl
,
2619 static CPUWriteMemoryFunc
*cirrus_linear_bitblt_write
[3] = {
2620 cirrus_linear_bitblt_writeb
,
2621 cirrus_linear_bitblt_writew
,
2622 cirrus_linear_bitblt_writel
,
2625 static void map_linear_vram(CirrusVGAState
*s
)
2627 vga_dirty_log_stop((VGAState
*)s
);
2629 if (!s
->map_addr
&& s
->lfb_addr
&& s
->lfb_end
) {
2630 s
->map_addr
= s
->lfb_addr
;
2631 s
->map_end
= s
->lfb_end
;
2632 cpu_register_physical_memory(s
->map_addr
, s
->map_end
- s
->map_addr
, s
->vram_offset
);
2638 s
->lfb_vram_mapped
= 0;
2640 if (!(s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
)
2641 && !((s
->sr
[0x07] & 0x01) == 0)
2642 && !((s
->gr
[0x0B] & 0x14) == 0x14)
2643 && !(s
->gr
[0x0B] & 0x02)) {
2645 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x8000,
2646 (s
->vram_offset
+ s
->cirrus_bank_base
[0]) | IO_MEM_RAM
);
2647 cpu_register_physical_memory(isa_mem_base
+ 0xa8000, 0x8000,
2648 (s
->vram_offset
+ s
->cirrus_bank_base
[1]) | IO_MEM_RAM
);
2650 s
->lfb_vram_mapped
= 1;
2653 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x20000,
2657 vga_dirty_log_start((VGAState
*)s
);
2660 static void unmap_linear_vram(CirrusVGAState
*s
)
2662 vga_dirty_log_stop((VGAState
*)s
);
2664 if (s
->map_addr
&& s
->lfb_addr
&& s
->lfb_end
)
2665 s
->map_addr
= s
->map_end
= 0;
2667 cpu_register_physical_memory(isa_mem_base
+ 0xa0000, 0x20000,
2670 vga_dirty_log_start((VGAState
*)s
);
2673 /* Compute the memory access functions */
2674 static void cirrus_update_memory_access(CirrusVGAState
*s
)
2678 if ((s
->sr
[0x17] & 0x44) == 0x44) {
2680 } else if (s
->cirrus_srcptr
!= s
->cirrus_srcptr_end
) {
2683 if ((s
->gr
[0x0B] & 0x14) == 0x14) {
2685 } else if (s
->gr
[0x0B] & 0x02) {
2689 mode
= s
->gr
[0x05] & 0x7;
2690 if (mode
< 4 || mode
> 5 || ((s
->gr
[0x0B] & 0x4) == 0)) {
2692 s
->cirrus_linear_write
[0] = cirrus_linear_mem_writeb
;
2693 s
->cirrus_linear_write
[1] = cirrus_linear_mem_writew
;
2694 s
->cirrus_linear_write
[2] = cirrus_linear_mem_writel
;
2697 unmap_linear_vram(s
);
2698 s
->cirrus_linear_write
[0] = cirrus_linear_writeb
;
2699 s
->cirrus_linear_write
[1] = cirrus_linear_writew
;
2700 s
->cirrus_linear_write
[2] = cirrus_linear_writel
;
2708 static uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
2710 CirrusVGAState
*s
= opaque
;
2713 /* check port range access depending on color/monochrome mode */
2714 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
))
2715 || (addr
>= 0x3d0 && addr
<= 0x3df
2716 && !(s
->msr
& MSR_COLOR_EMULATION
))) {
2721 if (s
->ar_flip_flop
== 0) {
2728 index
= s
->ar_index
& 0x1f;
2741 if (cirrus_hook_read_sr(s
, s
->sr_index
, &val
))
2743 val
= s
->sr
[s
->sr_index
];
2744 #ifdef DEBUG_VGA_REG
2745 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
2749 cirrus_read_hidden_dac(s
, &val
);
2755 val
= s
->dac_write_index
;
2756 s
->cirrus_hidden_dac_lockindex
= 0;
2759 if (cirrus_hook_read_palette(s
, &val
))
2761 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
2762 if (++s
->dac_sub_index
== 3) {
2763 s
->dac_sub_index
= 0;
2764 s
->dac_read_index
++;
2777 if (cirrus_hook_read_gr(s
, s
->gr_index
, &val
))
2779 val
= s
->gr
[s
->gr_index
];
2780 #ifdef DEBUG_VGA_REG
2781 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
2790 if (cirrus_hook_read_cr(s
, s
->cr_index
, &val
))
2792 val
= s
->cr
[s
->cr_index
];
2793 #ifdef DEBUG_VGA_REG
2794 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
2799 /* just toggle to fool polling */
2800 val
= s
->st01
= s
->retrace((VGAState
*) s
);
2801 s
->ar_flip_flop
= 0;
2808 #if defined(DEBUG_VGA)
2809 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
2814 static void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
2816 CirrusVGAState
*s
= opaque
;
2819 /* check port range access depending on color/monochrome mode */
2820 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
))
2821 || (addr
>= 0x3d0 && addr
<= 0x3df
2822 && !(s
->msr
& MSR_COLOR_EMULATION
)))
2826 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
2831 if (s
->ar_flip_flop
== 0) {
2835 index
= s
->ar_index
& 0x1f;
2838 s
->ar
[index
] = val
& 0x3f;
2841 s
->ar
[index
] = val
& ~0x10;
2847 s
->ar
[index
] = val
& ~0xc0;
2850 s
->ar
[index
] = val
& ~0xf0;
2853 s
->ar
[index
] = val
& ~0xf0;
2859 s
->ar_flip_flop
^= 1;
2862 s
->msr
= val
& ~0x10;
2863 s
->update_retrace_info((VGAState
*) s
);
2869 if (cirrus_hook_write_sr(s
, s
->sr_index
, val
))
2871 #ifdef DEBUG_VGA_REG
2872 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
2874 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
2875 if (s
->sr_index
== 1) s
->update_retrace_info((VGAState
*) s
);
2878 cirrus_write_hidden_dac(s
, val
);
2881 s
->dac_read_index
= val
;
2882 s
->dac_sub_index
= 0;
2886 s
->dac_write_index
= val
;
2887 s
->dac_sub_index
= 0;
2891 if (cirrus_hook_write_palette(s
, val
))
2893 s
->dac_cache
[s
->dac_sub_index
] = val
;
2894 if (++s
->dac_sub_index
== 3) {
2895 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
2896 s
->dac_sub_index
= 0;
2897 s
->dac_write_index
++;
2904 if (cirrus_hook_write_gr(s
, s
->gr_index
, val
))
2906 #ifdef DEBUG_VGA_REG
2907 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
2909 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
2917 if (cirrus_hook_write_cr(s
, s
->cr_index
, val
))
2919 #ifdef DEBUG_VGA_REG
2920 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
2922 /* handle CR0-7 protection */
2923 if ((s
->cr
[0x11] & 0x80) && s
->cr_index
<= 7) {
2924 /* can always write bit 4 of CR7 */
2925 if (s
->cr_index
== 7)
2926 s
->cr
[7] = (s
->cr
[7] & ~0x10) | (val
& 0x10);
2929 switch (s
->cr_index
) {
2930 case 0x01: /* horizontal display end */
2935 case 0x12: /* vertical display end */
2936 s
->cr
[s
->cr_index
] = val
;
2940 s
->cr
[s
->cr_index
] = val
;
2944 switch(s
->cr_index
) {
2952 s
->update_retrace_info((VGAState
*) s
);
2958 s
->fcr
= val
& 0x10;
2963 /***************************************
2965 * memory-mapped I/O access
2967 ***************************************/
2969 static uint32_t cirrus_mmio_readb(void *opaque
, target_phys_addr_t addr
)
2971 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2973 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
2975 if (addr
>= 0x100) {
2976 return cirrus_mmio_blt_read(s
, addr
- 0x100);
2978 return vga_ioport_read(s
, addr
+ 0x3c0);
2982 static uint32_t cirrus_mmio_readw(void *opaque
, target_phys_addr_t addr
)
2985 #ifdef TARGET_WORDS_BIGENDIAN
2986 v
= cirrus_mmio_readb(opaque
, addr
) << 8;
2987 v
|= cirrus_mmio_readb(opaque
, addr
+ 1);
2989 v
= cirrus_mmio_readb(opaque
, addr
);
2990 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
2995 static uint32_t cirrus_mmio_readl(void *opaque
, target_phys_addr_t addr
)
2998 #ifdef TARGET_WORDS_BIGENDIAN
2999 v
= cirrus_mmio_readb(opaque
, addr
) << 24;
3000 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 16;
3001 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 8;
3002 v
|= cirrus_mmio_readb(opaque
, addr
+ 3);
3004 v
= cirrus_mmio_readb(opaque
, addr
);
3005 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
3006 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 16;
3007 v
|= cirrus_mmio_readb(opaque
, addr
+ 3) << 24;
3012 static void cirrus_mmio_writeb(void *opaque
, target_phys_addr_t addr
,
3015 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
3017 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
3019 if (addr
>= 0x100) {
3020 cirrus_mmio_blt_write(s
, addr
- 0x100, val
);
3022 vga_ioport_write(s
, addr
+ 0x3c0, val
);
3026 static void cirrus_mmio_writew(void *opaque
, target_phys_addr_t addr
,
3029 #ifdef TARGET_WORDS_BIGENDIAN
3030 cirrus_mmio_writeb(opaque
, addr
, (val
>> 8) & 0xff);
3031 cirrus_mmio_writeb(opaque
, addr
+ 1, val
& 0xff);
3033 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
3034 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
3038 static void cirrus_mmio_writel(void *opaque
, target_phys_addr_t addr
,
3041 #ifdef TARGET_WORDS_BIGENDIAN
3042 cirrus_mmio_writeb(opaque
, addr
, (val
>> 24) & 0xff);
3043 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
3044 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
3045 cirrus_mmio_writeb(opaque
, addr
+ 3, val
& 0xff);
3047 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
3048 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
3049 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
3050 cirrus_mmio_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
3055 static CPUReadMemoryFunc
*cirrus_mmio_read
[3] = {
3061 static CPUWriteMemoryFunc
*cirrus_mmio_write
[3] = {
3067 /* load/save state */
3069 static void cirrus_vga_save(QEMUFile
*f
, void *opaque
)
3071 CirrusVGAState
*s
= opaque
;
3074 pci_device_save(s
->pci_dev
, f
);
3076 qemu_put_be32s(f
, &s
->latch
);
3077 qemu_put_8s(f
, &s
->sr_index
);
3078 qemu_put_buffer(f
, s
->sr
, 256);
3079 qemu_put_8s(f
, &s
->gr_index
);
3080 qemu_put_8s(f
, &s
->cirrus_shadow_gr0
);
3081 qemu_put_8s(f
, &s
->cirrus_shadow_gr1
);
3082 qemu_put_buffer(f
, s
->gr
+ 2, 254);
3083 qemu_put_8s(f
, &s
->ar_index
);
3084 qemu_put_buffer(f
, s
->ar
, 21);
3085 qemu_put_be32(f
, s
->ar_flip_flop
);
3086 qemu_put_8s(f
, &s
->cr_index
);
3087 qemu_put_buffer(f
, s
->cr
, 256);
3088 qemu_put_8s(f
, &s
->msr
);
3089 qemu_put_8s(f
, &s
->fcr
);
3090 qemu_put_8s(f
, &s
->st00
);
3091 qemu_put_8s(f
, &s
->st01
);
3093 qemu_put_8s(f
, &s
->dac_state
);
3094 qemu_put_8s(f
, &s
->dac_sub_index
);
3095 qemu_put_8s(f
, &s
->dac_read_index
);
3096 qemu_put_8s(f
, &s
->dac_write_index
);
3097 qemu_put_buffer(f
, s
->dac_cache
, 3);
3098 qemu_put_buffer(f
, s
->palette
, 768);
3100 qemu_put_be32(f
, s
->bank_offset
);
3102 qemu_put_8s(f
, &s
->cirrus_hidden_dac_lockindex
);
3103 qemu_put_8s(f
, &s
->cirrus_hidden_dac_data
);
3105 qemu_put_be32s(f
, &s
->hw_cursor_x
);
3106 qemu_put_be32s(f
, &s
->hw_cursor_y
);
3107 /* XXX: we do not save the bitblt state - we assume we do not save
3108 the state when the blitter is active */
3111 static int cirrus_vga_load(QEMUFile
*f
, void *opaque
, int version_id
)
3113 CirrusVGAState
*s
= opaque
;
3119 if (s
->pci_dev
&& version_id
>= 2) {
3120 ret
= pci_device_load(s
->pci_dev
, f
);
3125 qemu_get_be32s(f
, &s
->latch
);
3126 qemu_get_8s(f
, &s
->sr_index
);
3127 qemu_get_buffer(f
, s
->sr
, 256);
3128 qemu_get_8s(f
, &s
->gr_index
);
3129 qemu_get_8s(f
, &s
->cirrus_shadow_gr0
);
3130 qemu_get_8s(f
, &s
->cirrus_shadow_gr1
);
3131 s
->gr
[0x00] = s
->cirrus_shadow_gr0
& 0x0f;
3132 s
->gr
[0x01] = s
->cirrus_shadow_gr1
& 0x0f;
3133 qemu_get_buffer(f
, s
->gr
+ 2, 254);
3134 qemu_get_8s(f
, &s
->ar_index
);
3135 qemu_get_buffer(f
, s
->ar
, 21);
3136 s
->ar_flip_flop
=qemu_get_be32(f
);
3137 qemu_get_8s(f
, &s
->cr_index
);
3138 qemu_get_buffer(f
, s
->cr
, 256);
3139 qemu_get_8s(f
, &s
->msr
);
3140 qemu_get_8s(f
, &s
->fcr
);
3141 qemu_get_8s(f
, &s
->st00
);
3142 qemu_get_8s(f
, &s
->st01
);
3144 qemu_get_8s(f
, &s
->dac_state
);
3145 qemu_get_8s(f
, &s
->dac_sub_index
);
3146 qemu_get_8s(f
, &s
->dac_read_index
);
3147 qemu_get_8s(f
, &s
->dac_write_index
);
3148 qemu_get_buffer(f
, s
->dac_cache
, 3);
3149 qemu_get_buffer(f
, s
->palette
, 768);
3151 s
->bank_offset
=qemu_get_be32(f
);
3153 qemu_get_8s(f
, &s
->cirrus_hidden_dac_lockindex
);
3154 qemu_get_8s(f
, &s
->cirrus_hidden_dac_data
);
3156 qemu_get_be32s(f
, &s
->hw_cursor_x
);
3157 qemu_get_be32s(f
, &s
->hw_cursor_y
);
3159 cirrus_update_memory_access(s
);
3161 s
->graphic_mode
= -1;
3162 cirrus_update_bank_ptr(s
, 0);
3163 cirrus_update_bank_ptr(s
, 1);
3167 /***************************************
3171 ***************************************/
3173 static void cirrus_reset(void *opaque
)
3175 CirrusVGAState
*s
= opaque
;
3178 unmap_linear_vram(s
);
3180 if (s
->device_id
== CIRRUS_ID_CLGD5446
) {
3181 /* 4MB 64 bit memory config, always PCI */
3182 s
->sr
[0x1F] = 0x2d; // MemClock
3183 s
->gr
[0x18] = 0x0f; // fastest memory configuration
3186 s
->sr
[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
3188 s
->sr
[0x1F] = 0x22; // MemClock
3189 s
->sr
[0x0F] = CIRRUS_MEMSIZE_2M
;
3190 s
->sr
[0x17] = s
->bustype
;
3191 s
->sr
[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
3193 s
->cr
[0x27] = s
->device_id
;
3195 /* Win2K seems to assume that the pattern buffer is at 0xff
3197 memset(s
->vram_ptr
, 0xff, s
->real_vram_size
);
3199 s
->cirrus_hidden_dac_lockindex
= 5;
3200 s
->cirrus_hidden_dac_data
= 0;
3203 static void cirrus_init_common(CirrusVGAState
* s
, int device_id
, int is_pci
)
3210 for(i
= 0;i
< 256; i
++)
3211 rop_to_index
[i
] = CIRRUS_ROP_NOP_INDEX
; /* nop rop */
3212 rop_to_index
[CIRRUS_ROP_0
] = 0;
3213 rop_to_index
[CIRRUS_ROP_SRC_AND_DST
] = 1;
3214 rop_to_index
[CIRRUS_ROP_NOP
] = 2;
3215 rop_to_index
[CIRRUS_ROP_SRC_AND_NOTDST
] = 3;
3216 rop_to_index
[CIRRUS_ROP_NOTDST
] = 4;
3217 rop_to_index
[CIRRUS_ROP_SRC
] = 5;
3218 rop_to_index
[CIRRUS_ROP_1
] = 6;
3219 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_DST
] = 7;
3220 rop_to_index
[CIRRUS_ROP_SRC_XOR_DST
] = 8;
3221 rop_to_index
[CIRRUS_ROP_SRC_OR_DST
] = 9;
3222 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_NOTDST
] = 10;
3223 rop_to_index
[CIRRUS_ROP_SRC_NOTXOR_DST
] = 11;
3224 rop_to_index
[CIRRUS_ROP_SRC_OR_NOTDST
] = 12;
3225 rop_to_index
[CIRRUS_ROP_NOTSRC
] = 13;
3226 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_DST
] = 14;
3227 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_NOTDST
] = 15;
3228 s
->device_id
= device_id
;
3230 s
->bustype
= CIRRUS_BUSTYPE_PCI
;
3232 s
->bustype
= CIRRUS_BUSTYPE_ISA
;
3235 register_ioport_write(0x3c0, 16, 1, vga_ioport_write
, s
);
3237 register_ioport_write(0x3b4, 2, 1, vga_ioport_write
, s
);
3238 register_ioport_write(0x3d4, 2, 1, vga_ioport_write
, s
);
3239 register_ioport_write(0x3ba, 1, 1, vga_ioport_write
, s
);
3240 register_ioport_write(0x3da, 1, 1, vga_ioport_write
, s
);
3242 register_ioport_read(0x3c0, 16, 1, vga_ioport_read
, s
);
3244 register_ioport_read(0x3b4, 2, 1, vga_ioport_read
, s
);
3245 register_ioport_read(0x3d4, 2, 1, vga_ioport_read
, s
);
3246 register_ioport_read(0x3ba, 1, 1, vga_ioport_read
, s
);
3247 register_ioport_read(0x3da, 1, 1, vga_ioport_read
, s
);
3249 s
->vga_io_memory
= cpu_register_io_memory(0, cirrus_vga_mem_read
,
3250 cirrus_vga_mem_write
, s
);
3251 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
3253 qemu_register_coalesced_mmio(isa_mem_base
+ 0x000a0000, 0x20000);
3255 /* I/O handler for LFB */
3256 s
->cirrus_linear_io_addr
=
3257 cpu_register_io_memory(0, cirrus_linear_read
, cirrus_linear_write
, s
);
3258 s
->cirrus_linear_write
= cpu_get_io_memory_write(s
->cirrus_linear_io_addr
);
3260 /* I/O handler for LFB */
3261 s
->cirrus_linear_bitblt_io_addr
=
3262 cpu_register_io_memory(0, cirrus_linear_bitblt_read
,
3263 cirrus_linear_bitblt_write
, s
);
3265 /* I/O handler for memory-mapped I/O */
3266 s
->cirrus_mmio_io_addr
=
3267 cpu_register_io_memory(0, cirrus_mmio_read
, cirrus_mmio_write
, s
);
3270 (s
->device_id
== CIRRUS_ID_CLGD5446
) ? 4096 * 1024 : 2048 * 1024;
3272 /* XXX: s->vram_size must be a power of two */
3273 s
->cirrus_addr_mask
= s
->real_vram_size
- 1;
3274 s
->linear_mmio_mask
= s
->real_vram_size
- 256;
3276 s
->get_bpp
= cirrus_get_bpp
;
3277 s
->get_offsets
= cirrus_get_offsets
;
3278 s
->get_resolution
= cirrus_get_resolution
;
3279 s
->cursor_invalidate
= cirrus_cursor_invalidate
;
3280 s
->cursor_draw_line
= cirrus_cursor_draw_line
;
3282 qemu_register_reset(cirrus_reset
, s
);
3284 register_savevm("cirrus_vga", 0, 2, cirrus_vga_save
, cirrus_vga_load
, s
);
3287 /***************************************
3291 ***************************************/
3293 void isa_cirrus_vga_init(uint8_t *vga_ram_base
,
3294 ram_addr_t vga_ram_offset
, int vga_ram_size
)
3298 s
= qemu_mallocz(sizeof(CirrusVGAState
));
3300 vga_common_init((VGAState
*)s
,
3301 vga_ram_base
, vga_ram_offset
, vga_ram_size
);
3302 cirrus_init_common(s
, CIRRUS_ID_CLGD5430
, 0);
3303 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
3304 s
->screen_dump
, s
->text_update
, s
);
3305 /* XXX ISA-LFB support */
3308 /***************************************
3312 ***************************************/
3314 static void cirrus_pci_lfb_map(PCIDevice
*d
, int region_num
,
3315 uint32_t addr
, uint32_t size
, int type
)
3317 CirrusVGAState
*s
= &((PCICirrusVGAState
*)d
)->cirrus_vga
;
3319 vga_dirty_log_stop((VGAState
*)s
);
3321 /* XXX: add byte swapping apertures */
3322 cpu_register_physical_memory(addr
, s
->vram_size
,
3323 s
->cirrus_linear_io_addr
);
3324 cpu_register_physical_memory(addr
+ 0x1000000, 0x400000,
3325 s
->cirrus_linear_bitblt_io_addr
);
3327 s
->map_addr
= s
->map_end
= 0;
3328 s
->lfb_addr
= addr
& TARGET_PAGE_MASK
;
3329 s
->lfb_end
= ((addr
+ VGA_RAM_SIZE
) + TARGET_PAGE_SIZE
- 1) & TARGET_PAGE_MASK
;
3330 /* account for overflow */
3331 if (s
->lfb_end
< addr
+ VGA_RAM_SIZE
)
3332 s
->lfb_end
= addr
+ VGA_RAM_SIZE
;
3334 vga_dirty_log_start((VGAState
*)s
);
3337 static void cirrus_pci_mmio_map(PCIDevice
*d
, int region_num
,
3338 uint32_t addr
, uint32_t size
, int type
)
3340 CirrusVGAState
*s
= &((PCICirrusVGAState
*)d
)->cirrus_vga
;
3342 cpu_register_physical_memory(addr
, CIRRUS_PNPMMIO_SIZE
,
3343 s
->cirrus_mmio_io_addr
);
3346 static void pci_cirrus_write_config(PCIDevice
*d
,
3347 uint32_t address
, uint32_t val
, int len
)
3349 PCICirrusVGAState
*pvs
= container_of(d
, PCICirrusVGAState
, dev
);
3350 CirrusVGAState
*s
= &pvs
->cirrus_vga
;
3352 vga_dirty_log_stop((VGAState
*)s
);
3354 pci_default_write_config(d
, address
, val
, len
);
3355 if (s
->map_addr
&& pvs
->dev
.io_regions
[0].addr
== -1)
3357 cirrus_update_memory_access(s
);
3359 vga_dirty_log_start((VGAState
*)s
);
3362 void pci_cirrus_vga_init(PCIBus
*bus
, uint8_t *vga_ram_base
,
3363 ram_addr_t vga_ram_offset
, int vga_ram_size
)
3365 PCICirrusVGAState
*d
;
3370 device_id
= CIRRUS_ID_CLGD5446
;
3372 /* setup PCI configuration registers */
3373 d
= (PCICirrusVGAState
*)pci_register_device(bus
, "Cirrus VGA",
3374 sizeof(PCICirrusVGAState
),
3375 -1, NULL
, pci_cirrus_write_config
);
3376 pci_conf
= d
->dev
.config
;
3377 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_CIRRUS
);
3378 pci_config_set_device_id(pci_conf
, device_id
);
3379 pci_conf
[0x04] = PCI_COMMAND_IOACCESS
| PCI_COMMAND_MEMACCESS
;
3380 pci_config_set_class(pci_conf
, PCI_CLASS_DISPLAY_VGA
);
3381 pci_conf
[0x0e] = PCI_CLASS_HEADERTYPE_00h
;
3385 vga_common_init((VGAState
*)s
,
3386 vga_ram_base
, vga_ram_offset
, vga_ram_size
);
3387 cirrus_init_common(s
, device_id
, 1);
3389 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
3390 s
->screen_dump
, s
->text_update
, s
);
3392 s
->pci_dev
= (PCIDevice
*)d
;
3394 /* setup memory space */
3396 /* memory #1 memory-mapped I/O */
3397 /* XXX: s->vram_size must be a power of two */
3398 pci_register_io_region((PCIDevice
*)d
, 0, 0x2000000,
3399 PCI_ADDRESS_SPACE_MEM_PREFETCH
, cirrus_pci_lfb_map
);
3400 if (device_id
== CIRRUS_ID_CLGD5446
) {
3401 pci_register_io_region((PCIDevice
*)d
, 1, CIRRUS_PNPMMIO_SIZE
,
3402 PCI_ADDRESS_SPACE_MEM
, cirrus_pci_mmio_map
);