Statistics
| Branch: | Revision:

root / hw / cirrus_vga.c @ f7b4f61f

History | View | Annotate | Download (98.3 kB)

1 e6e5ad80 bellard
/*
2 aeb3c85f bellard
 * QEMU Cirrus CLGD 54xx VGA Emulator.
3 5fafdf24 ths
 *
4 e6e5ad80 bellard
 * Copyright (c) 2004 Fabrice Bellard
5 aeb3c85f bellard
 * Copyright (c) 2004 Makoto Suzuki (suzu)
6 5fafdf24 ths
 *
7 e6e5ad80 bellard
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 e6e5ad80 bellard
 * of this software and associated documentation files (the "Software"), to deal
9 e6e5ad80 bellard
 * in the Software without restriction, including without limitation the rights
10 e6e5ad80 bellard
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 e6e5ad80 bellard
 * copies of the Software, and to permit persons to whom the Software is
12 e6e5ad80 bellard
 * furnished to do so, subject to the following conditions:
13 e6e5ad80 bellard
 *
14 e6e5ad80 bellard
 * The above copyright notice and this permission notice shall be included in
15 e6e5ad80 bellard
 * all copies or substantial portions of the Software.
16 e6e5ad80 bellard
 *
17 e6e5ad80 bellard
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 e6e5ad80 bellard
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 e6e5ad80 bellard
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 e6e5ad80 bellard
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 e6e5ad80 bellard
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 e6e5ad80 bellard
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 e6e5ad80 bellard
 * THE SOFTWARE.
24 e6e5ad80 bellard
 */
25 aeb3c85f bellard
/*
26 aeb3c85f bellard
 * Reference: Finn Thogersons' VGADOC4b
27 aeb3c85f bellard
 *   available at http://home.worldonline.dk/~finth/
28 aeb3c85f bellard
 */
29 87ecb68b pbrook
#include "hw.h"
30 87ecb68b pbrook
#include "pc.h"
31 87ecb68b pbrook
#include "pci.h"
32 87ecb68b pbrook
#include "console.h"
33 e6e5ad80 bellard
#include "vga_int.h"
34 2bec46dc aliguori
#include "kvm.h"
35 e6e5ad80 bellard
36 a5082316 bellard
/*
37 a5082316 bellard
 * TODO:
38 ad81218e bellard
 *    - destination write mask support not complete (bits 5..7)
39 a5082316 bellard
 *    - optimize linear mappings
40 a5082316 bellard
 *    - optimize bitblt functions
41 a5082316 bellard
 */
42 a5082316 bellard
43 e36f36e1 bellard
//#define DEBUG_CIRRUS
44 a21ae81d bellard
//#define DEBUG_BITBLT
45 e36f36e1 bellard
46 e6e5ad80 bellard
/***************************************
47 e6e5ad80 bellard
 *
48 e6e5ad80 bellard
 *  definitions
49 e6e5ad80 bellard
 *
50 e6e5ad80 bellard
 ***************************************/
51 e6e5ad80 bellard
52 e6e5ad80 bellard
// ID
53 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5422  (0x23<<2)
54 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5426  (0x24<<2)
55 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5424  (0x25<<2)
56 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5428  (0x26<<2)
57 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5430  (0x28<<2)
58 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5434  (0x2A<<2)
59 a21ae81d bellard
#define CIRRUS_ID_CLGD5436  (0x2B<<2)
60 e6e5ad80 bellard
#define CIRRUS_ID_CLGD5446  (0x2E<<2)
61 e6e5ad80 bellard
62 e6e5ad80 bellard
// sequencer 0x07
63 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_VGA            0x00
64 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_SVGA           0x01
65 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_MASK           0x0e
66 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_8              0x00
67 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_16_DOUBLEVCLK  0x02
68 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_24             0x04
69 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_16             0x06
70 e6e5ad80 bellard
#define CIRRUS_SR7_BPP_32             0x08
71 e6e5ad80 bellard
#define CIRRUS_SR7_ISAADDR_MASK       0xe0
72 e6e5ad80 bellard
73 e6e5ad80 bellard
// sequencer 0x0f
74 e6e5ad80 bellard
#define CIRRUS_MEMSIZE_512k        0x08
75 e6e5ad80 bellard
#define CIRRUS_MEMSIZE_1M          0x10
76 e6e5ad80 bellard
#define CIRRUS_MEMSIZE_2M          0x18
77 e6e5ad80 bellard
#define CIRRUS_MEMFLAGS_BANKSWITCH 0x80        // bank switching is enabled.
78 e6e5ad80 bellard
79 e6e5ad80 bellard
// sequencer 0x12
80 e6e5ad80 bellard
#define CIRRUS_CURSOR_SHOW         0x01
81 e6e5ad80 bellard
#define CIRRUS_CURSOR_HIDDENPEL    0x02
82 e6e5ad80 bellard
#define CIRRUS_CURSOR_LARGE        0x04        // 64x64 if set, 32x32 if clear
83 e6e5ad80 bellard
84 e6e5ad80 bellard
// sequencer 0x17
85 e6e5ad80 bellard
#define CIRRUS_BUSTYPE_VLBFAST   0x10
86 e6e5ad80 bellard
#define CIRRUS_BUSTYPE_PCI       0x20
87 e6e5ad80 bellard
#define CIRRUS_BUSTYPE_VLBSLOW   0x30
88 e6e5ad80 bellard
#define CIRRUS_BUSTYPE_ISA       0x38
89 e6e5ad80 bellard
#define CIRRUS_MMIO_ENABLE       0x04
90 e6e5ad80 bellard
#define CIRRUS_MMIO_USE_PCIADDR  0x40        // 0xb8000 if cleared.
91 e6e5ad80 bellard
#define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
92 e6e5ad80 bellard
93 e6e5ad80 bellard
// control 0x0b
94 e6e5ad80 bellard
#define CIRRUS_BANKING_DUAL             0x01
95 e6e5ad80 bellard
#define CIRRUS_BANKING_GRANULARITY_16K  0x20        // set:16k, clear:4k
96 e6e5ad80 bellard
97 e6e5ad80 bellard
// control 0x30
98 e6e5ad80 bellard
#define CIRRUS_BLTMODE_BACKWARDS        0x01
99 e6e5ad80 bellard
#define CIRRUS_BLTMODE_MEMSYSDEST       0x02
100 e6e5ad80 bellard
#define CIRRUS_BLTMODE_MEMSYSSRC        0x04
101 e6e5ad80 bellard
#define CIRRUS_BLTMODE_TRANSPARENTCOMP  0x08
102 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PATTERNCOPY      0x40
103 e6e5ad80 bellard
#define CIRRUS_BLTMODE_COLOREXPAND      0x80
104 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PIXELWIDTHMASK   0x30
105 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PIXELWIDTH8      0x00
106 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PIXELWIDTH16     0x10
107 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PIXELWIDTH24     0x20
108 e6e5ad80 bellard
#define CIRRUS_BLTMODE_PIXELWIDTH32     0x30
109 e6e5ad80 bellard
110 e6e5ad80 bellard
// control 0x31
111 e6e5ad80 bellard
#define CIRRUS_BLT_BUSY                 0x01
112 e6e5ad80 bellard
#define CIRRUS_BLT_START                0x02
113 e6e5ad80 bellard
#define CIRRUS_BLT_RESET                0x04
114 e6e5ad80 bellard
#define CIRRUS_BLT_FIFOUSED             0x10
115 a5082316 bellard
#define CIRRUS_BLT_AUTOSTART            0x80
116 e6e5ad80 bellard
117 e6e5ad80 bellard
// control 0x32
118 e6e5ad80 bellard
#define CIRRUS_ROP_0                    0x00
119 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_AND_DST          0x05
120 e6e5ad80 bellard
#define CIRRUS_ROP_NOP                  0x06
121 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_AND_NOTDST       0x09
122 e6e5ad80 bellard
#define CIRRUS_ROP_NOTDST               0x0b
123 e6e5ad80 bellard
#define CIRRUS_ROP_SRC                  0x0d
124 e6e5ad80 bellard
#define CIRRUS_ROP_1                    0x0e
125 e6e5ad80 bellard
#define CIRRUS_ROP_NOTSRC_AND_DST       0x50
126 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_XOR_DST          0x59
127 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_OR_DST           0x6d
128 e6e5ad80 bellard
#define CIRRUS_ROP_NOTSRC_OR_NOTDST     0x90
129 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_NOTXOR_DST       0x95
130 e6e5ad80 bellard
#define CIRRUS_ROP_SRC_OR_NOTDST        0xad
131 e6e5ad80 bellard
#define CIRRUS_ROP_NOTSRC               0xd0
132 e6e5ad80 bellard
#define CIRRUS_ROP_NOTSRC_OR_DST        0xd6
133 e6e5ad80 bellard
#define CIRRUS_ROP_NOTSRC_AND_NOTDST    0xda
134 e6e5ad80 bellard
135 a5082316 bellard
#define CIRRUS_ROP_NOP_INDEX 2
136 a5082316 bellard
#define CIRRUS_ROP_SRC_INDEX 5
137 a5082316 bellard
138 a21ae81d bellard
// control 0x33
139 a5082316 bellard
#define CIRRUS_BLTMODEEXT_SOLIDFILL        0x04
140 4c8732d7 bellard
#define CIRRUS_BLTMODEEXT_COLOREXPINV      0x02
141 a5082316 bellard
#define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
142 a21ae81d bellard
143 e6e5ad80 bellard
// memory-mapped IO
144 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTBGCOLOR        0x00        // dword
145 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTFGCOLOR        0x04        // dword
146 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTWIDTH          0x08        // word
147 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTHEIGHT         0x0a        // word
148 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTDESTPITCH      0x0c        // word
149 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTSRCPITCH       0x0e        // word
150 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTDESTADDR       0x10        // dword
151 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTSRCADDR        0x14        // dword
152 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTWRITEMASK      0x17        // byte
153 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTMODE           0x18        // byte
154 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTROP            0x1a        // byte
155 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTMODEEXT        0x1b        // byte
156 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c        // word?
157 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20        // word?
158 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_START_X 0x24        // word
159 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26        // word
160 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_END_X  0x28        // word
161 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_END_Y  0x2a        // word
162 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c        // byte
163 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d        // byte
164 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e        // byte
165 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f        // byte
166 e6e5ad80 bellard
#define CIRRUS_MMIO_BRESENHAM_K1      0x30        // word
167 e6e5ad80 bellard
#define CIRRUS_MMIO_BRESENHAM_K3      0x32        // word
168 e6e5ad80 bellard
#define CIRRUS_MMIO_BRESENHAM_ERROR   0x34        // word
169 e6e5ad80 bellard
#define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36        // word
170 e6e5ad80 bellard
#define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38        // byte
171 e6e5ad80 bellard
#define CIRRUS_MMIO_LINEDRAW_MODE     0x39        // byte
172 e6e5ad80 bellard
#define CIRRUS_MMIO_BLTSTATUS         0x40        // byte
173 e6e5ad80 bellard
174 e6e5ad80 bellard
// PCI 0x04: command(word), 0x06(word): status
175 e6e5ad80 bellard
#define PCI_COMMAND_IOACCESS                0x0001
176 e6e5ad80 bellard
#define PCI_COMMAND_MEMACCESS               0x0002
177 e6e5ad80 bellard
#define PCI_COMMAND_BUSMASTER               0x0004
178 e6e5ad80 bellard
#define PCI_COMMAND_SPECIALCYCLE            0x0008
179 e6e5ad80 bellard
#define PCI_COMMAND_MEMWRITEINVALID         0x0010
180 e6e5ad80 bellard
#define PCI_COMMAND_PALETTESNOOPING         0x0020
181 e6e5ad80 bellard
#define PCI_COMMAND_PARITYDETECTION         0x0040
182 e6e5ad80 bellard
#define PCI_COMMAND_ADDRESSDATASTEPPING     0x0080
183 e6e5ad80 bellard
#define PCI_COMMAND_SERR                    0x0100
184 e6e5ad80 bellard
#define PCI_COMMAND_BACKTOBACKTRANS         0x0200
185 e6e5ad80 bellard
// PCI 0x08, 0xff000000 (0x09-0x0b:class,0x08:rev)
186 e6e5ad80 bellard
#define PCI_CLASS_BASE_DISPLAY        0x03
187 e6e5ad80 bellard
// PCI 0x08, 0x00ff0000
188 e6e5ad80 bellard
#define PCI_CLASS_SUB_VGA             0x00
189 e6e5ad80 bellard
// PCI 0x0c, 0x00ff0000 (0x0c:cacheline,0x0d:latency,0x0e:headertype,0x0f:Built-in self test)
190 e6e5ad80 bellard
// 0x10-0x3f (headertype 00h)
191 e6e5ad80 bellard
// PCI 0x10,0x14,0x18,0x1c,0x20,0x24: base address mapping registers
192 e6e5ad80 bellard
//   0x10: MEMBASE, 0x14: IOBASE(hard-coded in XFree86 3.x)
193 e6e5ad80 bellard
#define PCI_MAP_MEM                 0x0
194 e6e5ad80 bellard
#define PCI_MAP_IO                  0x1
195 e6e5ad80 bellard
#define PCI_MAP_MEM_ADDR_MASK       (~0xf)
196 e6e5ad80 bellard
#define PCI_MAP_IO_ADDR_MASK        (~0x3)
197 e6e5ad80 bellard
#define PCI_MAP_MEMFLAGS_32BIT      0x0
198 e6e5ad80 bellard
#define PCI_MAP_MEMFLAGS_32BIT_1M   0x1
199 e6e5ad80 bellard
#define PCI_MAP_MEMFLAGS_64BIT      0x4
200 e6e5ad80 bellard
#define PCI_MAP_MEMFLAGS_CACHEABLE  0x8
201 e6e5ad80 bellard
// PCI 0x28: cardbus CIS pointer
202 e6e5ad80 bellard
// PCI 0x2c: subsystem vendor id, 0x2e: subsystem id
203 e6e5ad80 bellard
// PCI 0x30: expansion ROM base address
204 e6e5ad80 bellard
#define PCI_ROMBIOS_ENABLED         0x1
205 e6e5ad80 bellard
// PCI 0x34: 0xffffff00=reserved, 0x000000ff=capabilities pointer
206 e6e5ad80 bellard
// PCI 0x38: reserved
207 e6e5ad80 bellard
// PCI 0x3c: 0x3c=int-line, 0x3d=int-pin, 0x3e=min-gnt, 0x3f=maax-lat
208 e6e5ad80 bellard
209 a21ae81d bellard
#define CIRRUS_PNPMMIO_SIZE         0x1000
210 e6e5ad80 bellard
211 b2b183c2 aliguori
#define ABS(a) ((signed)(a) > 0 ? a : -a)
212 b2b183c2 aliguori
213 b2eb849d aurel32
#define BLTUNSAFE(s) \
214 b2eb849d aurel32
    ( \
215 b2eb849d aurel32
        ( /* check dst is within bounds */ \
216 b2b183c2 aliguori
            (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
217 b2eb849d aurel32
                + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
218 4e12cd94 Avi Kivity
                    (s)->vga.vram_size \
219 b2eb849d aurel32
        ) || \
220 b2eb849d aurel32
        ( /* check src is within bounds */ \
221 b2b183c2 aliguori
            (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
222 b2eb849d aurel32
                + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
223 4e12cd94 Avi Kivity
                    (s)->vga.vram_size \
224 b2eb849d aurel32
        ) \
225 b2eb849d aurel32
    )
226 b2eb849d aurel32
227 a5082316 bellard
struct CirrusVGAState;
228 a5082316 bellard
typedef void (*cirrus_bitblt_rop_t) (struct CirrusVGAState *s,
229 a5082316 bellard
                                     uint8_t * dst, const uint8_t * src,
230 e6e5ad80 bellard
                                     int dstpitch, int srcpitch,
231 e6e5ad80 bellard
                                     int bltwidth, int bltheight);
232 a5082316 bellard
typedef void (*cirrus_fill_t)(struct CirrusVGAState *s,
233 a5082316 bellard
                              uint8_t *dst, int dst_pitch, int width, int height);
234 e6e5ad80 bellard
235 e6e5ad80 bellard
typedef struct CirrusVGAState {
236 4e12cd94 Avi Kivity
    VGACommonState vga;
237 e6e5ad80 bellard
238 e6e5ad80 bellard
    int cirrus_linear_io_addr;
239 a5082316 bellard
    int cirrus_linear_bitblt_io_addr;
240 e6e5ad80 bellard
    int cirrus_mmio_io_addr;
241 e6e5ad80 bellard
    uint32_t cirrus_addr_mask;
242 78e127ef bellard
    uint32_t linear_mmio_mask;
243 e6e5ad80 bellard
    uint8_t cirrus_shadow_gr0;
244 e6e5ad80 bellard
    uint8_t cirrus_shadow_gr1;
245 e6e5ad80 bellard
    uint8_t cirrus_hidden_dac_lockindex;
246 e6e5ad80 bellard
    uint8_t cirrus_hidden_dac_data;
247 e6e5ad80 bellard
    uint32_t cirrus_bank_base[2];
248 e6e5ad80 bellard
    uint32_t cirrus_bank_limit[2];
249 e6e5ad80 bellard
    uint8_t cirrus_hidden_palette[48];
250 a5082316 bellard
    uint32_t hw_cursor_x;
251 a5082316 bellard
    uint32_t hw_cursor_y;
252 e6e5ad80 bellard
    int cirrus_blt_pixelwidth;
253 e6e5ad80 bellard
    int cirrus_blt_width;
254 e6e5ad80 bellard
    int cirrus_blt_height;
255 e6e5ad80 bellard
    int cirrus_blt_dstpitch;
256 e6e5ad80 bellard
    int cirrus_blt_srcpitch;
257 a5082316 bellard
    uint32_t cirrus_blt_fgcol;
258 a5082316 bellard
    uint32_t cirrus_blt_bgcol;
259 e6e5ad80 bellard
    uint32_t cirrus_blt_dstaddr;
260 e6e5ad80 bellard
    uint32_t cirrus_blt_srcaddr;
261 e6e5ad80 bellard
    uint8_t cirrus_blt_mode;
262 a5082316 bellard
    uint8_t cirrus_blt_modeext;
263 e6e5ad80 bellard
    cirrus_bitblt_rop_t cirrus_rop;
264 a5082316 bellard
#define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
265 e6e5ad80 bellard
    uint8_t cirrus_bltbuf[CIRRUS_BLTBUFSIZE];
266 e6e5ad80 bellard
    uint8_t *cirrus_srcptr;
267 e6e5ad80 bellard
    uint8_t *cirrus_srcptr_end;
268 e6e5ad80 bellard
    uint32_t cirrus_srccounter;
269 a5082316 bellard
    /* hwcursor display state */
270 a5082316 bellard
    int last_hw_cursor_size;
271 a5082316 bellard
    int last_hw_cursor_x;
272 a5082316 bellard
    int last_hw_cursor_y;
273 a5082316 bellard
    int last_hw_cursor_y_start;
274 a5082316 bellard
    int last_hw_cursor_y_end;
275 78e127ef bellard
    int real_vram_size; /* XXX: suppress that */
276 4abc796d blueswir1
    int device_id;
277 4abc796d blueswir1
    int bustype;
278 e6e5ad80 bellard
} CirrusVGAState;
279 e6e5ad80 bellard
280 e6e5ad80 bellard
typedef struct PCICirrusVGAState {
281 e6e5ad80 bellard
    PCIDevice dev;
282 e6e5ad80 bellard
    CirrusVGAState cirrus_vga;
283 e6e5ad80 bellard
} PCICirrusVGAState;
284 e6e5ad80 bellard
285 a5082316 bellard
static uint8_t rop_to_index[256];
286 3b46e624 ths
287 e6e5ad80 bellard
/***************************************
288 e6e5ad80 bellard
 *
289 e6e5ad80 bellard
 *  prototypes.
290 e6e5ad80 bellard
 *
291 e6e5ad80 bellard
 ***************************************/
292 e6e5ad80 bellard
293 e6e5ad80 bellard
294 8926b517 bellard
static void cirrus_bitblt_reset(CirrusVGAState *s);
295 8926b517 bellard
static void cirrus_update_memory_access(CirrusVGAState *s);
296 e6e5ad80 bellard
297 e6e5ad80 bellard
/***************************************
298 e6e5ad80 bellard
 *
299 e6e5ad80 bellard
 *  raster operations
300 e6e5ad80 bellard
 *
301 e6e5ad80 bellard
 ***************************************/
302 e6e5ad80 bellard
303 a5082316 bellard
static void cirrus_bitblt_rop_nop(CirrusVGAState *s,
304 a5082316 bellard
                                  uint8_t *dst,const uint8_t *src,
305 a5082316 bellard
                                  int dstpitch,int srcpitch,
306 a5082316 bellard
                                  int bltwidth,int bltheight)
307 a5082316 bellard
{
308 e6e5ad80 bellard
}
309 e6e5ad80 bellard
310 a5082316 bellard
static void cirrus_bitblt_fill_nop(CirrusVGAState *s,
311 a5082316 bellard
                                   uint8_t *dst,
312 a5082316 bellard
                                   int dstpitch, int bltwidth,int bltheight)
313 e6e5ad80 bellard
{
314 a5082316 bellard
}
315 e6e5ad80 bellard
316 a5082316 bellard
#define ROP_NAME 0
317 a5082316 bellard
#define ROP_OP(d, s) d = 0
318 a5082316 bellard
#include "cirrus_vga_rop.h"
319 e6e5ad80 bellard
320 a5082316 bellard
#define ROP_NAME src_and_dst
321 a5082316 bellard
#define ROP_OP(d, s) d = (s) & (d)
322 a5082316 bellard
#include "cirrus_vga_rop.h"
323 e6e5ad80 bellard
324 a5082316 bellard
#define ROP_NAME src_and_notdst
325 a5082316 bellard
#define ROP_OP(d, s) d = (s) & (~(d))
326 a5082316 bellard
#include "cirrus_vga_rop.h"
327 e6e5ad80 bellard
328 a5082316 bellard
#define ROP_NAME notdst
329 a5082316 bellard
#define ROP_OP(d, s) d = ~(d)
330 a5082316 bellard
#include "cirrus_vga_rop.h"
331 e6e5ad80 bellard
332 a5082316 bellard
#define ROP_NAME src
333 a5082316 bellard
#define ROP_OP(d, s) d = s
334 a5082316 bellard
#include "cirrus_vga_rop.h"
335 e6e5ad80 bellard
336 a5082316 bellard
#define ROP_NAME 1
337 4c8732d7 bellard
#define ROP_OP(d, s) d = ~0
338 a5082316 bellard
#include "cirrus_vga_rop.h"
339 a5082316 bellard
340 a5082316 bellard
#define ROP_NAME notsrc_and_dst
341 a5082316 bellard
#define ROP_OP(d, s) d = (~(s)) & (d)
342 a5082316 bellard
#include "cirrus_vga_rop.h"
343 a5082316 bellard
344 a5082316 bellard
#define ROP_NAME src_xor_dst
345 a5082316 bellard
#define ROP_OP(d, s) d = (s) ^ (d)
346 a5082316 bellard
#include "cirrus_vga_rop.h"
347 a5082316 bellard
348 a5082316 bellard
#define ROP_NAME src_or_dst
349 a5082316 bellard
#define ROP_OP(d, s) d = (s) | (d)
350 a5082316 bellard
#include "cirrus_vga_rop.h"
351 a5082316 bellard
352 a5082316 bellard
#define ROP_NAME notsrc_or_notdst
353 a5082316 bellard
#define ROP_OP(d, s) d = (~(s)) | (~(d))
354 a5082316 bellard
#include "cirrus_vga_rop.h"
355 a5082316 bellard
356 a5082316 bellard
#define ROP_NAME src_notxor_dst
357 a5082316 bellard
#define ROP_OP(d, s) d = ~((s) ^ (d))
358 a5082316 bellard
#include "cirrus_vga_rop.h"
359 e6e5ad80 bellard
360 a5082316 bellard
#define ROP_NAME src_or_notdst
361 a5082316 bellard
#define ROP_OP(d, s) d = (s) | (~(d))
362 a5082316 bellard
#include "cirrus_vga_rop.h"
363 a5082316 bellard
364 a5082316 bellard
#define ROP_NAME notsrc
365 a5082316 bellard
#define ROP_OP(d, s) d = (~(s))
366 a5082316 bellard
#include "cirrus_vga_rop.h"
367 a5082316 bellard
368 a5082316 bellard
#define ROP_NAME notsrc_or_dst
369 a5082316 bellard
#define ROP_OP(d, s) d = (~(s)) | (d)
370 a5082316 bellard
#include "cirrus_vga_rop.h"
371 a5082316 bellard
372 a5082316 bellard
#define ROP_NAME notsrc_and_notdst
373 a5082316 bellard
#define ROP_OP(d, s) d = (~(s)) & (~(d))
374 a5082316 bellard
#include "cirrus_vga_rop.h"
375 a5082316 bellard
376 a5082316 bellard
static const cirrus_bitblt_rop_t cirrus_fwd_rop[16] = {
377 a5082316 bellard
    cirrus_bitblt_rop_fwd_0,
378 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_and_dst,
379 a5082316 bellard
    cirrus_bitblt_rop_nop,
380 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_and_notdst,
381 a5082316 bellard
    cirrus_bitblt_rop_fwd_notdst,
382 a5082316 bellard
    cirrus_bitblt_rop_fwd_src,
383 a5082316 bellard
    cirrus_bitblt_rop_fwd_1,
384 a5082316 bellard
    cirrus_bitblt_rop_fwd_notsrc_and_dst,
385 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_xor_dst,
386 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_or_dst,
387 a5082316 bellard
    cirrus_bitblt_rop_fwd_notsrc_or_notdst,
388 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_notxor_dst,
389 a5082316 bellard
    cirrus_bitblt_rop_fwd_src_or_notdst,
390 a5082316 bellard
    cirrus_bitblt_rop_fwd_notsrc,
391 a5082316 bellard
    cirrus_bitblt_rop_fwd_notsrc_or_dst,
392 a5082316 bellard
    cirrus_bitblt_rop_fwd_notsrc_and_notdst,
393 a5082316 bellard
};
394 a5082316 bellard
395 a5082316 bellard
static const cirrus_bitblt_rop_t cirrus_bkwd_rop[16] = {
396 a5082316 bellard
    cirrus_bitblt_rop_bkwd_0,
397 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_and_dst,
398 a5082316 bellard
    cirrus_bitblt_rop_nop,
399 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_and_notdst,
400 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notdst,
401 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src,
402 a5082316 bellard
    cirrus_bitblt_rop_bkwd_1,
403 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notsrc_and_dst,
404 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_xor_dst,
405 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_or_dst,
406 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notsrc_or_notdst,
407 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_notxor_dst,
408 a5082316 bellard
    cirrus_bitblt_rop_bkwd_src_or_notdst,
409 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notsrc,
410 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notsrc_or_dst,
411 a5082316 bellard
    cirrus_bitblt_rop_bkwd_notsrc_and_notdst,
412 a5082316 bellard
};
413 96cf2df8 ths
414 96cf2df8 ths
#define TRANSP_ROP(name) {\
415 96cf2df8 ths
    name ## _8,\
416 96cf2df8 ths
    name ## _16,\
417 96cf2df8 ths
        }
418 96cf2df8 ths
#define TRANSP_NOP(func) {\
419 96cf2df8 ths
    func,\
420 96cf2df8 ths
    func,\
421 96cf2df8 ths
        }
