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 ***************************************/
53 #define CIRRUS_ID_CLGD5422 (0x23<<2)
54 #define CIRRUS_ID_CLGD5426 (0x24<<2)
55 #define CIRRUS_ID_CLGD5424 (0x25<<2)
56 #define CIRRUS_ID_CLGD5428 (0x26<<2)
57 #define CIRRUS_ID_CLGD5430 (0x28<<2)
58 #define CIRRUS_ID_CLGD5434 (0x2A<<2)
59 #define CIRRUS_ID_CLGD5436 (0x2B<<2)
60 #define CIRRUS_ID_CLGD5446 (0x2E<<2)
63 #define CIRRUS_SR7_BPP_VGA 0x00
64 #define CIRRUS_SR7_BPP_SVGA 0x01
65 #define CIRRUS_SR7_BPP_MASK 0x0e
66 #define CIRRUS_SR7_BPP_8 0x00
67 #define CIRRUS_SR7_BPP_16_DOUBLEVCLK 0x02
68 #define CIRRUS_SR7_BPP_24 0x04
69 #define CIRRUS_SR7_BPP_16 0x06
70 #define CIRRUS_SR7_BPP_32 0x08
71 #define CIRRUS_SR7_ISAADDR_MASK 0xe0
74 #define CIRRUS_MEMSIZE_512k 0x08
75 #define CIRRUS_MEMSIZE_1M 0x10
76 #define CIRRUS_MEMSIZE_2M 0x18
77 #define CIRRUS_MEMFLAGS_BANKSWITCH 0x80 // bank switching is enabled.
80 #define CIRRUS_CURSOR_SHOW 0x01
81 #define CIRRUS_CURSOR_HIDDENPEL 0x02
82 #define CIRRUS_CURSOR_LARGE 0x04 // 64x64 if set, 32x32 if clear
85 #define CIRRUS_BUSTYPE_VLBFAST 0x10
86 #define CIRRUS_BUSTYPE_PCI 0x20
87 #define CIRRUS_BUSTYPE_VLBSLOW 0x30
88 #define CIRRUS_BUSTYPE_ISA 0x38
89 #define CIRRUS_MMIO_ENABLE 0x04
90 #define CIRRUS_MMIO_USE_PCIADDR 0x40 // 0xb8000 if cleared.
91 #define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
94 #define CIRRUS_BANKING_DUAL 0x01
95 #define CIRRUS_BANKING_GRANULARITY_16K 0x20 // set:16k, clear:4k
98 #define CIRRUS_BLTMODE_BACKWARDS 0x01
99 #define CIRRUS_BLTMODE_MEMSYSDEST 0x02
100 #define CIRRUS_BLTMODE_MEMSYSSRC 0x04
101 #define CIRRUS_BLTMODE_TRANSPARENTCOMP 0x08
102 #define CIRRUS_BLTMODE_PATTERNCOPY 0x40
103 #define CIRRUS_BLTMODE_COLOREXPAND 0x80
104 #define CIRRUS_BLTMODE_PIXELWIDTHMASK 0x30
105 #define CIRRUS_BLTMODE_PIXELWIDTH8 0x00
106 #define CIRRUS_BLTMODE_PIXELWIDTH16 0x10
107 #define CIRRUS_BLTMODE_PIXELWIDTH24 0x20
108 #define CIRRUS_BLTMODE_PIXELWIDTH32 0x30
111 #define CIRRUS_BLT_BUSY 0x01
112 #define CIRRUS_BLT_START 0x02
113 #define CIRRUS_BLT_RESET 0x04
114 #define CIRRUS_BLT_FIFOUSED 0x10
115 #define CIRRUS_BLT_AUTOSTART 0x80
118 #define CIRRUS_ROP_0 0x00
119 #define CIRRUS_ROP_SRC_AND_DST 0x05
120 #define CIRRUS_ROP_NOP 0x06
121 #define CIRRUS_ROP_SRC_AND_NOTDST 0x09
122 #define CIRRUS_ROP_NOTDST 0x0b
123 #define CIRRUS_ROP_SRC 0x0d
124 #define CIRRUS_ROP_1 0x0e
125 #define CIRRUS_ROP_NOTSRC_AND_DST 0x50
126 #define CIRRUS_ROP_SRC_XOR_DST 0x59
127 #define CIRRUS_ROP_SRC_OR_DST 0x6d
128 #define CIRRUS_ROP_NOTSRC_OR_NOTDST 0x90
129 #define CIRRUS_ROP_SRC_NOTXOR_DST 0x95
130 #define CIRRUS_ROP_SRC_OR_NOTDST 0xad
131 #define CIRRUS_ROP_NOTSRC 0xd0
132 #define CIRRUS_ROP_NOTSRC_OR_DST 0xd6
133 #define CIRRUS_ROP_NOTSRC_AND_NOTDST 0xda
135 #define CIRRUS_ROP_NOP_INDEX 2
136 #define CIRRUS_ROP_SRC_INDEX 5
139 #define CIRRUS_BLTMODEEXT_SOLIDFILL 0x04
140 #define CIRRUS_BLTMODEEXT_COLOREXPINV 0x02
141 #define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
144 #define CIRRUS_MMIO_BLTBGCOLOR 0x00 // dword
145 #define CIRRUS_MMIO_BLTFGCOLOR 0x04 // dword
146 #define CIRRUS_MMIO_BLTWIDTH 0x08 // word
147 #define CIRRUS_MMIO_BLTHEIGHT 0x0a // word
148 #define CIRRUS_MMIO_BLTDESTPITCH 0x0c // word
149 #define CIRRUS_MMIO_BLTSRCPITCH 0x0e // word
150 #define CIRRUS_MMIO_BLTDESTADDR 0x10 // dword
151 #define CIRRUS_MMIO_BLTSRCADDR 0x14 // dword
152 #define CIRRUS_MMIO_BLTWRITEMASK 0x17 // byte
153 #define CIRRUS_MMIO_BLTMODE 0x18 // byte
154 #define CIRRUS_MMIO_BLTROP 0x1a // byte
155 #define CIRRUS_MMIO_BLTMODEEXT 0x1b // byte
156 #define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c // word?
157 #define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20 // word?
158 #define CIRRUS_MMIO_LINEARDRAW_START_X 0x24 // word
159 #define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26 // word
160 #define CIRRUS_MMIO_LINEARDRAW_END_X 0x28 // word
161 #define CIRRUS_MMIO_LINEARDRAW_END_Y 0x2a // word
162 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c // byte
163 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d // byte
164 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e // byte
165 #define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f // byte
166 #define CIRRUS_MMIO_BRESENHAM_K1 0x30 // word
167 #define CIRRUS_MMIO_BRESENHAM_K3 0x32 // word
168 #define CIRRUS_MMIO_BRESENHAM_ERROR 0x34 // word
169 #define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36 // word
170 #define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38 // byte
171 #define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
172 #define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
174 // PCI 0x04: command(word), 0x06(word): status
175 #define PCI_COMMAND_IOACCESS 0x0001
176 #define PCI_COMMAND_MEMACCESS 0x0002
177 #define PCI_COMMAND_BUSMASTER 0x0004
178 #define PCI_COMMAND_SPECIALCYCLE 0x0008
179 #define PCI_COMMAND_MEMWRITEINVALID 0x0010
180 #define PCI_COMMAND_PALETTESNOOPING 0x0020
181 #define PCI_COMMAND_PARITYDETECTION 0x0040
182 #define PCI_COMMAND_ADDRESSDATASTEPPING 0x0080
183 #define PCI_COMMAND_SERR 0x0100
184 #define PCI_COMMAND_BACKTOBACKTRANS 0x0200
185 // PCI 0x08, 0xff000000 (0x09-0x0b:class,0x08:rev)
186 #define PCI_CLASS_BASE_DISPLAY 0x03
187 // PCI 0x08, 0x00ff0000
188 #define PCI_CLASS_SUB_VGA 0x00
189 // PCI 0x0c, 0x00ff0000 (0x0c:cacheline,0x0d:latency,0x0e:headertype,0x0f:Built-in self test)
190 // 0x10-0x3f (headertype 00h)
191 // PCI 0x10,0x14,0x18,0x1c,0x20,0x24: base address mapping registers
192 // 0x10: MEMBASE, 0x14: IOBASE(hard-coded in XFree86 3.x)
193 #define PCI_MAP_MEM 0x0
194 #define PCI_MAP_IO 0x1
195 #define PCI_MAP_MEM_ADDR_MASK (~0xf)
196 #define PCI_MAP_IO_ADDR_MASK (~0x3)
197 #define PCI_MAP_MEMFLAGS_32BIT 0x0
198 #define PCI_MAP_MEMFLAGS_32BIT_1M 0x1
199 #define PCI_MAP_MEMFLAGS_64BIT 0x4
200 #define PCI_MAP_MEMFLAGS_CACHEABLE 0x8
201 // PCI 0x28: cardbus CIS pointer
202 // PCI 0x2c: subsystem vendor id, 0x2e: subsystem id
203 // PCI 0x30: expansion ROM base address
204 #define PCI_ROMBIOS_ENABLED 0x1
205 // PCI 0x34: 0xffffff00=reserved, 0x000000ff=capabilities pointer
206 // PCI 0x38: reserved
207 // PCI 0x3c: 0x3c=int-line, 0x3d=int-pin, 0x3e=min-gnt, 0x3f=maax-lat
209 #define CIRRUS_PNPMMIO_SIZE 0x1000
212 /* I/O and memory hook */
213 #define CIRRUS_HOOK_NOT_HANDLED 0
214 #define CIRRUS_HOOK_HANDLED 1
216 #define ABS(a) ((signed)(a) > 0 ? a : -a)
218 #define BLTUNSAFE(s) \
220 ( /* check dst is within bounds */ \
221 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
222 + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
225 ( /* check src is within bounds */ \
226 (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
227 + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
232 struct CirrusVGAState
;
233 typedef void (*cirrus_bitblt_rop_t
) (struct CirrusVGAState
*s
,
234 uint8_t * dst
, const uint8_t * src
,
235 int dstpitch
, int srcpitch
,
236 int bltwidth
, int bltheight
);
237 typedef void (*cirrus_fill_t
)(struct CirrusVGAState
*s
,
238 uint8_t *dst
, int dst_pitch
, int width
, int height
);
240 typedef struct CirrusVGAState
{
243 int cirrus_linear_io_addr
;
244 int cirrus_linear_bitblt_io_addr
;
245 int cirrus_mmio_io_addr
;
246 uint32_t cirrus_addr_mask
;
247 uint32_t linear_mmio_mask
;
248 uint8_t cirrus_shadow_gr0
;
249 uint8_t cirrus_shadow_gr1
;
250 uint8_t cirrus_hidden_dac_lockindex
;
251 uint8_t cirrus_hidden_dac_data
;
252 uint32_t cirrus_bank_base
[2];
253 uint32_t cirrus_bank_limit
[2];
254 uint8_t cirrus_hidden_palette
[48];
255 uint32_t hw_cursor_x
;
256 uint32_t hw_cursor_y
;
257 int cirrus_blt_pixelwidth
;
258 int cirrus_blt_width
;
259 int cirrus_blt_height
;
260 int cirrus_blt_dstpitch
;
261 int cirrus_blt_srcpitch
;
262 uint32_t cirrus_blt_fgcol
;
263 uint32_t cirrus_blt_bgcol
;
264 uint32_t cirrus_blt_dstaddr
;
265 uint32_t cirrus_blt_srcaddr
;
266 uint8_t cirrus_blt_mode
;
267 uint8_t cirrus_blt_modeext
;
268 cirrus_bitblt_rop_t cirrus_rop
;
269 #define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
270 uint8_t cirrus_bltbuf
[CIRRUS_BLTBUFSIZE
];
271 uint8_t *cirrus_srcptr
;
272 uint8_t *cirrus_srcptr_end
;
273 uint32_t cirrus_srccounter
;
274 /* hwcursor display state */
275 int last_hw_cursor_size
;
276 int last_hw_cursor_x
;
277 int last_hw_cursor_y
;
278 int last_hw_cursor_y_start
;
279 int last_hw_cursor_y_end
;
280 int real_vram_size
; /* XXX: suppress that */
285 typedef struct PCICirrusVGAState
{
287 CirrusVGAState cirrus_vga
;
290 static uint8_t rop_to_index
[256];
292 /***************************************
296 ***************************************/
299 static void cirrus_bitblt_reset(CirrusVGAState
*s
);
300 static void cirrus_update_memory_access(CirrusVGAState
*s
);
302 /***************************************
306 ***************************************/
308 static void cirrus_bitblt_rop_nop(CirrusVGAState
*s
,
309 uint8_t *dst
,const uint8_t *src
,
310 int dstpitch
,int srcpitch
,
311 int bltwidth
,int bltheight
)
315 static void cirrus_bitblt_fill_nop(CirrusVGAState
*s
,
317 int dstpitch
, int bltwidth
,int bltheight
)
322 #define ROP_OP(d, s) d = 0
323 #include "cirrus_vga_rop.h"
325 #define ROP_NAME src_and_dst
326 #define ROP_OP(d, s) d = (s) & (d)
327 #include "cirrus_vga_rop.h"
329 #define ROP_NAME src_and_notdst
330 #define ROP_OP(d, s) d = (s) & (~(d))
331 #include "cirrus_vga_rop.h"
333 #define ROP_NAME notdst
334 #define ROP_OP(d, s) d = ~(d)
335 #include "cirrus_vga_rop.h"
338 #define ROP_OP(d, s) d = s
339 #include "cirrus_vga_rop.h"
342 #define ROP_OP(d, s) d = ~0
343 #include "cirrus_vga_rop.h"
345 #define ROP_NAME notsrc_and_dst
346 #define ROP_OP(d, s) d = (~(s)) & (d)
347 #include "cirrus_vga_rop.h"
349 #define ROP_NAME src_xor_dst
350 #define ROP_OP(d, s) d = (s) ^ (d)
351 #include "cirrus_vga_rop.h"
353 #define ROP_NAME src_or_dst
354 #define ROP_OP(d, s) d = (s) | (d)
355 #include "cirrus_vga_rop.h"
357 #define ROP_NAME notsrc_or_notdst
358 #define ROP_OP(d, s) d = (~(s)) | (~(d))
359 #include "cirrus_vga_rop.h"
361 #define ROP_NAME src_notxor_dst
362 #define ROP_OP(d, s) d = ~((s) ^ (d))
363 #include "cirrus_vga_rop.h"
365 #define ROP_NAME src_or_notdst
366 #define ROP_OP(d, s) d = (s) | (~(d))
367 #include "cirrus_vga_rop.h"
369 #define ROP_NAME notsrc
370 #define ROP_OP(d, s) d = (~(s))
371 #include "cirrus_vga_rop.h"
373 #define ROP_NAME notsrc_or_dst
374 #define ROP_OP(d, s) d = (~(s)) | (d)
375 #include "cirrus_vga_rop.h"
377 #define ROP_NAME notsrc_and_notdst
378 #define ROP_OP(d, s) d = (~(s)) & (~(d))
379 #include "cirrus_vga_rop.h"
381 static const cirrus_bitblt_rop_t cirrus_fwd_rop
[16] = {
382 cirrus_bitblt_rop_fwd_0
,
383 cirrus_bitblt_rop_fwd_src_and_dst
,
384 cirrus_bitblt_rop_nop
,
385 cirrus_bitblt_rop_fwd_src_and_notdst
,
386 cirrus_bitblt_rop_fwd_notdst
,
387 cirrus_bitblt_rop_fwd_src
,
388 cirrus_bitblt_rop_fwd_1
,
389 cirrus_bitblt_rop_fwd_notsrc_and_dst
,
390 cirrus_bitblt_rop_fwd_src_xor_dst
,
391 cirrus_bitblt_rop_fwd_src_or_dst
,
392 cirrus_bitblt_rop_fwd_notsrc_or_notdst
,
393 cirrus_bitblt_rop_fwd_src_notxor_dst
,
394 cirrus_bitblt_rop_fwd_src_or_notdst
,
395 cirrus_bitblt_rop_fwd_notsrc
,
396 cirrus_bitblt_rop_fwd_notsrc_or_dst
,
397 cirrus_bitblt_rop_fwd_notsrc_and_notdst
,
400 static const cirrus_bitblt_rop_t cirrus_bkwd_rop
[16] = {
401 cirrus_bitblt_rop_bkwd_0
,
402 cirrus_bitblt_rop_bkwd_src_and_dst
,
403 cirrus_bitblt_rop_nop
,
404 cirrus_bitblt_rop_bkwd_src_and_notdst
,
405 cirrus_bitblt_rop_bkwd_notdst
,
406 cirrus_bitblt_rop_bkwd_src
,
407 cirrus_bitblt_rop_bkwd_1
,
408 cirrus_bitblt_rop_bkwd_notsrc_and_dst
,
409 cirrus_bitblt_rop_bkwd_src_xor_dst
,
410 cirrus_bitblt_rop_bkwd_src_or_dst
,
411 cirrus_bitblt_rop_bkwd_notsrc_or_notdst
,
412 cirrus_bitblt_rop_bkwd_src_notxor_dst
,
413 cirrus_bitblt_rop_bkwd_src_or_notdst
,
414 cirrus_bitblt_rop_bkwd_notsrc
,
415 cirrus_bitblt_rop_bkwd_notsrc_or_dst
,
416 cirrus_bitblt_rop_bkwd_notsrc_and_notdst
,
419 #define TRANSP_ROP(name) {\
423 #define TRANSP_NOP(func) {\
428 static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop
[16][2] = {
429 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0
),
430 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst
),
431 TRANSP_NOP(cirrus_bitblt_rop_nop
),
432 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst
),
433 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst
),
434 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src
),
435 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1
),
436 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst
),
437 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst
),
438 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst
),
439 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst
),
440 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst
),
441 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst
),
442 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc
),
443 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst
),
444 TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst
),
447 static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop
[16][2] = {
448 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0
),
449 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst
),
450 TRANSP_NOP(cirrus_bitblt_rop_nop
),
451 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst
),
452 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst
),
453 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src
),
454 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1
),
455 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst
),
456 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst
),
457 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst
),
458 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst
),
459 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst
),
460 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst
),
461 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc
),
462 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst
),
463 TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst
),
466 #define ROP2(name) {\
473 #define ROP_NOP2(func) {\
480 static const cirrus_bitblt_rop_t cirrus_patternfill
[16][4] = {
481 ROP2(cirrus_patternfill_0
),
482 ROP2(cirrus_patternfill_src_and_dst
),
483 ROP_NOP2(cirrus_bitblt_rop_nop
),
484 ROP2(cirrus_patternfill_src_and_notdst
),
485 ROP2(cirrus_patternfill_notdst
),
486 ROP2(cirrus_patternfill_src
),
487 ROP2(cirrus_patternfill_1
),
488 ROP2(cirrus_patternfill_notsrc_and_dst
),
489 ROP2(cirrus_patternfill_src_xor_dst
),
490 ROP2(cirrus_patternfill_src_or_dst
),
491 ROP2(cirrus_patternfill_notsrc_or_notdst
),
492 ROP2(cirrus_patternfill_src_notxor_dst
),
493 ROP2(cirrus_patternfill_src_or_notdst
),
494 ROP2(cirrus_patternfill_notsrc
),
495 ROP2(cirrus_patternfill_notsrc_or_dst
),
496 ROP2(cirrus_patternfill_notsrc_and_notdst
),
499 static const cirrus_bitblt_rop_t cirrus_colorexpand_transp
[16][4] = {
500 ROP2(cirrus_colorexpand_transp_0
),
501 ROP2(cirrus_colorexpand_transp_src_and_dst
),
502 ROP_NOP2(cirrus_bitblt_rop_nop
),
503 ROP2(cirrus_colorexpand_transp_src_and_notdst
),
504 ROP2(cirrus_colorexpand_transp_notdst
),
505 ROP2(cirrus_colorexpand_transp_src
),
506 ROP2(cirrus_colorexpand_transp_1
),
507 ROP2(cirrus_colorexpand_transp_notsrc_and_dst
),
508 ROP2(cirrus_colorexpand_transp_src_xor_dst
),
509 ROP2(cirrus_colorexpand_transp_src_or_dst
),
510 ROP2(cirrus_colorexpand_transp_notsrc_or_notdst
),
511 ROP2(cirrus_colorexpand_transp_src_notxor_dst
),
512 ROP2(cirrus_colorexpand_transp_src_or_notdst
),
513 ROP2(cirrus_colorexpand_transp_notsrc
),
514 ROP2(cirrus_colorexpand_transp_notsrc_or_dst
),
515 ROP2(cirrus_colorexpand_transp_notsrc_and_notdst
),
518 static const cirrus_bitblt_rop_t cirrus_colorexpand
[16][4] = {
519 ROP2(cirrus_colorexpand_0
),
520 ROP2(cirrus_colorexpand_src_and_dst
),
521 ROP_NOP2(cirrus_bitblt_rop_nop
),
522 ROP2(cirrus_colorexpand_src_and_notdst
),
523 ROP2(cirrus_colorexpand_notdst
),
524 ROP2(cirrus_colorexpand_src
),
525 ROP2(cirrus_colorexpand_1
),
526 ROP2(cirrus_colorexpand_notsrc_and_dst
),
527 ROP2(cirrus_colorexpand_src_xor_dst
),
528 ROP2(cirrus_colorexpand_src_or_dst
),
529 ROP2(cirrus_colorexpand_notsrc_or_notdst
),
530 ROP2(cirrus_colorexpand_src_notxor_dst
),
531 ROP2(cirrus_colorexpand_src_or_notdst
),
532 ROP2(cirrus_colorexpand_notsrc
),
533 ROP2(cirrus_colorexpand_notsrc_or_dst
),
534 ROP2(cirrus_colorexpand_notsrc_and_notdst
),
537 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp
[16][4] = {
538 ROP2(cirrus_colorexpand_pattern_transp_0
),
539 ROP2(cirrus_colorexpand_pattern_transp_src_and_dst
),
540 ROP_NOP2(cirrus_bitblt_rop_nop
),
541 ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst
),
542 ROP2(cirrus_colorexpand_pattern_transp_notdst
),
543 ROP2(cirrus_colorexpand_pattern_transp_src
),
544 ROP2(cirrus_colorexpand_pattern_transp_1
),
545 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst
),
546 ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst
),
547 ROP2(cirrus_colorexpand_pattern_transp_src_or_dst
),
548 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst
),
549 ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst
),
550 ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst
),
551 ROP2(cirrus_colorexpand_pattern_transp_notsrc
),
552 ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst
),
553 ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst
),
556 static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern
[16][4] = {
557 ROP2(cirrus_colorexpand_pattern_0
),
558 ROP2(cirrus_colorexpand_pattern_src_and_dst
),
559 ROP_NOP2(cirrus_bitblt_rop_nop
),
560 ROP2(cirrus_colorexpand_pattern_src_and_notdst
),
561 ROP2(cirrus_colorexpand_pattern_notdst
),
562 ROP2(cirrus_colorexpand_pattern_src
),
563 ROP2(cirrus_colorexpand_pattern_1
),
564 ROP2(cirrus_colorexpand_pattern_notsrc_and_dst
),
565 ROP2(cirrus_colorexpand_pattern_src_xor_dst
),
566 ROP2(cirrus_colorexpand_pattern_src_or_dst
),
567 ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst
),
568 ROP2(cirrus_colorexpand_pattern_src_notxor_dst
),
569 ROP2(cirrus_colorexpand_pattern_src_or_notdst
),
570 ROP2(cirrus_colorexpand_pattern_notsrc
),
571 ROP2(cirrus_colorexpand_pattern_notsrc_or_dst
),
572 ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst
),
575 static const cirrus_fill_t cirrus_fill
[16][4] = {
577 ROP2(cirrus_fill_src_and_dst
),
578 ROP_NOP2(cirrus_bitblt_fill_nop
),
579 ROP2(cirrus_fill_src_and_notdst
),
580 ROP2(cirrus_fill_notdst
),
581 ROP2(cirrus_fill_src
),
583 ROP2(cirrus_fill_notsrc_and_dst
),
584 ROP2(cirrus_fill_src_xor_dst
),
585 ROP2(cirrus_fill_src_or_dst
),
586 ROP2(cirrus_fill_notsrc_or_notdst
),
587 ROP2(cirrus_fill_src_notxor_dst
),
588 ROP2(cirrus_fill_src_or_notdst
),
589 ROP2(cirrus_fill_notsrc
),
590 ROP2(cirrus_fill_notsrc_or_dst
),
591 ROP2(cirrus_fill_notsrc_and_notdst
),
594 static inline void cirrus_bitblt_fgcol(CirrusVGAState
*s
)
597 switch (s
->cirrus_blt_pixelwidth
) {
599 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
;
602 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8);
603 s
->cirrus_blt_fgcol
= le16_to_cpu(color
);
606 s
->cirrus_blt_fgcol
= s
->cirrus_shadow_gr1
|
607 (s
->vga
.gr
[0x11] << 8) | (s
->vga
.gr
[0x13] << 16);
611 color
= s
->cirrus_shadow_gr1
| (s
->vga
.gr
[0x11] << 8) |
612 (s
->vga
.gr
[0x13] << 16) | (s
->vga
.gr
[0x15] << 24);
613 s
->cirrus_blt_fgcol
= le32_to_cpu(color
);
618 static inline void cirrus_bitblt_bgcol(CirrusVGAState
*s
)
621 switch (s
->cirrus_blt_pixelwidth
) {
623 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
;
626 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8);
627 s
->cirrus_blt_bgcol
= le16_to_cpu(color
);
630 s
->cirrus_blt_bgcol
= s
->cirrus_shadow_gr0
|
631 (s
->vga
.gr
[0x10] << 8) | (s
->vga
.gr
[0x12] << 16);
635 color
= s
->cirrus_shadow_gr0
| (s
->vga
.gr
[0x10] << 8) |
636 (s
->vga
.gr
[0x12] << 16) | (s
->vga
.gr
[0x14] << 24);
637 s
->cirrus_blt_bgcol
= le32_to_cpu(color
);
642 static void cirrus_invalidate_region(CirrusVGAState
* s
, int off_begin
,
643 int off_pitch
, int bytesperline
,
650 for (y
= 0; y
< lines
; y
++) {
652 off_cur_end
= (off_cur
+ bytesperline
) & s
->cirrus_addr_mask
;
653 off_cur
&= TARGET_PAGE_MASK
;
654 while (off_cur
< off_cur_end
) {
655 cpu_physical_memory_set_dirty(s
->vga
.vram_offset
+ off_cur
);
656 off_cur
+= TARGET_PAGE_SIZE
;
658 off_begin
+= off_pitch
;
662 static int cirrus_bitblt_common_patterncopy(CirrusVGAState
* s
,
667 dst
= s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
);
672 (*s
->cirrus_rop
) (s
, dst
, src
,
673 s
->cirrus_blt_dstpitch
, 0,
674 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
675 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
676 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
677 s
->cirrus_blt_height
);
683 static int cirrus_bitblt_solidfill(CirrusVGAState
*s
, int blt_rop
)
685 cirrus_fill_t rop_func
;
689 rop_func
= cirrus_fill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
690 rop_func(s
, s
->vga
.vram_ptr
+ (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
691 s
->cirrus_blt_dstpitch
,
692 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
693 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
694 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
695 s
->cirrus_blt_height
);
696 cirrus_bitblt_reset(s
);
700 /***************************************
702 * bitblt (video-to-video)
704 ***************************************/
706 static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState
* s
)
708 return cirrus_bitblt_common_patterncopy(s
,
709 s
->vga
.vram_ptr
+ ((s
->cirrus_blt_srcaddr
& ~7) &
710 s
->cirrus_addr_mask
));
713 static void cirrus_do_copy(CirrusVGAState
*s
, int dst
, int src
, int w
, int h
)
721 depth
= s
->vga
.get_bpp(&s
->vga
) / 8;
722 s
->vga
.get_resolution(&s
->vga
, &width
, &height
);
725 sx
= (src
% ABS(s
->cirrus_blt_srcpitch
)) / depth
;
726 sy
= (src
/ ABS(s
->cirrus_blt_srcpitch
));
727 dx
= (dst
% ABS(s
->cirrus_blt_dstpitch
)) / depth
;
728 dy
= (dst
/ ABS(s
->cirrus_blt_dstpitch
));
730 /* normalize width */
733 /* if we're doing a backward copy, we have to adjust
734 our x/y to be the upper left corner (instead of the lower
736 if (s
->cirrus_blt_dstpitch
< 0) {
737 sx
-= (s
->cirrus_blt_width
/ depth
) - 1;
738 dx
-= (s
->cirrus_blt_width
/ depth
) - 1;
739 sy
-= s
->cirrus_blt_height
- 1;
740 dy
-= s
->cirrus_blt_height
- 1;
743 /* are we in the visible portion of memory? */
744 if (sx
>= 0 && sy
>= 0 && dx
>= 0 && dy
>= 0 &&
745 (sx
+ w
) <= width
&& (sy
+ h
) <= height
&&
746 (dx
+ w
) <= width
&& (dy
+ h
) <= height
) {
750 /* make to sure only copy if it's a plain copy ROP */
751 if (*s
->cirrus_rop
!= cirrus_bitblt_rop_fwd_src
&&
752 *s
->cirrus_rop
!= cirrus_bitblt_rop_bkwd_src
)
755 /* we have to flush all pending changes so that the copy
756 is generated at the appropriate moment in time */
760 (*s
->cirrus_rop
) (s
, s
->vga
.vram_ptr
+
761 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
763 (s
->cirrus_blt_srcaddr
& s
->cirrus_addr_mask
),
764 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_srcpitch
,
765 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
768 qemu_console_copy(s
->vga
.ds
,
770 s
->cirrus_blt_width
/ depth
,
771 s
->cirrus_blt_height
);
773 /* we don't have to notify the display that this portion has
774 changed since qemu_console_copy implies this */
776 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
,
777 s
->cirrus_blt_dstpitch
, s
->cirrus_blt_width
,
778 s
->cirrus_blt_height
);
781 static int cirrus_bitblt_videotovideo_copy(CirrusVGAState
* s
)
786 cirrus_do_copy(s
, s
->cirrus_blt_dstaddr
- s
->vga
.start_addr
,
787 s
->cirrus_blt_srcaddr
- s
->vga
.start_addr
,
788 s
->cirrus_blt_width
, s
->cirrus_blt_height
);
793 /***************************************
795 * bitblt (cpu-to-video)
797 ***************************************/
799 static void cirrus_bitblt_cputovideo_next(CirrusVGAState
* s
)
804 if (s
->cirrus_srccounter
> 0) {
805 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
806 cirrus_bitblt_common_patterncopy(s
, s
->cirrus_bltbuf
);
808 s
->cirrus_srccounter
= 0;
809 cirrus_bitblt_reset(s
);
811 /* at least one scan line */
813 (*s
->cirrus_rop
)(s
, s
->vga
.vram_ptr
+
814 (s
->cirrus_blt_dstaddr
& s
->cirrus_addr_mask
),
815 s
->cirrus_bltbuf
, 0, 0, s
->cirrus_blt_width
, 1);
816 cirrus_invalidate_region(s
, s
->cirrus_blt_dstaddr
, 0,
817 s
->cirrus_blt_width
, 1);
818 s
->cirrus_blt_dstaddr
+= s
->cirrus_blt_dstpitch
;
819 s
->cirrus_srccounter
-= s
->cirrus_blt_srcpitch
;
820 if (s
->cirrus_srccounter
<= 0)
822 /* more bytes than needed can be transfered because of
823 word alignment, so we keep them for the next line */
824 /* XXX: keep alignment to speed up transfer */
825 end_ptr
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
826 copy_count
= s
->cirrus_srcptr_end
- end_ptr
;
827 memmove(s
->cirrus_bltbuf
, end_ptr
, copy_count
);
828 s
->cirrus_srcptr
= s
->cirrus_bltbuf
+ copy_count
;
829 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
830 } while (s
->cirrus_srcptr
>= s
->cirrus_srcptr_end
);
835 /***************************************
839 ***************************************/
841 static void cirrus_bitblt_reset(CirrusVGAState
* s
)
846 ~(CIRRUS_BLT_START
| CIRRUS_BLT_BUSY
| CIRRUS_BLT_FIFOUSED
);
847 need_update
= s
->cirrus_srcptr
!= &s
->cirrus_bltbuf
[0]
848 || s
->cirrus_srcptr_end
!= &s
->cirrus_bltbuf
[0];
849 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
850 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
851 s
->cirrus_srccounter
= 0;
854 cirrus_update_memory_access(s
);
857 static int cirrus_bitblt_cputovideo(CirrusVGAState
* s
)
861 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_MEMSYSSRC
;
862 s
->cirrus_srcptr
= &s
->cirrus_bltbuf
[0];
863 s
->cirrus_srcptr_end
= &s
->cirrus_bltbuf
[0];
865 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
866 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
867 s
->cirrus_blt_srcpitch
= 8;
869 /* XXX: check for 24 bpp */
870 s
->cirrus_blt_srcpitch
= 8 * 8 * s
->cirrus_blt_pixelwidth
;
872 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
;
874 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
875 w
= s
->cirrus_blt_width
/ s
->cirrus_blt_pixelwidth
;
876 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_DWORDGRANULARITY
)
877 s
->cirrus_blt_srcpitch
= ((w
+ 31) >> 5);
879 s
->cirrus_blt_srcpitch
= ((w
+ 7) >> 3);
881 /* always align input size to 32 bits */
882 s
->cirrus_blt_srcpitch
= (s
->cirrus_blt_width
+ 3) & ~3;
884 s
->cirrus_srccounter
= s
->cirrus_blt_srcpitch
* s
->cirrus_blt_height
;
886 s
->cirrus_srcptr
= s
->cirrus_bltbuf
;
887 s
->cirrus_srcptr_end
= s
->cirrus_bltbuf
+ s
->cirrus_blt_srcpitch
;
888 cirrus_update_memory_access(s
);
892 static int cirrus_bitblt_videotocpu(CirrusVGAState
* s
)
896 printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
901 static int cirrus_bitblt_videotovideo(CirrusVGAState
* s
)
905 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
906 ret
= cirrus_bitblt_videotovideo_patterncopy(s
);
908 ret
= cirrus_bitblt_videotovideo_copy(s
);
911 cirrus_bitblt_reset(s
);
915 static void cirrus_bitblt_start(CirrusVGAState
* s
)
919 s
->vga
.gr
[0x31] |= CIRRUS_BLT_BUSY
;
921 s
->cirrus_blt_width
= (s
->vga
.gr
[0x20] | (s
->vga
.gr
[0x21] << 8)) + 1;
922 s
->cirrus_blt_height
= (s
->vga
.gr
[0x22] | (s
->vga
.gr
[0x23] << 8)) + 1;
923 s
->cirrus_blt_dstpitch
= (s
->vga
.gr
[0x24] | (s
->vga
.gr
[0x25] << 8));
924 s
->cirrus_blt_srcpitch
= (s
->vga
.gr
[0x26] | (s
->vga
.gr
[0x27] << 8));
925 s
->cirrus_blt_dstaddr
=
926 (s
->vga
.gr
[0x28] | (s
->vga
.gr
[0x29] << 8) | (s
->vga
.gr
[0x2a] << 16));
927 s
->cirrus_blt_srcaddr
=
928 (s
->vga
.gr
[0x2c] | (s
->vga
.gr
[0x2d] << 8) | (s
->vga
.gr
[0x2e] << 16));
929 s
->cirrus_blt_mode
= s
->vga
.gr
[0x30];
930 s
->cirrus_blt_modeext
= s
->vga
.gr
[0x33];
931 blt_rop
= s
->vga
.gr
[0x32];
934 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",
937 s
->cirrus_blt_modeext
,
939 s
->cirrus_blt_height
,
940 s
->cirrus_blt_dstpitch
,
941 s
->cirrus_blt_srcpitch
,
942 s
->cirrus_blt_dstaddr
,
943 s
->cirrus_blt_srcaddr
,
947 switch (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PIXELWIDTHMASK
) {
948 case CIRRUS_BLTMODE_PIXELWIDTH8
:
949 s
->cirrus_blt_pixelwidth
= 1;
951 case CIRRUS_BLTMODE_PIXELWIDTH16
:
952 s
->cirrus_blt_pixelwidth
= 2;
954 case CIRRUS_BLTMODE_PIXELWIDTH24
:
955 s
->cirrus_blt_pixelwidth
= 3;
957 case CIRRUS_BLTMODE_PIXELWIDTH32
:
958 s
->cirrus_blt_pixelwidth
= 4;
962 printf("cirrus: bitblt - pixel width is unknown\n");
966 s
->cirrus_blt_mode
&= ~CIRRUS_BLTMODE_PIXELWIDTHMASK
;
969 cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSSRC
|
970 CIRRUS_BLTMODE_MEMSYSDEST
))
971 == (CIRRUS_BLTMODE_MEMSYSSRC
| CIRRUS_BLTMODE_MEMSYSDEST
)) {
973 printf("cirrus: bitblt - memory-to-memory copy is requested\n");
978 if ((s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_SOLIDFILL
) &&
979 (s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_MEMSYSDEST
|
980 CIRRUS_BLTMODE_TRANSPARENTCOMP
|
981 CIRRUS_BLTMODE_PATTERNCOPY
|
982 CIRRUS_BLTMODE_COLOREXPAND
)) ==
983 (CIRRUS_BLTMODE_PATTERNCOPY
| CIRRUS_BLTMODE_COLOREXPAND
)) {
984 cirrus_bitblt_fgcol(s
);
985 cirrus_bitblt_solidfill(s
, blt_rop
);
987 if ((s
->cirrus_blt_mode
& (CIRRUS_BLTMODE_COLOREXPAND
|
988 CIRRUS_BLTMODE_PATTERNCOPY
)) ==
989 CIRRUS_BLTMODE_COLOREXPAND
) {
991 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
992 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
993 cirrus_bitblt_bgcol(s
);
995 cirrus_bitblt_fgcol(s
);
996 s
->cirrus_rop
= cirrus_colorexpand_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
998 cirrus_bitblt_fgcol(s
);
999 cirrus_bitblt_bgcol(s
);
1000 s
->cirrus_rop
= cirrus_colorexpand
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1002 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_PATTERNCOPY
) {
1003 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_COLOREXPAND
) {
1004 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1005 if (s
->cirrus_blt_modeext
& CIRRUS_BLTMODEEXT_COLOREXPINV
)
1006 cirrus_bitblt_bgcol(s
);
1008 cirrus_bitblt_fgcol(s
);
1009 s
->cirrus_rop
= cirrus_colorexpand_pattern_transp
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1011 cirrus_bitblt_fgcol(s
);
1012 cirrus_bitblt_bgcol(s
);
1013 s
->cirrus_rop
= cirrus_colorexpand_pattern
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1016 s
->cirrus_rop
= cirrus_patternfill
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1019 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_TRANSPARENTCOMP
) {
1020 if (s
->cirrus_blt_pixelwidth
> 2) {
1021 printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1024 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_BACKWARDS
) {
1025 s
->cirrus_blt_dstpitch
= -s
->cirrus_blt_dstpitch
;
1026 s
->cirrus_blt_srcpitch
= -s
->cirrus_blt_srcpitch
;
1027 s
->cirrus_rop
= cirrus_bkwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
1029 s
->cirrus_rop
= cirrus_fwd_transp_rop
[rop_to_index
[blt_rop
]][s
->cirrus_blt_pixelwidth
- 1];
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_rop
[rop_to_index
[blt_rop
]];
1037 s
->cirrus_rop
= cirrus_fwd_rop
[rop_to_index
[blt_rop
]];
1041 // setup bitblt engine.
1042 if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSSRC
) {
1043 if (!cirrus_bitblt_cputovideo(s
))
1045 } else if (s
->cirrus_blt_mode
& CIRRUS_BLTMODE_MEMSYSDEST
) {
1046 if (!cirrus_bitblt_videotocpu(s
))
1049 if (!cirrus_bitblt_videotovideo(s
))
1055 cirrus_bitblt_reset(s
);
1058 static void cirrus_write_bitblt(CirrusVGAState
* s
, unsigned reg_value
)
1062 old_value
= s
->vga
.gr
[0x31];
1063 s
->vga
.gr
[0x31] = reg_value
;
1065 if (((old_value
& CIRRUS_BLT_RESET
) != 0) &&
1066 ((reg_value
& CIRRUS_BLT_RESET
) == 0)) {
1067 cirrus_bitblt_reset(s
);
1068 } else if (((old_value
& CIRRUS_BLT_START
) == 0) &&
1069 ((reg_value
& CIRRUS_BLT_START
) != 0)) {
1070 cirrus_bitblt_start(s
);
1075 /***************************************
1079 ***************************************/
1081 static void cirrus_get_offsets(VGAState
*s1
,
1082 uint32_t *pline_offset
,
1083 uint32_t *pstart_addr
,
1084 uint32_t *pline_compare
)
1086 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1087 uint32_t start_addr
, line_offset
, line_compare
;
1089 line_offset
= s
->vga
.cr
[0x13]
1090 | ((s
->vga
.cr
[0x1b] & 0x10) << 4);
1092 *pline_offset
= line_offset
;
1094 start_addr
= (s
->vga
.cr
[0x0c] << 8)
1096 | ((s
->vga
.cr
[0x1b] & 0x01) << 16)
1097 | ((s
->vga
.cr
[0x1b] & 0x0c) << 15)
1098 | ((s
->vga
.cr
[0x1d] & 0x80) << 12);
1099 *pstart_addr
= start_addr
;
1101 line_compare
= s
->vga
.cr
[0x18] |
1102 ((s
->vga
.cr
[0x07] & 0x10) << 4) |
1103 ((s
->vga
.cr
[0x09] & 0x40) << 3);
1104 *pline_compare
= line_compare
;
1107 static uint32_t cirrus_get_bpp16_depth(CirrusVGAState
* s
)
1111 switch (s
->cirrus_hidden_dac_data
& 0xf) {
1114 break; /* Sierra HiColor */
1117 break; /* XGA HiColor */
1120 printf("cirrus: invalid DAC value %x in 16bpp\n",
1121 (s
->cirrus_hidden_dac_data
& 0xf));
1129 static int cirrus_get_bpp(VGAState
*s1
)
1131 CirrusVGAState
* s
= container_of(s1
, CirrusVGAState
, vga
);
1134 if ((s
->vga
.sr
[0x07] & 0x01) != 0) {
1136 switch (s
->vga
.sr
[0x07] & CIRRUS_SR7_BPP_MASK
) {
1137 case CIRRUS_SR7_BPP_8
:
1140 case CIRRUS_SR7_BPP_16_DOUBLEVCLK
:
1141 ret
= cirrus_get_bpp16_depth(s
);
1143 case CIRRUS_SR7_BPP_24
:
1146 case CIRRUS_SR7_BPP_16
:
1147 ret
= cirrus_get_bpp16_depth(s
);
1149 case CIRRUS_SR7_BPP_32
:
1154 printf("cirrus: unknown bpp - sr7=%x\n", s
->vga
.sr
[0x7]);
1167 static void cirrus_get_resolution(VGAState
*s
, int *pwidth
, int *pheight
)
1171 width
= (s
->cr
[0x01] + 1) * 8;
1172 height
= s
->cr
[0x12] |
1173 ((s
->cr
[0x07] & 0x02) << 7) |
1174 ((s
->cr
[0x07] & 0x40) << 3);
1175 height
= (height
+ 1);
1176 /* interlace support */
1177 if (s
->cr
[0x1a] & 0x01)
1178 height
= height
* 2;
1183 /***************************************
1187 ***************************************/
1189 static void cirrus_update_bank_ptr(CirrusVGAState
* s
, unsigned bank_index
)
1194 if ((s
->vga
.gr
[0x0b] & 0x01) != 0) /* dual bank */
1195 offset
= s
->vga
.gr
[0x09 + bank_index
];
1196 else /* single bank */
1197 offset
= s
->vga
.gr
[0x09];
1199 if ((s
->vga
.gr
[0x0b] & 0x20) != 0)
1204 if (s
->real_vram_size
<= offset
)
1207 limit
= s
->real_vram_size
- offset
;
1209 if (((s
->vga
.gr
[0x0b] & 0x01) == 0) && (bank_index
!= 0)) {
1210 if (limit
> 0x8000) {
1219 /* Thinking about changing bank base? First, drop the dirty bitmap information
1220 * on the current location, otherwise we lose this pointer forever */
1221 if (s
->vga
.lfb_vram_mapped
) {
1222 target_phys_addr_t base_addr
= isa_mem_base
+ 0xa0000 + bank_index
* 0x8000;
1223 cpu_physical_sync_dirty_bitmap(base_addr
, base_addr
+ 0x8000);
1225 s
->cirrus_bank_base
[bank_index
] = offset
;
1226 s
->cirrus_bank_limit
[bank_index
] = limit
;
1228 s
->cirrus_bank_base
[bank_index
] = 0;
1229 s
->cirrus_bank_limit
[bank_index
] = 0;
1233 /***************************************
1235 * I/O access between 0x3c4-0x3c5
1237 ***************************************/
1240 cirrus_hook_read_sr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1242 switch (reg_index
) {
1243 case 0x00: // Standard VGA
1244 case 0x01: // Standard VGA
1245 case 0x02: // Standard VGA
1246 case 0x03: // Standard VGA
1247 case 0x04: // Standard VGA
1248 return CIRRUS_HOOK_NOT_HANDLED
;
1249 case 0x06: // Unlock Cirrus extensions
1250 *reg_value
= s
->vga
.sr
[reg_index
];
1255 case 0x70: // Graphics Cursor X
1259 case 0xf0: // Graphics Cursor X
1260 *reg_value
= s
->vga
.sr
[0x10];
1265 case 0x71: // Graphics Cursor Y
1269 case 0xf1: // Graphics Cursor Y
1270 *reg_value
= s
->vga
.sr
[0x11];
1273 case 0x07: // Extended Sequencer Mode
1274 case 0x08: // EEPROM Control
1275 case 0x09: // Scratch Register 0
1276 case 0x0a: // Scratch Register 1
1277 case 0x0b: // VCLK 0
1278 case 0x0c: // VCLK 1
1279 case 0x0d: // VCLK 2
1280 case 0x0e: // VCLK 3
1281 case 0x0f: // DRAM Control
1282 case 0x12: // Graphics Cursor Attribute
1283 case 0x13: // Graphics Cursor Pattern Address
1284 case 0x14: // Scratch Register 2
1285 case 0x15: // Scratch Register 3
1286 case 0x16: // Performance Tuning Register
1287 case 0x17: // Configuration Readback and Extended Control
1288 case 0x18: // Signature Generator Control
1289 case 0x19: // Signal Generator Result
1290 case 0x1a: // Signal Generator Result
1291 case 0x1b: // VCLK 0 Denominator & Post
1292 case 0x1c: // VCLK 1 Denominator & Post
1293 case 0x1d: // VCLK 2 Denominator & Post
1294 case 0x1e: // VCLK 3 Denominator & Post
1295 case 0x1f: // BIOS Write Enable and MCLK select
1297 printf("cirrus: handled inport sr_index %02x\n", reg_index
);
1299 *reg_value
= s
->vga
.sr
[reg_index
];
1303 printf("cirrus: inport sr_index %02x\n", reg_index
);
1309 return CIRRUS_HOOK_HANDLED
;
1313 cirrus_hook_write_sr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1315 switch (reg_index
) {
1316 case 0x00: // Standard VGA
1317 case 0x01: // Standard VGA
1318 case 0x02: // Standard VGA
1319 case 0x03: // Standard VGA
1320 case 0x04: // Standard VGA
1321 return CIRRUS_HOOK_NOT_HANDLED
;
1322 case 0x06: // Unlock Cirrus extensions
1324 if (reg_value
== 0x12) {
1325 s
->vga
.sr
[reg_index
] = 0x12;
1327 s
->vga
.sr
[reg_index
] = 0x0f;
1333 case 0x70: // Graphics Cursor X
1337 case 0xf0: // Graphics Cursor X
1338 s
->vga
.sr
[0x10] = reg_value
;
1339 s
->hw_cursor_x
= (reg_value
<< 3) | (reg_index
>> 5);
1344 case 0x71: // Graphics Cursor Y
1348 case 0xf1: // Graphics Cursor Y
1349 s
->vga
.sr
[0x11] = reg_value
;
1350 s
->hw_cursor_y
= (reg_value
<< 3) | (reg_index
>> 5);
1352 case 0x07: // Extended Sequencer Mode
1353 cirrus_update_memory_access(s
);
1354 case 0x08: // EEPROM Control
1355 case 0x09: // Scratch Register 0
1356 case 0x0a: // Scratch Register 1
1357 case 0x0b: // VCLK 0
1358 case 0x0c: // VCLK 1
1359 case 0x0d: // VCLK 2
1360 case 0x0e: // VCLK 3
1361 case 0x0f: // DRAM Control
1362 case 0x12: // Graphics Cursor Attribute
1363 case 0x13: // Graphics Cursor Pattern Address
1364 case 0x14: // Scratch Register 2
1365 case 0x15: // Scratch Register 3
1366 case 0x16: // Performance Tuning Register
1367 case 0x18: // Signature Generator Control
1368 case 0x19: // Signature Generator Result
1369 case 0x1a: // Signature Generator Result
1370 case 0x1b: // VCLK 0 Denominator & Post
1371 case 0x1c: // VCLK 1 Denominator & Post
1372 case 0x1d: // VCLK 2 Denominator & Post
1373 case 0x1e: // VCLK 3 Denominator & Post
1374 case 0x1f: // BIOS Write Enable and MCLK select
1375 s
->vga
.sr
[reg_index
] = reg_value
;
1377 printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1378 reg_index
, reg_value
);
1381 case 0x17: // Configuration Readback and Extended Control
1382 s
->vga
.sr
[reg_index
] = (s
->vga
.sr
[reg_index
] & 0x38) | (reg_value
& 0xc7);
1383 cirrus_update_memory_access(s
);
1387 printf("cirrus: outport sr_index %02x, sr_value %02x\n", reg_index
,
1393 return CIRRUS_HOOK_HANDLED
;
1396 /***************************************
1398 * I/O access at 0x3c6
1400 ***************************************/
1402 static void cirrus_read_hidden_dac(CirrusVGAState
* s
, int *reg_value
)
1405 if (++s
->cirrus_hidden_dac_lockindex
== 5) {
1406 *reg_value
= s
->cirrus_hidden_dac_data
;
1407 s
->cirrus_hidden_dac_lockindex
= 0;
1411 static void cirrus_write_hidden_dac(CirrusVGAState
* s
, int reg_value
)
1413 if (s
->cirrus_hidden_dac_lockindex
== 4) {
1414 s
->cirrus_hidden_dac_data
= reg_value
;
1415 #if defined(DEBUG_CIRRUS)
1416 printf("cirrus: outport hidden DAC, value %02x\n", reg_value
);
1419 s
->cirrus_hidden_dac_lockindex
= 0;
1422 /***************************************
1424 * I/O access at 0x3c9
1426 ***************************************/
1428 static int cirrus_hook_read_palette(CirrusVGAState
* s
, int *reg_value
)
1430 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
))
1431 return CIRRUS_HOOK_NOT_HANDLED
;
1433 s
->cirrus_hidden_palette
[(s
->vga
.dac_read_index
& 0x0f) * 3 +
1434 s
->vga
.dac_sub_index
];
1435 if (++s
->vga
.dac_sub_index
== 3) {
1436 s
->vga
.dac_sub_index
= 0;
1437 s
->vga
.dac_read_index
++;
1439 return CIRRUS_HOOK_HANDLED
;
1442 static int cirrus_hook_write_palette(CirrusVGAState
* s
, int reg_value
)
1444 if (!(s
->vga
.sr
[0x12] & CIRRUS_CURSOR_HIDDENPEL
))
1445 return CIRRUS_HOOK_NOT_HANDLED
;
1446 s
->vga
.dac_cache
[s
->vga
.dac_sub_index
] = reg_value
;
1447 if (++s
->vga
.dac_sub_index
== 3) {
1448 memcpy(&s
->cirrus_hidden_palette
[(s
->vga
.dac_write_index
& 0x0f) * 3],
1449 s
->vga
.dac_cache
, 3);
1450 /* XXX update cursor */
1451 s
->vga
.dac_sub_index
= 0;
1452 s
->vga
.dac_write_index
++;
1454 return CIRRUS_HOOK_HANDLED
;
1457 /***************************************
1459 * I/O access between 0x3ce-0x3cf
1461 ***************************************/
1464 cirrus_hook_read_gr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1466 switch (reg_index
) {
1467 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1468 *reg_value
= s
->cirrus_shadow_gr0
;
1469 return CIRRUS_HOOK_HANDLED
;
1470 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1471 *reg_value
= s
->cirrus_shadow_gr1
;
1472 return CIRRUS_HOOK_HANDLED
;
1473 case 0x02: // Standard VGA
1474 case 0x03: // Standard VGA
1475 case 0x04: // Standard VGA
1476 case 0x06: // Standard VGA
1477 case 0x07: // Standard VGA
1478 case 0x08: // Standard VGA
1479 return CIRRUS_HOOK_NOT_HANDLED
;
1480 case 0x05: // Standard VGA, Cirrus extended mode
1485 if (reg_index
< 0x3a) {
1486 *reg_value
= s
->vga
.gr
[reg_index
];
1489 printf("cirrus: inport gr_index %02x\n", reg_index
);
1494 return CIRRUS_HOOK_HANDLED
;
1498 cirrus_hook_write_gr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1500 #if defined(DEBUG_BITBLT) && 0
1501 printf("gr%02x: %02x\n", reg_index
, reg_value
);
1503 switch (reg_index
) {
1504 case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1505 s
->cirrus_shadow_gr0
= reg_value
;
1506 return CIRRUS_HOOK_NOT_HANDLED
;
1507 case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1508 s
->cirrus_shadow_gr1
= reg_value
;
1509 return CIRRUS_HOOK_NOT_HANDLED
;
1510 case 0x02: // Standard VGA
1511 case 0x03: // Standard VGA
1512 case 0x04: // Standard VGA
1513 case 0x06: // Standard VGA
1514 case 0x07: // Standard VGA
1515 case 0x08: // Standard VGA
1516 return CIRRUS_HOOK_NOT_HANDLED
;
1517 case 0x05: // Standard VGA, Cirrus extended mode
1518 s
->vga
.gr
[reg_index
] = reg_value
& 0x7f;
1519 cirrus_update_memory_access(s
);
1521 case 0x09: // bank offset #0
1522 case 0x0A: // bank offset #1
1523 s
->vga
.gr
[reg_index
] = reg_value
;
1524 cirrus_update_bank_ptr(s
, 0);
1525 cirrus_update_bank_ptr(s
, 1);
1526 cirrus_update_memory_access(s
);
1529 s
->vga
.gr
[reg_index
] = reg_value
;
1530 cirrus_update_bank_ptr(s
, 0);
1531 cirrus_update_bank_ptr(s
, 1);
1532 cirrus_update_memory_access(s
);
1534 case 0x10: // BGCOLOR 0x0000ff00
1535 case 0x11: // FGCOLOR 0x0000ff00
1536 case 0x12: // BGCOLOR 0x00ff0000
1537 case 0x13: // FGCOLOR 0x00ff0000
1538 case 0x14: // BGCOLOR 0xff000000
1539 case 0x15: // FGCOLOR 0xff000000
1540 case 0x20: // BLT WIDTH 0x0000ff
1541 case 0x22: // BLT HEIGHT 0x0000ff
1542 case 0x24: // BLT DEST PITCH 0x0000ff
1543 case 0x26: // BLT SRC PITCH 0x0000ff
1544 case 0x28: // BLT DEST ADDR 0x0000ff
1545 case 0x29: // BLT DEST ADDR 0x00ff00
1546 case 0x2c: // BLT SRC ADDR 0x0000ff
1547 case 0x2d: // BLT SRC ADDR 0x00ff00
1548 case 0x2f: // BLT WRITEMASK
1549 case 0x30: // BLT MODE
1550 case 0x32: // RASTER OP
1551 case 0x33: // BLT MODEEXT
1552 case 0x34: // BLT TRANSPARENT COLOR 0x00ff
1553 case 0x35: // BLT TRANSPARENT COLOR 0xff00
1554 case 0x38: // BLT TRANSPARENT COLOR MASK 0x00ff
1555 case 0x39: // BLT TRANSPARENT COLOR MASK 0xff00
1556 s
->vga
.gr
[reg_index
] = reg_value
;
1558 case 0x21: // BLT WIDTH 0x001f00
1559 case 0x23: // BLT HEIGHT 0x001f00
1560 case 0x25: // BLT DEST PITCH 0x001f00
1561 case 0x27: // BLT SRC PITCH 0x001f00
1562 s
->vga
.gr
[reg_index
] = reg_value
& 0x1f;
1564 case 0x2a: // BLT DEST ADDR 0x3f0000
1565 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1566 /* if auto start mode, starts bit blt now */
1567 if (s
->vga
.gr
[0x31] & CIRRUS_BLT_AUTOSTART
) {
1568 cirrus_bitblt_start(s
);
1571 case 0x2e: // BLT SRC ADDR 0x3f0000
1572 s
->vga
.gr
[reg_index
] = reg_value
& 0x3f;
1574 case 0x31: // BLT STATUS/START
1575 cirrus_write_bitblt(s
, reg_value
);
1579 printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index
,
1585 return CIRRUS_HOOK_HANDLED
;
1588 /***************************************
1590 * I/O access between 0x3d4-0x3d5
1592 ***************************************/
1595 cirrus_hook_read_cr(CirrusVGAState
* s
, unsigned reg_index
, int *reg_value
)
1597 switch (reg_index
) {
1598 case 0x00: // Standard VGA
1599 case 0x01: // Standard VGA
1600 case 0x02: // Standard VGA
1601 case 0x03: // Standard VGA
1602 case 0x04: // Standard VGA
1603 case 0x05: // Standard VGA
1604 case 0x06: // Standard VGA
1605 case 0x07: // Standard VGA
1606 case 0x08: // Standard VGA
1607 case 0x09: // Standard VGA
1608 case 0x0a: // Standard VGA
1609 case 0x0b: // Standard VGA
1610 case 0x0c: // Standard VGA
1611 case 0x0d: // Standard VGA
1612 case 0x0e: // Standard VGA
1613 case 0x0f: // Standard VGA
1614 case 0x10: // Standard VGA
1615 case 0x11: // Standard VGA
1616 case 0x12: // Standard VGA
1617 case 0x13: // Standard VGA
1618 case 0x14: // Standard VGA
1619 case 0x15: // Standard VGA
1620 case 0x16: // Standard VGA
1621 case 0x17: // Standard VGA
1622 case 0x18: // Standard VGA
1623 return CIRRUS_HOOK_NOT_HANDLED
;
1624 case 0x24: // Attribute Controller Toggle Readback (R)
1625 *reg_value
= (s
->vga
.ar_flip_flop
<< 7);
1627 case 0x19: // Interlace End
1628 case 0x1a: // Miscellaneous Control
1629 case 0x1b: // Extended Display Control
1630 case 0x1c: // Sync Adjust and Genlock
1631 case 0x1d: // Overlay Extended Control
1632 case 0x22: // Graphics Data Latches Readback (R)
1633 case 0x25: // Part Status
1634 case 0x27: // Part ID (R)
1635 *reg_value
= s
->vga
.cr
[reg_index
];
1637 case 0x26: // Attribute Controller Index Readback (R)
1638 *reg_value
= s
->vga
.ar_index
& 0x3f;
1642 printf("cirrus: inport cr_index %02x\n", reg_index
);
1648 return CIRRUS_HOOK_HANDLED
;
1652 cirrus_hook_write_cr(CirrusVGAState
* s
, unsigned reg_index
, int reg_value
)
1654 switch (reg_index
) {
1655 case 0x00: // Standard VGA
1656 case 0x01: // Standard VGA
1657 case 0x02: // Standard VGA
1658 case 0x03: // Standard VGA
1659 case 0x04: // Standard VGA
1660 case 0x05: // Standard VGA
1661 case 0x06: // Standard VGA
1662 case 0x07: // Standard VGA
1663 case 0x08: // Standard VGA
1664 case 0x09: // Standard VGA
1665 case 0x0a: // Standard VGA
1666 case 0x0b: // Standard VGA
1667 case 0x0c: // Standard VGA
1668 case 0x0d: // Standard VGA
1669 case 0x0e: // Standard VGA
1670 case 0x0f: // Standard VGA
1671 case 0x10: // Standard VGA
1672 case 0x11: // Standard VGA
1673 case 0x12: // Standard VGA
1674 case 0x13: // Standard VGA
1675 case 0x14: // Standard VGA
1676 case 0x15: // Standard VGA
1677 case 0x16: // Standard VGA
1678 case 0x17: // Standard VGA
1679 case 0x18: // Standard VGA
1680 return CIRRUS_HOOK_NOT_HANDLED
;
1681 case 0x19: // Interlace End
1682 case 0x1a: // Miscellaneous Control
1683 case 0x1b: // Extended Display Control
1684 case 0x1c: // Sync Adjust and Genlock
1685 case 0x1d: // Overlay Extended Control
1686 s
->vga
.cr
[reg_index
] = reg_value
;
1688 printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1689 reg_index
, reg_value
);
1692 case 0x22: // Graphics Data Latches Readback (R)
1693 case 0x24: // Attribute Controller Toggle Readback (R)
1694 case 0x26: // Attribute Controller Index Readback (R)
1695 case 0x27: // Part ID (R)
1697 case 0x25: // Part Status
1700 printf("cirrus: outport cr_index %02x, cr_value %02x\n", reg_index
,
1706 return CIRRUS_HOOK_HANDLED
;
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 cirrus_hook_read_gr(s
, 0x00, &value
);
1723 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1724 cirrus_hook_read_gr(s
, 0x10, &value
);
1726 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1727 cirrus_hook_read_gr(s
, 0x12, &value
);
1729 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1730 cirrus_hook_read_gr(s
, 0x14, &value
);
1732 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1733 cirrus_hook_read_gr(s
, 0x01, &value
);
1735 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1736 cirrus_hook_read_gr(s
, 0x11, &value
);
1738 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1739 cirrus_hook_read_gr(s
, 0x13, &value
);
1741 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1742 cirrus_hook_read_gr(s
, 0x15, &value
);
1744 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1745 cirrus_hook_read_gr(s
, 0x20, &value
);
1747 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1748 cirrus_hook_read_gr(s
, 0x21, &value
);
1750 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1751 cirrus_hook_read_gr(s
, 0x22, &value
);
1753 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1754 cirrus_hook_read_gr(s
, 0x23, &value
);
1756 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1757 cirrus_hook_read_gr(s
, 0x24, &value
);
1759 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1760 cirrus_hook_read_gr(s
, 0x25, &value
);
1762 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1763 cirrus_hook_read_gr(s
, 0x26, &value
);
1765 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1766 cirrus_hook_read_gr(s
, 0x27, &value
);
1768 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1769 cirrus_hook_read_gr(s
, 0x28, &value
);
1771 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1772 cirrus_hook_read_gr(s
, 0x29, &value
);
1774 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1775 cirrus_hook_read_gr(s
, 0x2a, &value
);
1777 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1778 cirrus_hook_read_gr(s
, 0x2c, &value
);
1780 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1781 cirrus_hook_read_gr(s
, 0x2d, &value
);
1783 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1784 cirrus_hook_read_gr(s
, 0x2e, &value
);
1786 case CIRRUS_MMIO_BLTWRITEMASK
:
1787 cirrus_hook_read_gr(s
, 0x2f, &value
);
1789 case CIRRUS_MMIO_BLTMODE
:
1790 cirrus_hook_read_gr(s
, 0x30, &value
);
1792 case CIRRUS_MMIO_BLTROP
:
1793 cirrus_hook_read_gr(s
, 0x32, &value
);
1795 case CIRRUS_MMIO_BLTMODEEXT
:
1796 cirrus_hook_read_gr(s
, 0x33, &value
);
1798 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1799 cirrus_hook_read_gr(s
, 0x34, &value
);
1801 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1802 cirrus_hook_read_gr(s
, 0x35, &value
);
1804 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1805 cirrus_hook_read_gr(s
, 0x38, &value
);
1807 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1808 cirrus_hook_read_gr(s
, 0x39, &value
);
1810 case CIRRUS_MMIO_BLTSTATUS
:
1811 cirrus_hook_read_gr(s
, 0x31, &value
);
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_hook_write_gr(s
, 0x00, value
);
1830 case (CIRRUS_MMIO_BLTBGCOLOR
+ 1):
1831 cirrus_hook_write_gr(s
, 0x10, value
);
1833 case (CIRRUS_MMIO_BLTBGCOLOR
+ 2):
1834 cirrus_hook_write_gr(s
, 0x12, value
);
1836 case (CIRRUS_MMIO_BLTBGCOLOR
+ 3):
1837 cirrus_hook_write_gr(s
, 0x14, value
);
1839 case (CIRRUS_MMIO_BLTFGCOLOR
+ 0):
1840 cirrus_hook_write_gr(s
, 0x01, value
);
1842 case (CIRRUS_MMIO_BLTFGCOLOR
+ 1):
1843 cirrus_hook_write_gr(s
, 0x11, value
);
1845 case (CIRRUS_MMIO_BLTFGCOLOR
+ 2):
1846 cirrus_hook_write_gr(s
, 0x13, value
);
1848 case (CIRRUS_MMIO_BLTFGCOLOR
+ 3):
1849 cirrus_hook_write_gr(s
, 0x15, value
);
1851 case (CIRRUS_MMIO_BLTWIDTH
+ 0):
1852 cirrus_hook_write_gr(s
, 0x20, value
);
1854 case (CIRRUS_MMIO_BLTWIDTH
+ 1):
1855 cirrus_hook_write_gr(s
, 0x21, value
);
1857 case (CIRRUS_MMIO_BLTHEIGHT
+ 0):
1858 cirrus_hook_write_gr(s
, 0x22, value
);
1860 case (CIRRUS_MMIO_BLTHEIGHT
+ 1):
1861 cirrus_hook_write_gr(s
, 0x23, value
);
1863 case (CIRRUS_MMIO_BLTDESTPITCH
+ 0):
1864 cirrus_hook_write_gr(s
, 0x24, value
);
1866 case (CIRRUS_MMIO_BLTDESTPITCH
+ 1):
1867 cirrus_hook_write_gr(s
, 0x25, value
);
1869 case (CIRRUS_MMIO_BLTSRCPITCH
+ 0):
1870 cirrus_hook_write_gr(s
, 0x26, value
);
1872 case (CIRRUS_MMIO_BLTSRCPITCH
+ 1):
1873 cirrus_hook_write_gr(s
, 0x27, value
);
1875 case (CIRRUS_MMIO_BLTDESTADDR
+ 0):
1876 cirrus_hook_write_gr(s
, 0x28, value
);
1878 case (CIRRUS_MMIO_BLTDESTADDR
+ 1):
1879 cirrus_hook_write_gr(s
, 0x29, value
);
1881 case (CIRRUS_MMIO_BLTDESTADDR
+ 2):
1882 cirrus_hook_write_gr(s
, 0x2a, value
);
1884 case (CIRRUS_MMIO_BLTDESTADDR
+ 3):
1887 case (CIRRUS_MMIO_BLTSRCADDR
+ 0):
1888 cirrus_hook_write_gr(s
, 0x2c, value
);
1890 case (CIRRUS_MMIO_BLTSRCADDR
+ 1):
1891 cirrus_hook_write_gr(s
, 0x2d, value
);
1893 case (CIRRUS_MMIO_BLTSRCADDR
+ 2):
1894 cirrus_hook_write_gr(s
, 0x2e, value
);
1896 case CIRRUS_MMIO_BLTWRITEMASK
:
1897 cirrus_hook_write_gr(s
, 0x2f, value
);
1899 case CIRRUS_MMIO_BLTMODE
:
1900 cirrus_hook_write_gr(s
, 0x30, value
);
1902 case CIRRUS_MMIO_BLTROP
:
1903 cirrus_hook_write_gr(s
, 0x32, value
);
1905 case CIRRUS_MMIO_BLTMODEEXT
:
1906 cirrus_hook_write_gr(s
, 0x33, value
);
1908 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 0):
1909 cirrus_hook_write_gr(s
, 0x34, value
);
1911 case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR
+ 1):
1912 cirrus_hook_write_gr(s
, 0x35, value
);
1914 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 0):
1915 cirrus_hook_write_gr(s
, 0x38, value
);
1917 case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK
+ 1):
1918 cirrus_hook_write_gr(s
, 0x39, value
);
1920 case CIRRUS_MMIO_BLTSTATUS
:
1921 cirrus_hook_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(VGAState
*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(VGAState
*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
= (CirrusVGAState
*) 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
= (CirrusVGAState
*) 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
= (CirrusVGAState
*) 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 vga_ioport_read(void *opaque
, uint32_t addr
)
2661 CirrusVGAState
*s
= opaque
;
2664 /* check port range access depending on color/monochrome mode */
2665 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->vga
.msr
& MSR_COLOR_EMULATION
))
2666 || (addr
>= 0x3d0 && addr
<= 0x3df
2667 && !(s
->vga
.msr
& MSR_COLOR_EMULATION
))) {
2672 if (s
->vga
.ar_flip_flop
== 0) {
2673 val
= s
->vga
.ar_index
;
2679 index
= s
->vga
.ar_index
& 0x1f;
2681 val
= s
->vga
.ar
[index
];
2689 val
= s
->vga
.sr_index
;
2692 if (cirrus_hook_read_sr(s
, s
->vga
.sr_index
, &val
))
2694 val
= s
->vga
.sr
[s
->vga
.sr_index
];
2695 #ifdef DEBUG_VGA_REG
2696 printf("vga: read SR%x = 0x%02x\n", s
->vga
.sr_index
, val
);
2700 cirrus_read_hidden_dac(s
, &val
);
2703 val
= s
->vga
.dac_state
;
2706 val
= s
->vga
.dac_write_index
;
2707 s
->cirrus_hidden_dac_lockindex
= 0;
2710 if (cirrus_hook_read_palette(s
, &val
))
2712 val
= s
->vga
.palette
[s
->vga
.dac_read_index
* 3 + s
->vga
.dac_sub_index
];
2713 if (++s
->vga
.dac_sub_index
== 3) {
2714 s
->vga
.dac_sub_index
= 0;
2715 s
->vga
.dac_read_index
++;
2725 val
= s
->vga
.gr_index
;
2728 if (cirrus_hook_read_gr(s
, s
->vga
.gr_index
, &val
))
2730 val
= s
->vga
.gr
[s
->vga
.gr_index
];
2731 #ifdef DEBUG_VGA_REG
2732 printf("vga: read GR%x = 0x%02x\n", s
->vga
.gr_index
, val
);
2737 val
= s
->vga
.cr_index
;
2741 if (cirrus_hook_read_cr(s
, s
->vga
.cr_index
, &val
))
2743 val
= s
->vga
.cr
[s
->vga
.cr_index
];
2744 #ifdef DEBUG_VGA_REG
2745 printf("vga: read CR%x = 0x%02x\n", s
->vga
.cr_index
, val
);
2750 /* just toggle to fool polling */
2751 val
= s
->vga
.st01
= s
->vga
.retrace(&s
->vga
);
2752 s
->vga
.ar_flip_flop
= 0;
2759 #if defined(DEBUG_VGA)
2760 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
2765 static void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
2767 CirrusVGAState
*s
= opaque
;
2770 /* check port range access depending on color/monochrome mode */
2771 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->vga
.msr
& MSR_COLOR_EMULATION
))
2772 || (addr
>= 0x3d0 && addr
<= 0x3df
2773 && !(s
->vga
.msr
& MSR_COLOR_EMULATION
)))
2777 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
2782 if (s
->vga
.ar_flip_flop
== 0) {
2784 s
->vga
.ar_index
= val
;
2786 index
= s
->vga
.ar_index
& 0x1f;
2789 s
->vga
.ar
[index
] = val
& 0x3f;
2792 s
->vga
.ar
[index
] = val
& ~0x10;
2795 s
->vga
.ar
[index
] = val
;
2798 s
->vga
.ar
[index
] = val
& ~0xc0;
2801 s
->vga
.ar
[index
] = val
& ~0xf0;
2804 s
->vga
.ar
[index
] = val
& ~0xf0;
2810 s
->vga
.ar_flip_flop
^= 1;
2813 s
->vga
.msr
= val
& ~0x10;
2814 s
->vga
.update_retrace_info(&s
->vga
);
2817 s
->vga
.sr_index
= val
;
2820 if (cirrus_hook_write_sr(s
, s
->vga
.sr_index
, val
))
2822 #ifdef DEBUG_VGA_REG
2823 printf("vga: write SR%x = 0x%02x\n", s
->vga
.sr_index
, val
);
2825 s
->vga
.sr
[s
->vga
.sr_index
] = val
& sr_mask
[s
->vga
.sr_index
];
2826 if (s
->vga
.sr_index
== 1) s
->vga
.update_retrace_info(&s
->vga
);
2829 cirrus_write_hidden_dac(s
, val
);
2832 s
->vga
.dac_read_index
= val
;
2833 s
->vga
.dac_sub_index
= 0;
2834 s
->vga
.dac_state
= 3;
2837 s
->vga
.dac_write_index
= val
;
2838 s
->vga
.dac_sub_index
= 0;
2839 s
->vga
.dac_state
= 0;
2842 if (cirrus_hook_write_palette(s
, val
))
2844 s
->vga
.dac_cache
[s
->vga
.dac_sub_index
] = val
;
2845 if (++s
->vga
.dac_sub_index
== 3) {
2846 memcpy(&s
->vga
.palette
[s
->vga
.dac_write_index
* 3], s
->vga
.dac_cache
, 3);
2847 s
->vga
.dac_sub_index
= 0;
2848 s
->vga
.dac_write_index
++;
2852 s
->vga
.gr_index
= val
;
2855 if (cirrus_hook_write_gr(s
, s
->vga
.gr_index
, val
))
2857 #ifdef DEBUG_VGA_REG
2858 printf("vga: write GR%x = 0x%02x\n", s
->vga
.gr_index
, val
);
2860 s
->vga
.gr
[s
->vga
.gr_index
] = val
& gr_mask
[s
->vga
.gr_index
];
2864 s
->vga
.cr_index
= val
;
2868 if (cirrus_hook_write_cr(s
, s
->vga
.cr_index
, val
))
2870 #ifdef DEBUG_VGA_REG
2871 printf("vga: write CR%x = 0x%02x\n", s
->vga
.cr_index
, val
);
2873 /* handle CR0-7 protection */
2874 if ((s
->vga
.cr
[0x11] & 0x80) && s
->vga
.cr_index
<= 7) {
2875 /* can always write bit 4 of CR7 */
2876 if (s
->vga
.cr_index
== 7)
2877 s
->vga
.cr
[7] = (s
->vga
.cr
[7] & ~0x10) | (val
& 0x10);
2880 switch (s
->vga
.cr_index
) {
2881 case 0x01: /* horizontal display end */
2886 case 0x12: /* vertical display end */
2887 s
->vga
.cr
[s
->vga
.cr_index
] = val
;
2891 s
->vga
.cr
[s
->vga
.cr_index
] = val
;
2895 switch(s
->vga
.cr_index
) {
2903 s
->vga
.update_retrace_info(&s
->vga
);
2909 s
->vga
.fcr
= val
& 0x10;
2914 /***************************************
2916 * memory-mapped I/O access
2918 ***************************************/
2920 static uint32_t cirrus_mmio_readb(void *opaque
, target_phys_addr_t addr
)
2922 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2924 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
2926 if (addr
>= 0x100) {
2927 return cirrus_mmio_blt_read(s
, addr
- 0x100);
2929 return vga_ioport_read(s
, addr
+ 0x3c0);
2933 static uint32_t cirrus_mmio_readw(void *opaque
, target_phys_addr_t addr
)
2936 #ifdef TARGET_WORDS_BIGENDIAN
2937 v
= cirrus_mmio_readb(opaque
, addr
) << 8;
2938 v
|= cirrus_mmio_readb(opaque
, addr
+ 1);
2940 v
= cirrus_mmio_readb(opaque
, addr
);
2941 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
2946 static uint32_t cirrus_mmio_readl(void *opaque
, target_phys_addr_t addr
)
2949 #ifdef TARGET_WORDS_BIGENDIAN
2950 v
= cirrus_mmio_readb(opaque
, addr
) << 24;
2951 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 16;
2952 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 8;
2953 v
|= cirrus_mmio_readb(opaque
, addr
+ 3);
2955 v
= cirrus_mmio_readb(opaque
, addr
);
2956 v
|= cirrus_mmio_readb(opaque
, addr
+ 1) << 8;
2957 v
|= cirrus_mmio_readb(opaque
, addr
+ 2) << 16;
2958 v
|= cirrus_mmio_readb(opaque
, addr
+ 3) << 24;
2963 static void cirrus_mmio_writeb(void *opaque
, target_phys_addr_t addr
,
2966 CirrusVGAState
*s
= (CirrusVGAState
*) opaque
;
2968 addr
&= CIRRUS_PNPMMIO_SIZE
- 1;
2970 if (addr
>= 0x100) {
2971 cirrus_mmio_blt_write(s
, addr
- 0x100, val
);
2973 vga_ioport_write(s
, addr
+ 0x3c0, val
);
2977 static void cirrus_mmio_writew(void *opaque
, target_phys_addr_t addr
,
2980 #ifdef TARGET_WORDS_BIGENDIAN
2981 cirrus_mmio_writeb(opaque
, addr
, (val
>> 8) & 0xff);
2982 cirrus_mmio_writeb(opaque
, addr
+ 1, val
& 0xff);
2984 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
2985 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
2989 static void cirrus_mmio_writel(void *opaque
, target_phys_addr_t addr
,
2992 #ifdef TARGET_WORDS_BIGENDIAN
2993 cirrus_mmio_writeb(opaque
, addr
, (val
>> 24) & 0xff);
2994 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
2995 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
2996 cirrus_mmio_writeb(opaque
, addr
+ 3, val
& 0xff);
2998 cirrus_mmio_writeb(opaque
, addr
, val
& 0xff);
2999 cirrus_mmio_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
3000 cirrus_mmio_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
3001 cirrus_mmio_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
3006 static CPUReadMemoryFunc
* const cirrus_mmio_read
[3] = {
3012 static CPUWriteMemoryFunc
* const cirrus_mmio_write
[3] = {
3018 /* load/save state */
3020 static void cirrus_vga_save(QEMUFile
*f
, void *opaque
)
3022 CirrusVGAState
*s
= opaque
;
3025 pci_device_save(s
->vga
.pci_dev
, f
);
3027 qemu_put_be32s(f
, &s
->vga
.latch
);
3028 qemu_put_8s(f
, &s
->vga
.sr_index
);
3029 qemu_put_buffer(f
, s
->vga
.sr
, 256);
3030 qemu_put_8s(f
, &s
->vga
.gr_index
);
3031 qemu_put_8s(f
, &s
->cirrus_shadow_gr0
);
3032 qemu_put_8s(f
, &s
->cirrus_shadow_gr1
);
3033 qemu_put_buffer(f
, s
->vga
.gr
+ 2, 254);
3034 qemu_put_8s(f
, &s
->vga
.ar_index
);
3035 qemu_put_buffer(f
, s
->vga
.ar
, 21);
3036 qemu_put_be32(f
, s
->vga
.ar_flip_flop
);
3037 qemu_put_8s(f
, &s
->vga
.cr_index
);
3038 qemu_put_buffer(f
, s
->vga
.cr
, 256);
3039 qemu_put_8s(f
, &s
->vga
.msr
);
3040 qemu_put_8s(f
, &s
->vga
.fcr
);
3041 qemu_put_8s(f
, &s
->vga
.st00
);
3042 qemu_put_8s(f
, &s
->vga
.st01
);
3044 qemu_put_8s(f
, &s
->vga
.dac_state
);
3045 qemu_put_8s(f
, &s
->vga
.dac_sub_index
);
3046 qemu_put_8s(f
, &s
->vga
.dac_read_index
);
3047 qemu_put_8s(f
, &s
->vga
.dac_write_index
);
3048 qemu_put_buffer(f
, s
->vga
.dac_cache
, 3);
3049 qemu_put_buffer(f
, s
->vga
.palette
, 768);
3051 qemu_put_be32(f
, s
->vga
.bank_offset
);
3053 qemu_put_8s(f
, &s
->cirrus_hidden_dac_lockindex
);
3054 qemu_put_8s(f
, &s
->cirrus_hidden_dac_data
);
3056 qemu_put_be32s(f
, &s
->hw_cursor_x
);
3057 qemu_put_be32s(f
, &s
->hw_cursor_y
);
3058 /* XXX: we do not save the bitblt state - we assume we do not save
3059 the state when the blitter is active */
3062 static int cirrus_vga_load(QEMUFile
*f
, void *opaque
, int version_id
)
3064 CirrusVGAState
*s
= opaque
;
3070 if (s
->vga
.pci_dev
&& version_id
>= 2) {
3071 ret
= pci_device_load(s
->vga
.pci_dev
, f
);
3076 qemu_get_be32s(f
, &s
->vga
.latch
);
3077 qemu_get_8s(f
, &s
->vga
.sr_index
);
3078 qemu_get_buffer(f
, s
->vga
.sr
, 256);
3079 qemu_get_8s(f
, &s
->vga
.gr_index
);
3080 qemu_get_8s(f
, &s
->cirrus_shadow_gr0
);
3081 qemu_get_8s(f
, &s
->cirrus_shadow_gr1
);
3082 s
->vga
.gr
[0x00] = s
->cirrus_shadow_gr0
& 0x0f;
3083 s
->vga
.gr
[0x01] = s
->cirrus_shadow_gr1
& 0x0f;
3084 qemu_get_buffer(f
, s
->vga
.gr
+ 2, 254);
3085 qemu_get_8s(f
, &s
->vga
.ar_index
);
3086 qemu_get_buffer(f
, s
->vga
.ar
, 21);
3087 s
->vga
.ar_flip_flop
=qemu_get_be32(f
);
3088 qemu_get_8s(f
, &s
->vga
.cr_index
);
3089 qemu_get_buffer(f
, s
->vga
.cr
, 256);
3090 qemu_get_8s(f
, &s
->vga
.msr
);
3091 qemu_get_8s(f
, &s
->vga
.fcr
);
3092 qemu_get_8s(f
, &s
->vga
.st00
);
3093 qemu_get_8s(f
, &s
->vga
.st01
);
3095 qemu_get_8s(f
, &s
->vga
.dac_state
);
3096 qemu_get_8s(f
, &s
->vga
.dac_sub_index
);
3097 qemu_get_8s(f
, &s
->vga
.dac_read_index
);
3098 qemu_get_8s(f
, &s
->vga
.dac_write_index
);
3099 qemu_get_buffer(f
, s
->vga
.dac_cache
, 3);
3100 qemu_get_buffer(f
, s
->vga
.palette
, 768);
3102 s
->vga
.bank_offset
= qemu_get_be32(f
);
3104 qemu_get_8s(f
, &s
->cirrus_hidden_dac_lockindex
);
3105 qemu_get_8s(f
, &s
->cirrus_hidden_dac_data
);
3107 qemu_get_be32s(f
, &s
->hw_cursor_x
);
3108 qemu_get_be32s(f
, &s
->hw_cursor_y
);
3110 cirrus_update_memory_access(s
);
3112 s
->vga
.graphic_mode
= -1;
3113 cirrus_update_bank_ptr(s
, 0);
3114 cirrus_update_bank_ptr(s
, 1);
3118 /***************************************
3122 ***************************************/
3124 static void cirrus_reset(void *opaque
)
3126 CirrusVGAState
*s
= opaque
;
3129 unmap_linear_vram(s
);
3130 s
->vga
.sr
[0x06] = 0x0f;
3131 if (s
->device_id
== CIRRUS_ID_CLGD5446
) {
3132 /* 4MB 64 bit memory config, always PCI */
3133 s
->vga
.sr
[0x1F] = 0x2d; // MemClock
3134 s
->vga
.gr
[0x18] = 0x0f; // fastest memory configuration
3135 s
->vga
.sr
[0x0f] = 0x98;
3136 s
->vga
.sr
[0x17] = 0x20;
3137 s
->vga
.sr
[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
3139 s
->vga
.sr
[0x1F] = 0x22; // MemClock
3140 s
->vga
.sr
[0x0F] = CIRRUS_MEMSIZE_2M
;
3141 s
->vga
.sr
[0x17] = s
->bustype
;
3142 s
->vga
.sr
[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
3144 s
->vga
.cr
[0x27] = s
->device_id
;
3146 /* Win2K seems to assume that the pattern buffer is at 0xff
3148 memset(s
->vga
.vram_ptr
, 0xff, s
->real_vram_size
);
3150 s
->cirrus_hidden_dac_lockindex
= 5;
3151 s
->cirrus_hidden_dac_data
= 0;
3154 static void cirrus_init_common(CirrusVGAState
* s
, int device_id
, int is_pci
)
3161 for(i
= 0;i
< 256; i
++)
3162 rop_to_index
[i
] = CIRRUS_ROP_NOP_INDEX
; /* nop rop */
3163 rop_to_index
[CIRRUS_ROP_0
] = 0;
3164 rop_to_index
[CIRRUS_ROP_SRC_AND_DST
] = 1;
3165 rop_to_index
[CIRRUS_ROP_NOP
] = 2;
3166 rop_to_index
[CIRRUS_ROP_SRC_AND_NOTDST
] = 3;
3167 rop_to_index
[CIRRUS_ROP_NOTDST
] = 4;
3168 rop_to_index
[CIRRUS_ROP_SRC
] = 5;
3169 rop_to_index
[CIRRUS_ROP_1
] = 6;
3170 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_DST
] = 7;
3171 rop_to_index
[CIRRUS_ROP_SRC_XOR_DST
] = 8;
3172 rop_to_index
[CIRRUS_ROP_SRC_OR_DST
] = 9;
3173 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_NOTDST
] = 10;
3174 rop_to_index
[CIRRUS_ROP_SRC_NOTXOR_DST
] = 11;
3175 rop_to_index
[CIRRUS_ROP_SRC_OR_NOTDST
] = 12;
3176 rop_to_index
[CIRRUS_ROP_NOTSRC
] = 13;
3177 rop_to_index
[CIRRUS_ROP_NOTSRC_OR_DST
] = 14;
3178 rop_to_index
[CIRRUS_ROP_NOTSRC_AND_NOTDST
] = 15;
3179 s
->device_id
= device_id
;
3181 s
->bustype
= CIRRUS_BUSTYPE_PCI
;
3183 s
->bustype
= CIRRUS_BUSTYPE_ISA
;
3186 register_ioport_write(0x3c0, 16, 1, vga_ioport_write
, s
);
3188 register_ioport_write(0x3b4, 2, 1, vga_ioport_write
, s
);
3189 register_ioport_write(0x3d4, 2, 1, vga_ioport_write
, s
);
3190 register_ioport_write(0x3ba, 1, 1, vga_ioport_write
, s
);
3191 register_ioport_write(0x3da, 1, 1, vga_ioport_write
, s
);
3193 register_ioport_read(0x3c0, 16, 1, vga_ioport_read
, s
);
3195 register_ioport_read(0x3b4, 2, 1, vga_ioport_read
, s
);
3196 register_ioport_read(0x3d4, 2, 1, vga_ioport_read
, s
);
3197 register_ioport_read(0x3ba, 1, 1, vga_ioport_read
, s
);
3198 register_ioport_read(0x3da, 1, 1, vga_ioport_read
, s
);
3200 s
->vga
.vga_io_memory
= cpu_register_io_memory(cirrus_vga_mem_read
,
3201 cirrus_vga_mem_write
, s
);
3202 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
3203 s
->vga
.vga_io_memory
);
3204 qemu_register_coalesced_mmio(isa_mem_base
+ 0x000a0000, 0x20000);
3206 /* I/O handler for LFB */
3207 s
->cirrus_linear_io_addr
=
3208 cpu_register_io_memory(cirrus_linear_read
, cirrus_linear_write
, s
);
3210 /* I/O handler for LFB */
3211 s
->cirrus_linear_bitblt_io_addr
=
3212 cpu_register_io_memory(cirrus_linear_bitblt_read
,
3213 cirrus_linear_bitblt_write
, s
);
3215 /* I/O handler for memory-mapped I/O */
3216 s
->cirrus_mmio_io_addr
=
3217 cpu_register_io_memory(cirrus_mmio_read
, cirrus_mmio_write
, s
);
3220 (s
->device_id
== CIRRUS_ID_CLGD5446
) ? 4096 * 1024 : 2048 * 1024;
3222 /* XXX: s->vga.vram_size must be a power of two */
3223 s
->cirrus_addr_mask
= s
->real_vram_size
- 1;
3224 s
->linear_mmio_mask
= s
->real_vram_size
- 256;
3226 s
->vga
.get_bpp
= cirrus_get_bpp
;
3227 s
->vga
.get_offsets
= cirrus_get_offsets
;
3228 s
->vga
.get_resolution
= cirrus_get_resolution
;
3229 s
->vga
.cursor_invalidate
= cirrus_cursor_invalidate
;
3230 s
->vga
.cursor_draw_line
= cirrus_cursor_draw_line
;
3232 qemu_register_reset(cirrus_reset
, s
);
3234 register_savevm("cirrus_vga", 0, 2, cirrus_vga_save
, cirrus_vga_load
, s
);
3237 /***************************************
3241 ***************************************/
3243 void isa_cirrus_vga_init(void)
3247 s
= qemu_mallocz(sizeof(CirrusVGAState
));
3249 vga_common_init(&s
->vga
, VGA_RAM_SIZE
);
3250 cirrus_init_common(s
, CIRRUS_ID_CLGD5430
, 0);
3251 s
->vga
.ds
= graphic_console_init(s
->vga
.update
, s
->vga
.invalidate
,
3252 s
->vga
.screen_dump
, s
->vga
.text_update
,
3254 /* XXX ISA-LFB support */
3257 /***************************************
3261 ***************************************/
3263 static void cirrus_pci_lfb_map(PCIDevice
*d
, int region_num
,
3264 uint32_t addr
, uint32_t size
, int type
)
3266 CirrusVGAState
*s
= &((PCICirrusVGAState
*)d
)->cirrus_vga
;
3268 /* XXX: add byte swapping apertures */
3269 cpu_register_physical_memory(addr
, s
->vga
.vram_size
,
3270 s
->cirrus_linear_io_addr
);
3271 cpu_register_physical_memory(addr
+ 0x1000000, 0x400000,
3272 s
->cirrus_linear_bitblt_io_addr
);
3274 s
->vga
.map_addr
= s
->vga
.map_end
= 0;
3275 s
->vga
.lfb_addr
= addr
& TARGET_PAGE_MASK
;
3276 s
->vga
.lfb_end
= ((addr
+ VGA_RAM_SIZE
) + TARGET_PAGE_SIZE
- 1) & TARGET_PAGE_MASK
;
3277 /* account for overflow */
3278 if (s
->vga
.lfb_end
< addr
+ VGA_RAM_SIZE
)
3279 s
->vga
.lfb_end
= addr
+ VGA_RAM_SIZE
;
3281 vga_dirty_log_start(&s
->vga
);
3284 static void cirrus_pci_mmio_map(PCIDevice
*d
, int region_num
,
3285 uint32_t addr
, uint32_t size
, int type
)
3287 CirrusVGAState
*s
= &((PCICirrusVGAState
*)d
)->cirrus_vga
;
3289 cpu_register_physical_memory(addr
, CIRRUS_PNPMMIO_SIZE
,
3290 s
->cirrus_mmio_io_addr
);
3293 static void pci_cirrus_write_config(PCIDevice
*d
,
3294 uint32_t address
, uint32_t val
, int len
)
3296 PCICirrusVGAState
*pvs
= container_of(d
, PCICirrusVGAState
, dev
);
3297 CirrusVGAState
*s
= &pvs
->cirrus_vga
;
3299 pci_default_write_config(d
, address
, val
, len
);
3300 if (s
->vga
.map_addr
&& pvs
->dev
.io_regions
[0].addr
== -1)
3301 s
->vga
.map_addr
= 0;
3302 cirrus_update_memory_access(s
);
3305 static void pci_cirrus_vga_initfn(PCIDevice
*dev
)
3307 PCICirrusVGAState
*d
= DO_UPCAST(PCICirrusVGAState
, dev
, dev
);
3308 CirrusVGAState
*s
= &d
->cirrus_vga
;
3309 uint8_t *pci_conf
= d
->dev
.config
;
3310 int device_id
= CIRRUS_ID_CLGD5446
;
3313 vga_common_init(&s
->vga
, VGA_RAM_SIZE
);
3314 cirrus_init_common(s
, device_id
, 1);
3315 s
->vga
.pci_dev
= (PCIDevice
*)d
;
3316 s
->vga
.ds
= graphic_console_init(s
->vga
.update
, s
->vga
.invalidate
,
3317 s
->vga
.screen_dump
, s
->vga
.text_update
,
3321 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_CIRRUS
);
3322 pci_config_set_device_id(pci_conf
, device_id
);
3323 pci_conf
[0x04] = PCI_COMMAND_IOACCESS
| PCI_COMMAND_MEMACCESS
;
3324 pci_config_set_class(pci_conf
, PCI_CLASS_DISPLAY_VGA
);
3325 pci_conf
[PCI_HEADER_TYPE
] = PCI_HEADER_TYPE_NORMAL
;
3327 /* setup memory space */
3329 /* memory #1 memory-mapped I/O */
3330 /* XXX: s->vga.vram_size must be a power of two */
3331 pci_register_bar((PCIDevice
*)d
, 0, 0x2000000,
3332 PCI_ADDRESS_SPACE_MEM_PREFETCH
, cirrus_pci_lfb_map
);
3333 if (device_id
== CIRRUS_ID_CLGD5446
) {
3334 pci_register_bar((PCIDevice
*)d
, 1, CIRRUS_PNPMMIO_SIZE
,
3335 PCI_ADDRESS_SPACE_MEM
, cirrus_pci_mmio_map
);
3340 void pci_cirrus_vga_init(PCIBus
*bus
)
3342 pci_create_simple(bus
, -1, "Cirrus VGA");
3345 static PCIDeviceInfo cirrus_vga_info
= {
3346 .qdev
.name
= "Cirrus VGA",
3347 .qdev
.size
= sizeof(PCICirrusVGAState
),
3348 .init
= pci_cirrus_vga_initfn
,
3349 .config_write
= pci_cirrus_write_config
,
3352 static void cirrus_vga_register(void)
3354 pci_qdev_register(&cirrus_vga_info
);
3356 device_init(cirrus_vga_register
);