422 96cf2df8 ths
423 96cf2df8 ths
static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop[16][2] = {
424 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0),
425 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst),
426 96cf2df8 ths
    TRANSP_NOP(cirrus_bitblt_rop_nop),
427 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst),
428 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst),
429 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src),
430 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1),
431 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst),
432 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst),
433 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst),
434 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst),
435 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst),
436 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst),
437 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc),
438 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst),
439 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst),
440 96cf2df8 ths
};
441 96cf2df8 ths
442 96cf2df8 ths
static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop[16][2] = {
443 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0),
444 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst),
445 96cf2df8 ths
    TRANSP_NOP(cirrus_bitblt_rop_nop),
446 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst),
447 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst),
448 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src),
449 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1),
450 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst),
451 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst),
452 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst),
453 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst),
454 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst),
455 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst),
456 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc),
457 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst),
458 96cf2df8 ths
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst),
459 96cf2df8 ths
};
460 96cf2df8 ths
461 a5082316 bellard
#define ROP2(name) {\
462 a5082316 bellard
    name ## _8,\
463 a5082316 bellard
    name ## _16,\
464 a5082316 bellard
    name ## _24,\
465 a5082316 bellard
    name ## _32,\
466 a5082316 bellard
        }
467 a5082316 bellard
468 a5082316 bellard
#define ROP_NOP2(func) {\
469 a5082316 bellard
    func,\
470 a5082316 bellard
    func,\
471 a5082316 bellard
    func,\
472 a5082316 bellard
    func,\
473 a5082316 bellard
        }
474 a5082316 bellard
475 e69390ce bellard
static const cirrus_bitblt_rop_t cirrus_patternfill[16][4] = {
476 e69390ce bellard
    ROP2(cirrus_patternfill_0),
477 e69390ce bellard
    ROP2(cirrus_patternfill_src_and_dst),
478 e69390ce bellard
    ROP_NOP2(cirrus_bitblt_rop_nop),
479 e69390ce bellard
    ROP2(cirrus_patternfill_src_and_notdst),
480 e69390ce bellard
    ROP2(cirrus_patternfill_notdst),
481 e69390ce bellard
    ROP2(cirrus_patternfill_src),
482 e69390ce bellard
    ROP2(cirrus_patternfill_1),
483 e69390ce bellard
    ROP2(cirrus_patternfill_notsrc_and_dst),
484 e69390ce bellard
    ROP2(cirrus_patternfill_src_xor_dst),
485 e69390ce bellard
    ROP2(cirrus_patternfill_src_or_dst),
486 e69390ce bellard
    ROP2(cirrus_patternfill_notsrc_or_notdst),
487 e69390ce bellard
    ROP2(cirrus_patternfill_src_notxor_dst),
488 e69390ce bellard
    ROP2(cirrus_patternfill_src_or_notdst),
489 e69390ce bellard
    ROP2(cirrus_patternfill_notsrc),
490 e69390ce bellard
    ROP2(cirrus_patternfill_notsrc_or_dst),
491 e69390ce bellard
    ROP2(cirrus_patternfill_notsrc_and_notdst),
492 e69390ce bellard
};
493 e69390ce bellard
494 a5082316 bellard
static const cirrus_bitblt_rop_t cirrus_colorexpand_transp[16][4] = {
495 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_0),
496 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_and_dst),
497 a5082316 bellard
    ROP_NOP2(cirrus_bitblt_rop_nop),
498 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_and_notdst),
499 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notdst),
500 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src),
501 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_1),
502 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notsrc_and_dst),
503 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_xor_dst),
504 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_or_dst),
505 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notsrc_or_notdst),
506 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_notxor_dst),
507 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_src_or_notdst),
508 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notsrc),
509 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notsrc_or_dst),
510 a5082316 bellard
    ROP2(cirrus_colorexpand_transp_notsrc_and_notdst),
511 a5082316 bellard
};
512 a5082316 bellard
513 a5082316 bellard
static const cirrus_bitblt_rop_t cirrus_colorexpand[16][4] = {
514 a5082316 bellard
    ROP2(cirrus_colorexpand_0),
515 a5082316 bellard
    ROP2(cirrus_colorexpand_src_and_dst),
516 a5082316 bellard
    ROP_NOP2(cirrus_bitblt_rop_nop),
517 a5082316 bellard
    ROP2(cirrus_colorexpand_src_and_notdst),
518 a5082316 bellard
    ROP2(cirrus_colorexpand_notdst),
519 a5082316 bellard
    ROP2(cirrus_colorexpand_src),
520 a5082316 bellard
    ROP2(cirrus_colorexpand_1),
521 a5082316 bellard
    ROP2(cirrus_colorexpand_notsrc_and_dst),
522 a5082316 bellard
    ROP2(cirrus_colorexpand_src_xor_dst),
523 a5082316 bellard
    ROP2(cirrus_colorexpand_src_or_dst),
524 a5082316 bellard
    ROP2(cirrus_colorexpand_notsrc_or_notdst),
525 a5082316 bellard
    ROP2(cirrus_colorexpand_src_notxor_dst),
526 a5082316 bellard
    ROP2(cirrus_colorexpand_src_or_notdst),
527 a5082316 bellard
    ROP2(cirrus_colorexpand_notsrc),
528 a5082316 bellard
    ROP2(cirrus_colorexpand_notsrc_or_dst),
529 a5082316 bellard
    ROP2(cirrus_colorexpand_notsrc_and_notdst),
530 a5082316 bellard
};
531 a5082316 bellard
532 b30d4608 bellard
static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp[16][4] = {
533 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_0),
534 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_and_dst),
535 b30d4608 bellard
    ROP_NOP2(cirrus_bitblt_rop_nop),
536 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst),
537 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notdst),
538 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src),
539 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_1),
540 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst),
541 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst),
542 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_or_dst),
543 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst),
544 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst),
545 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst),
546 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notsrc),
547 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst),
548 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst),
549 b30d4608 bellard
};
550 b30d4608 bellard
551 b30d4608 bellard
static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern[16][4] = {
552 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_0),
553 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_and_dst),
554 b30d4608 bellard
    ROP_NOP2(cirrus_bitblt_rop_nop),
555 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_and_notdst),
556 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notdst),
557 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src),
558 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_1),
559 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notsrc_and_dst),
560 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_xor_dst),
561 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_or_dst),
562 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst),
563 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_notxor_dst),
564 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_src_or_notdst),
565 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notsrc),
566 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notsrc_or_dst),
567 b30d4608 bellard
    ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst),
568 b30d4608 bellard
};
569 b30d4608 bellard
570 a5082316 bellard
static const cirrus_fill_t cirrus_fill[16][4] = {
571 a5082316 bellard
    ROP2(cirrus_fill_0),
572 a5082316 bellard
    ROP2(cirrus_fill_src_and_dst),
573 a5082316 bellard
    ROP_NOP2(cirrus_bitblt_fill_nop),
574 a5082316 bellard
    ROP2(cirrus_fill_src_and_notdst),
575 a5082316 bellard
    ROP2(cirrus_fill_notdst),
576 a5082316 bellard
    ROP2(cirrus_fill_src),
577 a5082316 bellard
    ROP2(cirrus_fill_1),
578 a5082316 bellard
    ROP2(cirrus_fill_notsrc_and_dst),
579 a5082316 bellard
    ROP2(cirrus_fill_src_xor_dst),
580 a5082316 bellard
    ROP2(cirrus_fill_src_or_dst),
581 a5082316 bellard
    ROP2(cirrus_fill_notsrc_or_notdst),
582 a5082316 bellard
    ROP2(cirrus_fill_src_notxor_dst),
583 a5082316 bellard
    ROP2(cirrus_fill_src_or_notdst),
584 a5082316 bellard
    ROP2(cirrus_fill_notsrc),
585 a5082316 bellard
    ROP2(cirrus_fill_notsrc_or_dst),
586 a5082316 bellard
    ROP2(cirrus_fill_notsrc_and_notdst),
587 a5082316 bellard
};
588 a5082316 bellard
589 a5082316 bellard
static inline void cirrus_bitblt_fgcol(CirrusVGAState *s)
590 e6e5ad80 bellard
{
591 a5082316 bellard
    unsigned int color;
592 a5082316 bellard
    switch (s->cirrus_blt_pixelwidth) {
593 a5082316 bellard
    case 1:
594 a5082316 bellard
        s->cirrus_blt_fgcol = s->cirrus_shadow_gr1;
595 a5082316 bellard
        break;
596 a5082316 bellard
    case 2:
597 4e12cd94 Avi Kivity
        color = s->cirrus_shadow_gr1 | (s->vga.gr[0x11] << 8);
598 a5082316 bellard
        s->cirrus_blt_fgcol = le16_to_cpu(color);
599 a5082316 bellard
        break;
600 a5082316 bellard
    case 3:
601 5fafdf24 ths
        s->cirrus_blt_fgcol = s->cirrus_shadow_gr1 |
602 4e12cd94 Avi Kivity
            (s->vga.gr[0x11] << 8) | (s->vga.gr[0x13] << 16);
603 a5082316 bellard
        break;
604 a5082316 bellard
    default:
605 a5082316 bellard
    case 4:
606 4e12cd94 Avi Kivity
        color = s->cirrus_shadow_gr1 | (s->vga.gr[0x11] << 8) |
607 4e12cd94 Avi Kivity
            (s->vga.gr[0x13] << 16) | (s->vga.gr[0x15] << 24);
608 a5082316 bellard
        s->cirrus_blt_fgcol = le32_to_cpu(color);
609 a5082316 bellard
        break;
610 e6e5ad80 bellard
    }
611 e6e5ad80 bellard
}
612 e6e5ad80 bellard
613 a5082316 bellard
static inline void cirrus_bitblt_bgcol(CirrusVGAState *s)
614 e6e5ad80 bellard
{
615 a5082316 bellard
    unsigned int color;
616 e6e5ad80 bellard
    switch (s->cirrus_blt_pixelwidth) {
617 e6e5ad80 bellard
    case 1:
618 a5082316 bellard
        s->cirrus_blt_bgcol = s->cirrus_shadow_gr0;
619 a5082316 bellard
        break;
620 e6e5ad80 bellard
    case 2:
621 4e12cd94 Avi Kivity
        color = s->cirrus_shadow_gr0 | (s->vga.gr[0x10] << 8);
622 a5082316 bellard
        s->cirrus_blt_bgcol = le16_to_cpu(color);
623 a5082316 bellard
        break;
624 e6e5ad80 bellard
    case 3:
625 5fafdf24 ths
        s->cirrus_blt_bgcol = s->cirrus_shadow_gr0 |
626 4e12cd94 Avi Kivity
            (s->vga.gr[0x10] << 8) | (s->vga.gr[0x12] << 16);
627 a5082316 bellard
        break;
628 e6e5ad80 bellard
    default:
629 a5082316 bellard
    case 4:
630 4e12cd94 Avi Kivity
        color = s->cirrus_shadow_gr0 | (s->vga.gr[0x10] << 8) |
631 4e12cd94 Avi Kivity
            (s->vga.gr[0x12] << 16) | (s->vga.gr[0x14] << 24);
632 a5082316 bellard
        s->cirrus_blt_bgcol = le32_to_cpu(color);
633 a5082316 bellard
        break;
634 e6e5ad80 bellard
    }
635 e6e5ad80 bellard
}
636 e6e5ad80 bellard
637 e6e5ad80 bellard
static void cirrus_invalidate_region(CirrusVGAState * s, int off_begin,
638 e6e5ad80 bellard
                                     int off_pitch, int bytesperline,
639 e6e5ad80 bellard
                                     int lines)
640 e6e5ad80 bellard
{
641 e6e5ad80 bellard
    int y;
642 e6e5ad80 bellard
    int off_cur;
643 e6e5ad80 bellard
    int off_cur_end;
644 e6e5ad80 bellard
645 e6e5ad80 bellard
    for (y = 0; y < lines; y++) {
646 e6e5ad80 bellard
        off_cur = off_begin;
647 b2eb849d aurel32
        off_cur_end = (off_cur + bytesperline) & s->cirrus_addr_mask;
648 e6e5ad80 bellard
        off_cur &= TARGET_PAGE_MASK;
649 e6e5ad80 bellard
        while (off_cur < off_cur_end) {
650 4e12cd94 Avi Kivity
            cpu_physical_memory_set_dirty(s->vga.vram_offset + off_cur);
651 e6e5ad80 bellard
            off_cur += TARGET_PAGE_SIZE;
652 e6e5ad80 bellard
        }
653 e6e5ad80 bellard
        off_begin += off_pitch;
654 e6e5ad80 bellard
    }
655 e6e5ad80 bellard
}
656 e6e5ad80 bellard
657 e6e5ad80 bellard
static int cirrus_bitblt_common_patterncopy(CirrusVGAState * s,
658 e6e5ad80 bellard
                                            const uint8_t * src)
659 e6e5ad80 bellard
{
660 e6e5ad80 bellard
    uint8_t *dst;
661 e6e5ad80 bellard
662 4e12cd94 Avi Kivity
    dst = s->vga.vram_ptr + (s->cirrus_blt_dstaddr & s->cirrus_addr_mask);
663 b2eb849d aurel32
664 b2eb849d aurel32
    if (BLTUNSAFE(s))
665 b2eb849d aurel32
        return 0;
666 b2eb849d aurel32
667 e69390ce bellard
    (*s->cirrus_rop) (s, dst, src,
668 5fafdf24 ths
                      s->cirrus_blt_dstpitch, 0,
669 e69390ce bellard
                      s->cirrus_blt_width, s->cirrus_blt_height);
670 e6e5ad80 bellard
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
671 e69390ce bellard
                             s->cirrus_blt_dstpitch, s->cirrus_blt_width,
672 e69390ce bellard
                             s->cirrus_blt_height);
673 e6e5ad80 bellard
    return 1;
674 e6e5ad80 bellard
}
675 e6e5ad80 bellard
676 a21ae81d bellard
/* fill */
677 a21ae81d bellard
678 a5082316 bellard
static int cirrus_bitblt_solidfill(CirrusVGAState *s, int blt_rop)
679 a21ae81d bellard
{
680 a5082316 bellard
    cirrus_fill_t rop_func;
681 a21ae81d bellard
682 b2eb849d aurel32
    if (BLTUNSAFE(s))
683 b2eb849d aurel32
        return 0;
684 a5082316 bellard
    rop_func = cirrus_fill[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
685 4e12cd94 Avi Kivity
    rop_func(s, s->vga.vram_ptr + (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
686 a5082316 bellard
             s->cirrus_blt_dstpitch,
687 a5082316 bellard
             s->cirrus_blt_width, s->cirrus_blt_height);
688 a21ae81d bellard
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
689 a21ae81d bellard
                             s->cirrus_blt_dstpitch, s->cirrus_blt_width,
690 a21ae81d bellard
                             s->cirrus_blt_height);
691 a21ae81d bellard
    cirrus_bitblt_reset(s);
692 a21ae81d bellard
    return 1;
693 a21ae81d bellard
}
694 a21ae81d bellard
695 e6e5ad80 bellard
/***************************************
696 e6e5ad80 bellard
 *
697 e6e5ad80 bellard
 *  bitblt (video-to-video)
698 e6e5ad80 bellard
 *
699 e6e5ad80 bellard
 ***************************************/
700 e6e5ad80 bellard
701 e6e5ad80 bellard
static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState * s)
702 e6e5ad80 bellard
{
703 e6e5ad80 bellard
    return cirrus_bitblt_common_patterncopy(s,
704 4e12cd94 Avi Kivity
                                            s->vga.vram_ptr + ((s->cirrus_blt_srcaddr & ~7) &
705 b2eb849d aurel32
                                            s->cirrus_addr_mask));
706 e6e5ad80 bellard
}
707 e6e5ad80 bellard
708 24236869 bellard
static void cirrus_do_copy(CirrusVGAState *s, int dst, int src, int w, int h)
709 e6e5ad80 bellard
{
710 24236869 bellard
    int sx, sy;
711 24236869 bellard
    int dx, dy;
712 24236869 bellard
    int width, height;
713 24236869 bellard
    int depth;
714 24236869 bellard
    int notify = 0;
715 24236869 bellard
716 4e12cd94 Avi Kivity
    depth = s->vga.get_bpp(&s->vga) / 8;
717 4e12cd94 Avi Kivity
    s->vga.get_resolution(&s->vga, &width, &height);
718 24236869 bellard
719 24236869 bellard
    /* extra x, y */
720 d85d0d38 aliguori
    sx = (src % ABS(s->cirrus_blt_srcpitch)) / depth;
721 d85d0d38 aliguori
    sy = (src / ABS(s->cirrus_blt_srcpitch));
722 d85d0d38 aliguori
    dx = (dst % ABS(s->cirrus_blt_dstpitch)) / depth;
723 d85d0d38 aliguori
    dy = (dst / ABS(s->cirrus_blt_dstpitch));
724 24236869 bellard
725 24236869 bellard
    /* normalize width */
726 24236869 bellard
    w /= depth;
727 24236869 bellard
728 24236869 bellard
    /* if we're doing a backward copy, we have to adjust
729 24236869 bellard
       our x/y to be the upper left corner (instead of the lower
730 24236869 bellard
       right corner) */
731 24236869 bellard
    if (s->cirrus_blt_dstpitch < 0) {
732 24236869 bellard
        sx -= (s->cirrus_blt_width / depth) - 1;
733 24236869 bellard
        dx -= (s->cirrus_blt_width / depth) - 1;
734 24236869 bellard
        sy -= s->cirrus_blt_height - 1;
735 24236869 bellard
        dy -= s->cirrus_blt_height - 1;
736 24236869 bellard
    }
737 24236869 bellard
738 24236869 bellard
    /* are we in the visible portion of memory? */
739 24236869 bellard
    if (sx >= 0 && sy >= 0 && dx >= 0 && dy >= 0 &&
740 24236869 bellard
        (sx + w) <= width && (sy + h) <= height &&
741 24236869 bellard
        (dx + w) <= width && (dy + h) <= height) {
742 24236869 bellard
        notify = 1;
743 24236869 bellard
    }
744 24236869 bellard
745 24236869 bellard
    /* make to sure only copy if it's a plain copy ROP */
746 24236869 bellard
    if (*s->cirrus_rop != cirrus_bitblt_rop_fwd_src &&
747 24236869 bellard
        *s->cirrus_rop != cirrus_bitblt_rop_bkwd_src)
748 24236869 bellard
        notify = 0;
749 24236869 bellard
750 24236869 bellard
    /* we have to flush all pending changes so that the copy
751 24236869 bellard
       is generated at the appropriate moment in time */
752 24236869 bellard
    if (notify)
753 24236869 bellard
        vga_hw_update();
754 24236869 bellard
755 4e12cd94 Avi Kivity
    (*s->cirrus_rop) (s, s->vga.vram_ptr +
756 b2eb849d aurel32
                      (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
757 4e12cd94 Avi Kivity
                      s->vga.vram_ptr +
758 b2eb849d aurel32
                      (s->cirrus_blt_srcaddr & s->cirrus_addr_mask),
759 e6e5ad80 bellard
                      s->cirrus_blt_dstpitch, s->cirrus_blt_srcpitch,
760 e6e5ad80 bellard
                      s->cirrus_blt_width, s->cirrus_blt_height);
761 24236869 bellard
762 24236869 bellard
    if (notify)
763 4e12cd94 Avi Kivity
        qemu_console_copy(s->vga.ds,
764 38334f76 balrog
                          sx, sy, dx, dy,
765 38334f76 balrog
                          s->cirrus_blt_width / depth,
766 38334f76 balrog
                          s->cirrus_blt_height);
767 24236869 bellard
768 24236869 bellard
    /* we don't have to notify the display that this portion has
769 38334f76 balrog
       changed since qemu_console_copy implies this */
770 24236869 bellard
771 31c05501 aliguori
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
772 31c05501 aliguori
                                s->cirrus_blt_dstpitch, s->cirrus_blt_width,
773 31c05501 aliguori
                                s->cirrus_blt_height);
774 24236869 bellard
}
775 24236869 bellard
776 24236869 bellard
static int cirrus_bitblt_videotovideo_copy(CirrusVGAState * s)
777 24236869 bellard
{
778 65d35a09 aurel32
    if (BLTUNSAFE(s))
779 65d35a09 aurel32
        return 0;
780 65d35a09 aurel32
781 4e12cd94 Avi Kivity
    cirrus_do_copy(s, s->cirrus_blt_dstaddr - s->vga.start_addr,
782 4e12cd94 Avi Kivity
            s->cirrus_blt_srcaddr - s->vga.start_addr,
783 7d957bd8 aliguori
            s->cirrus_blt_width, s->cirrus_blt_height);
784 24236869 bellard
785 e6e5ad80 bellard
    return 1;
786 e6e5ad80 bellard
}
787 e6e5ad80 bellard
788 e6e5ad80 bellard
/***************************************
789 e6e5ad80 bellard
 *
790 e6e5ad80 bellard
 *  bitblt (cpu-to-video)
791 e6e5ad80 bellard
 *
792 e6e5ad80 bellard
 ***************************************/
793 e6e5ad80 bellard
794 e6e5ad80 bellard
static void cirrus_bitblt_cputovideo_next(CirrusVGAState * s)
795 e6e5ad80 bellard
{
796 e6e5ad80 bellard
    int copy_count;
797 a5082316 bellard
    uint8_t *end_ptr;
798 3b46e624 ths
799 e6e5ad80 bellard
    if (s->cirrus_srccounter > 0) {
800 a5082316 bellard
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
801 a5082316 bellard
            cirrus_bitblt_common_patterncopy(s, s->cirrus_bltbuf);
802 a5082316 bellard
        the_end:
803 a5082316 bellard
            s->cirrus_srccounter = 0;
804 a5082316 bellard
            cirrus_bitblt_reset(s);
805 a5082316 bellard
        } else {
806 a5082316 bellard
            /* at least one scan line */
807 a5082316 bellard
            do {
808 4e12cd94 Avi Kivity
                (*s->cirrus_rop)(s, s->vga.vram_ptr +
809 b2eb849d aurel32
                                 (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
810 b2eb849d aurel32
                                  s->cirrus_bltbuf, 0, 0, s->cirrus_blt_width, 1);
811 a5082316 bellard
                cirrus_invalidate_region(s, s->cirrus_blt_dstaddr, 0,
812 a5082316 bellard
                                         s->cirrus_blt_width, 1);
813 a5082316 bellard
                s->cirrus_blt_dstaddr += s->cirrus_blt_dstpitch;
814 a5082316 bellard
                s->cirrus_srccounter -= s->cirrus_blt_srcpitch;
815 a5082316 bellard
                if (s->cirrus_srccounter <= 0)
816 a5082316 bellard
                    goto the_end;
817 a5082316 bellard
                /* more bytes than needed can be transfered because of
818 a5082316 bellard
                   word alignment, so we keep them for the next line */
819 a5082316 bellard
                /* XXX: keep alignment to speed up transfer */
820 a5082316 bellard
                end_ptr = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
821 a5082316 bellard
                copy_count = s->cirrus_srcptr_end - end_ptr;
822 a5082316 bellard
                memmove(s->cirrus_bltbuf, end_ptr, copy_count);
823 a5082316 bellard
                s->cirrus_srcptr = s->cirrus_bltbuf + copy_count;
824 a5082316 bellard
                s->cirrus_srcptr_end = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
825 a5082316 bellard
            } while (s->cirrus_srcptr >= s->cirrus_srcptr_end);
826 a5082316 bellard
        }
827 e6e5ad80 bellard
    }
828 e6e5ad80 bellard
}
829 e6e5ad80 bellard
830 e6e5ad80 bellard
/***************************************
831 e6e5ad80 bellard
 *
832 e6e5ad80 bellard
 *  bitblt wrapper
833 e6e5ad80 bellard
 *
834 e6e5ad80 bellard
 ***************************************/
835 e6e5ad80 bellard
836 e6e5ad80 bellard
static void cirrus_bitblt_reset(CirrusVGAState * s)
837 e6e5ad80 bellard
{
838 f8b237af aliguori
    int need_update;
839 f8b237af aliguori
840 4e12cd94 Avi Kivity
    s->vga.gr[0x31] &=
841 e6e5ad80 bellard
        ~(CIRRUS_BLT_START | CIRRUS_BLT_BUSY | CIRRUS_BLT_FIFOUSED);
842 f8b237af aliguori
    need_update = s->cirrus_srcptr != &s->cirrus_bltbuf[0]
843 f8b237af aliguori
        || s->cirrus_srcptr_end != &s->cirrus_bltbuf[0];
844 e6e5ad80 bellard
    s->cirrus_srcptr = &s->cirrus_bltbuf[0];
845 e6e5ad80 bellard
    s->cirrus_srcptr_end = &s->cirrus_bltbuf[0];
846 e6e5ad80 bellard
    s->cirrus_srccounter = 0;
847 f8b237af aliguori
    if (!need_update)
848 f8b237af aliguori
        return;
849 8926b517 bellard
    cirrus_update_memory_access(s);
850 e6e5ad80 bellard
}
851 e6e5ad80 bellard
852 e6e5ad80 bellard
static int cirrus_bitblt_cputovideo(CirrusVGAState * s)
853 e6e5ad80 bellard
{
854 a5082316 bellard
    int w;
855 a5082316 bellard
856 e6e5ad80 bellard
    s->cirrus_blt_mode &= ~CIRRUS_BLTMODE_MEMSYSSRC;
857 e6e5ad80 bellard
    s->cirrus_srcptr = &s->cirrus_bltbuf[0];
858 e6e5ad80 bellard
    s->cirrus_srcptr_end = &s->cirrus_bltbuf[0];
859 e6e5ad80 bellard
860 e6e5ad80 bellard
    if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
861 e6e5ad80 bellard
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
862 a5082316 bellard
            s->cirrus_blt_srcpitch = 8;
863 e6e5ad80 bellard
        } else {
864 b30d4608 bellard
            /* XXX: check for 24 bpp */
865 a5082316 bellard
            s->cirrus_blt_srcpitch = 8 * 8 * s->cirrus_blt_pixelwidth;
866 e6e5ad80 bellard
        }
867 a5082316 bellard
        s->cirrus_srccounter = s->cirrus_blt_srcpitch;
868 e6e5ad80 bellard
    } else {
869 e6e5ad80 bellard
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
870 a5082316 bellard
            w = s->cirrus_blt_width / s->cirrus_blt_pixelwidth;
871 5fafdf24 ths
            if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_DWORDGRANULARITY)
872 a5082316 bellard
                s->cirrus_blt_srcpitch = ((w + 31) >> 5);
873 a5082316 bellard
            else
874 a5082316 bellard
                s->cirrus_blt_srcpitch = ((w + 7) >> 3);
875 e6e5ad80 bellard
        } else {
876 c9c0eae8 bellard
            /* always align input size to 32 bits */
877 c9c0eae8 bellard
            s->cirrus_blt_srcpitch = (s->cirrus_blt_width + 3) & ~3;
878 e6e5ad80 bellard
        }
879 a5082316 bellard
        s->cirrus_srccounter = s->cirrus_blt_srcpitch * s->cirrus_blt_height;
880 e6e5ad80 bellard
    }
881 a5082316 bellard
    s->cirrus_srcptr = s->cirrus_bltbuf;
882 a5082316 bellard
    s->cirrus_srcptr_end = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
883 8926b517 bellard
    cirrus_update_memory_access(s);
884 e6e5ad80 bellard
    return 1;
885 e6e5ad80 bellard
}
886 e6e5ad80 bellard
887 e6e5ad80 bellard
static int cirrus_bitblt_videotocpu(CirrusVGAState * s)
888 e6e5ad80 bellard
{
889 e6e5ad80 bellard
    /* XXX */
890 a5082316 bellard
#ifdef DEBUG_BITBLT
891 e6e5ad80 bellard
    printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
892 e6e5ad80 bellard
#endif
893 e6e5ad80 bellard
    return 0;
894 e6e5ad80 bellard
}
895 e6e5ad80 bellard
896 e6e5ad80 bellard
static int cirrus_bitblt_videotovideo(CirrusVGAState * s)
897 e6e5ad80 bellard
{
898 e6e5ad80 bellard
    int ret;
899 e6e5ad80 bellard
900 e6e5ad80 bellard
    if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
901 e6e5ad80 bellard
        ret = cirrus_bitblt_videotovideo_patterncopy(s);
902 e6e5ad80 bellard
    } else {
903 e6e5ad80 bellard
        ret = cirrus_bitblt_videotovideo_copy(s);
904 e6e5ad80 bellard
    }
905 e6e5ad80 bellard
    if (ret)
906 e6e5ad80 bellard
        cirrus_bitblt_reset(s);
907 e6e5ad80 bellard
    return ret;
908 e6e5ad80 bellard
}
909 e6e5ad80 bellard
910 e6e5ad80 bellard
static void cirrus_bitblt_start(CirrusVGAState * s)
911 e6e5ad80 bellard
{
912 e6e5ad80 bellard
    uint8_t blt_rop;
913 e6e5ad80 bellard
914 4e12cd94 Avi Kivity
    s->vga.gr[0x31] |= CIRRUS_BLT_BUSY;
915 a5082316 bellard
916 4e12cd94 Avi Kivity
    s->cirrus_blt_width = (s->vga.gr[0x20] | (s->vga.gr[0x21] << 8)) + 1;
917 4e12cd94 Avi Kivity
    s->cirrus_blt_height = (s->vga.gr[0x22] | (s->vga.gr[0x23] << 8)) + 1;
918 4e12cd94 Avi Kivity
    s->cirrus_blt_dstpitch = (s->vga.gr[0x24] | (s->vga.gr[0x25] << 8));
919 4e12cd94 Avi Kivity
    s->cirrus_blt_srcpitch = (s->vga.gr[0x26] | (s->vga.gr[0x27] << 8));
920 e6e5ad80 bellard
    s->cirrus_blt_dstaddr =
921 4e12cd94 Avi Kivity
        (s->vga.gr[0x28] | (s->vga.gr[0x29] << 8) | (s->vga.gr[0x2a] << 16));
922 e6e5ad80 bellard
    s->cirrus_blt_srcaddr =
923 4e12cd94 Avi Kivity
        (s->vga.gr[0x2c] | (s->vga.gr[0x2d] << 8) | (s->vga.gr[0x2e] << 16));
924 4e12cd94 Avi Kivity
    s->cirrus_blt_mode = s->vga.gr[0x30];
925 4e12cd94 Avi Kivity
    s->cirrus_blt_modeext = s->vga.gr[0x33];
926 4e12cd94 Avi Kivity
    blt_rop = s->vga.gr[0x32];
927 e6e5ad80 bellard
928 a21ae81d bellard
#ifdef DEBUG_BITBLT
929 0b74ed78 bellard
    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",
930 5fafdf24 ths
           blt_rop,
931 a21ae81d bellard
           s->cirrus_blt_mode,
932 a5082316 bellard
           s->cirrus_blt_modeext,
933 a21ae81d bellard
           s->cirrus_blt_width,
934 a21ae81d bellard
           s->cirrus_blt_height,
935 a21ae81d bellard
           s->cirrus_blt_dstpitch,
936 a21ae81d bellard
           s->cirrus_blt_srcpitch,
937 a21ae81d bellard
           s->cirrus_blt_dstaddr,
938 a5082316 bellard
           s->cirrus_blt_srcaddr,
939 4e12cd94 Avi Kivity
           s->vga.gr[0x2f]);
940 a21ae81d bellard
#endif
941 a21ae81d bellard
942 e6e5ad80 bellard
    switch (s->cirrus_blt_mode & CIRRUS_BLTMODE_PIXELWIDTHMASK) {
943 e6e5ad80 bellard
    case CIRRUS_BLTMODE_PIXELWIDTH8:
944 e6e5ad80 bellard
        s->cirrus_blt_pixelwidth = 1;
945 e6e5ad80 bellard
        break;
946 e6e5ad80 bellard
    case CIRRUS_BLTMODE_PIXELWIDTH16:
947 e6e5ad80 bellard
        s->cirrus_blt_pixelwidth = 2;
948 e6e5ad80 bellard
        break;
949 e6e5ad80 bellard
    case CIRRUS_BLTMODE_PIXELWIDTH24:
950 e6e5ad80 bellard
        s->cirrus_blt_pixelwidth = 3;
951 e6e5ad80 bellard
        break;
952 e6e5ad80 bellard
    case CIRRUS_BLTMODE_PIXELWIDTH32:
953 e6e5ad80 bellard
        s->cirrus_blt_pixelwidth = 4;
954 e6e5ad80 bellard
        break;
955 e6e5ad80 bellard
    default:
956 a5082316 bellard
#ifdef DEBUG_BITBLT
957 e6e5ad80 bellard
        printf("cirrus: bitblt - pixel width is unknown\n");
958 e6e5ad80 bellard
#endif
959 e6e5ad80 bellard
        goto bitblt_ignore;
960 e6e5ad80 bellard
    }
961 e6e5ad80 bellard
    s->cirrus_blt_mode &= ~CIRRUS_BLTMODE_PIXELWIDTHMASK;
962 e6e5ad80 bellard
963 e6e5ad80 bellard
    if ((s->
964 e6e5ad80 bellard
         cirrus_blt_mode & (CIRRUS_BLTMODE_MEMSYSSRC |
965 e6e5ad80 bellard
                            CIRRUS_BLTMODE_MEMSYSDEST))
966 e6e5ad80 bellard
        == (CIRRUS_BLTMODE_MEMSYSSRC | CIRRUS_BLTMODE_MEMSYSDEST)) {
967 a5082316 bellard
#ifdef DEBUG_BITBLT
968 e6e5ad80 bellard
        printf("cirrus: bitblt - memory-to-memory copy is requested\n");
969 e6e5ad80 bellard
#endif
970 e6e5ad80 bellard
        goto bitblt_ignore;
971 e6e5ad80 bellard
    }
972 e6e5ad80 bellard
973 a5082316 bellard
    if ((s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_SOLIDFILL) &&
974 5fafdf24 ths
        (s->cirrus_blt_mode & (CIRRUS_BLTMODE_MEMSYSDEST |
975 a21ae81d bellard
                               CIRRUS_BLTMODE_TRANSPARENTCOMP |
976 5fafdf24 ths
                               CIRRUS_BLTMODE_PATTERNCOPY |
977 5fafdf24 ths
                               CIRRUS_BLTMODE_COLOREXPAND)) ==
978 a21ae81d bellard
         (CIRRUS_BLTMODE_PATTERNCOPY | CIRRUS_BLTMODE_COLOREXPAND)) {
979 a5082316 bellard
        cirrus_bitblt_fgcol(s);
980 a5082316 bellard
        cirrus_bitblt_solidfill(s, blt_rop);
981 e6e5ad80 bellard
    } else {
982 5fafdf24 ths
        if ((s->cirrus_blt_mode & (CIRRUS_BLTMODE_COLOREXPAND |
983 5fafdf24 ths
                                   CIRRUS_BLTMODE_PATTERNCOPY)) ==
984 a5082316 bellard
            CIRRUS_BLTMODE_COLOREXPAND) {
985 a5082316 bellard
986 a5082316 bellard
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
987 b30d4608 bellard
                if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_COLOREXPINV)
988 4c8732d7 bellard
                    cirrus_bitblt_bgcol(s);
989 b30d4608 bellard
                else
990 4c8732d7 bellard
                    cirrus_bitblt_fgcol(s);
991 b30d4608 bellard
                s->cirrus_rop = cirrus_colorexpand_transp[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
992 a5082316 bellard
            } else {
993 a5082316 bellard
                cirrus_bitblt_fgcol(s);
994 a5082316 bellard
                cirrus_bitblt_bgcol(s);
995 a5082316 bellard
                s->cirrus_rop = cirrus_colorexpand[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
996 a5082316 bellard
            }
997 e69390ce bellard
        } else if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
998 b30d4608 bellard
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
999 b30d4608 bellard
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
1000 b30d4608 bellard
                    if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_COLOREXPINV)
1001 b30d4608 bellard
                        cirrus_bitblt_bgcol(s);
1002 b30d4608 bellard
                    else
1003 b30d4608 bellard
                        cirrus_bitblt_fgcol(s);
1004 b30d4608 bellard
                    s->cirrus_rop = cirrus_colorexpand_pattern_transp[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1005 b30d4608 bellard
                } else {
1006 b30d4608 bellard
                    cirrus_bitblt_fgcol(s);
1007 b30d4608 bellard
                    cirrus_bitblt_bgcol(s);
1008 b30d4608 bellard
                    s->cirrus_rop = cirrus_colorexpand_pattern[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1009 b30d4608 bellard
                }
1010 b30d4608 bellard
            } else {
1011 b30d4608 bellard
                s->cirrus_rop = cirrus_patternfill[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1012 b30d4608 bellard
            }
1013 a21ae81d bellard
        } else {
1014 96cf2df8 ths
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
1015 96cf2df8 ths
                if (s->cirrus_blt_pixelwidth > 2) {
1016 96cf2df8 ths
                    printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1017 96cf2df8 ths
                    goto bitblt_ignore;
1018 96cf2df8 ths
                }
1019 96cf2df8 ths
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_BACKWARDS) {
1020 96cf2df8 ths
                    s->cirrus_blt_dstpitch = -s->cirrus_blt_dstpitch;
1021 96cf2df8 ths
                    s->cirrus_blt_srcpitch = -s->cirrus_blt_srcpitch;
1022 96cf2df8 ths
                    s->cirrus_rop = cirrus_bkwd_transp_rop[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1023 96cf2df8 ths
                } else {
1024 96cf2df8 ths
                    s->cirrus_rop = cirrus_fwd_transp_rop[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1025 96cf2df8 ths
                }
1026 96cf2df8 ths
            } else {
1027 96cf2df8 ths
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_BACKWARDS) {
1028 96cf2df8 ths
                    s->cirrus_blt_dstpitch = -s->cirrus_blt_dstpitch;
1029 96cf2df8 ths
                    s->cirrus_blt_srcpitch = -s->cirrus_blt_srcpitch;
1030 96cf2df8 ths
                    s->cirrus_rop = cirrus_bkwd_rop[rop_to_index[blt_rop]];
1031 96cf2df8 ths
                } else {
1032 96cf2df8 ths
                    s->cirrus_rop = cirrus_fwd_rop[rop_to_index[blt_rop]];
1033 96cf2df8 ths
                }
1034 96cf2df8 ths
            }
1035 96cf2df8 ths
        }
1036 a21ae81d bellard
        // setup bitblt engine.
1037 a21ae81d bellard
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_MEMSYSSRC) {
1038 a21ae81d bellard
            if (!cirrus_bitblt_cputovideo(s))
1039 a21ae81d bellard
                goto bitblt_ignore;
1040 a21ae81d bellard
        } else if (s->cirrus_blt_mode & CIRRUS_BLTMODE_MEMSYSDEST) {
1041 a21ae81d bellard
            if (!cirrus_bitblt_videotocpu(s))
1042 a21ae81d bellard
                goto bitblt_ignore;
1043 a21ae81d bellard
        } else {
1044 a21ae81d bellard
            if (!cirrus_bitblt_videotovideo(s))
1045 a21ae81d bellard
                goto bitblt_ignore;
1046 a21ae81d bellard
        }
1047 e6e5ad80 bellard
    }
1048 e6e5ad80 bellard
    return;
1049 e6e5ad80 bellard
  bitblt_ignore:;
1050 e6e5ad80 bellard
    cirrus_bitblt_reset(s);
1051 e6e5ad80 bellard
}
1052 e6e5ad80 bellard
1053 e6e5ad80 bellard
static void cirrus_write_bitblt(CirrusVGAState * s, unsigned reg_value)
1054 e6e5ad80 bellard
{
1055 e6e5ad80 bellard
    unsigned old_value;
1056 e6e5ad80 bellard
1057 4e12cd94 Avi Kivity
    old_value = s->vga.gr[0x31];
1058 4e12cd94 Avi Kivity
    s->vga.gr[0x31] = reg_value;
1059 e6e5ad80 bellard
1060 e6e5ad80 bellard
    if (((old_value & CIRRUS_BLT_RESET) != 0) &&
1061 e6e5ad80 bellard
        ((reg_value & CIRRUS_BLT_RESET) == 0)) {
1062 e6e5ad80 bellard
        cirrus_bitblt_reset(s);
1063 e6e5ad80 bellard
    } else if (((old_value & CIRRUS_BLT_START) == 0) &&
1064 e6e5ad80 bellard
               ((reg_value & CIRRUS_BLT_START) != 0)) {
1065 e6e5ad80 bellard
        cirrus_bitblt_start(s);
1066 e6e5ad80 bellard
    }
1067 e6e5ad80 bellard
}
1068 e6e5ad80 bellard
1069 e6e5ad80 bellard
1070 e6e5ad80 bellard
/***************************************
1071 e6e5ad80 bellard
 *
1072 e6e5ad80 bellard
 *  basic parameters
1073 e6e5ad80 bellard
 *
1074 e6e5ad80 bellard
 ***************************************/
1075 e6e5ad80 bellard
1076 a4a2f59c Juan Quintela
static void cirrus_get_offsets(VGACommonState *s1,
1077 83acc96b bellard
                               uint32_t *pline_offset,
1078 83acc96b bellard
                               uint32_t *pstart_addr,
1079 83acc96b bellard
                               uint32_t *pline_compare)
1080 e6e5ad80 bellard
{
1081 4e12cd94 Avi Kivity
    CirrusVGAState * s = container_of(s1, CirrusVGAState, vga);
1082 83acc96b bellard
    uint32_t start_addr, line_offset, line_compare;
1083 e6e5ad80 bellard
1084 4e12cd94 Avi Kivity
    line_offset = s->vga.cr[0x13]
1085 4e12cd94 Avi Kivity
        | ((s->vga.cr[0x1b] & 0x10) << 4);
1086 e6e5ad80 bellard
    line_offset <<= 3;
1087 e6e5ad80 bellard
    *pline_offset = line_offset;
1088 e6e5ad80 bellard
1089 4e12cd94 Avi Kivity
    start_addr = (s->vga.cr[0x0c] << 8)
1090 4e12cd94 Avi Kivity
        | s->vga.cr[0x0d]
1091 4e12cd94 Avi Kivity
        | ((s->vga.cr[0x1b] & 0x01) << 16)
1092 4e12cd94 Avi Kivity
        | ((s->vga.cr[0x1b] & 0x0c) << 15)
1093 4e12cd94 Avi Kivity
        | ((s->vga.cr[0x1d] & 0x80) << 12);
1094 e6e5ad80 bellard
    *pstart_addr = start_addr;
1095 83acc96b bellard
1096 4e12cd94 Avi Kivity
    line_compare = s->vga.cr[0x18] |
1097 4e12cd94 Avi Kivity
        ((s->vga.cr[0x07] & 0x10) << 4) |
1098 4e12cd94 Avi Kivity
        ((s->vga.cr[0x09] & 0x40) << 3);
1099 83acc96b bellard
    *pline_compare = line_compare;
1100 e6e5ad80 bellard
}
1101 e6e5ad80 bellard
1102 e6e5ad80 bellard
static uint32_t cirrus_get_bpp16_depth(CirrusVGAState * s)
1103 e6e5ad80 bellard
{
1104 e6e5ad80 bellard
    uint32_t ret = 16;
1105 e6e5ad80 bellard
1106 e6e5ad80 bellard
    switch (s->cirrus_hidden_dac_data & 0xf) {
1107 e6e5ad80 bellard
    case 0:
1108 e6e5ad80 bellard
        ret = 15;
1109 e6e5ad80 bellard
        break;                        /* Sierra HiColor */
1110 e6e5ad80 bellard
    case 1:
1111 e6e5ad80 bellard
        ret = 16;
1112 e6e5ad80 bellard
        break;                        /* XGA HiColor */
1113 e6e5ad80 bellard
    default:
1114 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1115 e6e5ad80 bellard
        printf("cirrus: invalid DAC value %x in 16bpp\n",
1116 e6e5ad80 bellard
               (s->cirrus_hidden_dac_data & 0xf));
1117 e6e5ad80 bellard
#endif
1118 e6e5ad80 bellard
        ret = 15;                /* XXX */
1119 e6e5ad80 bellard
        break;
1120 e6e5ad80 bellard
    }
1121 e6e5ad80 bellard
    return ret;
1122 e6e5ad80 bellard
}
1123 e6e5ad80 bellard
1124 a4a2f59c Juan Quintela
static int cirrus_get_bpp(VGACommonState *s1)
1125 e6e5ad80 bellard
{
1126 4e12cd94 Avi Kivity
    CirrusVGAState * s = container_of(s1, CirrusVGAState, vga);
1127 e6e5ad80 bellard
    uint32_t ret = 8;
1128 e6e5ad80 bellard
1129 4e12cd94 Avi Kivity
    if ((s->vga.sr[0x07] & 0x01) != 0) {
1130 e6e5ad80 bellard
        /* Cirrus SVGA */
1131 4e12cd94 Avi Kivity
        switch (s->vga.sr[0x07] & CIRRUS_SR7_BPP_MASK) {
1132 e6e5ad80 bellard
        case CIRRUS_SR7_BPP_8:
1133 e6e5ad80 bellard
            ret = 8;
1134 e6e5ad80 bellard
            break;
1135 e6e5ad80 bellard
        case CIRRUS_SR7_BPP_16_DOUBLEVCLK:
1136 e6e5ad80 bellard
            ret = cirrus_get_bpp16_depth(s);
1137 e6e5ad80 bellard
            break;
1138 e6e5ad80 bellard
        case CIRRUS_SR7_BPP_24:
1139 e6e5ad80 bellard
            ret = 24;
1140 e6e5ad80 bellard
            break;
1141 e6e5ad80 bellard
        case CIRRUS_SR7_BPP_16:
1142 e6e5ad80 bellard
            ret = cirrus_get_bpp16_depth(s);
1143 e6e5ad80 bellard
            break;
1144 e6e5ad80 bellard
        case CIRRUS_SR7_BPP_32:
1145 e6e5ad80 bellard
            ret = 32;
1146 e6e5ad80 bellard
            break;
1147 e6e5ad80 bellard
        default:
1148 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1149 4e12cd94 Avi Kivity
            printf("cirrus: unknown bpp - sr7=%x\n", s->vga.sr[0x7]);
1150 e6e5ad80 bellard
#endif
1151 e6e5ad80 bellard
            ret = 8;
1152 e6e5ad80 bellard
            break;
1153 e6e5ad80 bellard
        }
1154 e6e5ad80 bellard
    } else {
1155 e6e5ad80 bellard
        /* VGA */
1156 aeb3c85f bellard
        ret = 0;
1157 e6e5ad80 bellard
    }
1158 e6e5ad80 bellard
1159 e6e5ad80 bellard
    return ret;
1160 e6e5ad80 bellard
}
1161 e6e5ad80 bellard
1162 a4a2f59c Juan Quintela
static void cirrus_get_resolution(VGACommonState *s, int *pwidth, int *pheight)
1163 78e127ef bellard
{
1164 78e127ef bellard
    int width, height;
1165 3b46e624 ths
1166 78e127ef bellard
    width = (s->cr[0x01] + 1) * 8;
1167 5fafdf24 ths
    height = s->cr[0x12] |
1168 5fafdf24 ths
        ((s->cr[0x07] & 0x02) << 7) |
1169 78e127ef bellard
        ((s->cr[0x07] & 0x40) << 3);
1170 78e127ef bellard
    height = (height + 1);
1171 78e127ef bellard
    /* interlace support */
1172 78e127ef bellard
    if (s->cr[0x1a] & 0x01)
1173 78e127ef bellard
        height = height * 2;
1174 78e127ef bellard
    *pwidth = width;
1175 78e127ef bellard
    *pheight = height;
1176 78e127ef bellard
}
1177 78e127ef bellard
1178 e6e5ad80 bellard
/***************************************
1179 e6e5ad80 bellard
 *
1180 e6e5ad80 bellard
 * bank memory
1181 e6e5ad80 bellard
 *
1182 e6e5ad80 bellard
 ***************************************/
1183 e6e5ad80 bellard
1184 e6e5ad80 bellard
static void cirrus_update_bank_ptr(CirrusVGAState * s, unsigned bank_index)
1185 e6e5ad80 bellard
{
1186 e6e5ad80 bellard
    unsigned offset;
1187 e6e5ad80 bellard
    unsigned limit;
1188 e6e5ad80 bellard
1189 4e12cd94 Avi Kivity
    if ((s->vga.gr[0x0b] & 0x01) != 0)        /* dual bank */
1190 4e12cd94 Avi Kivity
        offset = s->vga.gr[0x09 + bank_index];
1191 e6e5ad80 bellard
    else                        /* single bank */
1192 4e12cd94 Avi Kivity
        offset = s->vga.gr[0x09];
1193 e6e5ad80 bellard
1194 4e12cd94 Avi Kivity
    if ((s->vga.gr[0x0b] & 0x20) != 0)
1195 e6e5ad80 bellard
        offset <<= 14;
1196 e6e5ad80 bellard
    else
1197 e6e5ad80 bellard
        offset <<= 12;
1198 e6e5ad80 bellard
1199 e3a4e4b6 bellard
    if (s->real_vram_size <= offset)
1200 e6e5ad80 bellard
        limit = 0;
1201 e6e5ad80 bellard
    else
1202 e3a4e4b6 bellard
        limit = s->real_vram_size - offset;
1203 e6e5ad80 bellard
1204 4e12cd94 Avi Kivity
    if (((s->vga.gr[0x0b] & 0x01) == 0) && (bank_index != 0)) {
1205 e6e5ad80 bellard
        if (limit > 0x8000) {
1206 e6e5ad80 bellard
            offset += 0x8000;
1207 e6e5ad80 bellard
            limit -= 0x8000;
1208 e6e5ad80 bellard
        } else {
1209 e6e5ad80 bellard
            limit = 0;
1210 e6e5ad80 bellard
        }
1211 e6e5ad80 bellard
    }
1212 e6e5ad80 bellard
1213 e6e5ad80 bellard
    if (limit > 0) {
1214 2bec46dc aliguori
        /* Thinking about changing bank base? First, drop the dirty bitmap information
1215 2bec46dc aliguori
         * on the current location, otherwise we lose this pointer forever */
1216 4e12cd94 Avi Kivity
        if (s->vga.lfb_vram_mapped) {
1217 2bec46dc aliguori
            target_phys_addr_t base_addr = isa_mem_base + 0xa0000 + bank_index * 0x8000;
1218 2bec46dc aliguori
            cpu_physical_sync_dirty_bitmap(base_addr, base_addr + 0x8000);
1219 2bec46dc aliguori
        }
1220 e6e5ad80 bellard
        s->cirrus_bank_base[bank_index] = offset;
1221 e6e5ad80 bellard
        s->cirrus_bank_limit[bank_index] = limit;
1222 e6e5ad80 bellard
    } else {
1223 e6e5ad80 bellard
        s->cirrus_bank_base[bank_index] = 0;
1224 e6e5ad80 bellard
        s->cirrus_bank_limit[bank_index] = 0;
1225 e6e5ad80 bellard
    }
1226 e6e5ad80 bellard
}
1227 e6e5ad80 bellard
1228 e6e5ad80 bellard
/***************************************
1229 e6e5ad80 bellard
 *
1230 e6e5ad80 bellard
 *  I/O access between 0x3c4-0x3c5
1231 e6e5ad80 bellard
 *
1232 e6e5ad80 bellard
 ***************************************/
1233 e6e5ad80 bellard
1234 8a82c322 Juan Quintela
static int cirrus_vga_read_sr(CirrusVGAState * s)
1235 e6e5ad80 bellard
{
1236 8a82c322 Juan Quintela
    switch (s->vga.sr_index) {
1237 e6e5ad80 bellard
    case 0x00:                        // Standard VGA
1238 e6e5ad80 bellard
    case 0x01:                        // Standard VGA
1239 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1240 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1241 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1242 8a82c322 Juan Quintela
        return s->vga.sr[s->vga.sr_index];
1243 e6e5ad80 bellard
    case 0x06:                        // Unlock Cirrus extensions
1244 8a82c322 Juan Quintela
        return s->vga.sr[s->vga.sr_index];
1245 e6e5ad80 bellard
    case 0x10:
1246 e6e5ad80 bellard
    case 0x30:
1247 e6e5ad80 bellard
    case 0x50:
1248 e6e5ad80 bellard
    case 0x70:                        // Graphics Cursor X
1249 e6e5ad80 bellard
    case 0x90:
1250 e6e5ad80 bellard
    case 0xb0:
1251 e6e5ad80 bellard
    case 0xd0:
1252 e6e5ad80 bellard
    case 0xf0:                        // Graphics Cursor X
1253 8a82c322 Juan Quintela
        return s->vga.sr[0x10];
1254 e6e5ad80 bellard
    case 0x11:
1255 e6e5ad80 bellard
    case 0x31:
1256 e6e5ad80 bellard
    case 0x51:
1257 e6e5ad80 bellard
    case 0x71:                        // Graphics Cursor Y
1258 e6e5ad80 bellard
    case 0x91:
1259 e6e5ad80 bellard
    case 0xb1:
1260 e6e5ad80 bellard
    case 0xd1:
1261 a5082316 bellard
    case 0xf1:                        // Graphics Cursor Y
1262 8a82c322 Juan Quintela
        return s->vga.sr[0x11];
1263 aeb3c85f bellard
    case 0x05:                        // ???
1264 aeb3c85f bellard
    case 0x07:                        // Extended Sequencer Mode
1265 aeb3c85f bellard
    case 0x08:                        // EEPROM Control
1266 aeb3c85f bellard
    case 0x09:                        // Scratch Register 0
1267 aeb3c85f bellard
    case 0x0a:                        // Scratch Register 1
1268 aeb3c85f bellard
    case 0x0b:                        // VCLK 0
1269 aeb3c85f bellard
    case 0x0c:                        // VCLK 1
1270 aeb3c85f bellard
    case 0x0d:                        // VCLK 2
1271 aeb3c85f bellard
    case 0x0e:                        // VCLK 3
1272 aeb3c85f bellard
    case 0x0f:                        // DRAM Control
1273 e6e5ad80 bellard
    case 0x12:                        // Graphics Cursor Attribute
1274 e6e5ad80 bellard
    case 0x13:                        // Graphics Cursor Pattern Address
1275 e6e5ad80 bellard
    case 0x14:                        // Scratch Register 2
1276 e6e5ad80 bellard
    case 0x15:                        // Scratch Register 3
1277 e6e5ad80 bellard
    case 0x16:                        // Performance Tuning Register
1278 e6e5ad80 bellard
    case 0x17:                        // Configuration Readback and Extended Control
1279 e6e5ad80 bellard
    case 0x18:                        // Signature Generator Control
1280 e6e5ad80 bellard
    case 0x19:                        // Signal Generator Result
1281 e6e5ad80 bellard
    case 0x1a:                        // Signal Generator Result
1282 e6e5ad80 bellard
    case 0x1b:                        // VCLK 0 Denominator & Post
1283 e6e5ad80 bellard
    case 0x1c:                        // VCLK 1 Denominator & Post
1284 e6e5ad80 bellard
    case 0x1d:                        // VCLK 2 Denominator & Post
1285 e6e5ad80 bellard
    case 0x1e:                        // VCLK 3 Denominator & Post
1286 e6e5ad80 bellard
    case 0x1f:                        // BIOS Write Enable and MCLK select
1287 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1288 8a82c322 Juan Quintela
        printf("cirrus: handled inport sr_index %02x\n", s->vga.sr_index);
1289 e6e5ad80 bellard
#endif
1290 8a82c322 Juan Quintela
        return s->vga.sr[s->vga.sr_index];
1291 e6e5ad80 bellard
    default:
1292 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1293 8a82c322 Juan Quintela
        printf("cirrus: inport sr_index %02x\n", s->vga.sr_index);
1294 e6e5ad80 bellard
#endif
1295 8a82c322 Juan Quintela
        return 0xff;
1296 e6e5ad80 bellard
        break;
1297 e6e5ad80 bellard
    }
1298 e6e5ad80 bellard
}
1299 e6e5ad80 bellard
1300 31c63201 Juan Quintela
static void cirrus_vga_write_sr(CirrusVGAState * s, uint32_t val)
1301 e6e5ad80 bellard
{
1302 31c63201 Juan Quintela
    switch (s->vga.sr_index) {
1303 e6e5ad80 bellard
    case 0x00:                        // Standard VGA
1304 e6e5ad80 bellard
    case 0x01:                        // Standard VGA
1305 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1306 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1307 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1308 31c63201 Juan Quintela
        s->vga.sr[s->vga.sr_index] = val & sr_mask[s->vga.sr_index];
1309 31c63201 Juan Quintela
        if (s->vga.sr_index == 1)
1310 31c63201 Juan Quintela
            s->vga.update_retrace_info(&s->vga);
1311 31c63201 Juan Quintela
        break;
1312 e6e5ad80 bellard
    case 0x06:                        // Unlock Cirrus extensions
1313 31c63201 Juan Quintela
        val &= 0x17;
1314 31c63201 Juan Quintela
        if (val == 0x12) {
1315 31c63201 Juan Quintela
            s->vga.sr[s->vga.sr_index] = 0x12;
1316 e6e5ad80 bellard
        } else {
1317 31c63201 Juan Quintela
            s->vga.sr[s->vga.sr_index] = 0x0f;
1318 e6e5ad80 bellard
        }
1319 e6e5ad80 bellard
        break;
1320 e6e5ad80 bellard
    case 0x10:
1321 e6e5ad80 bellard
    case 0x30:
1322 e6e5ad80 bellard
    case 0x50:
1323 e6e5ad80 bellard
    case 0x70:                        // Graphics Cursor X
1324 e6e5ad80 bellard
    case 0x90:
1325 e6e5ad80 bellard
    case 0xb0:
1326 e6e5ad80 bellard
    case 0xd0:
1327 e6e5ad80 bellard
    case 0xf0:                        // Graphics Cursor X
1328 31c63201 Juan Quintela
        s->vga.sr[0x10] = val;
1329 31c63201 Juan Quintela
        s->hw_cursor_x = (val << 3) | (s->vga.sr_index >> 5);
1330 e6e5ad80 bellard
        break;
1331 e6e5ad80 bellard
    case 0x11:
1332 e6e5ad80 bellard
    case 0x31:
1333 e6e5ad80 bellard
    case 0x51:
1334 e6e5ad80 bellard
    case 0x71:                        // Graphics Cursor Y
1335 e6e5ad80 bellard
    case 0x91:
1336 e6e5ad80 bellard
    case 0xb1:
1337 e6e5ad80 bellard
    case 0xd1:
1338 e6e5ad80 bellard
    case 0xf1:                        // Graphics Cursor Y
1339 31c63201 Juan Quintela
        s->vga.sr[0x11] = val;
1340 31c63201 Juan Quintela
        s->hw_cursor_y = (val << 3) | (s->vga.sr_index >> 5);
1341 e6e5ad80 bellard
        break;
1342 e6e5ad80 bellard
    case 0x07:                        // Extended Sequencer Mode
1343 2bec46dc aliguori
    cirrus_update_memory_access(s);
1344 e6e5ad80 bellard
    case 0x08:                        // EEPROM Control
1345 e6e5ad80 bellard
    case 0x09:                        // Scratch Register 0
1346 e6e5ad80 bellard
    case 0x0a:                        // Scratch Register 1
1347 e6e5ad80 bellard
    case 0x0b:                        // VCLK 0
1348 e6e5ad80 bellard
    case 0x0c:                        // VCLK 1
1349 e6e5ad80 bellard
    case 0x0d:                        // VCLK 2
1350 e6e5ad80 bellard
    case 0x0e:                        // VCLK 3
1351 e6e5ad80 bellard
    case 0x0f:                        // DRAM Control
1352 e6e5ad80 bellard
    case 0x12:                        // Graphics Cursor Attribute
1353 e6e5ad80 bellard
    case 0x13:                        // Graphics Cursor Pattern Address
1354 e6e5ad80 bellard
    case 0x14:                        // Scratch Register 2
1355 e6e5ad80 bellard
    case 0x15:                        // Scratch Register 3
1356 e6e5ad80 bellard
    case 0x16:                        // Performance Tuning Register
1357 e6e5ad80 bellard
    case 0x18:                        // Signature Generator Control
1358 e6e5ad80 bellard
    case 0x19:                        // Signature Generator Result
1359 e6e5ad80 bellard
    case 0x1a:                        // Signature Generator Result
1360 e6e5ad80 bellard
    case 0x1b:                        // VCLK 0 Denominator & Post
1361 e6e5ad80 bellard
    case 0x1c:                        // VCLK 1 Denominator & Post
1362 e6e5ad80 bellard
    case 0x1d:                        // VCLK 2 Denominator & Post
1363 e6e5ad80 bellard
    case 0x1e:                        // VCLK 3 Denominator & Post
1364 e6e5ad80 bellard
    case 0x1f:                        // BIOS Write Enable and MCLK select
1365 31c63201 Juan Quintela
        s->vga.sr[s->vga.sr_index] = val;
1366 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1367 e6e5ad80 bellard
        printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1368 31c63201 Juan Quintela
               s->vga.sr_index, val);
1369 e6e5ad80 bellard
#endif
1370 e6e5ad80 bellard
        break;
1371 8926b517 bellard
    case 0x17:                        // Configuration Readback and Extended Control
1372 31c63201 Juan Quintela
        s->vga.sr[s->vga.sr_index] = (s->vga.sr[s->vga.sr_index] & 0x38)
1373 31c63201 Juan Quintela
                                   | (val & 0xc7);
1374 8926b517 bellard
        cirrus_update_memory_access(s);
1375 8926b517 bellard
        break;
1376 e6e5ad80 bellard
    default:
1377 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1378 31c63201 Juan Quintela
        printf("cirrus: outport sr_index %02x, sr_value %02x\n",
1379 31c63201 Juan Quintela
               s->vga.sr_index, val);
1380 e6e5ad80 bellard
#endif
1381 e6e5ad80 bellard
        break;
1382 e6e5ad80 bellard
    }
1383 e6e5ad80 bellard
}
1384 e6e5ad80 bellard
1385 e6e5ad80 bellard
/***************************************
1386 e6e5ad80 bellard
 *
1387 e6e5ad80 bellard
 *  I/O access at 0x3c6
1388 e6e5ad80 bellard
 *
1389 e6e5ad80 bellard
 ***************************************/
1390 e6e5ad80 bellard
1391 957c9db5 Juan Quintela
static int cirrus_read_hidden_dac(CirrusVGAState * s)
1392 e6e5ad80 bellard
{
1393 a21ae81d bellard
    if (++s->cirrus_hidden_dac_lockindex == 5) {
1394 957c9db5 Juan Quintela
        s->cirrus_hidden_dac_lockindex = 0;
1395 957c9db5 Juan Quintela
        return s->cirrus_hidden_dac_data;
1396 e6e5ad80 bellard
    }
1397 957c9db5 Juan Quintela
    return 0xff;
1398 e6e5ad80 bellard
}
1399 e6e5ad80 bellard
1400 e6e5ad80 bellard
static void cirrus_write_hidden_dac(CirrusVGAState * s, int reg_value)
1401 e6e5ad80 bellard
{
1402 e6e5ad80 bellard
    if (s->cirrus_hidden_dac_lockindex == 4) {
1403 e6e5ad80 bellard
        s->cirrus_hidden_dac_data = reg_value;
1404 a21ae81d bellard
#if defined(DEBUG_CIRRUS)
1405 e6e5ad80 bellard
        printf("cirrus: outport hidden DAC, value %02x\n", reg_value);
1406 e6e5ad80 bellard
#endif
1407 e6e5ad80 bellard
    }
1408 e6e5ad80 bellard
    s->cirrus_hidden_dac_lockindex = 0;
1409 e6e5ad80 bellard
}
1410 e6e5ad80 bellard
1411 e6e5ad80 bellard
/***************************************
1412 e6e5ad80 bellard
 *
1413 e6e5ad80 bellard
 *  I/O access at 0x3c9
1414 e6e5ad80 bellard
 *
1415 e6e5ad80 bellard
 ***************************************/
1416 e6e5ad80 bellard
1417 5deaeee3 Juan Quintela
static int cirrus_vga_read_palette(CirrusVGAState * s)
1418 e6e5ad80 bellard
{
1419 5deaeee3 Juan Quintela
    int val;
1420 5deaeee3 Juan Quintela
1421 5deaeee3 Juan Quintela
    if ((s->vga.sr[0x12] & CIRRUS_CURSOR_HIDDENPEL)) {
1422 5deaeee3 Juan Quintela
        val = s->cirrus_hidden_palette[(s->vga.dac_read_index & 0x0f) * 3 +
1423 5deaeee3 Juan Quintela
                                       s->vga.dac_sub_index];
1424 5deaeee3 Juan Quintela
    } else {
1425 5deaeee3 Juan Quintela
        val = s->vga.palette[s->vga.dac_read_index * 3 + s->vga.dac_sub_index];
1426 5deaeee3 Juan Quintela
    }
1427 4e12cd94 Avi Kivity
    if (++s->vga.dac_sub_index == 3) {
1428 4e12cd94 Avi Kivity
        s->vga.dac_sub_index = 0;
1429 4e12cd94 Avi Kivity
        s->vga.dac_read_index++;
1430 e6e5ad80 bellard
    }
1431 5deaeee3 Juan Quintela
    return val;
1432 e6e5ad80 bellard
}
1433 e6e5ad80 bellard
1434 86948bb1 Juan Quintela
static void cirrus_vga_write_palette(CirrusVGAState * s, int reg_value)
1435 e6e5ad80 bellard
{
1436 4e12cd94 Avi Kivity
    s->vga.dac_cache[s->vga.dac_sub_index] = reg_value;
1437 4e12cd94 Avi Kivity
    if (++s->vga.dac_sub_index == 3) {
1438 86948bb1 Juan Quintela
        if ((s->vga.sr[0x12] & CIRRUS_CURSOR_HIDDENPEL)) {
1439 86948bb1 Juan Quintela
            memcpy(&s->cirrus_hidden_palette[(s->vga.dac_write_index & 0x0f) * 3],
1440 86948bb1 Juan Quintela
                   s->vga.dac_cache, 3);
1441 86948bb1 Juan Quintela
        } else {
1442 86948bb1 Juan Quintela
            memcpy(&s->vga.palette[s->vga.dac_write_index * 3], s->vga.dac_cache, 3);
1443 86948bb1 Juan Quintela
        }
1444 a5082316 bellard
        /* XXX update cursor */
1445 4e12cd94 Avi Kivity
        s->vga.dac_sub_index = 0;
1446 4e12cd94 Avi Kivity
        s->vga.dac_write_index++;
1447 e6e5ad80 bellard
    }
1448 e6e5ad80 bellard
}
1449 e6e5ad80 bellard
1450 e6e5ad80 bellard
/***************************************
1451 e6e5ad80 bellard
 *
1452 e6e5ad80 bellard
 *  I/O access between 0x3ce-0x3cf
1453 e6e5ad80 bellard
 *
1454 e6e5ad80 bellard
 ***************************************/
1455 e6e5ad80 bellard
1456 f705db9d Juan Quintela
static int cirrus_vga_read_gr(CirrusVGAState * s, unsigned reg_index)
1457 e6e5ad80 bellard
{
1458 e6e5ad80 bellard
    switch (reg_index) {
1459 aeb3c85f bellard
    case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1460 f705db9d Juan Quintela
        return s->cirrus_shadow_gr0;
1461 aeb3c85f bellard
    case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1462 f705db9d Juan Quintela
        return s->cirrus_shadow_gr1;
1463 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1464 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1465 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1466 e6e5ad80 bellard
    case 0x06:                        // Standard VGA
1467 e6e5ad80 bellard
    case 0x07:                        // Standard VGA
1468 e6e5ad80 bellard
    case 0x08:                        // Standard VGA
1469 f705db9d Juan Quintela
        return s->vga.gr[s->vga.gr_index];
1470 e6e5ad80 bellard
    case 0x05:                        // Standard VGA, Cirrus extended mode
1471 e6e5ad80 bellard
    default:
1472 e6e5ad80 bellard
        break;
1473 e6e5ad80 bellard
    }
1474 e6e5ad80 bellard
1475 e6e5ad80 bellard
    if (reg_index < 0x3a) {
1476 f705db9d Juan Quintela
        return s->vga.gr[reg_index];
1477 e6e5ad80 bellard
    } else {
1478 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1479 e6e5ad80 bellard
        printf("cirrus: inport gr_index %02x\n", reg_index);
1480 e6e5ad80 bellard
#endif
1481 f705db9d Juan Quintela
        return 0xff;
1482 e6e5ad80 bellard
    }
1483 e6e5ad80 bellard
}
1484 e6e5ad80 bellard
1485 22286bc6 Juan Quintela
static void
1486 22286bc6 Juan Quintela
cirrus_vga_write_gr(CirrusVGAState * s, unsigned reg_index, int reg_value)
1487 e6e5ad80 bellard
{
1488 a5082316 bellard
#if defined(DEBUG_BITBLT) && 0
1489 a5082316 bellard
    printf("gr%02x: %02x\n", reg_index, reg_value);
1490 a5082316 bellard
#endif
1491 e6e5ad80 bellard
    switch (reg_index) {
1492 e6e5ad80 bellard
    case 0x00:                        // Standard VGA, BGCOLOR 0x000000ff
1493 aeb3c85f bellard
        s->cirrus_shadow_gr0 = reg_value;
1494 22286bc6 Juan Quintela
        break;
1495 e6e5ad80 bellard
    case 0x01:                        // Standard VGA, FGCOLOR 0x000000ff
1496 aeb3c85f bellard
        s->cirrus_shadow_gr1 = reg_value;
1497 22286bc6 Juan Quintela
        break;
1498 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1499 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1500 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1501 e6e5ad80 bellard
    case 0x06:                        // Standard VGA
1502 e6e5ad80 bellard
    case 0x07:                        // Standard VGA
1503 e6e5ad80 bellard
    case 0x08:                        // Standard VGA
1504 22286bc6 Juan Quintela
        s->vga.gr[reg_index] = reg_value & gr_mask[reg_index];
1505 22286bc6 Juan Quintela
        break;
1506 e6e5ad80 bellard
    case 0x05:                        // Standard VGA, Cirrus extended mode
1507 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value & 0x7f;
1508 8926b517 bellard
        cirrus_update_memory_access(s);
1509 e6e5ad80 bellard
        break;
1510 e6e5ad80 bellard
    case 0x09:                        // bank offset #0
1511 e6e5ad80 bellard
    case 0x0A:                        // bank offset #1
1512 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value;
1513 8926b517 bellard
        cirrus_update_bank_ptr(s, 0);
1514 8926b517 bellard
        cirrus_update_bank_ptr(s, 1);
1515 2bec46dc aliguori
        cirrus_update_memory_access(s);
1516 8926b517 bellard
        break;
1517 e6e5ad80 bellard
    case 0x0B:
1518 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value;
1519 e6e5ad80 bellard
        cirrus_update_bank_ptr(s, 0);
1520 e6e5ad80 bellard
        cirrus_update_bank_ptr(s, 1);
1521 8926b517 bellard
        cirrus_update_memory_access(s);
1522 e6e5ad80 bellard
        break;
1523 e6e5ad80 bellard
    case 0x10:                        // BGCOLOR 0x0000ff00
1524 e6e5ad80 bellard
    case 0x11:                        // FGCOLOR 0x0000ff00
1525 e6e5ad80 bellard
    case 0x12:                        // BGCOLOR 0x00ff0000
1526 e6e5ad80 bellard
    case 0x13:                        // FGCOLOR 0x00ff0000
1527 e6e5ad80 bellard
    case 0x14:                        // BGCOLOR 0xff000000
1528 e6e5ad80 bellard
    case 0x15:                        // FGCOLOR 0xff000000
1529 e6e5ad80 bellard
    case 0x20:                        // BLT WIDTH 0x0000ff
1530 e6e5ad80 bellard
    case 0x22:                        // BLT HEIGHT 0x0000ff
1531 e6e5ad80 bellard
    case 0x24:                        // BLT DEST PITCH 0x0000ff
1532 e6e5ad80 bellard
    case 0x26:                        // BLT SRC PITCH 0x0000ff
1533 e6e5ad80 bellard
    case 0x28:                        // BLT DEST ADDR 0x0000ff
1534 e6e5ad80 bellard
    case 0x29:                        // BLT DEST ADDR 0x00ff00
1535 e6e5ad80 bellard
    case 0x2c:                        // BLT SRC ADDR 0x0000ff
1536 e6e5ad80 bellard
    case 0x2d:                        // BLT SRC ADDR 0x00ff00
1537 a5082316 bellard
    case 0x2f:                  // BLT WRITEMASK
1538 e6e5ad80 bellard
    case 0x30:                        // BLT MODE
1539 e6e5ad80 bellard
    case 0x32:                        // RASTER OP
1540 a21ae81d bellard
    case 0x33:                        // BLT MODEEXT
1541 e6e5ad80 bellard
    case 0x34:                        // BLT TRANSPARENT COLOR 0x00ff
1542 e6e5ad80 bellard
    case 0x35:                        // BLT TRANSPARENT COLOR 0xff00
1543 e6e5ad80 bellard
    case 0x38:                        // BLT TRANSPARENT COLOR MASK 0x00ff
1544 e6e5ad80 bellard
    case 0x39:                        // BLT TRANSPARENT COLOR MASK 0xff00
1545 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value;
1546 e6e5ad80 bellard
        break;
1547 e6e5ad80 bellard
    case 0x21:                        // BLT WIDTH 0x001f00
1548 e6e5ad80 bellard
    case 0x23:                        // BLT HEIGHT 0x001f00
1549 e6e5ad80 bellard
    case 0x25:                        // BLT DEST PITCH 0x001f00
1550 e6e5ad80 bellard
    case 0x27:                        // BLT SRC PITCH 0x001f00
1551 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value & 0x1f;
1552 e6e5ad80 bellard
        break;
1553 e6e5ad80 bellard
    case 0x2a:                        // BLT DEST ADDR 0x3f0000
1554 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value & 0x3f;
1555 a5082316 bellard
        /* if auto start mode, starts bit blt now */
1556 4e12cd94 Avi Kivity
        if (s->vga.gr[0x31] & CIRRUS_BLT_AUTOSTART) {
1557 a5082316 bellard
            cirrus_bitblt_start(s);
1558 a5082316 bellard
        }
1559 a5082316 bellard
        break;
1560 e6e5ad80 bellard
    case 0x2e:                        // BLT SRC ADDR 0x3f0000
1561 4e12cd94 Avi Kivity
        s->vga.gr[reg_index] = reg_value & 0x3f;
1562 e6e5ad80 bellard
        break;
1563 e6e5ad80 bellard
    case 0x31:                        // BLT STATUS/START
1564 e6e5ad80 bellard
        cirrus_write_bitblt(s, reg_value);
1565 e6e5ad80 bellard
        break;
1566 e6e5ad80 bellard
    default:
1567 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1568 e6e5ad80 bellard
        printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index,
1569 e6e5ad80 bellard
               reg_value);
1570 e6e5ad80 bellard
#endif
1571 e6e5ad80 bellard
        break;
1572 e6e5ad80 bellard
    }
1573 e6e5ad80 bellard
}
1574 e6e5ad80 bellard
1575 e6e5ad80 bellard
/***************************************
1576 e6e5ad80 bellard
 *
1577 e6e5ad80 bellard
 *  I/O access between 0x3d4-0x3d5
1578 e6e5ad80 bellard
 *
1579 e6e5ad80 bellard
 ***************************************/
1580 e6e5ad80 bellard
1581 b863d514 Juan Quintela
static int cirrus_vga_read_cr(CirrusVGAState * s, unsigned reg_index)
1582 e6e5ad80 bellard
{
1583 e6e5ad80 bellard
    switch (reg_index) {
1584 e6e5ad80 bellard
    case 0x00:                        // Standard VGA
1585 e6e5ad80 bellard
    case 0x01:                        // Standard VGA
1586 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1587 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1588 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1589 e6e5ad80 bellard
    case 0x05:                        // Standard VGA
1590 e6e5ad80 bellard
    case 0x06:                        // Standard VGA
1591 e6e5ad80 bellard
    case 0x07:                        // Standard VGA
1592 e6e5ad80 bellard
    case 0x08:                        // Standard VGA
1593 e6e5ad80 bellard
    case 0x09:                        // Standard VGA
1594 e6e5ad80 bellard
    case 0x0a:                        // Standard VGA
1595 e6e5ad80 bellard
    case 0x0b:                        // Standard VGA
1596 e6e5ad80 bellard
    case 0x0c:                        // Standard VGA
1597 e6e5ad80 bellard
    case 0x0d:                        // Standard VGA
1598 e6e5ad80 bellard
    case 0x0e:                        // Standard VGA
1599 e6e5ad80 bellard
    case 0x0f:                        // Standard VGA
1600 e6e5ad80 bellard
    case 0x10:                        // Standard VGA
1601 e6e5ad80 bellard
    case 0x11:                        // Standard VGA
1602 e6e5ad80 bellard
    case 0x12:                        // Standard VGA
1603 e6e5ad80 bellard
    case 0x13:                        // Standard VGA
1604 e6e5ad80 bellard
    case 0x14:                        // Standard VGA
1605 e6e5ad80 bellard
    case 0x15:                        // Standard VGA
1606 e6e5ad80 bellard
    case 0x16:                        // Standard VGA
1607 e6e5ad80 bellard
    case 0x17:                        // Standard VGA
1608 e6e5ad80 bellard
    case 0x18:                        // Standard VGA
1609 b863d514 Juan Quintela
        return s->vga.cr[s->vga.cr_index];
1610 ca896ef3 aurel32
    case 0x24:                        // Attribute Controller Toggle Readback (R)
1611 b863d514 Juan Quintela
        return (s->vga.ar_flip_flop << 7);
1612 e6e5ad80 bellard
    case 0x19:                        // Interlace End
1613 e6e5ad80 bellard
    case 0x1a:                        // Miscellaneous Control
1614 e6e5ad80 bellard
    case 0x1b:                        // Extended Display Control
1615 e6e5ad80 bellard
    case 0x1c:                        // Sync Adjust and Genlock
1616 e6e5ad80 bellard
    case 0x1d:                        // Overlay Extended Control
1617 e6e5ad80 bellard
    case 0x22:                        // Graphics Data Latches Readback (R)
1618 e6e5ad80 bellard
    case 0x25:                        // Part Status
1619 e6e5ad80 bellard
    case 0x27:                        // Part ID (R)
1620 b863d514 Juan Quintela
        return s->vga.cr[s->vga.cr_index];
1621 e6e5ad80 bellard
    case 0x26:                        // Attribute Controller Index Readback (R)
1622 b863d514 Juan Quintela
        return s->vga.ar_index & 0x3f;
1623 e6e5ad80 bellard
        break;
1624 e6e5ad80 bellard
    default:
1625 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1626 e6e5ad80 bellard
        printf("cirrus: inport cr_index %02x\n", reg_index);
1627 e6e5ad80 bellard
#endif
1628 b863d514 Juan Quintela
        return 0xff;
1629 e6e5ad80 bellard
    }
1630 e6e5ad80 bellard
}
1631 e6e5ad80 bellard
1632 4ec1ce04 Juan Quintela
static void cirrus_vga_write_cr(CirrusVGAState * s, int reg_value)
1633 e6e5ad80 bellard
{
1634 4ec1ce04 Juan Quintela
    switch (s->vga.cr_index) {
1635 e6e5ad80 bellard
    case 0x00:                        // Standard VGA
1636 e6e5ad80 bellard
    case 0x01:                        // Standard VGA
1637 e6e5ad80 bellard
    case 0x02:                        // Standard VGA
1638 e6e5ad80 bellard
    case 0x03:                        // Standard VGA
1639 e6e5ad80 bellard
    case 0x04:                        // Standard VGA
1640 e6e5ad80 bellard
    case 0x05:                        // Standard VGA
1641 e6e5ad80 bellard
    case 0x06:                        // Standard VGA
1642 e6e5ad80 bellard
    case 0x07:                        // Standard VGA
1643 e6e5ad80 bellard
    case 0x08:                        // Standard VGA
1644 e6e5ad80 bellard
    case 0x09:                        // Standard VGA
1645 e6e5ad80 bellard
    case 0x0a:                        // Standard VGA
1646 e6e5ad80 bellard
    case 0x0b:                        // Standard VGA
1647 e6e5ad80 bellard
    case 0x0c:                        // Standard VGA
1648 e6e5ad80 bellard
    case 0x0d:                        // Standard VGA
1649 e6e5ad80 bellard
    case 0x0e:                        // Standard VGA
1650 e6e5ad80 bellard
    case 0x0f:                        // Standard VGA
1651 e6e5ad80 bellard
    case 0x10:                        // Standard VGA
1652 e6e5ad80 bellard
    case 0x11:                        // Standard VGA
1653 e6e5ad80 bellard
    case 0x12:                        // Standard VGA
1654 e6e5ad80 bellard
    case 0x13:                        // Standard VGA
1655 e6e5ad80 bellard
    case 0x14:                        // Standard VGA
1656 e6e5ad80 bellard
    case 0x15:                        // Standard VGA
1657 e6e5ad80 bellard
    case 0x16:                        // Standard VGA
1658 e6e5ad80 bellard
    case 0x17:                        // Standard VGA
1659 e6e5ad80 bellard
    case 0x18:                        // Standard VGA
1660 4ec1ce04 Juan Quintela
        /* handle CR0-7 protection */
1661 4ec1ce04 Juan Quintela
        if ((s->vga.cr[0x11] & 0x80) && s->vga.cr_index <= 7) {
1662 4ec1ce04 Juan Quintela
            /* can always write bit 4 of CR7 */
1663 4ec1ce04 Juan Quintela
            if (s->vga.cr_index == 7)
1664 4ec1ce04 Juan Quintela
                s->vga.cr[7] = (s->vga.cr[7] & ~0x10) | (reg_value & 0x10);
1665 4ec1ce04 Juan Quintela
            return;
1666 4ec1ce04 Juan Quintela
        }
1667 4ec1ce04 Juan Quintela
        s->vga.cr[s->vga.cr_index] = reg_value;
1668 4ec1ce04 Juan Quintela
        switch(s->vga.cr_index) {
1669 4ec1ce04 Juan Quintela
        case 0x00:
1670 4ec1ce04 Juan Quintela
        case 0x04:
1671 4ec1ce04 Juan Quintela
        case 0x05:
1672 4ec1ce04 Juan Quintela
        case 0x06:
1673 4ec1ce04 Juan Quintela
        case 0x07:
1674 4ec1ce04 Juan Quintela
        case 0x11:
1675 4ec1ce04 Juan Quintela
        case 0x17:
1676 4ec1ce04 Juan Quintela
            s->vga.update_retrace_info(&s->vga);
1677 4ec1ce04 Juan Quintela
            break;
1678 4ec1ce04 Juan Quintela
        }
1679 4ec1ce04 Juan Quintela
        break;
1680 e6e5ad80 bellard
    case 0x19:                        // Interlace End
1681 e6e5ad80 bellard
    case 0x1a:                        // Miscellaneous Control
1682 e6e5ad80 bellard
    case 0x1b:                        // Extended Display Control
1683 e6e5ad80 bellard
    case 0x1c:                        // Sync Adjust and Genlock
1684 ae184e4a bellard
    case 0x1d:                        // Overlay Extended Control
1685 4ec1ce04 Juan Quintela
        s->vga.cr[s->vga.cr_index] = reg_value;
1686 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1687 e6e5ad80 bellard
        printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1688 4ec1ce04 Juan Quintela
               s->vga.cr_index, reg_value);
1689 e6e5ad80 bellard
#endif
1690 e6e5ad80 bellard
        break;
1691 e6e5ad80 bellard
    case 0x22:                        // Graphics Data Latches Readback (R)
1692 e6e5ad80 bellard
    case 0x24:                        // Attribute Controller Toggle Readback (R)
1693 e6e5ad80 bellard
    case 0x26:                        // Attribute Controller Index Readback (R)
1694 e6e5ad80 bellard
    case 0x27:                        // Part ID (R)
1695 e6e5ad80 bellard
        break;
1696 e6e5ad80 bellard
    case 0x25:                        // Part Status
1697 e6e5ad80 bellard
    default:
1698 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1699 4ec1ce04 Juan Quintela
        printf("cirrus: outport cr_index %02x, cr_value %02x\n",
1700 4ec1ce04 Juan Quintela
               s->vga.cr_index, reg_value);
1701 e6e5ad80 bellard
#endif
1702 e6e5ad80 bellard
        break;
1703 e6e5ad80 bellard
    }
1704 e6e5ad80 bellard
}
1705 e6e5ad80 bellard
1706 e6e5ad80 bellard
/***************************************
1707 e6e5ad80 bellard
 *
1708 e6e5ad80 bellard
 *  memory-mapped I/O (bitblt)
1709 e6e5ad80 bellard
 *
1710 e6e5ad80 bellard
 ***************************************/
1711 e6e5ad80 bellard
1712 e6e5ad80 bellard
static uint8_t cirrus_mmio_blt_read(CirrusVGAState * s, unsigned address)
1713 e6e5ad80 bellard
{
1714 e6e5ad80 bellard
    int value = 0xff;
1715 e6e5ad80 bellard
1716 e6e5ad80 bellard
    switch (address) {
1717 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 0):
1718 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x00);
1719 e6e5ad80 bellard
        break;
1720 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 1):
1721 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x10);
1722 e6e5ad80 bellard
        break;
1723 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 2):
1724 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x12);
1725 e6e5ad80 bellard
        break;
1726 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 3):
1727 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x14);
1728 e6e5ad80 bellard
        break;
1729 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 0):
1730 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x01);
1731 e6e5ad80 bellard
        break;
1732 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 1):
1733 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x11);
1734 e6e5ad80 bellard
        break;
1735 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 2):
1736 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x13);
1737 e6e5ad80 bellard
        break;
1738 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 3):
1739 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x15);
1740 e6e5ad80 bellard
        break;
1741 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTWIDTH + 0):
1742 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x20);
1743 e6e5ad80 bellard
        break;
1744 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTWIDTH + 1):
1745 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x21);
1746 e6e5ad80 bellard
        break;
1747 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTHEIGHT + 0):
1748 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x22);
1749 e6e5ad80 bellard
        break;
1750 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTHEIGHT + 1):
1751 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x23);
1752 e6e5ad80 bellard
        break;
1753 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTPITCH + 0):
1754 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x24);
1755 e6e5ad80 bellard
        break;
1756 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTPITCH + 1):
1757 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x25);
1758 e6e5ad80 bellard
        break;
1759 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCPITCH + 0):
1760 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x26);
1761 e6e5ad80 bellard
        break;
1762 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCPITCH + 1):
1763 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x27);
1764 e6e5ad80 bellard
        break;
1765 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 0):
1766 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x28);
1767 e6e5ad80 bellard
        break;
1768 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 1):
1769 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x29);
1770 e6e5ad80 bellard
        break;
1771 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 2):
1772 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x2a);
1773 e6e5ad80 bellard
        break;
1774 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 0):
1775 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x2c);
1776 e6e5ad80 bellard
        break;
1777 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 1):
1778 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x2d);
1779 e6e5ad80 bellard
        break;
1780 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 2):
1781 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x2e);
1782 e6e5ad80 bellard
        break;
1783 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTWRITEMASK:
1784 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x2f);
1785 e6e5ad80 bellard
        break;
1786 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTMODE:
1787 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x30);
1788 e6e5ad80 bellard
        break;
1789 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTROP:
1790 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x32);
1791 e6e5ad80 bellard
        break;
1792 a21ae81d bellard
    case CIRRUS_MMIO_BLTMODEEXT:
1793 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x33);
1794 a21ae81d bellard
        break;
1795 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 0):
1796 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x34);
1797 e6e5ad80 bellard
        break;
1798 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 1):
1799 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x35);
1800 e6e5ad80 bellard
        break;
1801 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 0):
1802 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x38);
1803 e6e5ad80 bellard
        break;
1804 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 1):
1805 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x39);
1806 e6e5ad80 bellard
        break;
1807 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTSTATUS:
1808 f705db9d Juan Quintela
        value = cirrus_vga_read_gr(s, 0x31);
1809 e6e5ad80 bellard
        break;
1810 e6e5ad80 bellard
    default:
1811 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1812 e6e5ad80 bellard
        printf("cirrus: mmio read - address 0x%04x\n", address);
1813 e6e5ad80 bellard
#endif
1814 e6e5ad80 bellard
        break;
1815 e6e5ad80 bellard
    }
1816 e6e5ad80 bellard
1817 e6e5ad80 bellard
    return (uint8_t) value;
1818 e6e5ad80 bellard
}
1819 e6e5ad80 bellard
1820 e6e5ad80 bellard
static void cirrus_mmio_blt_write(CirrusVGAState * s, unsigned address,
1821 e6e5ad80 bellard
                                  uint8_t value)
1822 e6e5ad80 bellard
{
1823 e6e5ad80 bellard
    switch (address) {
1824 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 0):
1825 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x00, value);
1826 e6e5ad80 bellard
        break;
1827 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 1):
1828 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x10, value);
1829 e6e5ad80 bellard
        break;
1830 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 2):
1831 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x12, value);
1832 e6e5ad80 bellard
        break;
1833 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTBGCOLOR + 3):
1834 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x14, value);
1835 e6e5ad80 bellard
        break;
1836 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 0):
1837 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x01, value);
1838 e6e5ad80 bellard
        break;
1839 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 1):
1840 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x11, value);
1841 e6e5ad80 bellard
        break;
1842 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 2):
1843 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x13, value);
1844 e6e5ad80 bellard
        break;
1845 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTFGCOLOR + 3):
1846 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x15, value);
1847 e6e5ad80 bellard
        break;
1848 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTWIDTH + 0):
1849 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x20, value);
1850 e6e5ad80 bellard
        break;
1851 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTWIDTH + 1):
1852 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x21, value);
1853 e6e5ad80 bellard
        break;
1854 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTHEIGHT + 0):
1855 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x22, value);
1856 e6e5ad80 bellard
        break;
1857 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTHEIGHT + 1):
1858 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x23, value);
1859 e6e5ad80 bellard
        break;
1860 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTPITCH + 0):
1861 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x24, value);
1862 e6e5ad80 bellard
        break;
1863 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTPITCH + 1):
1864 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x25, value);
1865 e6e5ad80 bellard
        break;
1866 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCPITCH + 0):
1867 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x26, value);
1868 e6e5ad80 bellard
        break;
1869 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCPITCH + 1):
1870 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x27, value);
1871 e6e5ad80 bellard
        break;
1872 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 0):
1873 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x28, value);
1874 e6e5ad80 bellard
        break;
1875 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 1):
1876 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x29, value);
1877 e6e5ad80 bellard
        break;
1878 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 2):
1879 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x2a, value);
1880 e6e5ad80 bellard
        break;
1881 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTDESTADDR + 3):
1882 e6e5ad80 bellard
        /* ignored */
1883 e6e5ad80 bellard
        break;
1884 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 0):
1885 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x2c, value);
1886 e6e5ad80 bellard
        break;
1887 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 1):
1888 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x2d, value);
1889 e6e5ad80 bellard
        break;
1890 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTSRCADDR + 2):
1891 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x2e, value);
1892 e6e5ad80 bellard
        break;
1893 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTWRITEMASK:
1894 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x2f, value);
1895 e6e5ad80 bellard
        break;
1896 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTMODE:
1897 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x30, value);
1898 e6e5ad80 bellard
        break;
1899 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTROP:
1900 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x32, value);
1901 e6e5ad80 bellard
        break;
1902 a21ae81d bellard
    case CIRRUS_MMIO_BLTMODEEXT:
1903 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x33, value);
1904 a21ae81d bellard
        break;
1905 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 0):
1906 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x34, value);
1907 e6e5ad80 bellard
        break;
1908 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 1):
1909 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x35, value);
1910 e6e5ad80 bellard
        break;
1911 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 0):
1912 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x38, value);
1913 e6e5ad80 bellard
        break;
1914 e6e5ad80 bellard
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 1):
1915 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x39, value);
1916 e6e5ad80 bellard
        break;
1917 e6e5ad80 bellard
    case CIRRUS_MMIO_BLTSTATUS:
1918 22286bc6 Juan Quintela
        cirrus_vga_write_gr(s, 0x31, value);
1919 e6e5ad80 bellard
        break;
1920 e6e5ad80 bellard
    default:
1921 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
1922 e6e5ad80 bellard
        printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1923 e6e5ad80 bellard
               address, value);
1924 e6e5ad80 bellard
#endif
1925 e6e5ad80 bellard
        break;
1926 e6e5ad80 bellard
    }
1927 e6e5ad80 bellard
}
1928 e6e5ad80 bellard
1929 e6e5ad80 bellard
/***************************************
1930 e6e5ad80 bellard
 *
1931 e6e5ad80 bellard
 *  write mode 4/5
1932 e6e5ad80 bellard
 *
1933 e6e5ad80 bellard
 * assume TARGET_PAGE_SIZE >= 16
1934 e6e5ad80 bellard
 *
1935 e6e5ad80 bellard
 ***************************************/
1936 e6e5ad80 bellard
1937 e6e5ad80 bellard
static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState * s,
1938 e6e5ad80 bellard
                                             unsigned mode,
1939 e6e5ad80 bellard
                                             unsigned offset,
1940 e6e5ad80 bellard
                                             uint32_t mem_value)
1941 e6e5ad80 bellard
{
1942 e6e5ad80 bellard
    int x;
1943 e6e5ad80 bellard
    unsigned val = mem_value;
1944 e6e5ad80 bellard
    uint8_t *dst;
1945 e6e5ad80 bellard
1946 4e12cd94 Avi Kivity
    dst = s->vga.vram_ptr + (offset &= s->cirrus_addr_mask);
1947 e6e5ad80 bellard
    for (x = 0; x < 8; x++) {
1948 e6e5ad80 bellard
        if (val & 0x80) {
1949 0b74ed78 bellard
            *dst = s->cirrus_shadow_gr1;
1950 e6e5ad80 bellard
        } else if (mode == 5) {
1951 0b74ed78 bellard
            *dst = s->cirrus_shadow_gr0;
1952 e6e5ad80 bellard
        }
1953 e6e5ad80 bellard
        val <<= 1;
1954 0b74ed78 bellard
        dst++;
1955 e6e5ad80 bellard
    }
1956 4e12cd94 Avi Kivity
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset);
1957 4e12cd94 Avi Kivity
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset + 7);
1958 e6e5ad80 bellard
}
1959 e6e5ad80 bellard
1960 e6e5ad80 bellard
static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState * s,
1961 e6e5ad80 bellard
                                              unsigned mode,
1962 e6e5ad80 bellard
                                              unsigned offset,
1963 e6e5ad80 bellard
                                              uint32_t mem_value)
1964 e6e5ad80 bellard
{
1965 e6e5ad80 bellard
    int x;
1966 e6e5ad80 bellard
    unsigned val = mem_value;
1967 e6e5ad80 bellard
    uint8_t *dst;
1968 e6e5ad80 bellard
1969 4e12cd94 Avi Kivity
    dst = s->vga.vram_ptr + (offset &= s->cirrus_addr_mask);
1970 e6e5ad80 bellard
    for (x = 0; x < 8; x++) {
1971 e6e5ad80 bellard
        if (val & 0x80) {
1972 0b74ed78 bellard
            *dst = s->cirrus_shadow_gr1;
1973 4e12cd94 Avi Kivity
            *(dst + 1) = s->vga.gr[0x11];
1974 e6e5ad80 bellard
        } else if (mode == 5) {
1975 0b74ed78 bellard
            *dst = s->cirrus_shadow_gr0;
1976 4e12cd94 Avi Kivity
            *(dst + 1) = s->vga.gr[0x10];
1977 e6e5ad80 bellard
        }
1978 e6e5ad80 bellard
        val <<= 1;
1979 0b74ed78 bellard
        dst += 2;
1980 e6e5ad80 bellard
    }
1981 4e12cd94 Avi Kivity
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset);
1982 4e12cd94 Avi Kivity
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset + 15);
1983 e6e5ad80 bellard
}
1984 e6e5ad80 bellard
1985 e6e5ad80 bellard
/***************************************
1986 e6e5ad80 bellard
 *
1987 e6e5ad80 bellard
 *  memory access between 0xa0000-0xbffff
1988 e6e5ad80 bellard
 *
1989 e6e5ad80 bellard
 ***************************************/
1990 e6e5ad80 bellard
1991 e6e5ad80 bellard
static uint32_t cirrus_vga_mem_readb(void *opaque, target_phys_addr_t addr)
1992 e6e5ad80 bellard
{
1993 e6e5ad80 bellard
    CirrusVGAState *s = opaque;
1994 e6e5ad80 bellard
    unsigned bank_index;
1995 e6e5ad80 bellard
    unsigned bank_offset;
1996 e6e5ad80 bellard
    uint32_t val;
1997 e6e5ad80 bellard
1998 4e12cd94 Avi Kivity
    if ((s->vga.sr[0x07] & 0x01) == 0) {
1999 e6e5ad80 bellard
        return vga_mem_readb(s, addr);
2000 e6e5ad80 bellard
    }
2001 e6e5ad80 bellard
2002 aeb3c85f bellard
    addr &= 0x1ffff;
2003 aeb3c85f bellard
2004 e6e5ad80 bellard
    if (addr < 0x10000) {
2005 e6e5ad80 bellard
        /* XXX handle bitblt */
2006 e6e5ad80 bellard
        /* video memory */
2007 e6e5ad80 bellard
        bank_index = addr >> 15;
2008 e6e5ad80 bellard
        bank_offset = addr & 0x7fff;
2009 e6e5ad80 bellard
        if (bank_offset < s->cirrus_bank_limit[bank_index]) {
2010 e6e5ad80 bellard
            bank_offset += s->cirrus_bank_base[bank_index];
2011 4e12cd94 Avi Kivity
            if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2012 e6e5ad80 bellard
                bank_offset <<= 4;
2013 4e12cd94 Avi Kivity
            } else if (s->vga.gr[0x0B] & 0x02) {
2014 e6e5ad80 bellard
                bank_offset <<= 3;
2015 e6e5ad80 bellard
            }
2016 e6e5ad80 bellard
            bank_offset &= s->cirrus_addr_mask;
2017 4e12cd94 Avi Kivity
            val = *(s->vga.vram_ptr + bank_offset);
2018 e6e5ad80 bellard
        } else
2019 e6e5ad80 bellard
            val = 0xff;
2020 e6e5ad80 bellard
    } else if (addr >= 0x18000 && addr < 0x18100) {
2021 e6e5ad80 bellard
        /* memory-mapped I/O */
2022 e6e5ad80 bellard
        val = 0xff;
2023 4e12cd94 Avi Kivity
        if ((s->vga.sr[0x17] & 0x44) == 0x04) {
2024 e6e5ad80 bellard
            val = cirrus_mmio_blt_read(s, addr & 0xff);
2025 e6e5ad80 bellard
        }
2026 e6e5ad80 bellard
    } else {
2027 e6e5ad80 bellard
        val = 0xff;
2028 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
2029 0bf9e31a Blue Swirl
        printf("cirrus: mem_readb " TARGET_FMT_plx "\n", addr);
2030 e6e5ad80 bellard
#endif
2031 e6e5ad80 bellard
    }
2032 e6e5ad80 bellard
    return val;
2033 e6e5ad80 bellard
}
2034 e6e5ad80 bellard
2035 e6e5ad80 bellard
static uint32_t cirrus_vga_mem_readw(void *opaque, target_phys_addr_t addr)
2036 e6e5ad80 bellard
{
2037 e6e5ad80 bellard
    uint32_t v;
2038 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2039 e6e5ad80 bellard
    v = cirrus_vga_mem_readb(opaque, addr) << 8;
2040 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 1);
2041 e6e5ad80 bellard
#else
2042 e6e5ad80 bellard
    v = cirrus_vga_mem_readb(opaque, addr);
2043 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 8;
2044 e6e5ad80 bellard
#endif
2045 e6e5ad80 bellard
    return v;
2046 e6e5ad80 bellard
}
2047 e6e5ad80 bellard
2048 e6e5ad80 bellard
static uint32_t cirrus_vga_mem_readl(void *opaque, target_phys_addr_t addr)
2049 e6e5ad80 bellard
{
2050 e6e5ad80 bellard
    uint32_t v;
2051 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2052 e6e5ad80 bellard
    v = cirrus_vga_mem_readb(opaque, addr) << 24;
2053 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 16;
2054 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 2) << 8;
2055 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 3);
2056 e6e5ad80 bellard
#else
2057 e6e5ad80 bellard
    v = cirrus_vga_mem_readb(opaque, addr);
2058 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 8;
2059 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 2) << 16;
2060 e6e5ad80 bellard
    v |= cirrus_vga_mem_readb(opaque, addr + 3) << 24;
2061 e6e5ad80 bellard
#endif
2062 e6e5ad80 bellard
    return v;
2063 e6e5ad80 bellard
}
2064 e6e5ad80 bellard
2065 5fafdf24 ths
static void cirrus_vga_mem_writeb(void *opaque, target_phys_addr_t addr,
2066 e6e5ad80 bellard
                                  uint32_t mem_value)
2067 e6e5ad80 bellard
{
2068 e6e5ad80 bellard
    CirrusVGAState *s = opaque;
2069 e6e5ad80 bellard
    unsigned bank_index;
2070 e6e5ad80 bellard
    unsigned bank_offset;
2071 e6e5ad80 bellard
    unsigned mode;
2072 e6e5ad80 bellard
2073 4e12cd94 Avi Kivity
    if ((s->vga.sr[0x07] & 0x01) == 0) {
2074 e6e5ad80 bellard
        vga_mem_writeb(s, addr, mem_value);
2075 e6e5ad80 bellard
        return;
2076 e6e5ad80 bellard
    }
2077 e6e5ad80 bellard
2078 aeb3c85f bellard
    addr &= 0x1ffff;
2079 aeb3c85f bellard
2080 e6e5ad80 bellard
    if (addr < 0x10000) {
2081 e6e5ad80 bellard
        if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2082 e6e5ad80 bellard
            /* bitblt */
2083 e6e5ad80 bellard
            *s->cirrus_srcptr++ = (uint8_t) mem_value;
2084 a5082316 bellard
            if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2085 e6e5ad80 bellard
                cirrus_bitblt_cputovideo_next(s);
2086 e6e5ad80 bellard
            }
2087 e6e5ad80 bellard
        } else {
2088 e6e5ad80 bellard
            /* video memory */
2089 e6e5ad80 bellard
            bank_index = addr >> 15;
2090 e6e5ad80 bellard
            bank_offset = addr & 0x7fff;
2091 e6e5ad80 bellard
            if (bank_offset < s->cirrus_bank_limit[bank_index]) {
2092 e6e5ad80 bellard
                bank_offset += s->cirrus_bank_base[bank_index];
2093 4e12cd94 Avi Kivity
                if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2094 e6e5ad80 bellard
                    bank_offset <<= 4;
2095 4e12cd94 Avi Kivity
                } else if (s->vga.gr[0x0B] & 0x02) {
2096 e6e5ad80 bellard
                    bank_offset <<= 3;
2097 e6e5ad80 bellard
                }
2098 e6e5ad80 bellard
                bank_offset &= s->cirrus_addr_mask;
2099 4e12cd94 Avi Kivity
                mode = s->vga.gr[0x05] & 0x7;
2100 4e12cd94 Avi Kivity
                if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2101 4e12cd94 Avi Kivity
                    *(s->vga.vram_ptr + bank_offset) = mem_value;
2102 4e12cd94 Avi Kivity
                    cpu_physical_memory_set_dirty(s->vga.vram_offset +
2103 e6e5ad80 bellard
                                                  bank_offset);
2104 e6e5ad80 bellard
                } else {
2105 4e12cd94 Avi Kivity
                    if ((s->vga.gr[0x0B] & 0x14) != 0x14) {
2106 e6e5ad80 bellard
                        cirrus_mem_writeb_mode4and5_8bpp(s, mode,
2107 e6e5ad80 bellard
                                                         bank_offset,
2108 e6e5ad80 bellard
                                                         mem_value);
2109 e6e5ad80 bellard
                    } else {
2110 e6e5ad80 bellard
                        cirrus_mem_writeb_mode4and5_16bpp(s, mode,
2111 e6e5ad80 bellard
                                                          bank_offset,
2112 e6e5ad80 bellard
                                                          mem_value);
2113 e6e5ad80 bellard
                    }
2114 e6e5ad80 bellard
                }
2115 e6e5ad80 bellard
            }
2116 e6e5ad80 bellard
        }
2117 e6e5ad80 bellard
    } else if (addr >= 0x18000 && addr < 0x18100) {
2118 e6e5ad80 bellard
        /* memory-mapped I/O */
2119 4e12cd94 Avi Kivity
        if ((s->vga.sr[0x17] & 0x44) == 0x04) {
2120 e6e5ad80 bellard
            cirrus_mmio_blt_write(s, addr & 0xff, mem_value);
2121 e6e5ad80 bellard
        }
2122 e6e5ad80 bellard
    } else {
2123 e6e5ad80 bellard
#ifdef DEBUG_CIRRUS
2124 0bf9e31a Blue Swirl
        printf("cirrus: mem_writeb " TARGET_FMT_plx " value %02x\n", addr,
2125 0bf9e31a Blue Swirl
               mem_value);
2126 e6e5ad80 bellard
#endif
2127 e6e5ad80 bellard
    }
2128 e6e5ad80 bellard
}
2129 e6e5ad80 bellard
2130 e6e5ad80 bellard
static void cirrus_vga_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val)
2131 e6e5ad80 bellard
{
2132 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2133 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr, (val >> 8) & 0xff);
2134 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 1, val & 0xff);
2135 e6e5ad80 bellard
#else
2136 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr, val & 0xff);
2137 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2138 e6e5ad80 bellard
#endif
2139 e6e5ad80 bellard
}
2140 e6e5ad80 bellard
2141 e6e5ad80 bellard
static void cirrus_vga_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
2142 e6e5ad80 bellard
{
2143 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2144 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr, (val >> 24) & 0xff);
2145 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2146 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2147 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 3, val & 0xff);
2148 e6e5ad80 bellard
#else
2149 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr, val & 0xff);
2150 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2151 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2152 e6e5ad80 bellard
    cirrus_vga_mem_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2153 e6e5ad80 bellard
#endif
2154 e6e5ad80 bellard
}
2155 e6e5ad80 bellard
2156 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const cirrus_vga_mem_read[3] = {
2157 e6e5ad80 bellard
    cirrus_vga_mem_readb,
2158 e6e5ad80 bellard
    cirrus_vga_mem_readw,
2159 e6e5ad80 bellard
    cirrus_vga_mem_readl,
2160 e6e5ad80 bellard
};
2161 e6e5ad80 bellard
2162 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const cirrus_vga_mem_write[3] = {
2163 e6e5ad80 bellard
    cirrus_vga_mem_writeb,
2164 e6e5ad80 bellard
    cirrus_vga_mem_writew,
2165 e6e5ad80 bellard
    cirrus_vga_mem_writel,
2166 e6e5ad80 bellard
};
2167 e6e5ad80 bellard
2168 e6e5ad80 bellard
/***************************************
2169 e6e5ad80 bellard
 *
2170 a5082316 bellard
 *  hardware cursor
2171 a5082316 bellard
 *
2172 a5082316 bellard
 ***************************************/
2173 a5082316 bellard
2174 a5082316 bellard
static inline void invalidate_cursor1(CirrusVGAState *s)
2175 a5082316 bellard
{
2176 a5082316 bellard
    if (s->last_hw_cursor_size) {
2177 4e12cd94 Avi Kivity
        vga_invalidate_scanlines(&s->vga,
2178 a5082316 bellard
                                 s->last_hw_cursor_y + s->last_hw_cursor_y_start,
2179 a5082316 bellard
                                 s->last_hw_cursor_y + s->last_hw_cursor_y_end);
2180 a5082316 bellard
    }
2181 a5082316 bellard
}
2182 a5082316 bellard
2183 a5082316 bellard
static inline void cirrus_cursor_compute_yrange(CirrusVGAState *s)
2184 a5082316 bellard
{
2185 a5082316 bellard
    const uint8_t *src;
2186 a5082316 bellard
    uint32_t content;
2187 a5082316 bellard
    int y, y_min, y_max;
2188 a5082316 bellard
2189 4e12cd94 Avi Kivity
    src = s->vga.vram_ptr + s->real_vram_size - 16 * 1024;
2190 4e12cd94 Avi Kivity
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2191 4e12cd94 Avi Kivity
        src += (s->vga.sr[0x13] & 0x3c) * 256;
2192 a5082316 bellard
        y_min = 64;
2193 a5082316 bellard
        y_max = -1;
2194 a5082316 bellard
        for(y = 0; y < 64; y++) {
2195 a5082316 bellard
            content = ((uint32_t *)src)[0] |
2196 a5082316 bellard
                ((uint32_t *)src)[1] |
2197 a5082316 bellard
                ((uint32_t *)src)[2] |
2198 a5082316 bellard
                ((uint32_t *)src)[3];
2199 a5082316 bellard
            if (content) {
2200 a5082316 bellard
                if (y < y_min)
2201 a5082316 bellard
                    y_min = y;
2202 a5082316 bellard
                if (y > y_max)
2203 a5082316 bellard
                    y_max = y;
2204 a5082316 bellard
            }
2205 a5082316 bellard
            src += 16;
2206 a5082316 bellard
        }
2207 a5082316 bellard
    } else {
2208 4e12cd94 Avi Kivity
        src += (s->vga.sr[0x13] & 0x3f) * 256;
2209 a5082316 bellard
        y_min = 32;
2210 a5082316 bellard
        y_max = -1;
2211 a5082316 bellard
        for(y = 0; y < 32; y++) {
2212 a5082316 bellard
            content = ((uint32_t *)src)[0] |
2213 a5082316 bellard
                ((uint32_t *)(src + 128))[0];
2214 a5082316 bellard
            if (content) {
2215 a5082316 bellard
                if (y < y_min)
2216 a5082316 bellard
                    y_min = y;
2217 a5082316 bellard
                if (y > y_max)
2218 a5082316 bellard
                    y_max = y;
2219 a5082316 bellard
            }
2220 a5082316 bellard
            src += 4;
2221 a5082316 bellard
        }
2222 a5082316 bellard
    }
2223 a5082316 bellard
    if (y_min > y_max) {
2224 a5082316 bellard
        s->last_hw_cursor_y_start = 0;
2225 a5082316 bellard
        s->last_hw_cursor_y_end = 0;
2226 a5082316 bellard
    } else {
2227 a5082316 bellard
        s->last_hw_cursor_y_start = y_min;
2228 a5082316 bellard
        s->last_hw_cursor_y_end = y_max + 1;
2229 a5082316 bellard
    }
2230 a5082316 bellard
}
2231 a5082316 bellard
2232 a5082316 bellard
/* NOTE: we do not currently handle the cursor bitmap change, so we
2233 a5082316 bellard
   update the cursor only if it moves. */
2234 a4a2f59c Juan Quintela
static void cirrus_cursor_invalidate(VGACommonState *s1)
2235 a5082316 bellard
{
2236 4e12cd94 Avi Kivity
    CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
2237 a5082316 bellard
    int size;
2238 a5082316 bellard
2239 4e12cd94 Avi Kivity
    if (!(s->vga.sr[0x12] & CIRRUS_CURSOR_SHOW)) {
2240 a5082316 bellard
        size = 0;
2241 a5082316 bellard
    } else {
2242 4e12cd94 Avi Kivity
        if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE)
2243 a5082316 bellard
            size = 64;
2244 a5082316 bellard
        else
2245 a5082316 bellard
            size = 32;
2246 a5082316 bellard
    }
2247 a5082316 bellard
    /* invalidate last cursor and new cursor if any change */
2248 a5082316 bellard
    if (s->last_hw_cursor_size != size ||
2249 a5082316 bellard
        s->last_hw_cursor_x != s->hw_cursor_x ||
2250 a5082316 bellard
        s->last_hw_cursor_y != s->hw_cursor_y) {
2251 a5082316 bellard
2252 a5082316 bellard
        invalidate_cursor1(s);
2253 3b46e624 ths
2254 a5082316 bellard
        s->last_hw_cursor_size = size;
2255 a5082316 bellard
        s->last_hw_cursor_x = s->hw_cursor_x;
2256 a5082316 bellard
        s->last_hw_cursor_y = s->hw_cursor_y;
2257 a5082316 bellard
        /* compute the real cursor min and max y */
2258 a5082316 bellard
        cirrus_cursor_compute_yrange(s);
2259 a5082316 bellard
        invalidate_cursor1(s);
2260 a5082316 bellard
    }
2261 a5082316 bellard
}
2262 a5082316 bellard
2263 a4a2f59c Juan Quintela
static void cirrus_cursor_draw_line(VGACommonState *s1, uint8_t *d1, int scr_y)
2264 a5082316 bellard
{
2265 4e12cd94 Avi Kivity
    CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
2266 a5082316 bellard
    int w, h, bpp, x1, x2, poffset;
2267 a5082316 bellard
    unsigned int color0, color1;
2268 a5082316 bellard
    const uint8_t *palette, *src;
2269 a5082316 bellard
    uint32_t content;
2270 3b46e624 ths
2271 4e12cd94 Avi Kivity
    if (!(s->vga.sr[0x12] & CIRRUS_CURSOR_SHOW))
2272 a5082316 bellard
        return;
2273 a5082316 bellard
    /* fast test to see if the cursor intersects with the scan line */
2274 4e12cd94 Avi Kivity
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2275 a5082316 bellard
        h = 64;
2276 a5082316 bellard
    } else {
2277 a5082316 bellard
        h = 32;
2278 a5082316 bellard
    }
2279 a5082316 bellard
    if (scr_y < s->hw_cursor_y ||
2280 a5082316 bellard
        scr_y >= (s->hw_cursor_y + h))
2281 a5082316 bellard
        return;
2282 3b46e624 ths
2283 4e12cd94 Avi Kivity
    src = s->vga.vram_ptr + s->real_vram_size - 16 * 1024;
2284 4e12cd94 Avi Kivity
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2285 4e12cd94 Avi Kivity
        src += (s->vga.sr[0x13] & 0x3c) * 256;
2286 a5082316 bellard
        src += (scr_y - s->hw_cursor_y) * 16;
2287 a5082316 bellard
        poffset = 8;
2288 a5082316 bellard
        content = ((uint32_t *)src)[0] |
2289 a5082316 bellard
            ((uint32_t *)src)[1] |
2290 a5082316 bellard
            ((uint32_t *)src)[2] |
2291 a5082316 bellard
            ((uint32_t *)src)[3];
2292 a5082316 bellard
    } else {
2293 4e12cd94 Avi Kivity
        src += (s->vga.sr[0x13] & 0x3f) * 256;
2294 a5082316 bellard
        src += (scr_y - s->hw_cursor_y) * 4;
2295 a5082316 bellard
        poffset = 128;
2296 a5082316 bellard
        content = ((uint32_t *)src)[0] |
2297 a5082316 bellard
            ((uint32_t *)(src + 128))[0];
2298 a5082316 bellard
    }
2299 a5082316 bellard
    /* if nothing to draw, no need to continue */
2300 a5082316 bellard
    if (!content)
2301 a5082316 bellard
        return;
2302 a5082316 bellard
    w = h;
2303 a5082316 bellard
2304 a5082316 bellard
    x1 = s->hw_cursor_x;
2305 4e12cd94 Avi Kivity
    if (x1 >= s->vga.last_scr_width)
2306 a5082316 bellard
        return;
2307 a5082316 bellard
    x2 = s->hw_cursor_x + w;
2308 4e12cd94 Avi Kivity
    if (x2 > s->vga.last_scr_width)
2309 4e12cd94 Avi Kivity
        x2 = s->vga.last_scr_width;
2310 a5082316 bellard
    w = x2 - x1;
2311 a5082316 bellard
    palette = s->cirrus_hidden_palette;
2312 4e12cd94 Avi Kivity
    color0 = s->vga.rgb_to_pixel(c6_to_8(palette[0x0 * 3]),
2313 4e12cd94 Avi Kivity
                                 c6_to_8(palette[0x0 * 3 + 1]),
2314 4e12cd94 Avi Kivity
                                 c6_to_8(palette[0x0 * 3 + 2]));
2315 4e12cd94 Avi Kivity
    color1 = s->vga.rgb_to_pixel(c6_to_8(palette[0xf * 3]),
2316 4e12cd94 Avi Kivity
                                 c6_to_8(palette[0xf * 3 + 1]),
2317 4e12cd94 Avi Kivity
                                 c6_to_8(palette[0xf * 3 + 2]));
2318 4e12cd94 Avi Kivity
    bpp = ((ds_get_bits_per_pixel(s->vga.ds) + 7) >> 3);
2319 a5082316 bellard
    d1 += x1 * bpp;
2320 4e12cd94 Avi Kivity
    switch(ds_get_bits_per_pixel(s->vga.ds)) {
2321 a5082316 bellard
    default:
2322 a5082316 bellard
        break;
2323 a5082316 bellard
    case 8:
2324 a5082316 bellard
        vga_draw_cursor_line_8(d1, src, poffset, w, color0, color1, 0xff);
2325 a5082316 bellard
        break;
2326 a5082316 bellard
    case 15:
2327 a5082316 bellard
        vga_draw_cursor_line_16(d1, src, poffset, w, color0, color1, 0x7fff);
2328 a5082316 bellard
        break;
2329 a5082316 bellard
    case 16:
2330 a5082316 bellard
        vga_draw_cursor_line_16(d1, src, poffset, w, color0, color1, 0xffff);
2331 a5082316 bellard
        break;
2332 a5082316 bellard
    case 32:
2333 a5082316 bellard
        vga_draw_cursor_line_32(d1, src, poffset, w, color0, color1, 0xffffff);
2334 a5082316 bellard
        break;
2335 a5082316 bellard
    }
2336 a5082316 bellard
}
2337 a5082316 bellard
2338 a5082316 bellard
/***************************************
2339 a5082316 bellard
 *
2340 e6e5ad80 bellard
 *  LFB memory access
2341 e6e5ad80 bellard
 *
2342 e6e5ad80 bellard
 ***************************************/
2343 e6e5ad80 bellard
2344 e6e5ad80 bellard
static uint32_t cirrus_linear_readb(void *opaque, target_phys_addr_t addr)
2345 e6e5ad80 bellard
{
2346 e05587e8 Juan Quintela
    CirrusVGAState *s = opaque;
2347 e6e5ad80 bellard
    uint32_t ret;
2348 e6e5ad80 bellard
2349 e6e5ad80 bellard
    addr &= s->cirrus_addr_mask;
2350 e6e5ad80 bellard
2351 4e12cd94 Avi Kivity
    if (((s->vga.sr[0x17] & 0x44) == 0x44) &&
2352 78e127ef bellard
        ((addr & s->linear_mmio_mask) == s->linear_mmio_mask)) {
2353 e6e5ad80 bellard
        /* memory-mapped I/O */
2354 e6e5ad80 bellard
        ret = cirrus_mmio_blt_read(s, addr & 0xff);
2355 e6e5ad80 bellard
    } else if (0) {
2356 e6e5ad80 bellard
        /* XXX handle bitblt */
2357 e6e5ad80 bellard
        ret = 0xff;
2358 e6e5ad80 bellard
    } else {
2359 e6e5ad80 bellard
        /* video memory */
2360 4e12cd94 Avi Kivity
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2361 e6e5ad80 bellard
            addr <<= 4;
2362 4e12cd94 Avi Kivity
        } else if (s->vga.gr[0x0B] & 0x02) {
2363 e6e5ad80 bellard
            addr <<= 3;
2364 e6e5ad80 bellard
        }
2365 e6e5ad80 bellard
        addr &= s->cirrus_addr_mask;
2366 4e12cd94 Avi Kivity
        ret = *(s->vga.vram_ptr + addr);
2367 e6e5ad80 bellard
    }
2368 e6e5ad80 bellard
2369 e6e5ad80 bellard
    return ret;
2370 e6e5ad80 bellard
}
2371 e6e5ad80 bellard
2372 e6e5ad80 bellard
static uint32_t cirrus_linear_readw(void *opaque, target_phys_addr_t addr)
2373 e6e5ad80 bellard
{
2374 e6e5ad80 bellard
    uint32_t v;
2375 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2376 e6e5ad80 bellard
    v = cirrus_linear_readb(opaque, addr) << 8;
2377 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 1);
2378 e6e5ad80 bellard
#else
2379 e6e5ad80 bellard
    v = cirrus_linear_readb(opaque, addr);
2380 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 1) << 8;
2381 e6e5ad80 bellard
#endif
2382 e6e5ad80 bellard
    return v;
2383 e6e5ad80 bellard
}
2384 e6e5ad80 bellard
2385 e6e5ad80 bellard
static uint32_t cirrus_linear_readl(void *opaque, target_phys_addr_t addr)
2386 e6e5ad80 bellard
{
2387 e6e5ad80 bellard
    uint32_t v;
2388 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2389 e6e5ad80 bellard
    v = cirrus_linear_readb(opaque, addr) << 24;
2390 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 1) << 16;
2391 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 2) << 8;
2392 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 3);
2393 e6e5ad80 bellard
#else
2394 e6e5ad80 bellard
    v = cirrus_linear_readb(opaque, addr);
2395 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 1) << 8;
2396 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 2) << 16;
2397 e6e5ad80 bellard
    v |= cirrus_linear_readb(opaque, addr + 3) << 24;
2398 e6e5ad80 bellard
#endif
2399 e6e5ad80 bellard
    return v;
2400 e6e5ad80 bellard
}
2401 e6e5ad80 bellard
2402 e6e5ad80 bellard
static void cirrus_linear_writeb(void *opaque, target_phys_addr_t addr,
2403 e6e5ad80 bellard
                                 uint32_t val)
2404 e6e5ad80 bellard
{
2405 e05587e8 Juan Quintela
    CirrusVGAState *s = opaque;
2406 e6e5ad80 bellard
    unsigned mode;
2407 e6e5ad80 bellard
2408 e6e5ad80 bellard
    addr &= s->cirrus_addr_mask;
2409 3b46e624 ths
2410 4e12cd94 Avi Kivity
    if (((s->vga.sr[0x17] & 0x44) == 0x44) &&
2411 78e127ef bellard
        ((addr & s->linear_mmio_mask) ==  s->linear_mmio_mask)) {
2412 e6e5ad80 bellard
        /* memory-mapped I/O */
2413 e6e5ad80 bellard
        cirrus_mmio_blt_write(s, addr & 0xff, val);
2414 e6e5ad80 bellard
    } else if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2415 e6e5ad80 bellard
        /* bitblt */
2416 e6e5ad80 bellard
        *s->cirrus_srcptr++ = (uint8_t) val;
2417 a5082316 bellard
        if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2418 e6e5ad80 bellard
            cirrus_bitblt_cputovideo_next(s);
2419 e6e5ad80 bellard
        }
2420 e6e5ad80 bellard
    } else {
2421 e6e5ad80 bellard
        /* video memory */
2422 4e12cd94 Avi Kivity
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2423 e6e5ad80 bellard
            addr <<= 4;
2424 4e12cd94 Avi Kivity
        } else if (s->vga.gr[0x0B] & 0x02) {
2425 e6e5ad80 bellard
            addr <<= 3;
2426 e6e5ad80 bellard
        }
2427 e6e5ad80 bellard
        addr &= s->cirrus_addr_mask;
2428 e6e5ad80 bellard
2429 4e12cd94 Avi Kivity
        mode = s->vga.gr[0x05] & 0x7;
2430 4e12cd94 Avi Kivity
        if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2431 4e12cd94 Avi Kivity
            *(s->vga.vram_ptr + addr) = (uint8_t) val;
2432 4e12cd94 Avi Kivity
            cpu_physical_memory_set_dirty(s->vga.vram_offset + addr);
2433 e6e5ad80 bellard
        } else {
2434 4e12cd94 Avi Kivity
            if ((s->vga.gr[0x0B] & 0x14) != 0x14) {
2435 e6e5ad80 bellard
                cirrus_mem_writeb_mode4and5_8bpp(s, mode, addr, val);
2436 e6e5ad80 bellard
            } else {
2437 e6e5ad80 bellard
                cirrus_mem_writeb_mode4and5_16bpp(s, mode, addr, val);
2438 e6e5ad80 bellard
            }
2439 e6e5ad80 bellard
        }
2440 e6e5ad80 bellard
    }
2441 e6e5ad80 bellard
}
2442 e6e5ad80 bellard
2443 e6e5ad80 bellard
static void cirrus_linear_writew(void *opaque, target_phys_addr_t addr,
2444 e6e5ad80 bellard
                                 uint32_t val)
2445 e6e5ad80 bellard
{
2446 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2447 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr, (val >> 8) & 0xff);
2448 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 1, val & 0xff);
2449 e6e5ad80 bellard
#else
2450 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr, val & 0xff);
2451 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2452 e6e5ad80 bellard
#endif
2453 e6e5ad80 bellard
}
2454 e6e5ad80 bellard
2455 e6e5ad80 bellard
static void cirrus_linear_writel(void *opaque, target_phys_addr_t addr,
2456 e6e5ad80 bellard
                                 uint32_t val)
2457 e6e5ad80 bellard
{
2458 e6e5ad80 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2459 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr, (val >> 24) & 0xff);
2460 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2461 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2462 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 3, val & 0xff);
2463 e6e5ad80 bellard
#else
2464 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr, val & 0xff);
2465 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2466 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2467 e6e5ad80 bellard
    cirrus_linear_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2468 e6e5ad80 bellard
#endif
2469 e6e5ad80 bellard
}
2470 e6e5ad80 bellard
2471 e6e5ad80 bellard
2472 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const cirrus_linear_read[3] = {
2473 e6e5ad80 bellard
    cirrus_linear_readb,
2474 e6e5ad80 bellard
    cirrus_linear_readw,
2475 e6e5ad80 bellard
    cirrus_linear_readl,
2476 e6e5ad80 bellard
};
2477 e6e5ad80 bellard
2478 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const cirrus_linear_write[3] = {
2479 e6e5ad80 bellard
    cirrus_linear_writeb,
2480 e6e5ad80 bellard
    cirrus_linear_writew,
2481 e6e5ad80 bellard
    cirrus_linear_writel,
2482 e6e5ad80 bellard
};
2483 e6e5ad80 bellard
2484 a5082316 bellard
/***************************************
2485 a5082316 bellard
 *
2486 a5082316 bellard
 *  system to screen memory access
2487 a5082316 bellard
 *
2488 a5082316 bellard
 ***************************************/
2489 a5082316 bellard
2490 a5082316 bellard
2491 a5082316 bellard
static uint32_t cirrus_linear_bitblt_readb(void *opaque, target_phys_addr_t addr)
2492 a5082316 bellard
{
2493 a5082316 bellard
    uint32_t ret;
2494 a5082316 bellard
2495 a5082316 bellard
    /* XXX handle bitblt */
2496 a5082316 bellard
    ret = 0xff;
2497 a5082316 bellard
    return ret;
2498 a5082316 bellard
}
2499 a5082316 bellard
2500 a5082316 bellard
static uint32_t cirrus_linear_bitblt_readw(void *opaque, target_phys_addr_t addr)
2501 a5082316 bellard
{
2502 a5082316 bellard
    uint32_t v;
2503 a5082316 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2504 a5082316 bellard
    v = cirrus_linear_bitblt_readb(opaque, addr) << 8;
2505 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1);
2506 a5082316 bellard
#else
2507 a5082316 bellard
    v = cirrus_linear_bitblt_readb(opaque, addr);
2508 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 8;
2509 a5082316 bellard
#endif
2510 a5082316 bellard
    return v;
2511 a5082316 bellard
}
2512 a5082316 bellard
2513 a5082316 bellard
static uint32_t cirrus_linear_bitblt_readl(void *opaque, target_phys_addr_t addr)
2514 a5082316 bellard
{
2515 a5082316 bellard
    uint32_t v;
2516 a5082316 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2517 a5082316 bellard
    v = cirrus_linear_bitblt_readb(opaque, addr) << 24;
2518 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 16;
2519 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 2) << 8;
2520 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 3);
2521 a5082316 bellard
#else
2522 a5082316 bellard
    v = cirrus_linear_bitblt_readb(opaque, addr);
2523 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 8;
2524 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 2) << 16;
2525 a5082316 bellard
    v |= cirrus_linear_bitblt_readb(opaque, addr + 3) << 24;
2526 a5082316 bellard
#endif
2527 a5082316 bellard
    return v;
2528 a5082316 bellard
}
2529 a5082316 bellard
2530 a5082316 bellard
static void cirrus_linear_bitblt_writeb(void *opaque, target_phys_addr_t addr,
2531 a5082316 bellard
                                 uint32_t val)
2532 a5082316 bellard
{
2533 e05587e8 Juan Quintela
    CirrusVGAState *s = opaque;
2534 a5082316 bellard
2535 a5082316 bellard
    if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2536 a5082316 bellard
        /* bitblt */
2537 a5082316 bellard
        *s->cirrus_srcptr++ = (uint8_t) val;
2538 a5082316 bellard
        if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2539 a5082316 bellard
            cirrus_bitblt_cputovideo_next(s);
2540 a5082316 bellard
        }
2541 a5082316 bellard
    }
2542 a5082316 bellard
}
2543 a5082316 bellard
2544 a5082316 bellard
static void cirrus_linear_bitblt_writew(void *opaque, target_phys_addr_t addr,
2545 a5082316 bellard
                                 uint32_t val)
2546 a5082316 bellard
{
2547 a5082316 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2548 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr, (val >> 8) & 0xff);
2549 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 1, val & 0xff);
2550 a5082316 bellard
#else
2551 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr, val & 0xff);
2552 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2553 a5082316 bellard
#endif
2554 a5082316 bellard
}
2555 a5082316 bellard
2556 a5082316 bellard
static void cirrus_linear_bitblt_writel(void *opaque, target_phys_addr_t addr,
2557 a5082316 bellard
                                 uint32_t val)
2558 a5082316 bellard
{
2559 a5082316 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2560 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr, (val >> 24) & 0xff);
2561 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2562 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2563 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 3, val & 0xff);
2564 a5082316 bellard
#else
2565 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr, val & 0xff);
2566 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2567 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2568 a5082316 bellard
    cirrus_linear_bitblt_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2569 a5082316 bellard
#endif
2570 a5082316 bellard
}
2571 a5082316 bellard
2572 a5082316 bellard
2573 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const cirrus_linear_bitblt_read[3] = {
2574 a5082316 bellard
    cirrus_linear_bitblt_readb,
2575 a5082316 bellard
    cirrus_linear_bitblt_readw,
2576 a5082316 bellard
    cirrus_linear_bitblt_readl,
2577 a5082316 bellard
};
2578 a5082316 bellard
2579 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const cirrus_linear_bitblt_write[3] = {
2580 a5082316 bellard
    cirrus_linear_bitblt_writeb,
2581 a5082316 bellard
    cirrus_linear_bitblt_writew,
2582 a5082316 bellard
    cirrus_linear_bitblt_writel,
2583 a5082316 bellard
};
2584 a5082316 bellard
2585 2bec46dc aliguori
static void map_linear_vram(CirrusVGAState *s)
2586 2bec46dc aliguori
{
2587 4e12cd94 Avi Kivity
    if (!s->vga.map_addr && s->vga.lfb_addr && s->vga.lfb_end) {
2588 4e12cd94 Avi Kivity
        s->vga.map_addr = s->vga.lfb_addr;
2589 4e12cd94 Avi Kivity
        s->vga.map_end = s->vga.lfb_end;
2590 4e12cd94 Avi Kivity
        cpu_register_physical_memory(s->vga.map_addr, s->vga.map_end - s->vga.map_addr, s->vga.vram_offset);
2591 2bec46dc aliguori
    }
2592 2bec46dc aliguori
2593 4e12cd94 Avi Kivity
    if (!s->vga.map_addr)
2594 2bec46dc aliguori
        return;
2595 2bec46dc aliguori
2596 4e12cd94 Avi Kivity
    s->vga.lfb_vram_mapped = 0;
2597 2bec46dc aliguori
2598 2bec46dc aliguori
    if (!(s->cirrus_srcptr != s->cirrus_srcptr_end)
2599 4e12cd94 Avi Kivity
        && !((s->vga.sr[0x07] & 0x01) == 0)
2600 4e12cd94 Avi Kivity
        && !((s->vga.gr[0x0B] & 0x14) == 0x14)
2601 4e12cd94 Avi Kivity
        && !(s->vga.gr[0x0B] & 0x02)) {
2602 2bec46dc aliguori
2603 2bec46dc aliguori
        cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x8000,
2604 4e12cd94 Avi Kivity
                                    (s->vga.vram_offset + s->cirrus_bank_base[0]) | IO_MEM_RAM);
2605 2bec46dc aliguori
        cpu_register_physical_memory(isa_mem_base + 0xa8000, 0x8000,
2606 4e12cd94 Avi Kivity
                                    (s->vga.vram_offset + s->cirrus_bank_base[1]) | IO_MEM_RAM);
2607 2bec46dc aliguori
2608 4e12cd94 Avi Kivity
        s->vga.lfb_vram_mapped = 1;
2609 2bec46dc aliguori
    }
2610 2bec46dc aliguori
    else {
2611 7cff316e aliguori
        cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
2612 4e12cd94 Avi Kivity
                                     s->vga.vga_io_memory);
2613 2bec46dc aliguori
    }
2614 2bec46dc aliguori
2615 4e12cd94 Avi Kivity
    vga_dirty_log_start(&s->vga);
2616 2bec46dc aliguori
}
2617 2bec46dc aliguori
2618 2bec46dc aliguori
static void unmap_linear_vram(CirrusVGAState *s)
2619 2bec46dc aliguori
{
2620 4e12cd94 Avi Kivity
    if (s->vga.map_addr && s->vga.lfb_addr && s->vga.lfb_end)
2621 4e12cd94 Avi Kivity
        s->vga.map_addr = s->vga.map_end = 0;
2622 2bec46dc aliguori
2623 2bec46dc aliguori
    cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
2624 4e12cd94 Avi Kivity
                                 s->vga.vga_io_memory);
2625 2bec46dc aliguori
}
2626 2bec46dc aliguori
2627 8926b517 bellard
/* Compute the memory access functions */
2628 8926b517 bellard
static void cirrus_update_memory_access(CirrusVGAState *s)
2629 8926b517 bellard
{
2630 8926b517 bellard
    unsigned mode;
2631 8926b517 bellard
2632 4e12cd94 Avi Kivity
    if ((s->vga.sr[0x17] & 0x44) == 0x44) {
2633 8926b517 bellard
        goto generic_io;
2634 8926b517 bellard
    } else if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2635 8926b517 bellard
        goto generic_io;
2636 8926b517 bellard
    } else {
2637 4e12cd94 Avi Kivity
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2638 8926b517 bellard
            goto generic_io;
2639 4e12cd94 Avi Kivity
        } else if (s->vga.gr[0x0B] & 0x02) {
2640 8926b517 bellard
            goto generic_io;
2641 8926b517 bellard
        }
2642 3b46e624 ths
2643 4e12cd94 Avi Kivity
        mode = s->vga.gr[0x05] & 0x7;
2644 4e12cd94 Avi Kivity
        if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2645 2bec46dc aliguori
            map_linear_vram(s);
2646 8926b517 bellard
        } else {
2647 8926b517 bellard
        generic_io:
2648 2bec46dc aliguori
            unmap_linear_vram(s);
2649 8926b517 bellard
        }
2650 8926b517 bellard
    }
2651 8926b517 bellard
}
2652 8926b517 bellard
2653 8926b517 bellard
2654 e6e5ad80 bellard
/* I/O ports */
2655 e6e5ad80 bellard
2656 0ceac75b Juan Quintela
static uint32_t cirrus_vga_ioport_read(void *opaque, uint32_t addr)
2657 e6e5ad80 bellard
{
2658 b6343073 Juan Quintela
    CirrusVGAState *c = opaque;
2659 b6343073 Juan Quintela
    VGACommonState *s = &c->vga;
2660 e6e5ad80 bellard
    int val, index;
2661 e6e5ad80 bellard
2662 b6343073 Juan Quintela
    if (vga_ioport_invalid(s, addr)) {
2663 e6e5ad80 bellard
        val = 0xff;
2664 e6e5ad80 bellard
    } else {
2665 e6e5ad80 bellard
        switch (addr) {
2666 e6e5ad80 bellard
        case 0x3c0:
2667 b6343073 Juan Quintela
            if (s->ar_flip_flop == 0) {
2668 b6343073 Juan Quintela
                val = s->ar_index;
2669 e6e5ad80 bellard
            } else {
2670 e6e5ad80 bellard
                val = 0;
2671 e6e5ad80 bellard
            }
2672 e6e5ad80 bellard
            break;
2673 e6e5ad80 bellard
        case 0x3c1:
2674 b6343073 Juan Quintela
            index = s->ar_index & 0x1f;
2675 e6e5ad80 bellard
            if (index < 21)
2676 b6343073 Juan Quintela
                val = s->ar[index];
2677 e6e5ad80 bellard
            else
2678 e6e5ad80 bellard
                val = 0;
2679 e6e5ad80 bellard
            break;
2680 e6e5ad80 bellard
        case 0x3c2:
2681 b6343073 Juan Quintela
            val = s->st00;
2682 e6e5ad80 bellard
            break;
2683 e6e5ad80 bellard
        case 0x3c4:
2684 b6343073 Juan Quintela
            val = s->sr_index;
2685 e6e5ad80 bellard
            break;
2686 e6e5ad80 bellard
        case 0x3c5:
2687 8a82c322 Juan Quintela
            val = cirrus_vga_read_sr(c);
2688 8a82c322 Juan Quintela
            break;
2689 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2690 b6343073 Juan Quintela
            printf("vga: read SR%x = 0x%02x\n", s->sr_index, val);
2691 e6e5ad80 bellard
#endif
2692 e6e5ad80 bellard
            break;
2693 e6e5ad80 bellard
        case 0x3c6:
2694 957c9db5 Juan Quintela
            val = cirrus_read_hidden_dac(c);
2695 e6e5ad80 bellard
            break;
2696 e6e5ad80 bellard
        case 0x3c7:
2697 b6343073 Juan Quintela
            val = s->dac_state;
2698 e6e5ad80 bellard
            break;
2699 ae184e4a bellard
        case 0x3c8:
2700 b6343073 Juan Quintela
            val = s->dac_write_index;
2701 b6343073 Juan Quintela
            c->cirrus_hidden_dac_lockindex = 0;
2702 ae184e4a bellard
            break;
2703 ae184e4a bellard
        case 0x3c9:
2704 5deaeee3 Juan Quintela
            val = cirrus_vga_read_palette(c);
2705 5deaeee3 Juan Quintela
            break;
2706 e6e5ad80 bellard
        case 0x3ca:
2707 b6343073 Juan Quintela
            val = s->fcr;
2708 e6e5ad80 bellard
            break;
2709 e6e5ad80 bellard
        case 0x3cc:
2710 b6343073 Juan Quintela
            val = s->msr;
2711 e6e5ad80 bellard
            break;
2712 e6e5ad80 bellard
        case 0x3ce:
2713 b6343073 Juan Quintela
            val = s->gr_index;
2714 e6e5ad80 bellard
            break;
2715 e6e5ad80 bellard
        case 0x3cf:
2716 f705db9d Juan Quintela
            val = cirrus_vga_read_gr(c, s->gr_index);
2717 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2718 b6343073 Juan Quintela
            printf("vga: read GR%x = 0x%02x\n", s->gr_index, val);
2719 e6e5ad80 bellard
#endif
2720 e6e5ad80 bellard
            break;
2721 e6e5ad80 bellard
        case 0x3b4:
2722 e6e5ad80 bellard
        case 0x3d4:
2723 b6343073 Juan Quintela
            val = s->cr_index;
2724 e6e5ad80 bellard
            break;
2725 e6e5ad80 bellard
        case 0x3b5:
2726 e6e5ad80 bellard
        case 0x3d5:
2727 b863d514 Juan Quintela
            val = cirrus_vga_read_cr(c, s->cr_index);
2728 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2729 b6343073 Juan Quintela
            printf("vga: read CR%x = 0x%02x\n", s->cr_index, val);
2730 e6e5ad80 bellard
#endif
2731 e6e5ad80 bellard
            break;
2732 e6e5ad80 bellard
        case 0x3ba:
2733 e6e5ad80 bellard
        case 0x3da:
2734 e6e5ad80 bellard
            /* just toggle to fool polling */
2735 b6343073 Juan Quintela
            val = s->st01 = s->retrace(s);
2736 b6343073 Juan Quintela
            s->ar_flip_flop = 0;
2737 e6e5ad80 bellard
            break;
2738 e6e5ad80 bellard
        default:
2739 e6e5ad80 bellard
            val = 0x00;
2740 e6e5ad80 bellard
            break;
2741 e6e5ad80 bellard
        }
2742 e6e5ad80 bellard
    }
2743 e6e5ad80 bellard
#if defined(DEBUG_VGA)
2744 e6e5ad80 bellard
    printf("VGA: read addr=0x%04x data=0x%02x\n", addr, val);
2745 e6e5ad80 bellard
#endif
2746 e6e5ad80 bellard
    return val;
2747 e6e5ad80 bellard
}
2748 e6e5ad80 bellard
2749 0ceac75b Juan Quintela
static void cirrus_vga_ioport_write(void *opaque, uint32_t addr, uint32_t val)
2750 e6e5ad80 bellard
{
2751 b6343073 Juan Quintela
    CirrusVGAState *c = opaque;
2752 b6343073 Juan Quintela
    VGACommonState *s = &c->vga;
2753 e6e5ad80 bellard
    int index;
2754 e6e5ad80 bellard
2755 e6e5ad80 bellard
    /* check port range access depending on color/monochrome mode */
2756 b6343073 Juan Quintela
    if (vga_ioport_invalid(s, addr)) {
2757 e6e5ad80 bellard
        return;
2758 25a18cbd Juan Quintela
    }
2759 e6e5ad80 bellard
#ifdef DEBUG_VGA
2760 e6e5ad80 bellard
    printf("VGA: write addr=0x%04x data=0x%02x\n", addr, val);
2761 e6e5ad80 bellard
#endif
2762 e6e5ad80 bellard
2763 e6e5ad80 bellard
    switch (addr) {
2764 e6e5ad80 bellard
    case 0x3c0:
2765 b6343073 Juan Quintela
        if (s->ar_flip_flop == 0) {
2766 e6e5ad80 bellard
            val &= 0x3f;
2767 b6343073 Juan Quintela
            s->ar_index = val;
2768 e6e5ad80 bellard
        } else {
2769 b6343073 Juan Quintela
            index = s->ar_index & 0x1f;
2770 e6e5ad80 bellard
            switch (index) {
2771 e6e5ad80 bellard
            case 0x00 ... 0x0f:
2772 b6343073 Juan Quintela
                s->ar[index] = val & 0x3f;
2773 e6e5ad80 bellard
                break;
2774 e6e5ad80 bellard
            case 0x10:
2775 b6343073 Juan Quintela
                s->ar[index] = val & ~0x10;
2776 e6e5ad80 bellard
                break;
2777 e6e5ad80 bellard
            case 0x11:
2778 b6343073 Juan Quintela
                s->ar[index] = val;
2779 e6e5ad80 bellard
                break;
2780 e6e5ad80 bellard
            case 0x12:
2781 b6343073 Juan Quintela
                s->ar[index] = val & ~0xc0;
2782 e6e5ad80 bellard
                break;
2783 e6e5ad80 bellard
            case 0x13:
2784 b6343073 Juan Quintela
                s->ar[index] = val & ~0xf0;
2785 e6e5ad80 bellard
                break;
2786 e6e5ad80 bellard
            case 0x14:
2787 b6343073 Juan Quintela
                s->ar[index] = val & ~0xf0;
2788 e6e5ad80 bellard
                break;
2789 e6e5ad80 bellard
            default:
2790 e6e5ad80 bellard
                break;
2791 e6e5ad80 bellard
            }
2792 e6e5ad80 bellard
        }
2793 b6343073 Juan Quintela
        s->ar_flip_flop ^= 1;
2794 e6e5ad80 bellard
        break;
2795 e6e5ad80 bellard
    case 0x3c2:
2796 b6343073 Juan Quintela
        s->msr = val & ~0x10;
2797 b6343073 Juan Quintela
        s->update_retrace_info(s);
2798 e6e5ad80 bellard
        break;
2799 e6e5ad80 bellard
    case 0x3c4:
2800 b6343073 Juan Quintela
        s->sr_index = val;
2801 e6e5ad80 bellard
        break;
2802 e6e5ad80 bellard
    case 0x3c5:
2803 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2804 b6343073 Juan Quintela
        printf("vga: write SR%x = 0x%02x\n", s->sr_index, val);
2805 e6e5ad80 bellard
#endif
2806 31c63201 Juan Quintela
        cirrus_vga_write_sr(c, val);
2807 31c63201 Juan Quintela
        break;
2808 e6e5ad80 bellard
        break;
2809 e6e5ad80 bellard
    case 0x3c6:
2810 b6343073 Juan Quintela
        cirrus_write_hidden_dac(c, val);
2811 e6e5ad80 bellard
        break;
2812 e6e5ad80 bellard
    case 0x3c7:
2813 b6343073 Juan Quintela
        s->dac_read_index = val;
2814 b6343073 Juan Quintela
        s->dac_sub_index = 0;
2815 b6343073 Juan Quintela
        s->dac_state = 3;
2816 e6e5ad80 bellard
        break;
2817 e6e5ad80 bellard
    case 0x3c8:
2818 b6343073 Juan Quintela
        s->dac_write_index = val;
2819 b6343073 Juan Quintela
        s->dac_sub_index = 0;
2820 b6343073 Juan Quintela
        s->dac_state = 0;
2821 e6e5ad80 bellard
        break;
2822 e6e5ad80 bellard
    case 0x3c9:
2823 86948bb1 Juan Quintela
        cirrus_vga_write_palette(c, val);
2824 86948bb1 Juan Quintela
        break;
2825 e6e5ad80 bellard
    case 0x3ce:
2826 b6343073 Juan Quintela
        s->gr_index = val;
2827 e6e5ad80 bellard
        break;
2828 e6e5ad80 bellard
    case 0x3cf:
2829 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2830 b6343073 Juan Quintela
        printf("vga: write GR%x = 0x%02x\n", s->gr_index, val);
2831 e6e5ad80 bellard
#endif
2832 22286bc6 Juan Quintela
        cirrus_vga_write_gr(c, s->gr_index, val);
2833 e6e5ad80 bellard
        break;
2834 e6e5ad80 bellard
    case 0x3b4:
2835 e6e5ad80 bellard
    case 0x3d4:
2836 b6343073 Juan Quintela
        s->cr_index = val;
2837 e6e5ad80 bellard
        break;
2838 e6e5ad80 bellard
    case 0x3b5:
2839 e6e5ad80 bellard
    case 0x3d5:
2840 e6e5ad80 bellard
#ifdef DEBUG_VGA_REG
2841 b6343073 Juan Quintela
        printf("vga: write CR%x = 0x%02x\n", s->cr_index, val);
2842 e6e5ad80 bellard
#endif
2843 4ec1ce04 Juan Quintela
        cirrus_vga_write_cr(c, val);
2844 e6e5ad80 bellard
        break;
2845 e6e5ad80 bellard
    case 0x3ba:
2846 e6e5ad80 bellard
    case 0x3da:
2847 b6343073 Juan Quintela
        s->fcr = val & 0x10;
2848 e6e5ad80 bellard
        break;
2849 e6e5ad80 bellard
    }
2850 e6e5ad80 bellard
}
2851 e6e5ad80 bellard
2852 e6e5ad80 bellard
/***************************************
2853 e6e5ad80 bellard
 *
2854 e36f36e1 bellard
 *  memory-mapped I/O access
2855 e36f36e1 bellard
 *
2856 e36f36e1 bellard
 ***************************************/
2857 e36f36e1 bellard
2858 e36f36e1 bellard
static uint32_t cirrus_mmio_readb(void *opaque, target_phys_addr_t addr)
2859 e36f36e1 bellard
{
2860 e05587e8 Juan Quintela
    CirrusVGAState *s = opaque;
2861 e36f36e1 bellard
2862 e36f36e1 bellard
    addr &= CIRRUS_PNPMMIO_SIZE - 1;
2863 e36f36e1 bellard
2864 e36f36e1 bellard
    if (addr >= 0x100) {
2865 e36f36e1 bellard
        return cirrus_mmio_blt_read(s, addr - 0x100);
2866 e36f36e1 bellard
    } else {
2867 0ceac75b Juan Quintela
        return cirrus_vga_ioport_read(s, addr + 0x3c0);
2868 e36f36e1 bellard
    }
2869 e36f36e1 bellard
}
2870 e36f36e1 bellard
2871 e36f36e1 bellard
static uint32_t cirrus_mmio_readw(void *opaque, target_phys_addr_t addr)
2872 e36f36e1 bellard
{
2873 e36f36e1 bellard
    uint32_t v;
2874 e36f36e1 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2875 e36f36e1 bellard
    v = cirrus_mmio_readb(opaque, addr) << 8;
2876 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 1);
2877 e36f36e1 bellard
#else
2878 e36f36e1 bellard
    v = cirrus_mmio_readb(opaque, addr);
2879 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 1) << 8;
2880 e36f36e1 bellard
#endif
2881 e36f36e1 bellard
    return v;
2882 e36f36e1 bellard
}
2883 e36f36e1 bellard
2884 e36f36e1 bellard
static uint32_t cirrus_mmio_readl(void *opaque, target_phys_addr_t addr)
2885 e36f36e1 bellard
{
2886 e36f36e1 bellard
    uint32_t v;
2887 e36f36e1 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2888 e36f36e1 bellard
    v = cirrus_mmio_readb(opaque, addr) << 24;
2889 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 1) << 16;
2890 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 2) << 8;
2891 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 3);
2892 e36f36e1 bellard
#else
2893 e36f36e1 bellard
    v = cirrus_mmio_readb(opaque, addr);
2894 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 1) << 8;
2895 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 2) << 16;
2896 e36f36e1 bellard
    v |= cirrus_mmio_readb(opaque, addr + 3) << 24;
2897 e36f36e1 bellard
#endif
2898 e36f36e1 bellard
    return v;
2899 e36f36e1 bellard
}
2900 e36f36e1 bellard
2901 e36f36e1 bellard
static void cirrus_mmio_writeb(void *opaque, target_phys_addr_t addr,
2902 e36f36e1 bellard
                               uint32_t val)
2903 e36f36e1 bellard
{
2904 e05587e8 Juan Quintela
    CirrusVGAState *s = opaque;
2905 e36f36e1 bellard
2906 e36f36e1 bellard
    addr &= CIRRUS_PNPMMIO_SIZE - 1;
2907 e36f36e1 bellard
2908 e36f36e1 bellard
    if (addr >= 0x100) {
2909 e36f36e1 bellard
        cirrus_mmio_blt_write(s, addr - 0x100, val);
2910 e36f36e1 bellard
    } else {
2911 0ceac75b Juan Quintela
        cirrus_vga_ioport_write(s, addr + 0x3c0, val);
2912 e36f36e1 bellard
    }
2913 e36f36e1 bellard
}
2914 e36f36e1 bellard
2915 e36f36e1 bellard
static void cirrus_mmio_writew(void *opaque, target_phys_addr_t addr,
2916 e36f36e1 bellard
                               uint32_t val)
2917 e36f36e1 bellard
{
2918 e36f36e1 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2919 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr, (val >> 8) & 0xff);
2920 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 1, val & 0xff);
2921 e36f36e1 bellard
#else
2922 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr, val & 0xff);
2923 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2924 e36f36e1 bellard
#endif
2925 e36f36e1 bellard
}
2926 e36f36e1 bellard
2927 e36f36e1 bellard
static void cirrus_mmio_writel(void *opaque, target_phys_addr_t addr,
2928 e36f36e1 bellard
                               uint32_t val)
2929 e36f36e1 bellard
{
2930 e36f36e1 bellard
#ifdef TARGET_WORDS_BIGENDIAN
2931 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr, (val >> 24) & 0xff);
2932 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2933 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2934 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 3, val & 0xff);
2935 e36f36e1 bellard
#else
2936 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr, val & 0xff);
2937 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2938 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2939 e36f36e1 bellard
    cirrus_mmio_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2940 e36f36e1 bellard
#endif
2941 e36f36e1 bellard
}
2942 e36f36e1 bellard
2943 e36f36e1 bellard
2944 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const cirrus_mmio_read[3] = {
2945 e36f36e1 bellard
    cirrus_mmio_readb,
2946 e36f36e1 bellard
    cirrus_mmio_readw,
2947 e36f36e1 bellard
    cirrus_mmio_readl,
2948 e36f36e1 bellard
};
2949 e36f36e1 bellard
2950 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const cirrus_mmio_write[3] = {
2951 e36f36e1 bellard
    cirrus_mmio_writeb,
2952 e36f36e1 bellard
    cirrus_mmio_writew,
2953 e36f36e1 bellard
    cirrus_mmio_writel,
2954 e36f36e1 bellard
};
2955 e36f36e1 bellard
2956 2c6ab832 bellard
/* load/save state */
2957 2c6ab832 bellard
2958 2c6ab832 bellard
static void cirrus_vga_save(QEMUFile *f, void *opaque)
2959 2c6ab832 bellard
{
2960 2c6ab832 bellard
    CirrusVGAState *s = opaque;
2961 2c6ab832 bellard
2962 4e12cd94 Avi Kivity
    qemu_put_be32s(f, &s->vga.latch);
2963 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.sr_index);
2964 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.sr, 256);
2965 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.gr_index);
2966 2c6ab832 bellard
    qemu_put_8s(f, &s->cirrus_shadow_gr0);
2967 2c6ab832 bellard
    qemu_put_8s(f, &s->cirrus_shadow_gr1);
2968 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.gr + 2, 254);
2969 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.ar_index);
2970 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.ar, 21);
2971 4e12cd94 Avi Kivity
    qemu_put_be32(f, s->vga.ar_flip_flop);
2972 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.cr_index);
2973 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.cr, 256);
2974 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.msr);
2975 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.fcr);
2976 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.st00);
2977 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.st01);
2978 4e12cd94 Avi Kivity
2979 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.dac_state);
2980 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.dac_sub_index);
2981 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.dac_read_index);
2982 4e12cd94 Avi Kivity
    qemu_put_8s(f, &s->vga.dac_write_index);
2983 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.dac_cache, 3);
2984 4e12cd94 Avi Kivity
    qemu_put_buffer(f, s->vga.palette, 768);
2985 4e12cd94 Avi Kivity
2986 4e12cd94 Avi Kivity
    qemu_put_be32(f, s->vga.bank_offset);
2987 2c6ab832 bellard
2988 2c6ab832 bellard
    qemu_put_8s(f, &s->cirrus_hidden_dac_lockindex);
2989 2c6ab832 bellard
    qemu_put_8s(f, &s->cirrus_hidden_dac_data);
2990 2c6ab832 bellard
2991 2c6ab832 bellard
    qemu_put_be32s(f, &s->hw_cursor_x);
2992 2c6ab832 bellard
    qemu_put_be32s(f, &s->hw_cursor_y);
2993 2c6ab832 bellard
    /* XXX: we do not save the bitblt state - we assume we do not save
2994 2c6ab832 bellard
       the state when the blitter is active */
2995 2c6ab832 bellard
}
2996 2c6ab832 bellard
2997 2c6ab832 bellard
static int cirrus_vga_load(QEMUFile *f, void *opaque, int version_id)
2998 2c6ab832 bellard
{
2999 2c6ab832 bellard
    CirrusVGAState *s = opaque;
3000 2c6ab832 bellard
3001 d2269f6f bellard
    if (version_id > 2)
3002 2c6ab832 bellard
        return -EINVAL;
3003 2c6ab832 bellard
3004 4e12cd94 Avi Kivity
    qemu_get_be32s(f, &s->vga.latch);
3005 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.sr_index);
3006 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.sr, 256);
3007 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.gr_index);
3008 2c6ab832 bellard
    qemu_get_8s(f, &s->cirrus_shadow_gr0);
3009 2c6ab832 bellard
    qemu_get_8s(f, &s->cirrus_shadow_gr1);
3010 4e12cd94 Avi Kivity
    s->vga.gr[0x00] = s->cirrus_shadow_gr0 & 0x0f;
3011 4e12cd94 Avi Kivity
    s->vga.gr[0x01] = s->cirrus_shadow_gr1 & 0x0f;
3012 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.gr + 2, 254);
3013 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.ar_index);
3014 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.ar, 21);
3015 4e12cd94 Avi Kivity
    s->vga.ar_flip_flop=qemu_get_be32(f);
3016 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.cr_index);
3017 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.cr, 256);
3018 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.msr);
3019 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.fcr);
3020 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.st00);
3021 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.st01);
3022 4e12cd94 Avi Kivity
3023 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.dac_state);
3024 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.dac_sub_index);
3025 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.dac_read_index);
3026 4e12cd94 Avi Kivity
    qemu_get_8s(f, &s->vga.dac_write_index);
3027 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.dac_cache, 3);
3028 4e12cd94 Avi Kivity
    qemu_get_buffer(f, s->vga.palette, 768);
3029 4e12cd94 Avi Kivity
3030 4e12cd94 Avi Kivity
    s->vga.bank_offset = qemu_get_be32(f);
3031 2c6ab832 bellard
3032 2c6ab832 bellard
    qemu_get_8s(f, &s->cirrus_hidden_dac_lockindex);
3033 2c6ab832 bellard
    qemu_get_8s(f, &s->cirrus_hidden_dac_data);
3034 2c6ab832 bellard
3035 2c6ab832 bellard
    qemu_get_be32s(f, &s->hw_cursor_x);
3036 2c6ab832 bellard
    qemu_get_be32s(f, &s->hw_cursor_y);
3037 2c6ab832 bellard
3038 2bec46dc aliguori
    cirrus_update_memory_access(s);
3039 2c6ab832 bellard
    /* force refresh */
3040 4e12cd94 Avi Kivity
    s->vga.graphic_mode = -1;
3041 2c6ab832 bellard
    cirrus_update_bank_ptr(s, 0);
3042 2c6ab832 bellard
    cirrus_update_bank_ptr(s, 1);
3043 2c6ab832 bellard
    return 0;
3044 2c6ab832 bellard
}
3045 2c6ab832 bellard
3046 4f335feb Juan Quintela
static void pci_cirrus_vga_save(QEMUFile *f, void *opaque)
3047 4f335feb Juan Quintela
{
3048 4f335feb Juan Quintela
    PCICirrusVGAState *s = opaque;
3049 4f335feb Juan Quintela
3050 4f335feb Juan Quintela
    pci_device_save(&s->dev, f);
3051 4f335feb Juan Quintela
    cirrus_vga_save(f, &s->cirrus_vga);
3052 4f335feb Juan Quintela
}
3053 4f335feb Juan Quintela
3054 4f335feb Juan Quintela
static int pci_cirrus_vga_load(QEMUFile *f, void *opaque, int version_id)
3055 4f335feb Juan Quintela
{
3056 4f335feb Juan Quintela
    PCICirrusVGAState *s = opaque;
3057 4f335feb Juan Quintela
    int ret;
3058 4f335feb Juan Quintela
3059 4f335feb Juan Quintela
    if (version_id > 2)
3060 4f335feb Juan Quintela
        return -EINVAL;
3061 4f335feb Juan Quintela
3062 4f335feb Juan Quintela
    if (version_id >= 2) {
3063 4f335feb Juan Quintela
        ret = pci_device_load(&s->dev, f);
3064 4f335feb Juan Quintela
        if (ret < 0)
3065 4f335feb Juan Quintela
            return ret;
3066 4f335feb Juan Quintela
    }
3067 4f335feb Juan Quintela
3068 4f335feb Juan Quintela
    return cirrus_vga_load(f, &s->cirrus_vga, version_id);
3069 4f335feb Juan Quintela
}
3070 4f335feb Juan Quintela
3071 e36f36e1 bellard
/***************************************
3072 e36f36e1 bellard
 *
3073 e6e5ad80 bellard
 *  initialize
3074 e6e5ad80 bellard
 *
3075 e6e5ad80 bellard
 ***************************************/
3076 e6e5ad80 bellard
3077 4abc796d blueswir1
static void cirrus_reset(void *opaque)
3078 e6e5ad80 bellard
{
3079 4abc796d blueswir1
    CirrusVGAState *s = opaque;
3080 e6e5ad80 bellard
3081 03a3e7ba Juan Quintela
    vga_common_reset(&s->vga);
3082 ee50c6bc aliguori
    unmap_linear_vram(s);
3083 4e12cd94 Avi Kivity
    s->vga.sr[0x06] = 0x0f;
3084 4abc796d blueswir1
    if (s->device_id == CIRRUS_ID_CLGD5446) {
3085 78e127ef bellard
        /* 4MB 64 bit memory config, always PCI */
3086 4e12cd94 Avi Kivity
        s->vga.sr[0x1F] = 0x2d;                // MemClock
3087 4e12cd94 Avi Kivity
        s->vga.gr[0x18] = 0x0f;             // fastest memory configuration
3088 4e12cd94 Avi Kivity
        s->vga.sr[0x0f] = 0x98;
3089 4e12cd94 Avi Kivity
        s->vga.sr[0x17] = 0x20;
3090 4e12cd94 Avi Kivity
        s->vga.sr[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
3091 78e127ef bellard
    } else {
3092 4e12cd94 Avi Kivity
        s->vga.sr[0x1F] = 0x22;                // MemClock
3093 4e12cd94 Avi Kivity
        s->vga.sr[0x0F] = CIRRUS_MEMSIZE_2M;
3094 4e12cd94 Avi Kivity
        s->vga.sr[0x17] = s->bustype;
3095 4e12cd94 Avi Kivity
        s->vga.sr[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
3096 78e127ef bellard
    }
3097 4e12cd94 Avi Kivity
    s->vga.cr[0x27] = s->device_id;
3098 e6e5ad80 bellard
3099 78e127ef bellard
    /* Win2K seems to assume that the pattern buffer is at 0xff
3100 78e127ef bellard
       initially ! */
3101 4e12cd94 Avi Kivity
    memset(s->vga.vram_ptr, 0xff, s->real_vram_size);
3102 78e127ef bellard
3103 e6e5ad80 bellard
    s->cirrus_hidden_dac_lockindex = 5;
3104 e6e5ad80 bellard
    s->cirrus_hidden_dac_data = 0;
3105 4abc796d blueswir1
}
3106 4abc796d blueswir1
3107 4abc796d blueswir1
static void cirrus_init_common(CirrusVGAState * s, int device_id, int is_pci)
3108 4abc796d blueswir1
{
3109 4abc796d blueswir1
    int i;
3110 4abc796d blueswir1
    static int inited;
3111 4abc796d blueswir1
3112 4abc796d blueswir1
    if (!inited) {
3113 4abc796d blueswir1
        inited = 1;
3114 4abc796d blueswir1
        for(i = 0;i < 256; i++)
3115 4abc796d blueswir1
            rop_to_index[i] = CIRRUS_ROP_NOP_INDEX; /* nop rop */
3116 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_0] = 0;
3117 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_AND_DST] = 1;
3118 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOP] = 2;
3119 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_AND_NOTDST] = 3;
3120 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTDST] = 4;
3121 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC] = 5;
3122 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_1] = 6;
3123 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTSRC_AND_DST] = 7;
3124 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_XOR_DST] = 8;
3125 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_OR_DST] = 9;
3126 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTSRC_OR_NOTDST] = 10;
3127 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_NOTXOR_DST] = 11;
3128 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_SRC_OR_NOTDST] = 12;
3129 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTSRC] = 13;
3130 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTSRC_OR_DST] = 14;
3131 4abc796d blueswir1
        rop_to_index[CIRRUS_ROP_NOTSRC_AND_NOTDST] = 15;
3132 4abc796d blueswir1
        s->device_id = device_id;
3133 4abc796d blueswir1
        if (is_pci)
3134 4abc796d blueswir1
            s->bustype = CIRRUS_BUSTYPE_PCI;
3135 4abc796d blueswir1
        else
3136 4abc796d blueswir1
            s->bustype = CIRRUS_BUSTYPE_ISA;
3137 4abc796d blueswir1
    }
3138 4abc796d blueswir1
3139 0ceac75b Juan Quintela
    register_ioport_write(0x3c0, 16, 1, cirrus_vga_ioport_write, s);
3140 4abc796d blueswir1
3141 0ceac75b Juan Quintela
    register_ioport_write(0x3b4, 2, 1, cirrus_vga_ioport_write, s);
3142 0ceac75b Juan Quintela
    register_ioport_write(0x3d4, 2, 1, cirrus_vga_ioport_write, s);
3143 0ceac75b Juan Quintela
    register_ioport_write(0x3ba, 1, 1, cirrus_vga_ioport_write, s);
3144 0ceac75b Juan Quintela
    register_ioport_write(0x3da, 1, 1, cirrus_vga_ioport_write, s);
3145 4abc796d blueswir1
3146 0ceac75b Juan Quintela
    register_ioport_read(0x3c0, 16, 1, cirrus_vga_ioport_read, s);
3147 4abc796d blueswir1
3148 0ceac75b Juan Quintela
    register_ioport_read(0x3b4, 2, 1, cirrus_vga_ioport_read, s);
3149 0ceac75b Juan Quintela
    register_ioport_read(0x3d4, 2, 1, cirrus_vga_ioport_read, s);
3150 0ceac75b Juan Quintela
    register_ioport_read(0x3ba, 1, 1, cirrus_vga_ioport_read, s);
3151 0ceac75b Juan Quintela
    register_ioport_read(0x3da, 1, 1, cirrus_vga_ioport_read, s);
3152 4abc796d blueswir1
3153 1eed09cb Avi Kivity
    s->vga.vga_io_memory = cpu_register_io_memory(cirrus_vga_mem_read,
3154 4e12cd94 Avi Kivity
                                                  cirrus_vga_mem_write, s);
3155 4abc796d blueswir1
    cpu_register_physical_memory(isa_mem_base + 0x000a0000, 0x20000,
3156 4e12cd94 Avi Kivity
                                 s->vga.vga_io_memory);
3157 4abc796d blueswir1
    qemu_register_coalesced_mmio(isa_mem_base + 0x000a0000, 0x20000);
3158 2c6ab832 bellard
3159 fefe54e3 aliguori
    /* I/O handler for LFB */
3160 fefe54e3 aliguori
    s->cirrus_linear_io_addr =
3161 1eed09cb Avi Kivity
        cpu_register_io_memory(cirrus_linear_read, cirrus_linear_write, s);
3162 fefe54e3 aliguori
3163 fefe54e3 aliguori
    /* I/O handler for LFB */
3164 fefe54e3 aliguori
    s->cirrus_linear_bitblt_io_addr =
3165 1eed09cb Avi Kivity
        cpu_register_io_memory(cirrus_linear_bitblt_read,
3166 fefe54e3 aliguori
                               cirrus_linear_bitblt_write, s);
3167 fefe54e3 aliguori
3168 fefe54e3 aliguori
    /* I/O handler for memory-mapped I/O */
3169 fefe54e3 aliguori
    s->cirrus_mmio_io_addr =
3170 1eed09cb Avi Kivity
        cpu_register_io_memory(cirrus_mmio_read, cirrus_mmio_write, s);
3171 fefe54e3 aliguori
3172 fefe54e3 aliguori
    s->real_vram_size =
3173 fefe54e3 aliguori
        (s->device_id == CIRRUS_ID_CLGD5446) ? 4096 * 1024 : 2048 * 1024;
3174 fefe54e3 aliguori
3175 4e12cd94 Avi Kivity
    /* XXX: s->vga.vram_size must be a power of two */
3176 fefe54e3 aliguori
    s->cirrus_addr_mask = s->real_vram_size - 1;
3177 fefe54e3 aliguori
    s->linear_mmio_mask = s->real_vram_size - 256;
3178 fefe54e3 aliguori
3179 4e12cd94 Avi Kivity
    s->vga.get_bpp = cirrus_get_bpp;
3180 4e12cd94 Avi Kivity
    s->vga.get_offsets = cirrus_get_offsets;
3181 4e12cd94 Avi Kivity
    s->vga.get_resolution = cirrus_get_resolution;
3182 4e12cd94 Avi Kivity
    s->vga.cursor_invalidate = cirrus_cursor_invalidate;
3183 4e12cd94 Avi Kivity
    s->vga.cursor_draw_line = cirrus_cursor_draw_line;
3184 fefe54e3 aliguori
3185 a08d4367 Jan Kiszka
    qemu_register_reset(cirrus_reset, s);
3186 4abc796d blueswir1
    cirrus_reset(s);
3187 e6e5ad80 bellard
}
3188 e6e5ad80 bellard
3189 e6e5ad80 bellard
/***************************************
3190 e6e5ad80 bellard
 *
3191 e6e5ad80 bellard
 *  ISA bus support
3192 e6e5ad80 bellard
 *
3193 e6e5ad80 bellard
 ***************************************/
3194 e6e5ad80 bellard
3195 fbe1b595 Paul Brook
void isa_cirrus_vga_init(void)
3196 e6e5ad80 bellard
{
3197 e6e5ad80 bellard
    CirrusVGAState *s;
3198 e6e5ad80 bellard
3199 e6e5ad80 bellard
    s = qemu_mallocz(sizeof(CirrusVGAState));
3200 3b46e624 ths
3201 fbe1b595 Paul Brook
    vga_common_init(&s->vga, VGA_RAM_SIZE);
3202 78e127ef bellard
    cirrus_init_common(s, CIRRUS_ID_CLGD5430, 0);
3203 4e12cd94 Avi Kivity
    s->vga.ds = graphic_console_init(s->vga.update, s->vga.invalidate,
3204 4e12cd94 Avi Kivity
                                     s->vga.screen_dump, s->vga.text_update,
3205 4e12cd94 Avi Kivity
                                     &s->vga);
3206 4f335feb Juan Quintela
    register_savevm("cirrus_vga", 0, 2, cirrus_vga_save, cirrus_vga_load, s);
3207 e6e5ad80 bellard
    /* XXX ISA-LFB support */
3208 e6e5ad80 bellard
}
3209 e6e5ad80 bellard
3210 e6e5ad80 bellard
/***************************************
3211 e6e5ad80 bellard
 *
3212 e6e5ad80 bellard
 *  PCI bus support
3213 e6e5ad80 bellard
 *
3214 e6e5ad80 bellard
 ***************************************/
3215 e6e5ad80 bellard
3216 e6e5ad80 bellard
static void cirrus_pci_lfb_map(PCIDevice *d, int region_num,
3217 e6e5ad80 bellard
                               uint32_t addr, uint32_t size, int type)
3218 e6e5ad80 bellard
{
3219 f3566bf9 Juan Quintela
    CirrusVGAState *s = &DO_UPCAST(PCICirrusVGAState, dev, d)->cirrus_vga;
3220 e6e5ad80 bellard
3221 a5082316 bellard
    /* XXX: add byte swapping apertures */
3222 4e12cd94 Avi Kivity
    cpu_register_physical_memory(addr, s->vga.vram_size,
3223 e6e5ad80 bellard
                                 s->cirrus_linear_io_addr);
3224 a5082316 bellard
    cpu_register_physical_memory(addr + 0x1000000, 0x400000,
3225 a5082316 bellard
                                 s->cirrus_linear_bitblt_io_addr);
3226 2bec46dc aliguori
3227 4e12cd94 Avi Kivity
    s->vga.map_addr = s->vga.map_end = 0;
3228 4e12cd94 Avi Kivity
    s->vga.lfb_addr = addr & TARGET_PAGE_MASK;
3229 4e12cd94 Avi Kivity
    s->vga.lfb_end = ((addr + VGA_RAM_SIZE) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK;
3230 2bec46dc aliguori
    /* account for overflow */
3231 4e12cd94 Avi Kivity
    if (s->vga.lfb_end < addr + VGA_RAM_SIZE)
3232 4e12cd94 Avi Kivity
        s->vga.lfb_end = addr + VGA_RAM_SIZE;
3233 ba7349cd aliguori
3234 4e12cd94 Avi Kivity
    vga_dirty_log_start(&s->vga);
3235 e6e5ad80 bellard
}
3236 e6e5ad80 bellard
3237 e6e5ad80 bellard
static void cirrus_pci_mmio_map(PCIDevice *d, int region_num,
3238 e6e5ad80 bellard
                                uint32_t addr, uint32_t size, int type)
3239 e6e5ad80 bellard
{
3240 f3566bf9 Juan Quintela
    CirrusVGAState *s = &DO_UPCAST(PCICirrusVGAState, dev, d)->cirrus_vga;
3241 e6e5ad80 bellard
3242 e6e5ad80 bellard
    cpu_register_physical_memory(addr, CIRRUS_PNPMMIO_SIZE,
3243 e6e5ad80 bellard
                                 s->cirrus_mmio_io_addr);
3244 e6e5ad80 bellard
}
3245 e6e5ad80 bellard
3246 ba7349cd aliguori
static void pci_cirrus_write_config(PCIDevice *d,
3247 ba7349cd aliguori
                                    uint32_t address, uint32_t val, int len)
3248 ba7349cd aliguori
{
3249 f3566bf9 Juan Quintela
    PCICirrusVGAState *pvs = DO_UPCAST(PCICirrusVGAState, dev, d);
3250 ba7349cd aliguori
    CirrusVGAState *s = &pvs->cirrus_vga;
3251 ba7349cd aliguori
3252 ba7349cd aliguori
    pci_default_write_config(d, address, val, len);
3253 f3566bf9 Juan Quintela
    if (s->vga.map_addr && d->io_regions[0].addr == -1)
3254 4e12cd94 Avi Kivity
        s->vga.map_addr = 0;
3255 ba7349cd aliguori
    cirrus_update_memory_access(s);
3256 ba7349cd aliguori
}
3257 ba7349cd aliguori
3258 81a322d4 Gerd Hoffmann
static int pci_cirrus_vga_initfn(PCIDevice *dev)
3259 a414c306 Gerd Hoffmann
{
3260 a414c306 Gerd Hoffmann
     PCICirrusVGAState *d = DO_UPCAST(PCICirrusVGAState, dev, dev);
3261 a414c306 Gerd Hoffmann
     CirrusVGAState *s = &d->cirrus_vga;
3262 a414c306 Gerd Hoffmann
     uint8_t *pci_conf = d->dev.config;
3263 a414c306 Gerd Hoffmann
     int device_id = CIRRUS_ID_CLGD5446;
3264 a414c306 Gerd Hoffmann
3265 a414c306 Gerd Hoffmann
     /* setup VGA */
3266 a414c306 Gerd Hoffmann
     vga_common_init(&s->vga, VGA_RAM_SIZE);
3267 a414c306 Gerd Hoffmann
     cirrus_init_common(s, device_id, 1);
3268 a414c306 Gerd Hoffmann
     s->vga.ds = graphic_console_init(s->vga.update, s->vga.invalidate,
3269 a414c306 Gerd Hoffmann
                                      s->vga.screen_dump, s->vga.text_update,
3270 a414c306 Gerd Hoffmann
                                      &s->vga);
3271 a414c306 Gerd Hoffmann
3272 a414c306 Gerd Hoffmann
     /* setup PCI */
3273 a414c306 Gerd Hoffmann
     pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_CIRRUS);
3274 a414c306 Gerd Hoffmann
     pci_config_set_device_id(pci_conf, device_id);
3275 a414c306 Gerd Hoffmann
     pci_conf[0x04] = PCI_COMMAND_IOACCESS | PCI_COMMAND_MEMACCESS;
3276 a414c306 Gerd Hoffmann
     pci_config_set_class(pci_conf, PCI_CLASS_DISPLAY_VGA);
3277 a414c306 Gerd Hoffmann
     pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL;
3278 a414c306 Gerd Hoffmann
3279 a414c306 Gerd Hoffmann
     /* setup memory space */
3280 a414c306 Gerd Hoffmann
     /* memory #0 LFB */
3281 a414c306 Gerd Hoffmann
     /* memory #1 memory-mapped I/O */
3282 a414c306 Gerd Hoffmann
     /* XXX: s->vga.vram_size must be a power of two */
3283 a414c306 Gerd Hoffmann
     pci_register_bar((PCIDevice *)d, 0, 0x2000000,
3284 a414c306 Gerd Hoffmann
                      PCI_ADDRESS_SPACE_MEM_PREFETCH, cirrus_pci_lfb_map);
3285 a414c306 Gerd Hoffmann
     if (device_id == CIRRUS_ID_CLGD5446) {
3286 a414c306 Gerd Hoffmann
         pci_register_bar((PCIDevice *)d, 1, CIRRUS_PNPMMIO_SIZE,
3287 a414c306 Gerd Hoffmann
                          PCI_ADDRESS_SPACE_MEM, cirrus_pci_mmio_map);
3288 a414c306 Gerd Hoffmann
     }
3289 4f335feb Juan Quintela
     register_savevm("cirrus_vga", 0, 2, pci_cirrus_vga_save, pci_cirrus_vga_load, d);
3290 a414c306 Gerd Hoffmann
     /* XXX: ROM BIOS */
3291 81a322d4 Gerd Hoffmann
     return 0;
3292 a414c306 Gerd Hoffmann
}
3293 a414c306 Gerd Hoffmann
3294 fbe1b595 Paul Brook
void pci_cirrus_vga_init(PCIBus *bus)
3295 e6e5ad80 bellard
{
3296 a414c306 Gerd Hoffmann
    pci_create_simple(bus, -1, "Cirrus VGA");
3297 a414c306 Gerd Hoffmann
}
3298 d34cab9f ths
3299 a414c306 Gerd Hoffmann
static PCIDeviceInfo cirrus_vga_info = {
3300 a414c306 Gerd Hoffmann
    .qdev.name    = "Cirrus VGA",
3301 a414c306 Gerd Hoffmann
    .qdev.size    = sizeof(PCICirrusVGAState),
3302 a414c306 Gerd Hoffmann
    .init         = pci_cirrus_vga_initfn,
3303 a414c306 Gerd Hoffmann
    .config_write = pci_cirrus_write_config,
3304 a414c306 Gerd Hoffmann
};
3305 e6e5ad80 bellard
3306 a414c306 Gerd Hoffmann
static void cirrus_vga_register(void)
3307 a414c306 Gerd Hoffmann
{
3308 a414c306 Gerd Hoffmann
    pci_qdev_register(&cirrus_vga_info);
3309 e6e5ad80 bellard
}
3310 a414c306 Gerd Hoffmann
device_init(cirrus_vga_register);