Statistics
| Branch: | Revision:

root / hw / cirrus_vga.c @ b863d514

History | View | Annotate | Download (98.4 kB)

1
/*
2
 * QEMU Cirrus CLGD 54xx VGA Emulator.
3
 *
4
 * Copyright (c) 2004 Fabrice Bellard
5
 * Copyright (c) 2004 Makoto Suzuki (suzu)
6
 *
7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8
 * of this software and associated documentation files (the "Software"), to deal
9
 * in the Software without restriction, including without limitation the rights
10
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
 * copies of the Software, and to permit persons to whom the Software is
12
 * furnished to do so, subject to the following conditions:
13
 *
14
 * The above copyright notice and this permission notice shall be included in
15
 * all copies or substantial portions of the Software.
16
 *
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
 * THE SOFTWARE.
24
 */
25
/*
26
 * Reference: Finn Thogersons' VGADOC4b
27
 *   available at http://home.worldonline.dk/~finth/
28
 */
29
#include "hw.h"
30
#include "pc.h"
31
#include "pci.h"
32
#include "console.h"
33
#include "vga_int.h"
34
#include "kvm.h"
35

    
36
/*
37
 * TODO:
38
 *    - destination write mask support not complete (bits 5..7)
39
 *    - optimize linear mappings
40
 *    - optimize bitblt functions
41
 */
42

    
43
//#define DEBUG_CIRRUS
44
//#define DEBUG_BITBLT
45

    
46
/***************************************
47
 *
48
 *  definitions
49
 *
50
 ***************************************/
51

    
52
// ID
53
#define CIRRUS_ID_CLGD5422  (0x23<<2)
54
#define CIRRUS_ID_CLGD5426  (0x24<<2)
55
#define CIRRUS_ID_CLGD5424  (0x25<<2)
56
#define CIRRUS_ID_CLGD5428  (0x26<<2)
57
#define CIRRUS_ID_CLGD5430  (0x28<<2)
58
#define CIRRUS_ID_CLGD5434  (0x2A<<2)
59
#define CIRRUS_ID_CLGD5436  (0x2B<<2)
60
#define CIRRUS_ID_CLGD5446  (0x2E<<2)
61

    
62
// sequencer 0x07
63
#define CIRRUS_SR7_BPP_VGA            0x00
64
#define CIRRUS_SR7_BPP_SVGA           0x01
65
#define CIRRUS_SR7_BPP_MASK           0x0e
66
#define CIRRUS_SR7_BPP_8              0x00
67
#define CIRRUS_SR7_BPP_16_DOUBLEVCLK  0x02
68
#define CIRRUS_SR7_BPP_24             0x04
69
#define CIRRUS_SR7_BPP_16             0x06
70
#define CIRRUS_SR7_BPP_32             0x08
71
#define CIRRUS_SR7_ISAADDR_MASK       0xe0
72

    
73
// sequencer 0x0f
74
#define CIRRUS_MEMSIZE_512k        0x08
75
#define CIRRUS_MEMSIZE_1M          0x10
76
#define CIRRUS_MEMSIZE_2M          0x18
77
#define CIRRUS_MEMFLAGS_BANKSWITCH 0x80        // bank switching is enabled.
78

    
79
// sequencer 0x12
80
#define CIRRUS_CURSOR_SHOW         0x01
81
#define CIRRUS_CURSOR_HIDDENPEL    0x02
82
#define CIRRUS_CURSOR_LARGE        0x04        // 64x64 if set, 32x32 if clear
83

    
84
// sequencer 0x17
85
#define CIRRUS_BUSTYPE_VLBFAST   0x10
86
#define CIRRUS_BUSTYPE_PCI       0x20
87
#define CIRRUS_BUSTYPE_VLBSLOW   0x30
88
#define CIRRUS_BUSTYPE_ISA       0x38
89
#define CIRRUS_MMIO_ENABLE       0x04
90
#define CIRRUS_MMIO_USE_PCIADDR  0x40        // 0xb8000 if cleared.
91
#define CIRRUS_MEMSIZEEXT_DOUBLE 0x80
92

    
93
// control 0x0b
94
#define CIRRUS_BANKING_DUAL             0x01
95
#define CIRRUS_BANKING_GRANULARITY_16K  0x20        // set:16k, clear:4k
96

    
97
// control 0x30
98
#define CIRRUS_BLTMODE_BACKWARDS        0x01
99
#define CIRRUS_BLTMODE_MEMSYSDEST       0x02
100
#define CIRRUS_BLTMODE_MEMSYSSRC        0x04
101
#define CIRRUS_BLTMODE_TRANSPARENTCOMP  0x08
102
#define CIRRUS_BLTMODE_PATTERNCOPY      0x40
103
#define CIRRUS_BLTMODE_COLOREXPAND      0x80
104
#define CIRRUS_BLTMODE_PIXELWIDTHMASK   0x30
105
#define CIRRUS_BLTMODE_PIXELWIDTH8      0x00
106
#define CIRRUS_BLTMODE_PIXELWIDTH16     0x10
107
#define CIRRUS_BLTMODE_PIXELWIDTH24     0x20
108
#define CIRRUS_BLTMODE_PIXELWIDTH32     0x30
109

    
110
// control 0x31
111
#define CIRRUS_BLT_BUSY                 0x01
112
#define CIRRUS_BLT_START                0x02
113
#define CIRRUS_BLT_RESET                0x04
114
#define CIRRUS_BLT_FIFOUSED             0x10
115
#define CIRRUS_BLT_AUTOSTART            0x80
116

    
117
// control 0x32
118
#define CIRRUS_ROP_0                    0x00
119
#define CIRRUS_ROP_SRC_AND_DST          0x05
120
#define CIRRUS_ROP_NOP                  0x06
121
#define CIRRUS_ROP_SRC_AND_NOTDST       0x09
122
#define CIRRUS_ROP_NOTDST               0x0b
123
#define CIRRUS_ROP_SRC                  0x0d
124
#define CIRRUS_ROP_1                    0x0e
125
#define CIRRUS_ROP_NOTSRC_AND_DST       0x50
126
#define CIRRUS_ROP_SRC_XOR_DST          0x59
127
#define CIRRUS_ROP_SRC_OR_DST           0x6d
128
#define CIRRUS_ROP_NOTSRC_OR_NOTDST     0x90
129
#define CIRRUS_ROP_SRC_NOTXOR_DST       0x95
130
#define CIRRUS_ROP_SRC_OR_NOTDST        0xad
131
#define CIRRUS_ROP_NOTSRC               0xd0
132
#define CIRRUS_ROP_NOTSRC_OR_DST        0xd6
133
#define CIRRUS_ROP_NOTSRC_AND_NOTDST    0xda
134

    
135
#define CIRRUS_ROP_NOP_INDEX 2
136
#define CIRRUS_ROP_SRC_INDEX 5
137

    
138
// control 0x33
139
#define CIRRUS_BLTMODEEXT_SOLIDFILL        0x04
140
#define CIRRUS_BLTMODEEXT_COLOREXPINV      0x02
141
#define CIRRUS_BLTMODEEXT_DWORDGRANULARITY 0x01
142

    
143
// memory-mapped IO
144
#define CIRRUS_MMIO_BLTBGCOLOR        0x00        // dword
145
#define CIRRUS_MMIO_BLTFGCOLOR        0x04        // dword
146
#define CIRRUS_MMIO_BLTWIDTH          0x08        // word
147
#define CIRRUS_MMIO_BLTHEIGHT         0x0a        // word
148
#define CIRRUS_MMIO_BLTDESTPITCH      0x0c        // word
149
#define CIRRUS_MMIO_BLTSRCPITCH       0x0e        // word
150
#define CIRRUS_MMIO_BLTDESTADDR       0x10        // dword
151
#define CIRRUS_MMIO_BLTSRCADDR        0x14        // dword
152
#define CIRRUS_MMIO_BLTWRITEMASK      0x17        // byte
153
#define CIRRUS_MMIO_BLTMODE           0x18        // byte
154
#define CIRRUS_MMIO_BLTROP            0x1a        // byte
155
#define CIRRUS_MMIO_BLTMODEEXT        0x1b        // byte
156
#define CIRRUS_MMIO_BLTTRANSPARENTCOLOR 0x1c        // word?
157
#define CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK 0x20        // word?
158
#define CIRRUS_MMIO_LINEARDRAW_START_X 0x24        // word
159
#define CIRRUS_MMIO_LINEARDRAW_START_Y 0x26        // word
160
#define CIRRUS_MMIO_LINEARDRAW_END_X  0x28        // word
161
#define CIRRUS_MMIO_LINEARDRAW_END_Y  0x2a        // word
162
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_INC 0x2c        // byte
163
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ROLLOVER 0x2d        // byte
164
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_MASK 0x2e        // byte
165
#define CIRRUS_MMIO_LINEARDRAW_LINESTYLE_ACCUM 0x2f        // byte
166
#define CIRRUS_MMIO_BRESENHAM_K1      0x30        // word
167
#define CIRRUS_MMIO_BRESENHAM_K3      0x32        // word
168
#define CIRRUS_MMIO_BRESENHAM_ERROR   0x34        // word
169
#define CIRRUS_MMIO_BRESENHAM_DELTA_MAJOR 0x36        // word
170
#define CIRRUS_MMIO_BRESENHAM_DIRECTION 0x38        // byte
171
#define CIRRUS_MMIO_LINEDRAW_MODE     0x39        // byte
172
#define CIRRUS_MMIO_BLTSTATUS         0x40        // byte
173

    
174
// PCI 0x04: command(word), 0x06(word): status
175
#define PCI_COMMAND_IOACCESS                0x0001
176
#define PCI_COMMAND_MEMACCESS               0x0002
177
#define PCI_COMMAND_BUSMASTER               0x0004
178
#define PCI_COMMAND_SPECIALCYCLE            0x0008
179
#define PCI_COMMAND_MEMWRITEINVALID         0x0010
180
#define PCI_COMMAND_PALETTESNOOPING         0x0020
181
#define PCI_COMMAND_PARITYDETECTION         0x0040
182
#define PCI_COMMAND_ADDRESSDATASTEPPING     0x0080
183
#define PCI_COMMAND_SERR                    0x0100
184
#define PCI_COMMAND_BACKTOBACKTRANS         0x0200
185
// PCI 0x08, 0xff000000 (0x09-0x0b:class,0x08:rev)
186
#define PCI_CLASS_BASE_DISPLAY        0x03
187
// PCI 0x08, 0x00ff0000
188
#define PCI_CLASS_SUB_VGA             0x00
189
// PCI 0x0c, 0x00ff0000 (0x0c:cacheline,0x0d:latency,0x0e:headertype,0x0f:Built-in self test)
190
// 0x10-0x3f (headertype 00h)
191
// PCI 0x10,0x14,0x18,0x1c,0x20,0x24: base address mapping registers
192
//   0x10: MEMBASE, 0x14: IOBASE(hard-coded in XFree86 3.x)
193
#define PCI_MAP_MEM                 0x0
194
#define PCI_MAP_IO                  0x1
195
#define PCI_MAP_MEM_ADDR_MASK       (~0xf)
196
#define PCI_MAP_IO_ADDR_MASK        (~0x3)
197
#define PCI_MAP_MEMFLAGS_32BIT      0x0
198
#define PCI_MAP_MEMFLAGS_32BIT_1M   0x1
199
#define PCI_MAP_MEMFLAGS_64BIT      0x4
200
#define PCI_MAP_MEMFLAGS_CACHEABLE  0x8
201
// PCI 0x28: cardbus CIS pointer
202
// PCI 0x2c: subsystem vendor id, 0x2e: subsystem id
203
// PCI 0x30: expansion ROM base address
204
#define PCI_ROMBIOS_ENABLED         0x1
205
// PCI 0x34: 0xffffff00=reserved, 0x000000ff=capabilities pointer
206
// PCI 0x38: reserved
207
// PCI 0x3c: 0x3c=int-line, 0x3d=int-pin, 0x3e=min-gnt, 0x3f=maax-lat
208

    
209
#define CIRRUS_PNPMMIO_SIZE         0x1000
210

    
211

    
212
/* I/O and memory hook */
213
#define CIRRUS_HOOK_NOT_HANDLED 0
214
#define CIRRUS_HOOK_HANDLED 1
215

    
216
#define ABS(a) ((signed)(a) > 0 ? a : -a)
217

    
218
#define BLTUNSAFE(s) \
219
    ( \
220
        ( /* check dst is within bounds */ \
221
            (s)->cirrus_blt_height * ABS((s)->cirrus_blt_dstpitch) \
222
                + ((s)->cirrus_blt_dstaddr & (s)->cirrus_addr_mask) > \
223
                    (s)->vga.vram_size \
224
        ) || \
225
        ( /* check src is within bounds */ \
226
            (s)->cirrus_blt_height * ABS((s)->cirrus_blt_srcpitch) \
227
                + ((s)->cirrus_blt_srcaddr & (s)->cirrus_addr_mask) > \
228
                    (s)->vga.vram_size \
229
        ) \
230
    )
231

    
232
struct CirrusVGAState;
233
typedef void (*cirrus_bitblt_rop_t) (struct CirrusVGAState *s,
234
                                     uint8_t * dst, const uint8_t * src,
235
                                     int dstpitch, int srcpitch,
236
                                     int bltwidth, int bltheight);
237
typedef void (*cirrus_fill_t)(struct CirrusVGAState *s,
238
                              uint8_t *dst, int dst_pitch, int width, int height);
239

    
240
typedef struct CirrusVGAState {
241
    VGACommonState vga;
242

    
243
    int cirrus_linear_io_addr;
244
    int cirrus_linear_bitblt_io_addr;
245
    int cirrus_mmio_io_addr;
246
    uint32_t cirrus_addr_mask;
247
    uint32_t linear_mmio_mask;
248
    uint8_t cirrus_shadow_gr0;
249
    uint8_t cirrus_shadow_gr1;
250
    uint8_t cirrus_hidden_dac_lockindex;
251
    uint8_t cirrus_hidden_dac_data;
252
    uint32_t cirrus_bank_base[2];
253
    uint32_t cirrus_bank_limit[2];
254
    uint8_t cirrus_hidden_palette[48];
255
    uint32_t hw_cursor_x;
256
    uint32_t hw_cursor_y;
257
    int cirrus_blt_pixelwidth;
258
    int cirrus_blt_width;
259
    int cirrus_blt_height;
260
    int cirrus_blt_dstpitch;
261
    int cirrus_blt_srcpitch;
262
    uint32_t cirrus_blt_fgcol;
263
    uint32_t cirrus_blt_bgcol;
264
    uint32_t cirrus_blt_dstaddr;
265
    uint32_t cirrus_blt_srcaddr;
266
    uint8_t cirrus_blt_mode;
267
    uint8_t cirrus_blt_modeext;
268
    cirrus_bitblt_rop_t cirrus_rop;
269
#define CIRRUS_BLTBUFSIZE (2048 * 4) /* one line width */
270
    uint8_t cirrus_bltbuf[CIRRUS_BLTBUFSIZE];
271
    uint8_t *cirrus_srcptr;
272
    uint8_t *cirrus_srcptr_end;
273
    uint32_t cirrus_srccounter;
274
    /* hwcursor display state */
275
    int last_hw_cursor_size;
276
    int last_hw_cursor_x;
277
    int last_hw_cursor_y;
278
    int last_hw_cursor_y_start;
279
    int last_hw_cursor_y_end;
280
    int real_vram_size; /* XXX: suppress that */
281
    int device_id;
282
    int bustype;
283
} CirrusVGAState;
284

    
285
typedef struct PCICirrusVGAState {
286
    PCIDevice dev;
287
    CirrusVGAState cirrus_vga;
288
} PCICirrusVGAState;
289

    
290
static uint8_t rop_to_index[256];
291

    
292
/***************************************
293
 *
294
 *  prototypes.
295
 *
296
 ***************************************/
297

    
298

    
299
static void cirrus_bitblt_reset(CirrusVGAState *s);
300
static void cirrus_update_memory_access(CirrusVGAState *s);
301

    
302
/***************************************
303
 *
304
 *  raster operations
305
 *
306
 ***************************************/
307

    
308
static void cirrus_bitblt_rop_nop(CirrusVGAState *s,
309
                                  uint8_t *dst,const uint8_t *src,
310
                                  int dstpitch,int srcpitch,
311
                                  int bltwidth,int bltheight)
312
{
313
}
314

    
315
static void cirrus_bitblt_fill_nop(CirrusVGAState *s,
316
                                   uint8_t *dst,
317
                                   int dstpitch, int bltwidth,int bltheight)
318
{
319
}
320

    
321
#define ROP_NAME 0
322
#define ROP_OP(d, s) d = 0
323
#include "cirrus_vga_rop.h"
324

    
325
#define ROP_NAME src_and_dst
326
#define ROP_OP(d, s) d = (s) & (d)
327
#include "cirrus_vga_rop.h"
328

    
329
#define ROP_NAME src_and_notdst
330
#define ROP_OP(d, s) d = (s) & (~(d))
331
#include "cirrus_vga_rop.h"
332

    
333
#define ROP_NAME notdst
334
#define ROP_OP(d, s) d = ~(d)
335
#include "cirrus_vga_rop.h"
336

    
337
#define ROP_NAME src
338
#define ROP_OP(d, s) d = s
339
#include "cirrus_vga_rop.h"
340

    
341
#define ROP_NAME 1
342
#define ROP_OP(d, s) d = ~0
343
#include "cirrus_vga_rop.h"
344

    
345
#define ROP_NAME notsrc_and_dst
346
#define ROP_OP(d, s) d = (~(s)) & (d)
347
#include "cirrus_vga_rop.h"
348

    
349
#define ROP_NAME src_xor_dst
350
#define ROP_OP(d, s) d = (s) ^ (d)
351
#include "cirrus_vga_rop.h"
352

    
353
#define ROP_NAME src_or_dst
354
#define ROP_OP(d, s) d = (s) | (d)
355
#include "cirrus_vga_rop.h"
356

    
357
#define ROP_NAME notsrc_or_notdst
358
#define ROP_OP(d, s) d = (~(s)) | (~(d))
359
#include "cirrus_vga_rop.h"
360

    
361
#define ROP_NAME src_notxor_dst
362
#define ROP_OP(d, s) d = ~((s) ^ (d))
363
#include "cirrus_vga_rop.h"
364

    
365
#define ROP_NAME src_or_notdst
366
#define ROP_OP(d, s) d = (s) | (~(d))
367
#include "cirrus_vga_rop.h"
368

    
369
#define ROP_NAME notsrc
370
#define ROP_OP(d, s) d = (~(s))
371
#include "cirrus_vga_rop.h"
372

    
373
#define ROP_NAME notsrc_or_dst
374
#define ROP_OP(d, s) d = (~(s)) | (d)
375
#include "cirrus_vga_rop.h"
376

    
377
#define ROP_NAME notsrc_and_notdst
378
#define ROP_OP(d, s) d = (~(s)) & (~(d))
379
#include "cirrus_vga_rop.h"
380

    
381
static const cirrus_bitblt_rop_t cirrus_fwd_rop[16] = {
382
    cirrus_bitblt_rop_fwd_0,
383
    cirrus_bitblt_rop_fwd_src_and_dst,
384
    cirrus_bitblt_rop_nop,
385
    cirrus_bitblt_rop_fwd_src_and_notdst,
386
    cirrus_bitblt_rop_fwd_notdst,
387
    cirrus_bitblt_rop_fwd_src,
388
    cirrus_bitblt_rop_fwd_1,
389
    cirrus_bitblt_rop_fwd_notsrc_and_dst,
390
    cirrus_bitblt_rop_fwd_src_xor_dst,
391
    cirrus_bitblt_rop_fwd_src_or_dst,
392
    cirrus_bitblt_rop_fwd_notsrc_or_notdst,
393
    cirrus_bitblt_rop_fwd_src_notxor_dst,
394
    cirrus_bitblt_rop_fwd_src_or_notdst,
395
    cirrus_bitblt_rop_fwd_notsrc,
396
    cirrus_bitblt_rop_fwd_notsrc_or_dst,
397
    cirrus_bitblt_rop_fwd_notsrc_and_notdst,
398
};
399

    
400
static const cirrus_bitblt_rop_t cirrus_bkwd_rop[16] = {
401
    cirrus_bitblt_rop_bkwd_0,
402
    cirrus_bitblt_rop_bkwd_src_and_dst,
403
    cirrus_bitblt_rop_nop,
404
    cirrus_bitblt_rop_bkwd_src_and_notdst,
405
    cirrus_bitblt_rop_bkwd_notdst,
406
    cirrus_bitblt_rop_bkwd_src,
407
    cirrus_bitblt_rop_bkwd_1,
408
    cirrus_bitblt_rop_bkwd_notsrc_and_dst,
409
    cirrus_bitblt_rop_bkwd_src_xor_dst,
410
    cirrus_bitblt_rop_bkwd_src_or_dst,
411
    cirrus_bitblt_rop_bkwd_notsrc_or_notdst,
412
    cirrus_bitblt_rop_bkwd_src_notxor_dst,
413
    cirrus_bitblt_rop_bkwd_src_or_notdst,
414
    cirrus_bitblt_rop_bkwd_notsrc,
415
    cirrus_bitblt_rop_bkwd_notsrc_or_dst,
416
    cirrus_bitblt_rop_bkwd_notsrc_and_notdst,
417
};
418

    
419
#define TRANSP_ROP(name) {\
420
    name ## _8,\
421
    name ## _16,\
422
        }
423
#define TRANSP_NOP(func) {\
424
    func,\
425
    func,\
426
        }
427

    
428
static const cirrus_bitblt_rop_t cirrus_fwd_transp_rop[16][2] = {
429
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_0),
430
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_dst),
431
    TRANSP_NOP(cirrus_bitblt_rop_nop),
432
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_and_notdst),
433
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notdst),
434
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src),
435
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_1),
436
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_dst),
437
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_xor_dst),
438
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_dst),
439
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_notdst),
440
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_notxor_dst),
441
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_src_or_notdst),
442
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc),
443
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_or_dst),
444
    TRANSP_ROP(cirrus_bitblt_rop_fwd_transp_notsrc_and_notdst),
445
};
446

    
447
static const cirrus_bitblt_rop_t cirrus_bkwd_transp_rop[16][2] = {
448
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_0),
449
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_dst),
450
    TRANSP_NOP(cirrus_bitblt_rop_nop),
451
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_and_notdst),
452
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notdst),
453
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src),
454
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_1),
455
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_dst),
456
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_xor_dst),
457
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_dst),
458
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_notdst),
459
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_notxor_dst),
460
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_src_or_notdst),
461
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc),
462
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_or_dst),
463
    TRANSP_ROP(cirrus_bitblt_rop_bkwd_transp_notsrc_and_notdst),
464
};
465

    
466
#define ROP2(name) {\
467
    name ## _8,\
468
    name ## _16,\
469
    name ## _24,\
470
    name ## _32,\
471
        }
472

    
473
#define ROP_NOP2(func) {\
474
    func,\
475
    func,\
476
    func,\
477
    func,\
478
        }
479

    
480
static const cirrus_bitblt_rop_t cirrus_patternfill[16][4] = {
481
    ROP2(cirrus_patternfill_0),
482
    ROP2(cirrus_patternfill_src_and_dst),
483
    ROP_NOP2(cirrus_bitblt_rop_nop),
484
    ROP2(cirrus_patternfill_src_and_notdst),
485
    ROP2(cirrus_patternfill_notdst),
486
    ROP2(cirrus_patternfill_src),
487
    ROP2(cirrus_patternfill_1),
488
    ROP2(cirrus_patternfill_notsrc_and_dst),
489
    ROP2(cirrus_patternfill_src_xor_dst),
490
    ROP2(cirrus_patternfill_src_or_dst),
491
    ROP2(cirrus_patternfill_notsrc_or_notdst),
492
    ROP2(cirrus_patternfill_src_notxor_dst),
493
    ROP2(cirrus_patternfill_src_or_notdst),
494
    ROP2(cirrus_patternfill_notsrc),
495
    ROP2(cirrus_patternfill_notsrc_or_dst),
496
    ROP2(cirrus_patternfill_notsrc_and_notdst),
497
};
498

    
499
static const cirrus_bitblt_rop_t cirrus_colorexpand_transp[16][4] = {
500
    ROP2(cirrus_colorexpand_transp_0),
501
    ROP2(cirrus_colorexpand_transp_src_and_dst),
502
    ROP_NOP2(cirrus_bitblt_rop_nop),
503
    ROP2(cirrus_colorexpand_transp_src_and_notdst),
504
    ROP2(cirrus_colorexpand_transp_notdst),
505
    ROP2(cirrus_colorexpand_transp_src),
506
    ROP2(cirrus_colorexpand_transp_1),
507
    ROP2(cirrus_colorexpand_transp_notsrc_and_dst),
508
    ROP2(cirrus_colorexpand_transp_src_xor_dst),
509
    ROP2(cirrus_colorexpand_transp_src_or_dst),
510
    ROP2(cirrus_colorexpand_transp_notsrc_or_notdst),
511
    ROP2(cirrus_colorexpand_transp_src_notxor_dst),
512
    ROP2(cirrus_colorexpand_transp_src_or_notdst),
513
    ROP2(cirrus_colorexpand_transp_notsrc),
514
    ROP2(cirrus_colorexpand_transp_notsrc_or_dst),
515
    ROP2(cirrus_colorexpand_transp_notsrc_and_notdst),
516
};
517

    
518
static const cirrus_bitblt_rop_t cirrus_colorexpand[16][4] = {
519
    ROP2(cirrus_colorexpand_0),
520
    ROP2(cirrus_colorexpand_src_and_dst),
521
    ROP_NOP2(cirrus_bitblt_rop_nop),
522
    ROP2(cirrus_colorexpand_src_and_notdst),
523
    ROP2(cirrus_colorexpand_notdst),
524
    ROP2(cirrus_colorexpand_src),
525
    ROP2(cirrus_colorexpand_1),
526
    ROP2(cirrus_colorexpand_notsrc_and_dst),
527
    ROP2(cirrus_colorexpand_src_xor_dst),
528
    ROP2(cirrus_colorexpand_src_or_dst),
529
    ROP2(cirrus_colorexpand_notsrc_or_notdst),
530
    ROP2(cirrus_colorexpand_src_notxor_dst),
531
    ROP2(cirrus_colorexpand_src_or_notdst),
532
    ROP2(cirrus_colorexpand_notsrc),
533
    ROP2(cirrus_colorexpand_notsrc_or_dst),
534
    ROP2(cirrus_colorexpand_notsrc_and_notdst),
535
};
536

    
537
static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern_transp[16][4] = {
538
    ROP2(cirrus_colorexpand_pattern_transp_0),
539
    ROP2(cirrus_colorexpand_pattern_transp_src_and_dst),
540
    ROP_NOP2(cirrus_bitblt_rop_nop),
541
    ROP2(cirrus_colorexpand_pattern_transp_src_and_notdst),
542
    ROP2(cirrus_colorexpand_pattern_transp_notdst),
543
    ROP2(cirrus_colorexpand_pattern_transp_src),
544
    ROP2(cirrus_colorexpand_pattern_transp_1),
545
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_dst),
546
    ROP2(cirrus_colorexpand_pattern_transp_src_xor_dst),
547
    ROP2(cirrus_colorexpand_pattern_transp_src_or_dst),
548
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_notdst),
549
    ROP2(cirrus_colorexpand_pattern_transp_src_notxor_dst),
550
    ROP2(cirrus_colorexpand_pattern_transp_src_or_notdst),
551
    ROP2(cirrus_colorexpand_pattern_transp_notsrc),
552
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_or_dst),
553
    ROP2(cirrus_colorexpand_pattern_transp_notsrc_and_notdst),
554
};
555

    
556
static const cirrus_bitblt_rop_t cirrus_colorexpand_pattern[16][4] = {
557
    ROP2(cirrus_colorexpand_pattern_0),
558
    ROP2(cirrus_colorexpand_pattern_src_and_dst),
559
    ROP_NOP2(cirrus_bitblt_rop_nop),
560
    ROP2(cirrus_colorexpand_pattern_src_and_notdst),
561
    ROP2(cirrus_colorexpand_pattern_notdst),
562
    ROP2(cirrus_colorexpand_pattern_src),
563
    ROP2(cirrus_colorexpand_pattern_1),
564
    ROP2(cirrus_colorexpand_pattern_notsrc_and_dst),
565
    ROP2(cirrus_colorexpand_pattern_src_xor_dst),
566
    ROP2(cirrus_colorexpand_pattern_src_or_dst),
567
    ROP2(cirrus_colorexpand_pattern_notsrc_or_notdst),
568
    ROP2(cirrus_colorexpand_pattern_src_notxor_dst),
569
    ROP2(cirrus_colorexpand_pattern_src_or_notdst),
570
    ROP2(cirrus_colorexpand_pattern_notsrc),
571
    ROP2(cirrus_colorexpand_pattern_notsrc_or_dst),
572
    ROP2(cirrus_colorexpand_pattern_notsrc_and_notdst),
573
};
574

    
575
static const cirrus_fill_t cirrus_fill[16][4] = {
576
    ROP2(cirrus_fill_0),
577
    ROP2(cirrus_fill_src_and_dst),
578
    ROP_NOP2(cirrus_bitblt_fill_nop),
579
    ROP2(cirrus_fill_src_and_notdst),
580
    ROP2(cirrus_fill_notdst),
581
    ROP2(cirrus_fill_src),
582
    ROP2(cirrus_fill_1),
583
    ROP2(cirrus_fill_notsrc_and_dst),
584
    ROP2(cirrus_fill_src_xor_dst),
585
    ROP2(cirrus_fill_src_or_dst),
586
    ROP2(cirrus_fill_notsrc_or_notdst),
587
    ROP2(cirrus_fill_src_notxor_dst),
588
    ROP2(cirrus_fill_src_or_notdst),
589
    ROP2(cirrus_fill_notsrc),
590
    ROP2(cirrus_fill_notsrc_or_dst),
591
    ROP2(cirrus_fill_notsrc_and_notdst),
592
};
593

    
594
static inline void cirrus_bitblt_fgcol(CirrusVGAState *s)
595
{
596
    unsigned int color;
597
    switch (s->cirrus_blt_pixelwidth) {
598
    case 1:
599
        s->cirrus_blt_fgcol = s->cirrus_shadow_gr1;
600
        break;
601
    case 2:
602
        color = s->cirrus_shadow_gr1 | (s->vga.gr[0x11] << 8);
603
        s->cirrus_blt_fgcol = le16_to_cpu(color);
604
        break;
605
    case 3:
606
        s->cirrus_blt_fgcol = s->cirrus_shadow_gr1 |
607
            (s->vga.gr[0x11] << 8) | (s->vga.gr[0x13] << 16);
608
        break;
609
    default:
610
    case 4:
611
        color = s->cirrus_shadow_gr1 | (s->vga.gr[0x11] << 8) |
612
            (s->vga.gr[0x13] << 16) | (s->vga.gr[0x15] << 24);
613
        s->cirrus_blt_fgcol = le32_to_cpu(color);
614
        break;
615
    }
616
}
617

    
618
static inline void cirrus_bitblt_bgcol(CirrusVGAState *s)
619
{
620
    unsigned int color;
621
    switch (s->cirrus_blt_pixelwidth) {
622
    case 1:
623
        s->cirrus_blt_bgcol = s->cirrus_shadow_gr0;
624
        break;
625
    case 2:
626
        color = s->cirrus_shadow_gr0 | (s->vga.gr[0x10] << 8);
627
        s->cirrus_blt_bgcol = le16_to_cpu(color);
628
        break;
629
    case 3:
630
        s->cirrus_blt_bgcol = s->cirrus_shadow_gr0 |
631
            (s->vga.gr[0x10] << 8) | (s->vga.gr[0x12] << 16);
632
        break;
633
    default:
634
    case 4:
635
        color = s->cirrus_shadow_gr0 | (s->vga.gr[0x10] << 8) |
636
            (s->vga.gr[0x12] << 16) | (s->vga.gr[0x14] << 24);
637
        s->cirrus_blt_bgcol = le32_to_cpu(color);
638
        break;
639
    }
640
}
641

    
642
static void cirrus_invalidate_region(CirrusVGAState * s, int off_begin,
643
                                     int off_pitch, int bytesperline,
644
                                     int lines)
645
{
646
    int y;
647
    int off_cur;
648
    int off_cur_end;
649

    
650
    for (y = 0; y < lines; y++) {
651
        off_cur = off_begin;
652
        off_cur_end = (off_cur + bytesperline) & s->cirrus_addr_mask;
653
        off_cur &= TARGET_PAGE_MASK;
654
        while (off_cur < off_cur_end) {
655
            cpu_physical_memory_set_dirty(s->vga.vram_offset + off_cur);
656
            off_cur += TARGET_PAGE_SIZE;
657
        }
658
        off_begin += off_pitch;
659
    }
660
}
661

    
662
static int cirrus_bitblt_common_patterncopy(CirrusVGAState * s,
663
                                            const uint8_t * src)
664
{
665
    uint8_t *dst;
666

    
667
    dst = s->vga.vram_ptr + (s->cirrus_blt_dstaddr & s->cirrus_addr_mask);
668

    
669
    if (BLTUNSAFE(s))
670
        return 0;
671

    
672
    (*s->cirrus_rop) (s, dst, src,
673
                      s->cirrus_blt_dstpitch, 0,
674
                      s->cirrus_blt_width, s->cirrus_blt_height);
675
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
676
                             s->cirrus_blt_dstpitch, s->cirrus_blt_width,
677
                             s->cirrus_blt_height);
678
    return 1;
679
}
680

    
681
/* fill */
682

    
683
static int cirrus_bitblt_solidfill(CirrusVGAState *s, int blt_rop)
684
{
685
    cirrus_fill_t rop_func;
686

    
687
    if (BLTUNSAFE(s))
688
        return 0;
689
    rop_func = cirrus_fill[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
690
    rop_func(s, s->vga.vram_ptr + (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
691
             s->cirrus_blt_dstpitch,
692
             s->cirrus_blt_width, s->cirrus_blt_height);
693
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
694
                             s->cirrus_blt_dstpitch, s->cirrus_blt_width,
695
                             s->cirrus_blt_height);
696
    cirrus_bitblt_reset(s);
697
    return 1;
698
}
699

    
700
/***************************************
701
 *
702
 *  bitblt (video-to-video)
703
 *
704
 ***************************************/
705

    
706
static int cirrus_bitblt_videotovideo_patterncopy(CirrusVGAState * s)
707
{
708
    return cirrus_bitblt_common_patterncopy(s,
709
                                            s->vga.vram_ptr + ((s->cirrus_blt_srcaddr & ~7) &
710
                                            s->cirrus_addr_mask));
711
}
712

    
713
static void cirrus_do_copy(CirrusVGAState *s, int dst, int src, int w, int h)
714
{
715
    int sx, sy;
716
    int dx, dy;
717
    int width, height;
718
    int depth;
719
    int notify = 0;
720

    
721
    depth = s->vga.get_bpp(&s->vga) / 8;
722
    s->vga.get_resolution(&s->vga, &width, &height);
723

    
724
    /* extra x, y */
725
    sx = (src % ABS(s->cirrus_blt_srcpitch)) / depth;
726
    sy = (src / ABS(s->cirrus_blt_srcpitch));
727
    dx = (dst % ABS(s->cirrus_blt_dstpitch)) / depth;
728
    dy = (dst / ABS(s->cirrus_blt_dstpitch));
729

    
730
    /* normalize width */
731
    w /= depth;
732

    
733
    /* if we're doing a backward copy, we have to adjust
734
       our x/y to be the upper left corner (instead of the lower
735
       right corner) */
736
    if (s->cirrus_blt_dstpitch < 0) {
737
        sx -= (s->cirrus_blt_width / depth) - 1;
738
        dx -= (s->cirrus_blt_width / depth) - 1;
739
        sy -= s->cirrus_blt_height - 1;
740
        dy -= s->cirrus_blt_height - 1;
741
    }
742

    
743
    /* are we in the visible portion of memory? */
744
    if (sx >= 0 && sy >= 0 && dx >= 0 && dy >= 0 &&
745
        (sx + w) <= width && (sy + h) <= height &&
746
        (dx + w) <= width && (dy + h) <= height) {
747
        notify = 1;
748
    }
749

    
750
    /* make to sure only copy if it's a plain copy ROP */
751
    if (*s->cirrus_rop != cirrus_bitblt_rop_fwd_src &&
752
        *s->cirrus_rop != cirrus_bitblt_rop_bkwd_src)
753
        notify = 0;
754

    
755
    /* we have to flush all pending changes so that the copy
756
       is generated at the appropriate moment in time */
757
    if (notify)
758
        vga_hw_update();
759

    
760
    (*s->cirrus_rop) (s, s->vga.vram_ptr +
761
                      (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
762
                      s->vga.vram_ptr +
763
                      (s->cirrus_blt_srcaddr & s->cirrus_addr_mask),
764
                      s->cirrus_blt_dstpitch, s->cirrus_blt_srcpitch,
765
                      s->cirrus_blt_width, s->cirrus_blt_height);
766

    
767
    if (notify)
768
        qemu_console_copy(s->vga.ds,
769
                          sx, sy, dx, dy,
770
                          s->cirrus_blt_width / depth,
771
                          s->cirrus_blt_height);
772

    
773
    /* we don't have to notify the display that this portion has
774
       changed since qemu_console_copy implies this */
775

    
776
    cirrus_invalidate_region(s, s->cirrus_blt_dstaddr,
777
                                s->cirrus_blt_dstpitch, s->cirrus_blt_width,
778
                                s->cirrus_blt_height);
779
}
780

    
781
static int cirrus_bitblt_videotovideo_copy(CirrusVGAState * s)
782
{
783
    if (BLTUNSAFE(s))
784
        return 0;
785

    
786
    cirrus_do_copy(s, s->cirrus_blt_dstaddr - s->vga.start_addr,
787
            s->cirrus_blt_srcaddr - s->vga.start_addr,
788
            s->cirrus_blt_width, s->cirrus_blt_height);
789

    
790
    return 1;
791
}
792

    
793
/***************************************
794
 *
795
 *  bitblt (cpu-to-video)
796
 *
797
 ***************************************/
798

    
799
static void cirrus_bitblt_cputovideo_next(CirrusVGAState * s)
800
{
801
    int copy_count;
802
    uint8_t *end_ptr;
803

    
804
    if (s->cirrus_srccounter > 0) {
805
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
806
            cirrus_bitblt_common_patterncopy(s, s->cirrus_bltbuf);
807
        the_end:
808
            s->cirrus_srccounter = 0;
809
            cirrus_bitblt_reset(s);
810
        } else {
811
            /* at least one scan line */
812
            do {
813
                (*s->cirrus_rop)(s, s->vga.vram_ptr +
814
                                 (s->cirrus_blt_dstaddr & s->cirrus_addr_mask),
815
                                  s->cirrus_bltbuf, 0, 0, s->cirrus_blt_width, 1);
816
                cirrus_invalidate_region(s, s->cirrus_blt_dstaddr, 0,
817
                                         s->cirrus_blt_width, 1);
818
                s->cirrus_blt_dstaddr += s->cirrus_blt_dstpitch;
819
                s->cirrus_srccounter -= s->cirrus_blt_srcpitch;
820
                if (s->cirrus_srccounter <= 0)
821
                    goto the_end;
822
                /* more bytes than needed can be transfered because of
823
                   word alignment, so we keep them for the next line */
824
                /* XXX: keep alignment to speed up transfer */
825
                end_ptr = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
826
                copy_count = s->cirrus_srcptr_end - end_ptr;
827
                memmove(s->cirrus_bltbuf, end_ptr, copy_count);
828
                s->cirrus_srcptr = s->cirrus_bltbuf + copy_count;
829
                s->cirrus_srcptr_end = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
830
            } while (s->cirrus_srcptr >= s->cirrus_srcptr_end);
831
        }
832
    }
833
}
834

    
835
/***************************************
836
 *
837
 *  bitblt wrapper
838
 *
839
 ***************************************/
840

    
841
static void cirrus_bitblt_reset(CirrusVGAState * s)
842
{
843
    int need_update;
844

    
845
    s->vga.gr[0x31] &=
846
        ~(CIRRUS_BLT_START | CIRRUS_BLT_BUSY | CIRRUS_BLT_FIFOUSED);
847
    need_update = s->cirrus_srcptr != &s->cirrus_bltbuf[0]
848
        || s->cirrus_srcptr_end != &s->cirrus_bltbuf[0];
849
    s->cirrus_srcptr = &s->cirrus_bltbuf[0];
850
    s->cirrus_srcptr_end = &s->cirrus_bltbuf[0];
851
    s->cirrus_srccounter = 0;
852
    if (!need_update)
853
        return;
854
    cirrus_update_memory_access(s);
855
}
856

    
857
static int cirrus_bitblt_cputovideo(CirrusVGAState * s)
858
{
859
    int w;
860

    
861
    s->cirrus_blt_mode &= ~CIRRUS_BLTMODE_MEMSYSSRC;
862
    s->cirrus_srcptr = &s->cirrus_bltbuf[0];
863
    s->cirrus_srcptr_end = &s->cirrus_bltbuf[0];
864

    
865
    if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
866
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
867
            s->cirrus_blt_srcpitch = 8;
868
        } else {
869
            /* XXX: check for 24 bpp */
870
            s->cirrus_blt_srcpitch = 8 * 8 * s->cirrus_blt_pixelwidth;
871
        }
872
        s->cirrus_srccounter = s->cirrus_blt_srcpitch;
873
    } else {
874
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
875
            w = s->cirrus_blt_width / s->cirrus_blt_pixelwidth;
876
            if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_DWORDGRANULARITY)
877
                s->cirrus_blt_srcpitch = ((w + 31) >> 5);
878
            else
879
                s->cirrus_blt_srcpitch = ((w + 7) >> 3);
880
        } else {
881
            /* always align input size to 32 bits */
882
            s->cirrus_blt_srcpitch = (s->cirrus_blt_width + 3) & ~3;
883
        }
884
        s->cirrus_srccounter = s->cirrus_blt_srcpitch * s->cirrus_blt_height;
885
    }
886
    s->cirrus_srcptr = s->cirrus_bltbuf;
887
    s->cirrus_srcptr_end = s->cirrus_bltbuf + s->cirrus_blt_srcpitch;
888
    cirrus_update_memory_access(s);
889
    return 1;
890
}
891

    
892
static int cirrus_bitblt_videotocpu(CirrusVGAState * s)
893
{
894
    /* XXX */
895
#ifdef DEBUG_BITBLT
896
    printf("cirrus: bitblt (video to cpu) is not implemented yet\n");
897
#endif
898
    return 0;
899
}
900

    
901
static int cirrus_bitblt_videotovideo(CirrusVGAState * s)
902
{
903
    int ret;
904

    
905
    if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
906
        ret = cirrus_bitblt_videotovideo_patterncopy(s);
907
    } else {
908
        ret = cirrus_bitblt_videotovideo_copy(s);
909
    }
910
    if (ret)
911
        cirrus_bitblt_reset(s);
912
    return ret;
913
}
914

    
915
static void cirrus_bitblt_start(CirrusVGAState * s)
916
{
917
    uint8_t blt_rop;
918

    
919
    s->vga.gr[0x31] |= CIRRUS_BLT_BUSY;
920

    
921
    s->cirrus_blt_width = (s->vga.gr[0x20] | (s->vga.gr[0x21] << 8)) + 1;
922
    s->cirrus_blt_height = (s->vga.gr[0x22] | (s->vga.gr[0x23] << 8)) + 1;
923
    s->cirrus_blt_dstpitch = (s->vga.gr[0x24] | (s->vga.gr[0x25] << 8));
924
    s->cirrus_blt_srcpitch = (s->vga.gr[0x26] | (s->vga.gr[0x27] << 8));
925
    s->cirrus_blt_dstaddr =
926
        (s->vga.gr[0x28] | (s->vga.gr[0x29] << 8) | (s->vga.gr[0x2a] << 16));
927
    s->cirrus_blt_srcaddr =
928
        (s->vga.gr[0x2c] | (s->vga.gr[0x2d] << 8) | (s->vga.gr[0x2e] << 16));
929
    s->cirrus_blt_mode = s->vga.gr[0x30];
930
    s->cirrus_blt_modeext = s->vga.gr[0x33];
931
    blt_rop = s->vga.gr[0x32];
932

    
933
#ifdef DEBUG_BITBLT
934
    printf("rop=0x%02x mode=0x%02x modeext=0x%02x w=%d h=%d dpitch=%d spitch=%d daddr=0x%08x saddr=0x%08x writemask=0x%02x\n",
935
           blt_rop,
936
           s->cirrus_blt_mode,
937
           s->cirrus_blt_modeext,
938
           s->cirrus_blt_width,
939
           s->cirrus_blt_height,
940
           s->cirrus_blt_dstpitch,
941
           s->cirrus_blt_srcpitch,
942
           s->cirrus_blt_dstaddr,
943
           s->cirrus_blt_srcaddr,
944
           s->vga.gr[0x2f]);
945
#endif
946

    
947
    switch (s->cirrus_blt_mode & CIRRUS_BLTMODE_PIXELWIDTHMASK) {
948
    case CIRRUS_BLTMODE_PIXELWIDTH8:
949
        s->cirrus_blt_pixelwidth = 1;
950
        break;
951
    case CIRRUS_BLTMODE_PIXELWIDTH16:
952
        s->cirrus_blt_pixelwidth = 2;
953
        break;
954
    case CIRRUS_BLTMODE_PIXELWIDTH24:
955
        s->cirrus_blt_pixelwidth = 3;
956
        break;
957
    case CIRRUS_BLTMODE_PIXELWIDTH32:
958
        s->cirrus_blt_pixelwidth = 4;
959
        break;
960
    default:
961
#ifdef DEBUG_BITBLT
962
        printf("cirrus: bitblt - pixel width is unknown\n");
963
#endif
964
        goto bitblt_ignore;
965
    }
966
    s->cirrus_blt_mode &= ~CIRRUS_BLTMODE_PIXELWIDTHMASK;
967

    
968
    if ((s->
969
         cirrus_blt_mode & (CIRRUS_BLTMODE_MEMSYSSRC |
970
                            CIRRUS_BLTMODE_MEMSYSDEST))
971
        == (CIRRUS_BLTMODE_MEMSYSSRC | CIRRUS_BLTMODE_MEMSYSDEST)) {
972
#ifdef DEBUG_BITBLT
973
        printf("cirrus: bitblt - memory-to-memory copy is requested\n");
974
#endif
975
        goto bitblt_ignore;
976
    }
977

    
978
    if ((s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_SOLIDFILL) &&
979
        (s->cirrus_blt_mode & (CIRRUS_BLTMODE_MEMSYSDEST |
980
                               CIRRUS_BLTMODE_TRANSPARENTCOMP |
981
                               CIRRUS_BLTMODE_PATTERNCOPY |
982
                               CIRRUS_BLTMODE_COLOREXPAND)) ==
983
         (CIRRUS_BLTMODE_PATTERNCOPY | CIRRUS_BLTMODE_COLOREXPAND)) {
984
        cirrus_bitblt_fgcol(s);
985
        cirrus_bitblt_solidfill(s, blt_rop);
986
    } else {
987
        if ((s->cirrus_blt_mode & (CIRRUS_BLTMODE_COLOREXPAND |
988
                                   CIRRUS_BLTMODE_PATTERNCOPY)) ==
989
            CIRRUS_BLTMODE_COLOREXPAND) {
990

    
991
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
992
                if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_COLOREXPINV)
993
                    cirrus_bitblt_bgcol(s);
994
                else
995
                    cirrus_bitblt_fgcol(s);
996
                s->cirrus_rop = cirrus_colorexpand_transp[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
997
            } else {
998
                cirrus_bitblt_fgcol(s);
999
                cirrus_bitblt_bgcol(s);
1000
                s->cirrus_rop = cirrus_colorexpand[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1001
            }
1002
        } else if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) {
1003
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_COLOREXPAND) {
1004
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
1005
                    if (s->cirrus_blt_modeext & CIRRUS_BLTMODEEXT_COLOREXPINV)
1006
                        cirrus_bitblt_bgcol(s);
1007
                    else
1008
                        cirrus_bitblt_fgcol(s);
1009
                    s->cirrus_rop = cirrus_colorexpand_pattern_transp[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1010
                } else {
1011
                    cirrus_bitblt_fgcol(s);
1012
                    cirrus_bitblt_bgcol(s);
1013
                    s->cirrus_rop = cirrus_colorexpand_pattern[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1014
                }
1015
            } else {
1016
                s->cirrus_rop = cirrus_patternfill[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1017
            }
1018
        } else {
1019
            if (s->cirrus_blt_mode & CIRRUS_BLTMODE_TRANSPARENTCOMP) {
1020
                if (s->cirrus_blt_pixelwidth > 2) {
1021
                    printf("src transparent without colorexpand must be 8bpp or 16bpp\n");
1022
                    goto bitblt_ignore;
1023
                }
1024
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_BACKWARDS) {
1025
                    s->cirrus_blt_dstpitch = -s->cirrus_blt_dstpitch;
1026
                    s->cirrus_blt_srcpitch = -s->cirrus_blt_srcpitch;
1027
                    s->cirrus_rop = cirrus_bkwd_transp_rop[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1028
                } else {
1029
                    s->cirrus_rop = cirrus_fwd_transp_rop[rop_to_index[blt_rop]][s->cirrus_blt_pixelwidth - 1];
1030
                }
1031
            } else {
1032
                if (s->cirrus_blt_mode & CIRRUS_BLTMODE_BACKWARDS) {
1033
                    s->cirrus_blt_dstpitch = -s->cirrus_blt_dstpitch;
1034
                    s->cirrus_blt_srcpitch = -s->cirrus_blt_srcpitch;
1035
                    s->cirrus_rop = cirrus_bkwd_rop[rop_to_index[blt_rop]];
1036
                } else {
1037
                    s->cirrus_rop = cirrus_fwd_rop[rop_to_index[blt_rop]];
1038
                }
1039
            }
1040
        }
1041
        // setup bitblt engine.
1042
        if (s->cirrus_blt_mode & CIRRUS_BLTMODE_MEMSYSSRC) {
1043
            if (!cirrus_bitblt_cputovideo(s))
1044
                goto bitblt_ignore;
1045
        } else if (s->cirrus_blt_mode & CIRRUS_BLTMODE_MEMSYSDEST) {
1046
            if (!cirrus_bitblt_videotocpu(s))
1047
                goto bitblt_ignore;
1048
        } else {
1049
            if (!cirrus_bitblt_videotovideo(s))
1050
                goto bitblt_ignore;
1051
        }
1052
    }
1053
    return;
1054
  bitblt_ignore:;
1055
    cirrus_bitblt_reset(s);
1056
}
1057

    
1058
static void cirrus_write_bitblt(CirrusVGAState * s, unsigned reg_value)
1059
{
1060
    unsigned old_value;
1061

    
1062
    old_value = s->vga.gr[0x31];
1063
    s->vga.gr[0x31] = reg_value;
1064

    
1065
    if (((old_value & CIRRUS_BLT_RESET) != 0) &&
1066
        ((reg_value & CIRRUS_BLT_RESET) == 0)) {
1067
        cirrus_bitblt_reset(s);
1068
    } else if (((old_value & CIRRUS_BLT_START) == 0) &&
1069
               ((reg_value & CIRRUS_BLT_START) != 0)) {
1070
        cirrus_bitblt_start(s);
1071
    }
1072
}
1073

    
1074

    
1075
/***************************************
1076
 *
1077
 *  basic parameters
1078
 *
1079
 ***************************************/
1080

    
1081
static void cirrus_get_offsets(VGACommonState *s1,
1082
                               uint32_t *pline_offset,
1083
                               uint32_t *pstart_addr,
1084
                               uint32_t *pline_compare)
1085
{
1086
    CirrusVGAState * s = container_of(s1, CirrusVGAState, vga);
1087
    uint32_t start_addr, line_offset, line_compare;
1088

    
1089
    line_offset = s->vga.cr[0x13]
1090
        | ((s->vga.cr[0x1b] & 0x10) << 4);
1091
    line_offset <<= 3;
1092
    *pline_offset = line_offset;
1093

    
1094
    start_addr = (s->vga.cr[0x0c] << 8)
1095
        | s->vga.cr[0x0d]
1096
        | ((s->vga.cr[0x1b] & 0x01) << 16)
1097
        | ((s->vga.cr[0x1b] & 0x0c) << 15)
1098
        | ((s->vga.cr[0x1d] & 0x80) << 12);
1099
    *pstart_addr = start_addr;
1100

    
1101
    line_compare = s->vga.cr[0x18] |
1102
        ((s->vga.cr[0x07] & 0x10) << 4) |
1103
        ((s->vga.cr[0x09] & 0x40) << 3);
1104
    *pline_compare = line_compare;
1105
}
1106

    
1107
static uint32_t cirrus_get_bpp16_depth(CirrusVGAState * s)
1108
{
1109
    uint32_t ret = 16;
1110

    
1111
    switch (s->cirrus_hidden_dac_data & 0xf) {
1112
    case 0:
1113
        ret = 15;
1114
        break;                        /* Sierra HiColor */
1115
    case 1:
1116
        ret = 16;
1117
        break;                        /* XGA HiColor */
1118
    default:
1119
#ifdef DEBUG_CIRRUS
1120
        printf("cirrus: invalid DAC value %x in 16bpp\n",
1121
               (s->cirrus_hidden_dac_data & 0xf));
1122
#endif
1123
        ret = 15;                /* XXX */
1124
        break;
1125
    }
1126
    return ret;
1127
}
1128

    
1129
static int cirrus_get_bpp(VGACommonState *s1)
1130
{
1131
    CirrusVGAState * s = container_of(s1, CirrusVGAState, vga);
1132
    uint32_t ret = 8;
1133

    
1134
    if ((s->vga.sr[0x07] & 0x01) != 0) {
1135
        /* Cirrus SVGA */
1136
        switch (s->vga.sr[0x07] & CIRRUS_SR7_BPP_MASK) {
1137
        case CIRRUS_SR7_BPP_8:
1138
            ret = 8;
1139
            break;
1140
        case CIRRUS_SR7_BPP_16_DOUBLEVCLK:
1141
            ret = cirrus_get_bpp16_depth(s);
1142
            break;
1143
        case CIRRUS_SR7_BPP_24:
1144
            ret = 24;
1145
            break;
1146
        case CIRRUS_SR7_BPP_16:
1147
            ret = cirrus_get_bpp16_depth(s);
1148
            break;
1149
        case CIRRUS_SR7_BPP_32:
1150
            ret = 32;
1151
            break;
1152
        default:
1153
#ifdef DEBUG_CIRRUS
1154
            printf("cirrus: unknown bpp - sr7=%x\n", s->vga.sr[0x7]);
1155
#endif
1156
            ret = 8;
1157
            break;
1158
        }
1159
    } else {
1160
        /* VGA */
1161
        ret = 0;
1162
    }
1163

    
1164
    return ret;
1165
}
1166

    
1167
static void cirrus_get_resolution(VGACommonState *s, int *pwidth, int *pheight)
1168
{
1169
    int width, height;
1170

    
1171
    width = (s->cr[0x01] + 1) * 8;
1172
    height = s->cr[0x12] |
1173
        ((s->cr[0x07] & 0x02) << 7) |
1174
        ((s->cr[0x07] & 0x40) << 3);
1175
    height = (height + 1);
1176
    /* interlace support */
1177
    if (s->cr[0x1a] & 0x01)
1178
        height = height * 2;
1179
    *pwidth = width;
1180
    *pheight = height;
1181
}
1182

    
1183
/***************************************
1184
 *
1185
 * bank memory
1186
 *
1187
 ***************************************/
1188

    
1189
static void cirrus_update_bank_ptr(CirrusVGAState * s, unsigned bank_index)
1190
{
1191
    unsigned offset;
1192
    unsigned limit;
1193

    
1194
    if ((s->vga.gr[0x0b] & 0x01) != 0)        /* dual bank */
1195
        offset = s->vga.gr[0x09 + bank_index];
1196
    else                        /* single bank */
1197
        offset = s->vga.gr[0x09];
1198

    
1199
    if ((s->vga.gr[0x0b] & 0x20) != 0)
1200
        offset <<= 14;
1201
    else
1202
        offset <<= 12;
1203

    
1204
    if (s->real_vram_size <= offset)
1205
        limit = 0;
1206
    else
1207
        limit = s->real_vram_size - offset;
1208

    
1209
    if (((s->vga.gr[0x0b] & 0x01) == 0) && (bank_index != 0)) {
1210
        if (limit > 0x8000) {
1211
            offset += 0x8000;
1212
            limit -= 0x8000;
1213
        } else {
1214
            limit = 0;
1215
        }
1216
    }
1217

    
1218
    if (limit > 0) {
1219
        /* Thinking about changing bank base? First, drop the dirty bitmap information
1220
         * on the current location, otherwise we lose this pointer forever */
1221
        if (s->vga.lfb_vram_mapped) {
1222
            target_phys_addr_t base_addr = isa_mem_base + 0xa0000 + bank_index * 0x8000;
1223
            cpu_physical_sync_dirty_bitmap(base_addr, base_addr + 0x8000);
1224
        }
1225
        s->cirrus_bank_base[bank_index] = offset;
1226
        s->cirrus_bank_limit[bank_index] = limit;
1227
    } else {
1228
        s->cirrus_bank_base[bank_index] = 0;
1229
        s->cirrus_bank_limit[bank_index] = 0;
1230
    }
1231
}
1232

    
1233
/***************************************
1234
 *
1235
 *  I/O access between 0x3c4-0x3c5
1236
 *
1237
 ***************************************/
1238

    
1239
static int cirrus_vga_read_sr(CirrusVGAState * s)
1240
{
1241
    switch (s->vga.sr_index) {
1242
    case 0x00:                        // Standard VGA
1243
    case 0x01:                        // Standard VGA
1244
    case 0x02:                        // Standard VGA
1245
    case 0x03:                        // Standard VGA
1246
    case 0x04:                        // Standard VGA
1247
        return s->vga.sr[s->vga.sr_index];
1248
    case 0x06:                        // Unlock Cirrus extensions
1249
        return s->vga.sr[s->vga.sr_index];
1250
    case 0x10:
1251
    case 0x30:
1252
    case 0x50:
1253
    case 0x70:                        // Graphics Cursor X
1254
    case 0x90:
1255
    case 0xb0:
1256
    case 0xd0:
1257
    case 0xf0:                        // Graphics Cursor X
1258
        return s->vga.sr[0x10];
1259
    case 0x11:
1260
    case 0x31:
1261
    case 0x51:
1262
    case 0x71:                        // Graphics Cursor Y
1263
    case 0x91:
1264
    case 0xb1:
1265
    case 0xd1:
1266
    case 0xf1:                        // Graphics Cursor Y
1267
        return s->vga.sr[0x11];
1268
    case 0x05:                        // ???
1269
    case 0x07:                        // Extended Sequencer Mode
1270
    case 0x08:                        // EEPROM Control
1271
    case 0x09:                        // Scratch Register 0
1272
    case 0x0a:                        // Scratch Register 1
1273
    case 0x0b:                        // VCLK 0
1274
    case 0x0c:                        // VCLK 1
1275
    case 0x0d:                        // VCLK 2
1276
    case 0x0e:                        // VCLK 3
1277
    case 0x0f:                        // DRAM Control
1278
    case 0x12:                        // Graphics Cursor Attribute
1279
    case 0x13:                        // Graphics Cursor Pattern Address
1280
    case 0x14:                        // Scratch Register 2
1281
    case 0x15:                        // Scratch Register 3
1282
    case 0x16:                        // Performance Tuning Register
1283
    case 0x17:                        // Configuration Readback and Extended Control
1284
    case 0x18:                        // Signature Generator Control
1285
    case 0x19:                        // Signal Generator Result
1286
    case 0x1a:                        // Signal Generator Result
1287
    case 0x1b:                        // VCLK 0 Denominator & Post
1288
    case 0x1c:                        // VCLK 1 Denominator & Post
1289
    case 0x1d:                        // VCLK 2 Denominator & Post
1290
    case 0x1e:                        // VCLK 3 Denominator & Post
1291
    case 0x1f:                        // BIOS Write Enable and MCLK select
1292
#ifdef DEBUG_CIRRUS
1293
        printf("cirrus: handled inport sr_index %02x\n", s->vga.sr_index);
1294
#endif
1295
        return s->vga.sr[s->vga.sr_index];
1296
    default:
1297
#ifdef DEBUG_CIRRUS
1298
        printf("cirrus: inport sr_index %02x\n", s->vga.sr_index);
1299
#endif
1300
        return 0xff;
1301
        break;
1302
    }
1303
}
1304

    
1305
static void cirrus_vga_write_sr(CirrusVGAState * s, uint32_t val)
1306
{
1307
    switch (s->vga.sr_index) {
1308
    case 0x00:                        // Standard VGA
1309
    case 0x01:                        // Standard VGA
1310
    case 0x02:                        // Standard VGA
1311
    case 0x03:                        // Standard VGA
1312
    case 0x04:                        // Standard VGA
1313
        s->vga.sr[s->vga.sr_index] = val & sr_mask[s->vga.sr_index];
1314
        if (s->vga.sr_index == 1)
1315
            s->vga.update_retrace_info(&s->vga);
1316
        break;
1317
    case 0x06:                        // Unlock Cirrus extensions
1318
        val &= 0x17;
1319
        if (val == 0x12) {
1320
            s->vga.sr[s->vga.sr_index] = 0x12;
1321
        } else {
1322
            s->vga.sr[s->vga.sr_index] = 0x0f;
1323
        }
1324
        break;
1325
    case 0x10:
1326
    case 0x30:
1327
    case 0x50:
1328
    case 0x70:                        // Graphics Cursor X
1329
    case 0x90:
1330
    case 0xb0:
1331
    case 0xd0:
1332
    case 0xf0:                        // Graphics Cursor X
1333
        s->vga.sr[0x10] = val;
1334
        s->hw_cursor_x = (val << 3) | (s->vga.sr_index >> 5);
1335
        break;
1336
    case 0x11:
1337
    case 0x31:
1338
    case 0x51:
1339
    case 0x71:                        // Graphics Cursor Y
1340
    case 0x91:
1341
    case 0xb1:
1342
    case 0xd1:
1343
    case 0xf1:                        // Graphics Cursor Y
1344
        s->vga.sr[0x11] = val;
1345
        s->hw_cursor_y = (val << 3) | (s->vga.sr_index >> 5);
1346
        break;
1347
    case 0x07:                        // Extended Sequencer Mode
1348
    cirrus_update_memory_access(s);
1349
    case 0x08:                        // EEPROM Control
1350
    case 0x09:                        // Scratch Register 0
1351
    case 0x0a:                        // Scratch Register 1
1352
    case 0x0b:                        // VCLK 0
1353
    case 0x0c:                        // VCLK 1
1354
    case 0x0d:                        // VCLK 2
1355
    case 0x0e:                        // VCLK 3
1356
    case 0x0f:                        // DRAM Control
1357
    case 0x12:                        // Graphics Cursor Attribute
1358
    case 0x13:                        // Graphics Cursor Pattern Address
1359
    case 0x14:                        // Scratch Register 2
1360
    case 0x15:                        // Scratch Register 3
1361
    case 0x16:                        // Performance Tuning Register
1362
    case 0x18:                        // Signature Generator Control
1363
    case 0x19:                        // Signature Generator Result
1364
    case 0x1a:                        // Signature Generator Result
1365
    case 0x1b:                        // VCLK 0 Denominator & Post
1366
    case 0x1c:                        // VCLK 1 Denominator & Post
1367
    case 0x1d:                        // VCLK 2 Denominator & Post
1368
    case 0x1e:                        // VCLK 3 Denominator & Post
1369
    case 0x1f:                        // BIOS Write Enable and MCLK select
1370
        s->vga.sr[s->vga.sr_index] = val;
1371
#ifdef DEBUG_CIRRUS
1372
        printf("cirrus: handled outport sr_index %02x, sr_value %02x\n",
1373
               s->vga.sr_index, val);
1374
#endif
1375
        break;
1376
    case 0x17:                        // Configuration Readback and Extended Control
1377
        s->vga.sr[s->vga.sr_index] = (s->vga.sr[s->vga.sr_index] & 0x38)
1378
                                   | (val & 0xc7);
1379
        cirrus_update_memory_access(s);
1380
        break;
1381
    default:
1382
#ifdef DEBUG_CIRRUS
1383
        printf("cirrus: outport sr_index %02x, sr_value %02x\n",
1384
               s->vga.sr_index, val);
1385
#endif
1386
        break;
1387
    }
1388
}
1389

    
1390
/***************************************
1391
 *
1392
 *  I/O access at 0x3c6
1393
 *
1394
 ***************************************/
1395

    
1396
static int cirrus_read_hidden_dac(CirrusVGAState * s)
1397
{
1398
    if (++s->cirrus_hidden_dac_lockindex == 5) {
1399
        s->cirrus_hidden_dac_lockindex = 0;
1400
        return s->cirrus_hidden_dac_data;
1401
    }
1402
    return 0xff;
1403
}
1404

    
1405
static void cirrus_write_hidden_dac(CirrusVGAState * s, int reg_value)
1406
{
1407
    if (s->cirrus_hidden_dac_lockindex == 4) {
1408
        s->cirrus_hidden_dac_data = reg_value;
1409
#if defined(DEBUG_CIRRUS)
1410
        printf("cirrus: outport hidden DAC, value %02x\n", reg_value);
1411
#endif
1412
    }
1413
    s->cirrus_hidden_dac_lockindex = 0;
1414
}
1415

    
1416
/***************************************
1417
 *
1418
 *  I/O access at 0x3c9
1419
 *
1420
 ***************************************/
1421

    
1422
static int cirrus_vga_read_palette(CirrusVGAState * s)
1423
{
1424
    int val;
1425

    
1426
    if ((s->vga.sr[0x12] & CIRRUS_CURSOR_HIDDENPEL)) {
1427
        val = s->cirrus_hidden_palette[(s->vga.dac_read_index & 0x0f) * 3 +
1428
                                       s->vga.dac_sub_index];
1429
    } else {
1430
        val = s->vga.palette[s->vga.dac_read_index * 3 + s->vga.dac_sub_index];
1431
    }
1432
    if (++s->vga.dac_sub_index == 3) {
1433
        s->vga.dac_sub_index = 0;
1434
        s->vga.dac_read_index++;
1435
    }
1436
    return val;
1437
}
1438

    
1439
static void cirrus_vga_write_palette(CirrusVGAState * s, int reg_value)
1440
{
1441
    s->vga.dac_cache[s->vga.dac_sub_index] = reg_value;
1442
    if (++s->vga.dac_sub_index == 3) {
1443
        if ((s->vga.sr[0x12] & CIRRUS_CURSOR_HIDDENPEL)) {
1444
            memcpy(&s->cirrus_hidden_palette[(s->vga.dac_write_index & 0x0f) * 3],
1445
                   s->vga.dac_cache, 3);
1446
        } else {
1447
            memcpy(&s->vga.palette[s->vga.dac_write_index * 3], s->vga.dac_cache, 3);
1448
        }
1449
        /* XXX update cursor */
1450
        s->vga.dac_sub_index = 0;
1451
        s->vga.dac_write_index++;
1452
    }
1453
}
1454

    
1455
/***************************************
1456
 *
1457
 *  I/O access between 0x3ce-0x3cf
1458
 *
1459
 ***************************************/
1460

    
1461
static int cirrus_vga_read_gr(CirrusVGAState * s, unsigned reg_index)
1462
{
1463
    switch (reg_index) {
1464
    case 0x00: // Standard VGA, BGCOLOR 0x000000ff
1465
        return s->cirrus_shadow_gr0;
1466
    case 0x01: // Standard VGA, FGCOLOR 0x000000ff
1467
        return s->cirrus_shadow_gr1;
1468
    case 0x02:                        // Standard VGA
1469
    case 0x03:                        // Standard VGA
1470
    case 0x04:                        // Standard VGA
1471
    case 0x06:                        // Standard VGA
1472
    case 0x07:                        // Standard VGA
1473
    case 0x08:                        // Standard VGA
1474
        return s->vga.gr[s->vga.gr_index];
1475
    case 0x05:                        // Standard VGA, Cirrus extended mode
1476
    default:
1477
        break;
1478
    }
1479

    
1480
    if (reg_index < 0x3a) {
1481
        return s->vga.gr[reg_index];
1482
    } else {
1483
#ifdef DEBUG_CIRRUS
1484
        printf("cirrus: inport gr_index %02x\n", reg_index);
1485
#endif
1486
        return 0xff;
1487
    }
1488
}
1489

    
1490
static void
1491
cirrus_vga_write_gr(CirrusVGAState * s, unsigned reg_index, int reg_value)
1492
{
1493
#if defined(DEBUG_BITBLT) && 0
1494
    printf("gr%02x: %02x\n", reg_index, reg_value);
1495
#endif
1496
    switch (reg_index) {
1497
    case 0x00:                        // Standard VGA, BGCOLOR 0x000000ff
1498
        s->cirrus_shadow_gr0 = reg_value;
1499
        break;
1500
    case 0x01:                        // Standard VGA, FGCOLOR 0x000000ff
1501
        s->cirrus_shadow_gr1 = reg_value;
1502
        break;
1503
    case 0x02:                        // Standard VGA
1504
    case 0x03:                        // Standard VGA
1505
    case 0x04:                        // Standard VGA
1506
    case 0x06:                        // Standard VGA
1507
    case 0x07:                        // Standard VGA
1508
    case 0x08:                        // Standard VGA
1509
        s->vga.gr[reg_index] = reg_value & gr_mask[reg_index];
1510
        break;
1511
    case 0x05:                        // Standard VGA, Cirrus extended mode
1512
        s->vga.gr[reg_index] = reg_value & 0x7f;
1513
        cirrus_update_memory_access(s);
1514
        break;
1515
    case 0x09:                        // bank offset #0
1516
    case 0x0A:                        // bank offset #1
1517
        s->vga.gr[reg_index] = reg_value;
1518
        cirrus_update_bank_ptr(s, 0);
1519
        cirrus_update_bank_ptr(s, 1);
1520
        cirrus_update_memory_access(s);
1521
        break;
1522
    case 0x0B:
1523
        s->vga.gr[reg_index] = reg_value;
1524
        cirrus_update_bank_ptr(s, 0);
1525
        cirrus_update_bank_ptr(s, 1);
1526
        cirrus_update_memory_access(s);
1527
        break;
1528
    case 0x10:                        // BGCOLOR 0x0000ff00
1529
    case 0x11:                        // FGCOLOR 0x0000ff00
1530
    case 0x12:                        // BGCOLOR 0x00ff0000
1531
    case 0x13:                        // FGCOLOR 0x00ff0000
1532
    case 0x14:                        // BGCOLOR 0xff000000
1533
    case 0x15:                        // FGCOLOR 0xff000000
1534
    case 0x20:                        // BLT WIDTH 0x0000ff
1535
    case 0x22:                        // BLT HEIGHT 0x0000ff
1536
    case 0x24:                        // BLT DEST PITCH 0x0000ff
1537
    case 0x26:                        // BLT SRC PITCH 0x0000ff
1538
    case 0x28:                        // BLT DEST ADDR 0x0000ff
1539
    case 0x29:                        // BLT DEST ADDR 0x00ff00
1540
    case 0x2c:                        // BLT SRC ADDR 0x0000ff
1541
    case 0x2d:                        // BLT SRC ADDR 0x00ff00
1542
    case 0x2f:                  // BLT WRITEMASK
1543
    case 0x30:                        // BLT MODE
1544
    case 0x32:                        // RASTER OP
1545
    case 0x33:                        // BLT MODEEXT
1546
    case 0x34:                        // BLT TRANSPARENT COLOR 0x00ff
1547
    case 0x35:                        // BLT TRANSPARENT COLOR 0xff00
1548
    case 0x38:                        // BLT TRANSPARENT COLOR MASK 0x00ff
1549
    case 0x39:                        // BLT TRANSPARENT COLOR MASK 0xff00
1550
        s->vga.gr[reg_index] = reg_value;
1551
        break;
1552
    case 0x21:                        // BLT WIDTH 0x001f00
1553
    case 0x23:                        // BLT HEIGHT 0x001f00
1554
    case 0x25:                        // BLT DEST PITCH 0x001f00
1555
    case 0x27:                        // BLT SRC PITCH 0x001f00
1556
        s->vga.gr[reg_index] = reg_value & 0x1f;
1557
        break;
1558
    case 0x2a:                        // BLT DEST ADDR 0x3f0000
1559
        s->vga.gr[reg_index] = reg_value & 0x3f;
1560
        /* if auto start mode, starts bit blt now */
1561
        if (s->vga.gr[0x31] & CIRRUS_BLT_AUTOSTART) {
1562
            cirrus_bitblt_start(s);
1563
        }
1564
        break;
1565
    case 0x2e:                        // BLT SRC ADDR 0x3f0000
1566
        s->vga.gr[reg_index] = reg_value & 0x3f;
1567
        break;
1568
    case 0x31:                        // BLT STATUS/START
1569
        cirrus_write_bitblt(s, reg_value);
1570
        break;
1571
    default:
1572
#ifdef DEBUG_CIRRUS
1573
        printf("cirrus: outport gr_index %02x, gr_value %02x\n", reg_index,
1574
               reg_value);
1575
#endif
1576
        break;
1577
    }
1578
}
1579

    
1580
/***************************************
1581
 *
1582
 *  I/O access between 0x3d4-0x3d5
1583
 *
1584
 ***************************************/
1585

    
1586
static int cirrus_vga_read_cr(CirrusVGAState * s, unsigned reg_index)
1587
{
1588
    switch (reg_index) {
1589
    case 0x00:                        // Standard VGA
1590
    case 0x01:                        // Standard VGA
1591
    case 0x02:                        // Standard VGA
1592
    case 0x03:                        // Standard VGA
1593
    case 0x04:                        // Standard VGA
1594
    case 0x05:                        // Standard VGA
1595
    case 0x06:                        // Standard VGA
1596
    case 0x07:                        // Standard VGA
1597
    case 0x08:                        // Standard VGA
1598
    case 0x09:                        // Standard VGA
1599
    case 0x0a:                        // Standard VGA
1600
    case 0x0b:                        // Standard VGA
1601
    case 0x0c:                        // Standard VGA
1602
    case 0x0d:                        // Standard VGA
1603
    case 0x0e:                        // Standard VGA
1604
    case 0x0f:                        // Standard VGA
1605
    case 0x10:                        // Standard VGA
1606
    case 0x11:                        // Standard VGA
1607
    case 0x12:                        // Standard VGA
1608
    case 0x13:                        // Standard VGA
1609
    case 0x14:                        // Standard VGA
1610
    case 0x15:                        // Standard VGA
1611
    case 0x16:                        // Standard VGA
1612
    case 0x17:                        // Standard VGA
1613
    case 0x18:                        // Standard VGA
1614
        return s->vga.cr[s->vga.cr_index];
1615
    case 0x24:                        // Attribute Controller Toggle Readback (R)
1616
        return (s->vga.ar_flip_flop << 7);
1617
    case 0x19:                        // Interlace End
1618
    case 0x1a:                        // Miscellaneous Control
1619
    case 0x1b:                        // Extended Display Control
1620
    case 0x1c:                        // Sync Adjust and Genlock
1621
    case 0x1d:                        // Overlay Extended Control
1622
    case 0x22:                        // Graphics Data Latches Readback (R)
1623
    case 0x25:                        // Part Status
1624
    case 0x27:                        // Part ID (R)
1625
        return s->vga.cr[s->vga.cr_index];
1626
    case 0x26:                        // Attribute Controller Index Readback (R)
1627
        return s->vga.ar_index & 0x3f;
1628
        break;
1629
    default:
1630
#ifdef DEBUG_CIRRUS
1631
        printf("cirrus: inport cr_index %02x\n", reg_index);
1632
#endif
1633
        return 0xff;
1634
    }
1635
}
1636

    
1637
static int
1638
cirrus_hook_write_cr(CirrusVGAState * s, unsigned reg_index, int reg_value)
1639
{
1640
    switch (reg_index) {
1641
    case 0x00:                        // Standard VGA
1642
    case 0x01:                        // Standard VGA
1643
    case 0x02:                        // Standard VGA
1644
    case 0x03:                        // Standard VGA
1645
    case 0x04:                        // Standard VGA
1646
    case 0x05:                        // Standard VGA
1647
    case 0x06:                        // Standard VGA
1648
    case 0x07:                        // Standard VGA
1649
    case 0x08:                        // Standard VGA
1650
    case 0x09:                        // Standard VGA
1651
    case 0x0a:                        // Standard VGA
1652
    case 0x0b:                        // Standard VGA
1653
    case 0x0c:                        // Standard VGA
1654
    case 0x0d:                        // Standard VGA
1655
    case 0x0e:                        // Standard VGA
1656
    case 0x0f:                        // Standard VGA
1657
    case 0x10:                        // Standard VGA
1658
    case 0x11:                        // Standard VGA
1659
    case 0x12:                        // Standard VGA
1660
    case 0x13:                        // Standard VGA
1661
    case 0x14:                        // Standard VGA
1662
    case 0x15:                        // Standard VGA
1663
    case 0x16:                        // Standard VGA
1664
    case 0x17:                        // Standard VGA
1665
    case 0x18:                        // Standard VGA
1666
        return CIRRUS_HOOK_NOT_HANDLED;
1667
    case 0x19:                        // Interlace End
1668
    case 0x1a:                        // Miscellaneous Control
1669
    case 0x1b:                        // Extended Display Control
1670
    case 0x1c:                        // Sync Adjust and Genlock
1671
    case 0x1d:                        // Overlay Extended Control
1672
        s->vga.cr[reg_index] = reg_value;
1673
#ifdef DEBUG_CIRRUS
1674
        printf("cirrus: handled outport cr_index %02x, cr_value %02x\n",
1675
               reg_index, reg_value);
1676
#endif
1677
        break;
1678
    case 0x22:                        // Graphics Data Latches Readback (R)
1679
    case 0x24:                        // Attribute Controller Toggle Readback (R)
1680
    case 0x26:                        // Attribute Controller Index Readback (R)
1681
    case 0x27:                        // Part ID (R)
1682
        break;
1683
    case 0x25:                        // Part Status
1684
    default:
1685
#ifdef DEBUG_CIRRUS
1686
        printf("cirrus: outport cr_index %02x, cr_value %02x\n", reg_index,
1687
               reg_value);
1688
#endif
1689
        break;
1690
    }
1691

    
1692
    return CIRRUS_HOOK_HANDLED;
1693
}
1694

    
1695
/***************************************
1696
 *
1697
 *  memory-mapped I/O (bitblt)
1698
 *
1699
 ***************************************/
1700

    
1701
static uint8_t cirrus_mmio_blt_read(CirrusVGAState * s, unsigned address)
1702
{
1703
    int value = 0xff;
1704

    
1705
    switch (address) {
1706
    case (CIRRUS_MMIO_BLTBGCOLOR + 0):
1707
        value = cirrus_vga_read_gr(s, 0x00);
1708
        break;
1709
    case (CIRRUS_MMIO_BLTBGCOLOR + 1):
1710
        value = cirrus_vga_read_gr(s, 0x10);
1711
        break;
1712
    case (CIRRUS_MMIO_BLTBGCOLOR + 2):
1713
        value = cirrus_vga_read_gr(s, 0x12);
1714
        break;
1715
    case (CIRRUS_MMIO_BLTBGCOLOR + 3):
1716
        value = cirrus_vga_read_gr(s, 0x14);
1717
        break;
1718
    case (CIRRUS_MMIO_BLTFGCOLOR + 0):
1719
        value = cirrus_vga_read_gr(s, 0x01);
1720
        break;
1721
    case (CIRRUS_MMIO_BLTFGCOLOR + 1):
1722
        value = cirrus_vga_read_gr(s, 0x11);
1723
        break;
1724
    case (CIRRUS_MMIO_BLTFGCOLOR + 2):
1725
        value = cirrus_vga_read_gr(s, 0x13);
1726
        break;
1727
    case (CIRRUS_MMIO_BLTFGCOLOR + 3):
1728
        value = cirrus_vga_read_gr(s, 0x15);
1729
        break;
1730
    case (CIRRUS_MMIO_BLTWIDTH + 0):
1731
        value = cirrus_vga_read_gr(s, 0x20);
1732
        break;
1733
    case (CIRRUS_MMIO_BLTWIDTH + 1):
1734
        value = cirrus_vga_read_gr(s, 0x21);
1735
        break;
1736
    case (CIRRUS_MMIO_BLTHEIGHT + 0):
1737
        value = cirrus_vga_read_gr(s, 0x22);
1738
        break;
1739
    case (CIRRUS_MMIO_BLTHEIGHT + 1):
1740
        value = cirrus_vga_read_gr(s, 0x23);
1741
        break;
1742
    case (CIRRUS_MMIO_BLTDESTPITCH + 0):
1743
        value = cirrus_vga_read_gr(s, 0x24);
1744
        break;
1745
    case (CIRRUS_MMIO_BLTDESTPITCH + 1):
1746
        value = cirrus_vga_read_gr(s, 0x25);
1747
        break;
1748
    case (CIRRUS_MMIO_BLTSRCPITCH + 0):
1749
        value = cirrus_vga_read_gr(s, 0x26);
1750
        break;
1751
    case (CIRRUS_MMIO_BLTSRCPITCH + 1):
1752
        value = cirrus_vga_read_gr(s, 0x27);
1753
        break;
1754
    case (CIRRUS_MMIO_BLTDESTADDR + 0):
1755
        value = cirrus_vga_read_gr(s, 0x28);
1756
        break;
1757
    case (CIRRUS_MMIO_BLTDESTADDR + 1):
1758
        value = cirrus_vga_read_gr(s, 0x29);
1759
        break;
1760
    case (CIRRUS_MMIO_BLTDESTADDR + 2):
1761
        value = cirrus_vga_read_gr(s, 0x2a);
1762
        break;
1763
    case (CIRRUS_MMIO_BLTSRCADDR + 0):
1764
        value = cirrus_vga_read_gr(s, 0x2c);
1765
        break;
1766
    case (CIRRUS_MMIO_BLTSRCADDR + 1):
1767
        value = cirrus_vga_read_gr(s, 0x2d);
1768
        break;
1769
    case (CIRRUS_MMIO_BLTSRCADDR + 2):
1770
        value = cirrus_vga_read_gr(s, 0x2e);
1771
        break;
1772
    case CIRRUS_MMIO_BLTWRITEMASK:
1773
        value = cirrus_vga_read_gr(s, 0x2f);
1774
        break;
1775
    case CIRRUS_MMIO_BLTMODE:
1776
        value = cirrus_vga_read_gr(s, 0x30);
1777
        break;
1778
    case CIRRUS_MMIO_BLTROP:
1779
        value = cirrus_vga_read_gr(s, 0x32);
1780
        break;
1781
    case CIRRUS_MMIO_BLTMODEEXT:
1782
        value = cirrus_vga_read_gr(s, 0x33);
1783
        break;
1784
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 0):
1785
        value = cirrus_vga_read_gr(s, 0x34);
1786
        break;
1787
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 1):
1788
        value = cirrus_vga_read_gr(s, 0x35);
1789
        break;
1790
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 0):
1791
        value = cirrus_vga_read_gr(s, 0x38);
1792
        break;
1793
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 1):
1794
        value = cirrus_vga_read_gr(s, 0x39);
1795
        break;
1796
    case CIRRUS_MMIO_BLTSTATUS:
1797
        value = cirrus_vga_read_gr(s, 0x31);
1798
        break;
1799
    default:
1800
#ifdef DEBUG_CIRRUS
1801
        printf("cirrus: mmio read - address 0x%04x\n", address);
1802
#endif
1803
        break;
1804
    }
1805

    
1806
    return (uint8_t) value;
1807
}
1808

    
1809
static void cirrus_mmio_blt_write(CirrusVGAState * s, unsigned address,
1810
                                  uint8_t value)
1811
{
1812
    switch (address) {
1813
    case (CIRRUS_MMIO_BLTBGCOLOR + 0):
1814
        cirrus_vga_write_gr(s, 0x00, value);
1815
        break;
1816
    case (CIRRUS_MMIO_BLTBGCOLOR + 1):
1817
        cirrus_vga_write_gr(s, 0x10, value);
1818
        break;
1819
    case (CIRRUS_MMIO_BLTBGCOLOR + 2):
1820
        cirrus_vga_write_gr(s, 0x12, value);
1821
        break;
1822
    case (CIRRUS_MMIO_BLTBGCOLOR + 3):
1823
        cirrus_vga_write_gr(s, 0x14, value);
1824
        break;
1825
    case (CIRRUS_MMIO_BLTFGCOLOR + 0):
1826
        cirrus_vga_write_gr(s, 0x01, value);
1827
        break;
1828
    case (CIRRUS_MMIO_BLTFGCOLOR + 1):
1829
        cirrus_vga_write_gr(s, 0x11, value);
1830
        break;
1831
    case (CIRRUS_MMIO_BLTFGCOLOR + 2):
1832
        cirrus_vga_write_gr(s, 0x13, value);
1833
        break;
1834
    case (CIRRUS_MMIO_BLTFGCOLOR + 3):
1835
        cirrus_vga_write_gr(s, 0x15, value);
1836
        break;
1837
    case (CIRRUS_MMIO_BLTWIDTH + 0):
1838
        cirrus_vga_write_gr(s, 0x20, value);
1839
        break;
1840
    case (CIRRUS_MMIO_BLTWIDTH + 1):
1841
        cirrus_vga_write_gr(s, 0x21, value);
1842
        break;
1843
    case (CIRRUS_MMIO_BLTHEIGHT + 0):
1844
        cirrus_vga_write_gr(s, 0x22, value);
1845
        break;
1846
    case (CIRRUS_MMIO_BLTHEIGHT + 1):
1847
        cirrus_vga_write_gr(s, 0x23, value);
1848
        break;
1849
    case (CIRRUS_MMIO_BLTDESTPITCH + 0):
1850
        cirrus_vga_write_gr(s, 0x24, value);
1851
        break;
1852
    case (CIRRUS_MMIO_BLTDESTPITCH + 1):
1853
        cirrus_vga_write_gr(s, 0x25, value);
1854
        break;
1855
    case (CIRRUS_MMIO_BLTSRCPITCH + 0):
1856
        cirrus_vga_write_gr(s, 0x26, value);
1857
        break;
1858
    case (CIRRUS_MMIO_BLTSRCPITCH + 1):
1859
        cirrus_vga_write_gr(s, 0x27, value);
1860
        break;
1861
    case (CIRRUS_MMIO_BLTDESTADDR + 0):
1862
        cirrus_vga_write_gr(s, 0x28, value);
1863
        break;
1864
    case (CIRRUS_MMIO_BLTDESTADDR + 1):
1865
        cirrus_vga_write_gr(s, 0x29, value);
1866
        break;
1867
    case (CIRRUS_MMIO_BLTDESTADDR + 2):
1868
        cirrus_vga_write_gr(s, 0x2a, value);
1869
        break;
1870
    case (CIRRUS_MMIO_BLTDESTADDR + 3):
1871
        /* ignored */
1872
        break;
1873
    case (CIRRUS_MMIO_BLTSRCADDR + 0):
1874
        cirrus_vga_write_gr(s, 0x2c, value);
1875
        break;
1876
    case (CIRRUS_MMIO_BLTSRCADDR + 1):
1877
        cirrus_vga_write_gr(s, 0x2d, value);
1878
        break;
1879
    case (CIRRUS_MMIO_BLTSRCADDR + 2):
1880
        cirrus_vga_write_gr(s, 0x2e, value);
1881
        break;
1882
    case CIRRUS_MMIO_BLTWRITEMASK:
1883
        cirrus_vga_write_gr(s, 0x2f, value);
1884
        break;
1885
    case CIRRUS_MMIO_BLTMODE:
1886
        cirrus_vga_write_gr(s, 0x30, value);
1887
        break;
1888
    case CIRRUS_MMIO_BLTROP:
1889
        cirrus_vga_write_gr(s, 0x32, value);
1890
        break;
1891
    case CIRRUS_MMIO_BLTMODEEXT:
1892
        cirrus_vga_write_gr(s, 0x33, value);
1893
        break;
1894
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 0):
1895
        cirrus_vga_write_gr(s, 0x34, value);
1896
        break;
1897
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLOR + 1):
1898
        cirrus_vga_write_gr(s, 0x35, value);
1899
        break;
1900
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 0):
1901
        cirrus_vga_write_gr(s, 0x38, value);
1902
        break;
1903
    case (CIRRUS_MMIO_BLTTRANSPARENTCOLORMASK + 1):
1904
        cirrus_vga_write_gr(s, 0x39, value);
1905
        break;
1906
    case CIRRUS_MMIO_BLTSTATUS:
1907
        cirrus_vga_write_gr(s, 0x31, value);
1908
        break;
1909
    default:
1910
#ifdef DEBUG_CIRRUS
1911
        printf("cirrus: mmio write - addr 0x%04x val 0x%02x (ignored)\n",
1912
               address, value);
1913
#endif
1914
        break;
1915
    }
1916
}
1917

    
1918
/***************************************
1919
 *
1920
 *  write mode 4/5
1921
 *
1922
 * assume TARGET_PAGE_SIZE >= 16
1923
 *
1924
 ***************************************/
1925

    
1926
static void cirrus_mem_writeb_mode4and5_8bpp(CirrusVGAState * s,
1927
                                             unsigned mode,
1928
                                             unsigned offset,
1929
                                             uint32_t mem_value)
1930
{
1931
    int x;
1932
    unsigned val = mem_value;
1933
    uint8_t *dst;
1934

    
1935
    dst = s->vga.vram_ptr + (offset &= s->cirrus_addr_mask);
1936
    for (x = 0; x < 8; x++) {
1937
        if (val & 0x80) {
1938
            *dst = s->cirrus_shadow_gr1;
1939
        } else if (mode == 5) {
1940
            *dst = s->cirrus_shadow_gr0;
1941
        }
1942
        val <<= 1;
1943
        dst++;
1944
    }
1945
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset);
1946
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset + 7);
1947
}
1948

    
1949
static void cirrus_mem_writeb_mode4and5_16bpp(CirrusVGAState * s,
1950
                                              unsigned mode,
1951
                                              unsigned offset,
1952
                                              uint32_t mem_value)
1953
{
1954
    int x;
1955
    unsigned val = mem_value;
1956
    uint8_t *dst;
1957

    
1958
    dst = s->vga.vram_ptr + (offset &= s->cirrus_addr_mask);
1959
    for (x = 0; x < 8; x++) {
1960
        if (val & 0x80) {
1961
            *dst = s->cirrus_shadow_gr1;
1962
            *(dst + 1) = s->vga.gr[0x11];
1963
        } else if (mode == 5) {
1964
            *dst = s->cirrus_shadow_gr0;
1965
            *(dst + 1) = s->vga.gr[0x10];
1966
        }
1967
        val <<= 1;
1968
        dst += 2;
1969
    }
1970
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset);
1971
    cpu_physical_memory_set_dirty(s->vga.vram_offset + offset + 15);
1972
}
1973

    
1974
/***************************************
1975
 *
1976
 *  memory access between 0xa0000-0xbffff
1977
 *
1978
 ***************************************/
1979

    
1980
static uint32_t cirrus_vga_mem_readb(void *opaque, target_phys_addr_t addr)
1981
{
1982
    CirrusVGAState *s = opaque;
1983
    unsigned bank_index;
1984
    unsigned bank_offset;
1985
    uint32_t val;
1986

    
1987
    if ((s->vga.sr[0x07] & 0x01) == 0) {
1988
        return vga_mem_readb(s, addr);
1989
    }
1990

    
1991
    addr &= 0x1ffff;
1992

    
1993
    if (addr < 0x10000) {
1994
        /* XXX handle bitblt */
1995
        /* video memory */
1996
        bank_index = addr >> 15;
1997
        bank_offset = addr & 0x7fff;
1998
        if (bank_offset < s->cirrus_bank_limit[bank_index]) {
1999
            bank_offset += s->cirrus_bank_base[bank_index];
2000
            if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2001
                bank_offset <<= 4;
2002
            } else if (s->vga.gr[0x0B] & 0x02) {
2003
                bank_offset <<= 3;
2004
            }
2005
            bank_offset &= s->cirrus_addr_mask;
2006
            val = *(s->vga.vram_ptr + bank_offset);
2007
        } else
2008
            val = 0xff;
2009
    } else if (addr >= 0x18000 && addr < 0x18100) {
2010
        /* memory-mapped I/O */
2011
        val = 0xff;
2012
        if ((s->vga.sr[0x17] & 0x44) == 0x04) {
2013
            val = cirrus_mmio_blt_read(s, addr & 0xff);
2014
        }
2015
    } else {
2016
        val = 0xff;
2017
#ifdef DEBUG_CIRRUS
2018
        printf("cirrus: mem_readb " TARGET_FMT_plx "\n", addr);
2019
#endif
2020
    }
2021
    return val;
2022
}
2023

    
2024
static uint32_t cirrus_vga_mem_readw(void *opaque, target_phys_addr_t addr)
2025
{
2026
    uint32_t v;
2027
#ifdef TARGET_WORDS_BIGENDIAN
2028
    v = cirrus_vga_mem_readb(opaque, addr) << 8;
2029
    v |= cirrus_vga_mem_readb(opaque, addr + 1);
2030
#else
2031
    v = cirrus_vga_mem_readb(opaque, addr);
2032
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 8;
2033
#endif
2034
    return v;
2035
}
2036

    
2037
static uint32_t cirrus_vga_mem_readl(void *opaque, target_phys_addr_t addr)
2038
{
2039
    uint32_t v;
2040
#ifdef TARGET_WORDS_BIGENDIAN
2041
    v = cirrus_vga_mem_readb(opaque, addr) << 24;
2042
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 16;
2043
    v |= cirrus_vga_mem_readb(opaque, addr + 2) << 8;
2044
    v |= cirrus_vga_mem_readb(opaque, addr + 3);
2045
#else
2046
    v = cirrus_vga_mem_readb(opaque, addr);
2047
    v |= cirrus_vga_mem_readb(opaque, addr + 1) << 8;
2048
    v |= cirrus_vga_mem_readb(opaque, addr + 2) << 16;
2049
    v |= cirrus_vga_mem_readb(opaque, addr + 3) << 24;
2050
#endif
2051
    return v;
2052
}
2053

    
2054
static void cirrus_vga_mem_writeb(void *opaque, target_phys_addr_t addr,
2055
                                  uint32_t mem_value)
2056
{
2057
    CirrusVGAState *s = opaque;
2058
    unsigned bank_index;
2059
    unsigned bank_offset;
2060
    unsigned mode;
2061

    
2062
    if ((s->vga.sr[0x07] & 0x01) == 0) {
2063
        vga_mem_writeb(s, addr, mem_value);
2064
        return;
2065
    }
2066

    
2067
    addr &= 0x1ffff;
2068

    
2069
    if (addr < 0x10000) {
2070
        if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2071
            /* bitblt */
2072
            *s->cirrus_srcptr++ = (uint8_t) mem_value;
2073
            if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2074
                cirrus_bitblt_cputovideo_next(s);
2075
            }
2076
        } else {
2077
            /* video memory */
2078
            bank_index = addr >> 15;
2079
            bank_offset = addr & 0x7fff;
2080
            if (bank_offset < s->cirrus_bank_limit[bank_index]) {
2081
                bank_offset += s->cirrus_bank_base[bank_index];
2082
                if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2083
                    bank_offset <<= 4;
2084
                } else if (s->vga.gr[0x0B] & 0x02) {
2085
                    bank_offset <<= 3;
2086
                }
2087
                bank_offset &= s->cirrus_addr_mask;
2088
                mode = s->vga.gr[0x05] & 0x7;
2089
                if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2090
                    *(s->vga.vram_ptr + bank_offset) = mem_value;
2091
                    cpu_physical_memory_set_dirty(s->vga.vram_offset +
2092
                                                  bank_offset);
2093
                } else {
2094
                    if ((s->vga.gr[0x0B] & 0x14) != 0x14) {
2095
                        cirrus_mem_writeb_mode4and5_8bpp(s, mode,
2096
                                                         bank_offset,
2097
                                                         mem_value);
2098
                    } else {
2099
                        cirrus_mem_writeb_mode4and5_16bpp(s, mode,
2100
                                                          bank_offset,
2101
                                                          mem_value);
2102
                    }
2103
                }
2104
            }
2105
        }
2106
    } else if (addr >= 0x18000 && addr < 0x18100) {
2107
        /* memory-mapped I/O */
2108
        if ((s->vga.sr[0x17] & 0x44) == 0x04) {
2109
            cirrus_mmio_blt_write(s, addr & 0xff, mem_value);
2110
        }
2111
    } else {
2112
#ifdef DEBUG_CIRRUS
2113
        printf("cirrus: mem_writeb " TARGET_FMT_plx " value %02x\n", addr,
2114
               mem_value);
2115
#endif
2116
    }
2117
}
2118

    
2119
static void cirrus_vga_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val)
2120
{
2121
#ifdef TARGET_WORDS_BIGENDIAN
2122
    cirrus_vga_mem_writeb(opaque, addr, (val >> 8) & 0xff);
2123
    cirrus_vga_mem_writeb(opaque, addr + 1, val & 0xff);
2124
#else
2125
    cirrus_vga_mem_writeb(opaque, addr, val & 0xff);
2126
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2127
#endif
2128
}
2129

    
2130
static void cirrus_vga_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
2131
{
2132
#ifdef TARGET_WORDS_BIGENDIAN
2133
    cirrus_vga_mem_writeb(opaque, addr, (val >> 24) & 0xff);
2134
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2135
    cirrus_vga_mem_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2136
    cirrus_vga_mem_writeb(opaque, addr + 3, val & 0xff);
2137
#else
2138
    cirrus_vga_mem_writeb(opaque, addr, val & 0xff);
2139
    cirrus_vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2140
    cirrus_vga_mem_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2141
    cirrus_vga_mem_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2142
#endif
2143
}
2144

    
2145
static CPUReadMemoryFunc * const cirrus_vga_mem_read[3] = {
2146
    cirrus_vga_mem_readb,
2147
    cirrus_vga_mem_readw,
2148
    cirrus_vga_mem_readl,
2149
};
2150

    
2151
static CPUWriteMemoryFunc * const cirrus_vga_mem_write[3] = {
2152
    cirrus_vga_mem_writeb,
2153
    cirrus_vga_mem_writew,
2154
    cirrus_vga_mem_writel,
2155
};
2156

    
2157
/***************************************
2158
 *
2159
 *  hardware cursor
2160
 *
2161
 ***************************************/
2162

    
2163
static inline void invalidate_cursor1(CirrusVGAState *s)
2164
{
2165
    if (s->last_hw_cursor_size) {
2166
        vga_invalidate_scanlines(&s->vga,
2167
                                 s->last_hw_cursor_y + s->last_hw_cursor_y_start,
2168
                                 s->last_hw_cursor_y + s->last_hw_cursor_y_end);
2169
    }
2170
}
2171

    
2172
static inline void cirrus_cursor_compute_yrange(CirrusVGAState *s)
2173
{
2174
    const uint8_t *src;
2175
    uint32_t content;
2176
    int y, y_min, y_max;
2177

    
2178
    src = s->vga.vram_ptr + s->real_vram_size - 16 * 1024;
2179
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2180
        src += (s->vga.sr[0x13] & 0x3c) * 256;
2181
        y_min = 64;
2182
        y_max = -1;
2183
        for(y = 0; y < 64; y++) {
2184
            content = ((uint32_t *)src)[0] |
2185
                ((uint32_t *)src)[1] |
2186
                ((uint32_t *)src)[2] |
2187
                ((uint32_t *)src)[3];
2188
            if (content) {
2189
                if (y < y_min)
2190
                    y_min = y;
2191
                if (y > y_max)
2192
                    y_max = y;
2193
            }
2194
            src += 16;
2195
        }
2196
    } else {
2197
        src += (s->vga.sr[0x13] & 0x3f) * 256;
2198
        y_min = 32;
2199
        y_max = -1;
2200
        for(y = 0; y < 32; y++) {
2201
            content = ((uint32_t *)src)[0] |
2202
                ((uint32_t *)(src + 128))[0];
2203
            if (content) {
2204
                if (y < y_min)
2205
                    y_min = y;
2206
                if (y > y_max)
2207
                    y_max = y;
2208
            }
2209
            src += 4;
2210
        }
2211
    }
2212
    if (y_min > y_max) {
2213
        s->last_hw_cursor_y_start = 0;
2214
        s->last_hw_cursor_y_end = 0;
2215
    } else {
2216
        s->last_hw_cursor_y_start = y_min;
2217
        s->last_hw_cursor_y_end = y_max + 1;
2218
    }
2219
}
2220

    
2221
/* NOTE: we do not currently handle the cursor bitmap change, so we
2222
   update the cursor only if it moves. */
2223
static void cirrus_cursor_invalidate(VGACommonState *s1)
2224
{
2225
    CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
2226
    int size;
2227

    
2228
    if (!(s->vga.sr[0x12] & CIRRUS_CURSOR_SHOW)) {
2229
        size = 0;
2230
    } else {
2231
        if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE)
2232
            size = 64;
2233
        else
2234
            size = 32;
2235
    }
2236
    /* invalidate last cursor and new cursor if any change */
2237
    if (s->last_hw_cursor_size != size ||
2238
        s->last_hw_cursor_x != s->hw_cursor_x ||
2239
        s->last_hw_cursor_y != s->hw_cursor_y) {
2240

    
2241
        invalidate_cursor1(s);
2242

    
2243
        s->last_hw_cursor_size = size;
2244
        s->last_hw_cursor_x = s->hw_cursor_x;
2245
        s->last_hw_cursor_y = s->hw_cursor_y;
2246
        /* compute the real cursor min and max y */
2247
        cirrus_cursor_compute_yrange(s);
2248
        invalidate_cursor1(s);
2249
    }
2250
}
2251

    
2252
static void cirrus_cursor_draw_line(VGACommonState *s1, uint8_t *d1, int scr_y)
2253
{
2254
    CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
2255
    int w, h, bpp, x1, x2, poffset;
2256
    unsigned int color0, color1;
2257
    const uint8_t *palette, *src;
2258
    uint32_t content;
2259

    
2260
    if (!(s->vga.sr[0x12] & CIRRUS_CURSOR_SHOW))
2261
        return;
2262
    /* fast test to see if the cursor intersects with the scan line */
2263
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2264
        h = 64;
2265
    } else {
2266
        h = 32;
2267
    }
2268
    if (scr_y < s->hw_cursor_y ||
2269
        scr_y >= (s->hw_cursor_y + h))
2270
        return;
2271

    
2272
    src = s->vga.vram_ptr + s->real_vram_size - 16 * 1024;
2273
    if (s->vga.sr[0x12] & CIRRUS_CURSOR_LARGE) {
2274
        src += (s->vga.sr[0x13] & 0x3c) * 256;
2275
        src += (scr_y - s->hw_cursor_y) * 16;
2276
        poffset = 8;
2277
        content = ((uint32_t *)src)[0] |
2278
            ((uint32_t *)src)[1] |
2279
            ((uint32_t *)src)[2] |
2280
            ((uint32_t *)src)[3];
2281
    } else {
2282
        src += (s->vga.sr[0x13] & 0x3f) * 256;
2283
        src += (scr_y - s->hw_cursor_y) * 4;
2284
        poffset = 128;
2285
        content = ((uint32_t *)src)[0] |
2286
            ((uint32_t *)(src + 128))[0];
2287
    }
2288
    /* if nothing to draw, no need to continue */
2289
    if (!content)
2290
        return;
2291
    w = h;
2292

    
2293
    x1 = s->hw_cursor_x;
2294
    if (x1 >= s->vga.last_scr_width)
2295
        return;
2296
    x2 = s->hw_cursor_x + w;
2297
    if (x2 > s->vga.last_scr_width)
2298
        x2 = s->vga.last_scr_width;
2299
    w = x2 - x1;
2300
    palette = s->cirrus_hidden_palette;
2301
    color0 = s->vga.rgb_to_pixel(c6_to_8(palette[0x0 * 3]),
2302
                                 c6_to_8(palette[0x0 * 3 + 1]),
2303
                                 c6_to_8(palette[0x0 * 3 + 2]));
2304
    color1 = s->vga.rgb_to_pixel(c6_to_8(palette[0xf * 3]),
2305
                                 c6_to_8(palette[0xf * 3 + 1]),
2306
                                 c6_to_8(palette[0xf * 3 + 2]));
2307
    bpp = ((ds_get_bits_per_pixel(s->vga.ds) + 7) >> 3);
2308
    d1 += x1 * bpp;
2309
    switch(ds_get_bits_per_pixel(s->vga.ds)) {
2310
    default:
2311
        break;
2312
    case 8:
2313
        vga_draw_cursor_line_8(d1, src, poffset, w, color0, color1, 0xff);
2314
        break;
2315
    case 15:
2316
        vga_draw_cursor_line_16(d1, src, poffset, w, color0, color1, 0x7fff);
2317
        break;
2318
    case 16:
2319
        vga_draw_cursor_line_16(d1, src, poffset, w, color0, color1, 0xffff);
2320
        break;
2321
    case 32:
2322
        vga_draw_cursor_line_32(d1, src, poffset, w, color0, color1, 0xffffff);
2323
        break;
2324
    }
2325
}
2326

    
2327
/***************************************
2328
 *
2329
 *  LFB memory access
2330
 *
2331
 ***************************************/
2332

    
2333
static uint32_t cirrus_linear_readb(void *opaque, target_phys_addr_t addr)
2334
{
2335
    CirrusVGAState *s = opaque;
2336
    uint32_t ret;
2337

    
2338
    addr &= s->cirrus_addr_mask;
2339

    
2340
    if (((s->vga.sr[0x17] & 0x44) == 0x44) &&
2341
        ((addr & s->linear_mmio_mask) == s->linear_mmio_mask)) {
2342
        /* memory-mapped I/O */
2343
        ret = cirrus_mmio_blt_read(s, addr & 0xff);
2344
    } else if (0) {
2345
        /* XXX handle bitblt */
2346
        ret = 0xff;
2347
    } else {
2348
        /* video memory */
2349
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2350
            addr <<= 4;
2351
        } else if (s->vga.gr[0x0B] & 0x02) {
2352
            addr <<= 3;
2353
        }
2354
        addr &= s->cirrus_addr_mask;
2355
        ret = *(s->vga.vram_ptr + addr);
2356
    }
2357

    
2358
    return ret;
2359
}
2360

    
2361
static uint32_t cirrus_linear_readw(void *opaque, target_phys_addr_t addr)
2362
{
2363
    uint32_t v;
2364
#ifdef TARGET_WORDS_BIGENDIAN
2365
    v = cirrus_linear_readb(opaque, addr) << 8;
2366
    v |= cirrus_linear_readb(opaque, addr + 1);
2367
#else
2368
    v = cirrus_linear_readb(opaque, addr);
2369
    v |= cirrus_linear_readb(opaque, addr + 1) << 8;
2370
#endif
2371
    return v;
2372
}
2373

    
2374
static uint32_t cirrus_linear_readl(void *opaque, target_phys_addr_t addr)
2375
{
2376
    uint32_t v;
2377
#ifdef TARGET_WORDS_BIGENDIAN
2378
    v = cirrus_linear_readb(opaque, addr) << 24;
2379
    v |= cirrus_linear_readb(opaque, addr + 1) << 16;
2380
    v |= cirrus_linear_readb(opaque, addr + 2) << 8;
2381
    v |= cirrus_linear_readb(opaque, addr + 3);
2382
#else
2383
    v = cirrus_linear_readb(opaque, addr);
2384
    v |= cirrus_linear_readb(opaque, addr + 1) << 8;
2385
    v |= cirrus_linear_readb(opaque, addr + 2) << 16;
2386
    v |= cirrus_linear_readb(opaque, addr + 3) << 24;
2387
#endif
2388
    return v;
2389
}
2390

    
2391
static void cirrus_linear_writeb(void *opaque, target_phys_addr_t addr,
2392
                                 uint32_t val)
2393
{
2394
    CirrusVGAState *s = opaque;
2395
    unsigned mode;
2396

    
2397
    addr &= s->cirrus_addr_mask;
2398

    
2399
    if (((s->vga.sr[0x17] & 0x44) == 0x44) &&
2400
        ((addr & s->linear_mmio_mask) ==  s->linear_mmio_mask)) {
2401
        /* memory-mapped I/O */
2402
        cirrus_mmio_blt_write(s, addr & 0xff, val);
2403
    } else if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2404
        /* bitblt */
2405
        *s->cirrus_srcptr++ = (uint8_t) val;
2406
        if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2407
            cirrus_bitblt_cputovideo_next(s);
2408
        }
2409
    } else {
2410
        /* video memory */
2411
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2412
            addr <<= 4;
2413
        } else if (s->vga.gr[0x0B] & 0x02) {
2414
            addr <<= 3;
2415
        }
2416
        addr &= s->cirrus_addr_mask;
2417

    
2418
        mode = s->vga.gr[0x05] & 0x7;
2419
        if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2420
            *(s->vga.vram_ptr + addr) = (uint8_t) val;
2421
            cpu_physical_memory_set_dirty(s->vga.vram_offset + addr);
2422
        } else {
2423
            if ((s->vga.gr[0x0B] & 0x14) != 0x14) {
2424
                cirrus_mem_writeb_mode4and5_8bpp(s, mode, addr, val);
2425
            } else {
2426
                cirrus_mem_writeb_mode4and5_16bpp(s, mode, addr, val);
2427
            }
2428
        }
2429
    }
2430
}
2431

    
2432
static void cirrus_linear_writew(void *opaque, target_phys_addr_t addr,
2433
                                 uint32_t val)
2434
{
2435
#ifdef TARGET_WORDS_BIGENDIAN
2436
    cirrus_linear_writeb(opaque, addr, (val >> 8) & 0xff);
2437
    cirrus_linear_writeb(opaque, addr + 1, val & 0xff);
2438
#else
2439
    cirrus_linear_writeb(opaque, addr, val & 0xff);
2440
    cirrus_linear_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2441
#endif
2442
}
2443

    
2444
static void cirrus_linear_writel(void *opaque, target_phys_addr_t addr,
2445
                                 uint32_t val)
2446
{
2447
#ifdef TARGET_WORDS_BIGENDIAN
2448
    cirrus_linear_writeb(opaque, addr, (val >> 24) & 0xff);
2449
    cirrus_linear_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2450
    cirrus_linear_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2451
    cirrus_linear_writeb(opaque, addr + 3, val & 0xff);
2452
#else
2453
    cirrus_linear_writeb(opaque, addr, val & 0xff);
2454
    cirrus_linear_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2455
    cirrus_linear_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2456
    cirrus_linear_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2457
#endif
2458
}
2459

    
2460

    
2461
static CPUReadMemoryFunc * const cirrus_linear_read[3] = {
2462
    cirrus_linear_readb,
2463
    cirrus_linear_readw,
2464
    cirrus_linear_readl,
2465
};
2466

    
2467
static CPUWriteMemoryFunc * const cirrus_linear_write[3] = {
2468
    cirrus_linear_writeb,
2469
    cirrus_linear_writew,
2470
    cirrus_linear_writel,
2471
};
2472

    
2473
/***************************************
2474
 *
2475
 *  system to screen memory access
2476
 *
2477
 ***************************************/
2478

    
2479

    
2480
static uint32_t cirrus_linear_bitblt_readb(void *opaque, target_phys_addr_t addr)
2481
{
2482
    uint32_t ret;
2483

    
2484
    /* XXX handle bitblt */
2485
    ret = 0xff;
2486
    return ret;
2487
}
2488

    
2489
static uint32_t cirrus_linear_bitblt_readw(void *opaque, target_phys_addr_t addr)
2490
{
2491
    uint32_t v;
2492
#ifdef TARGET_WORDS_BIGENDIAN
2493
    v = cirrus_linear_bitblt_readb(opaque, addr) << 8;
2494
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1);
2495
#else
2496
    v = cirrus_linear_bitblt_readb(opaque, addr);
2497
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 8;
2498
#endif
2499
    return v;
2500
}
2501

    
2502
static uint32_t cirrus_linear_bitblt_readl(void *opaque, target_phys_addr_t addr)
2503
{
2504
    uint32_t v;
2505
#ifdef TARGET_WORDS_BIGENDIAN
2506
    v = cirrus_linear_bitblt_readb(opaque, addr) << 24;
2507
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 16;
2508
    v |= cirrus_linear_bitblt_readb(opaque, addr + 2) << 8;
2509
    v |= cirrus_linear_bitblt_readb(opaque, addr + 3);
2510
#else
2511
    v = cirrus_linear_bitblt_readb(opaque, addr);
2512
    v |= cirrus_linear_bitblt_readb(opaque, addr + 1) << 8;
2513
    v |= cirrus_linear_bitblt_readb(opaque, addr + 2) << 16;
2514
    v |= cirrus_linear_bitblt_readb(opaque, addr + 3) << 24;
2515
#endif
2516
    return v;
2517
}
2518

    
2519
static void cirrus_linear_bitblt_writeb(void *opaque, target_phys_addr_t addr,
2520
                                 uint32_t val)
2521
{
2522
    CirrusVGAState *s = opaque;
2523

    
2524
    if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2525
        /* bitblt */
2526
        *s->cirrus_srcptr++ = (uint8_t) val;
2527
        if (s->cirrus_srcptr >= s->cirrus_srcptr_end) {
2528
            cirrus_bitblt_cputovideo_next(s);
2529
        }
2530
    }
2531
}
2532

    
2533
static void cirrus_linear_bitblt_writew(void *opaque, target_phys_addr_t addr,
2534
                                 uint32_t val)
2535
{
2536
#ifdef TARGET_WORDS_BIGENDIAN
2537
    cirrus_linear_bitblt_writeb(opaque, addr, (val >> 8) & 0xff);
2538
    cirrus_linear_bitblt_writeb(opaque, addr + 1, val & 0xff);
2539
#else
2540
    cirrus_linear_bitblt_writeb(opaque, addr, val & 0xff);
2541
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2542
#endif
2543
}
2544

    
2545
static void cirrus_linear_bitblt_writel(void *opaque, target_phys_addr_t addr,
2546
                                 uint32_t val)
2547
{
2548
#ifdef TARGET_WORDS_BIGENDIAN
2549
    cirrus_linear_bitblt_writeb(opaque, addr, (val >> 24) & 0xff);
2550
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2551
    cirrus_linear_bitblt_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2552
    cirrus_linear_bitblt_writeb(opaque, addr + 3, val & 0xff);
2553
#else
2554
    cirrus_linear_bitblt_writeb(opaque, addr, val & 0xff);
2555
    cirrus_linear_bitblt_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2556
    cirrus_linear_bitblt_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2557
    cirrus_linear_bitblt_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2558
#endif
2559
}
2560

    
2561

    
2562
static CPUReadMemoryFunc * const cirrus_linear_bitblt_read[3] = {
2563
    cirrus_linear_bitblt_readb,
2564
    cirrus_linear_bitblt_readw,
2565
    cirrus_linear_bitblt_readl,
2566
};
2567

    
2568
static CPUWriteMemoryFunc * const cirrus_linear_bitblt_write[3] = {
2569
    cirrus_linear_bitblt_writeb,
2570
    cirrus_linear_bitblt_writew,
2571
    cirrus_linear_bitblt_writel,
2572
};
2573

    
2574
static void map_linear_vram(CirrusVGAState *s)
2575
{
2576
    if (!s->vga.map_addr && s->vga.lfb_addr && s->vga.lfb_end) {
2577
        s->vga.map_addr = s->vga.lfb_addr;
2578
        s->vga.map_end = s->vga.lfb_end;
2579
        cpu_register_physical_memory(s->vga.map_addr, s->vga.map_end - s->vga.map_addr, s->vga.vram_offset);
2580
    }
2581

    
2582
    if (!s->vga.map_addr)
2583
        return;
2584

    
2585
    s->vga.lfb_vram_mapped = 0;
2586

    
2587
    if (!(s->cirrus_srcptr != s->cirrus_srcptr_end)
2588
        && !((s->vga.sr[0x07] & 0x01) == 0)
2589
        && !((s->vga.gr[0x0B] & 0x14) == 0x14)
2590
        && !(s->vga.gr[0x0B] & 0x02)) {
2591

    
2592
        cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x8000,
2593
                                    (s->vga.vram_offset + s->cirrus_bank_base[0]) | IO_MEM_RAM);
2594
        cpu_register_physical_memory(isa_mem_base + 0xa8000, 0x8000,
2595
                                    (s->vga.vram_offset + s->cirrus_bank_base[1]) | IO_MEM_RAM);
2596

    
2597
        s->vga.lfb_vram_mapped = 1;
2598
    }
2599
    else {
2600
        cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
2601
                                     s->vga.vga_io_memory);
2602
    }
2603

    
2604
    vga_dirty_log_start(&s->vga);
2605
}
2606

    
2607
static void unmap_linear_vram(CirrusVGAState *s)
2608
{
2609
    if (s->vga.map_addr && s->vga.lfb_addr && s->vga.lfb_end)
2610
        s->vga.map_addr = s->vga.map_end = 0;
2611

    
2612
    cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
2613
                                 s->vga.vga_io_memory);
2614
}
2615

    
2616
/* Compute the memory access functions */
2617
static void cirrus_update_memory_access(CirrusVGAState *s)
2618
{
2619
    unsigned mode;
2620

    
2621
    if ((s->vga.sr[0x17] & 0x44) == 0x44) {
2622
        goto generic_io;
2623
    } else if (s->cirrus_srcptr != s->cirrus_srcptr_end) {
2624
        goto generic_io;
2625
    } else {
2626
        if ((s->vga.gr[0x0B] & 0x14) == 0x14) {
2627
            goto generic_io;
2628
        } else if (s->vga.gr[0x0B] & 0x02) {
2629
            goto generic_io;
2630
        }
2631

    
2632
        mode = s->vga.gr[0x05] & 0x7;
2633
        if (mode < 4 || mode > 5 || ((s->vga.gr[0x0B] & 0x4) == 0)) {
2634
            map_linear_vram(s);
2635
        } else {
2636
        generic_io:
2637
            unmap_linear_vram(s);
2638
        }
2639
    }
2640
}
2641

    
2642

    
2643
/* I/O ports */
2644

    
2645
static uint32_t cirrus_vga_ioport_read(void *opaque, uint32_t addr)
2646
{
2647
    CirrusVGAState *c = opaque;
2648
    VGACommonState *s = &c->vga;
2649
    int val, index;
2650

    
2651
    if (vga_ioport_invalid(s, addr)) {
2652
        val = 0xff;
2653
    } else {
2654
        switch (addr) {
2655
        case 0x3c0:
2656
            if (s->ar_flip_flop == 0) {
2657
                val = s->ar_index;
2658
            } else {
2659
                val = 0;
2660
            }
2661
            break;
2662
        case 0x3c1:
2663
            index = s->ar_index & 0x1f;
2664
            if (index < 21)
2665
                val = s->ar[index];
2666
            else
2667
                val = 0;
2668
            break;
2669
        case 0x3c2:
2670
            val = s->st00;
2671
            break;
2672
        case 0x3c4:
2673
            val = s->sr_index;
2674
            break;
2675
        case 0x3c5:
2676
            val = cirrus_vga_read_sr(c);
2677
            break;
2678
#ifdef DEBUG_VGA_REG
2679
            printf("vga: read SR%x = 0x%02x\n", s->sr_index, val);
2680
#endif
2681
            break;
2682
        case 0x3c6:
2683
            val = cirrus_read_hidden_dac(c);
2684
            break;
2685
        case 0x3c7:
2686
            val = s->dac_state;
2687
            break;
2688
        case 0x3c8:
2689
            val = s->dac_write_index;
2690
            c->cirrus_hidden_dac_lockindex = 0;
2691
            break;
2692
        case 0x3c9:
2693
            val = cirrus_vga_read_palette(c);
2694
            break;
2695
        case 0x3ca:
2696
            val = s->fcr;
2697
            break;
2698
        case 0x3cc:
2699
            val = s->msr;
2700
            break;
2701
        case 0x3ce:
2702
            val = s->gr_index;
2703
            break;
2704
        case 0x3cf:
2705
            val = cirrus_vga_read_gr(c, s->gr_index);
2706
#ifdef DEBUG_VGA_REG
2707
            printf("vga: read GR%x = 0x%02x\n", s->gr_index, val);
2708
#endif
2709
            break;
2710
        case 0x3b4:
2711
        case 0x3d4:
2712
            val = s->cr_index;
2713
            break;
2714
        case 0x3b5:
2715
        case 0x3d5:
2716
            val = cirrus_vga_read_cr(c, s->cr_index);
2717
#ifdef DEBUG_VGA_REG
2718
            printf("vga: read CR%x = 0x%02x\n", s->cr_index, val);
2719
#endif
2720
            break;
2721
        case 0x3ba:
2722
        case 0x3da:
2723
            /* just toggle to fool polling */
2724
            val = s->st01 = s->retrace(s);
2725
            s->ar_flip_flop = 0;
2726
            break;
2727
        default:
2728
            val = 0x00;
2729
            break;
2730
        }
2731
    }
2732
#if defined(DEBUG_VGA)
2733
    printf("VGA: read addr=0x%04x data=0x%02x\n", addr, val);
2734
#endif
2735
    return val;
2736
}
2737

    
2738
static void cirrus_vga_ioport_write(void *opaque, uint32_t addr, uint32_t val)
2739
{
2740
    CirrusVGAState *c = opaque;
2741
    VGACommonState *s = &c->vga;
2742
    int index;
2743

    
2744
    /* check port range access depending on color/monochrome mode */
2745
    if (vga_ioport_invalid(s, addr)) {
2746
        return;
2747
    }
2748
#ifdef DEBUG_VGA
2749
    printf("VGA: write addr=0x%04x data=0x%02x\n", addr, val);
2750
#endif
2751

    
2752
    switch (addr) {
2753
    case 0x3c0:
2754
        if (s->ar_flip_flop == 0) {
2755
            val &= 0x3f;
2756
            s->ar_index = val;
2757
        } else {
2758
            index = s->ar_index & 0x1f;
2759
            switch (index) {
2760
            case 0x00 ... 0x0f:
2761
                s->ar[index] = val & 0x3f;
2762
                break;
2763
            case 0x10:
2764
                s->ar[index] = val & ~0x10;
2765
                break;
2766
            case 0x11:
2767
                s->ar[index] = val;
2768
                break;
2769
            case 0x12:
2770
                s->ar[index] = val & ~0xc0;
2771
                break;
2772
            case 0x13:
2773
                s->ar[index] = val & ~0xf0;
2774
                break;
2775
            case 0x14:
2776
                s->ar[index] = val & ~0xf0;
2777
                break;
2778
            default:
2779
                break;
2780
            }
2781
        }
2782
        s->ar_flip_flop ^= 1;
2783
        break;
2784
    case 0x3c2:
2785
        s->msr = val & ~0x10;
2786
        s->update_retrace_info(s);
2787
        break;
2788
    case 0x3c4:
2789
        s->sr_index = val;
2790
        break;
2791
    case 0x3c5:
2792
#ifdef DEBUG_VGA_REG
2793
        printf("vga: write SR%x = 0x%02x\n", s->sr_index, val);
2794
#endif
2795
        cirrus_vga_write_sr(c, val);
2796
        break;
2797
        break;
2798
    case 0x3c6:
2799
        cirrus_write_hidden_dac(c, val);
2800
        break;
2801
    case 0x3c7:
2802
        s->dac_read_index = val;
2803
        s->dac_sub_index = 0;
2804
        s->dac_state = 3;
2805
        break;
2806
    case 0x3c8:
2807
        s->dac_write_index = val;
2808
        s->dac_sub_index = 0;
2809
        s->dac_state = 0;
2810
        break;
2811
    case 0x3c9:
2812
        cirrus_vga_write_palette(c, val);
2813
        break;
2814
    case 0x3ce:
2815
        s->gr_index = val;
2816
        break;
2817
    case 0x3cf:
2818
#ifdef DEBUG_VGA_REG
2819
        printf("vga: write GR%x = 0x%02x\n", s->gr_index, val);
2820
#endif
2821
        cirrus_vga_write_gr(c, s->gr_index, val);
2822
        break;
2823
    case 0x3b4:
2824
    case 0x3d4:
2825
        s->cr_index = val;
2826
        break;
2827
    case 0x3b5:
2828
    case 0x3d5:
2829
        if (cirrus_hook_write_cr(c, s->cr_index, val))
2830
            break;
2831
#ifdef DEBUG_VGA_REG
2832
        printf("vga: write CR%x = 0x%02x\n", s->cr_index, val);
2833
#endif
2834
        /* handle CR0-7 protection */
2835
        if ((s->cr[0x11] & 0x80) && s->cr_index <= 7) {
2836
            /* can always write bit 4 of CR7 */
2837
            if (s->cr_index == 7)
2838
                s->cr[7] = (s->cr[7] & ~0x10) | (val & 0x10);
2839
            return;
2840
        }
2841
        s->cr[s->cr_index] = val;
2842

    
2843
        switch(s->cr_index) {
2844
        case 0x00:
2845
        case 0x04:
2846
        case 0x05:
2847
        case 0x06:
2848
        case 0x07:
2849
        case 0x11:
2850
        case 0x17:
2851
            s->update_retrace_info(s);
2852
            break;
2853
        }
2854
        break;
2855
    case 0x3ba:
2856
    case 0x3da:
2857
        s->fcr = val & 0x10;
2858
        break;
2859
    }
2860
}
2861

    
2862
/***************************************
2863
 *
2864
 *  memory-mapped I/O access
2865
 *
2866
 ***************************************/
2867

    
2868
static uint32_t cirrus_mmio_readb(void *opaque, target_phys_addr_t addr)
2869
{
2870
    CirrusVGAState *s = opaque;
2871

    
2872
    addr &= CIRRUS_PNPMMIO_SIZE - 1;
2873

    
2874
    if (addr >= 0x100) {
2875
        return cirrus_mmio_blt_read(s, addr - 0x100);
2876
    } else {
2877
        return cirrus_vga_ioport_read(s, addr + 0x3c0);
2878
    }
2879
}
2880

    
2881
static uint32_t cirrus_mmio_readw(void *opaque, target_phys_addr_t addr)
2882
{
2883
    uint32_t v;
2884
#ifdef TARGET_WORDS_BIGENDIAN
2885
    v = cirrus_mmio_readb(opaque, addr) << 8;
2886
    v |= cirrus_mmio_readb(opaque, addr + 1);
2887
#else
2888
    v = cirrus_mmio_readb(opaque, addr);
2889
    v |= cirrus_mmio_readb(opaque, addr + 1) << 8;
2890
#endif
2891
    return v;
2892
}
2893

    
2894
static uint32_t cirrus_mmio_readl(void *opaque, target_phys_addr_t addr)
2895
{
2896
    uint32_t v;
2897
#ifdef TARGET_WORDS_BIGENDIAN
2898
    v = cirrus_mmio_readb(opaque, addr) << 24;
2899
    v |= cirrus_mmio_readb(opaque, addr + 1) << 16;
2900
    v |= cirrus_mmio_readb(opaque, addr + 2) << 8;
2901
    v |= cirrus_mmio_readb(opaque, addr + 3);
2902
#else
2903
    v = cirrus_mmio_readb(opaque, addr);
2904
    v |= cirrus_mmio_readb(opaque, addr + 1) << 8;
2905
    v |= cirrus_mmio_readb(opaque, addr + 2) << 16;
2906
    v |= cirrus_mmio_readb(opaque, addr + 3) << 24;
2907
#endif
2908
    return v;
2909
}
2910

    
2911
static void cirrus_mmio_writeb(void *opaque, target_phys_addr_t addr,
2912
                               uint32_t val)
2913
{
2914
    CirrusVGAState *s = opaque;
2915

    
2916
    addr &= CIRRUS_PNPMMIO_SIZE - 1;
2917

    
2918
    if (addr >= 0x100) {
2919
        cirrus_mmio_blt_write(s, addr - 0x100, val);
2920
    } else {
2921
        cirrus_vga_ioport_write(s, addr + 0x3c0, val);
2922
    }
2923
}
2924

    
2925
static void cirrus_mmio_writew(void *opaque, target_phys_addr_t addr,
2926
                               uint32_t val)
2927
{
2928
#ifdef TARGET_WORDS_BIGENDIAN
2929
    cirrus_mmio_writeb(opaque, addr, (val >> 8) & 0xff);
2930
    cirrus_mmio_writeb(opaque, addr + 1, val & 0xff);
2931
#else
2932
    cirrus_mmio_writeb(opaque, addr, val & 0xff);
2933
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2934
#endif
2935
}
2936

    
2937
static void cirrus_mmio_writel(void *opaque, target_phys_addr_t addr,
2938
                               uint32_t val)
2939
{
2940
#ifdef TARGET_WORDS_BIGENDIAN
2941
    cirrus_mmio_writeb(opaque, addr, (val >> 24) & 0xff);
2942
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 16) & 0xff);
2943
    cirrus_mmio_writeb(opaque, addr + 2, (val >> 8) & 0xff);
2944
    cirrus_mmio_writeb(opaque, addr + 3, val & 0xff);
2945
#else
2946
    cirrus_mmio_writeb(opaque, addr, val & 0xff);
2947
    cirrus_mmio_writeb(opaque, addr + 1, (val >> 8) & 0xff);
2948
    cirrus_mmio_writeb(opaque, addr + 2, (val >> 16) & 0xff);
2949
    cirrus_mmio_writeb(opaque, addr + 3, (val >> 24) & 0xff);
2950
#endif
2951
}
2952

    
2953

    
2954
static CPUReadMemoryFunc * const cirrus_mmio_read[3] = {
2955
    cirrus_mmio_readb,
2956
    cirrus_mmio_readw,
2957
    cirrus_mmio_readl,
2958
};
2959

    
2960
static CPUWriteMemoryFunc * const cirrus_mmio_write[3] = {
2961
    cirrus_mmio_writeb,
2962
    cirrus_mmio_writew,
2963
    cirrus_mmio_writel,
2964
};
2965

    
2966
/* load/save state */
2967

    
2968
static void cirrus_vga_save(QEMUFile *f, void *opaque)
2969
{
2970
    CirrusVGAState *s = opaque;
2971

    
2972
    qemu_put_be32s(f, &s->vga.latch);
2973
    qemu_put_8s(f, &s->vga.sr_index);
2974
    qemu_put_buffer(f, s->vga.sr, 256);
2975
    qemu_put_8s(f, &s->vga.gr_index);
2976
    qemu_put_8s(f, &s->cirrus_shadow_gr0);
2977
    qemu_put_8s(f, &s->cirrus_shadow_gr1);
2978
    qemu_put_buffer(f, s->vga.gr + 2, 254);
2979
    qemu_put_8s(f, &s->vga.ar_index);
2980
    qemu_put_buffer(f, s->vga.ar, 21);
2981
    qemu_put_be32(f, s->vga.ar_flip_flop);
2982
    qemu_put_8s(f, &s->vga.cr_index);
2983
    qemu_put_buffer(f, s->vga.cr, 256);
2984
    qemu_put_8s(f, &s->vga.msr);
2985
    qemu_put_8s(f, &s->vga.fcr);
2986
    qemu_put_8s(f, &s->vga.st00);
2987
    qemu_put_8s(f, &s->vga.st01);
2988

    
2989
    qemu_put_8s(f, &s->vga.dac_state);
2990
    qemu_put_8s(f, &s->vga.dac_sub_index);
2991
    qemu_put_8s(f, &s->vga.dac_read_index);
2992
    qemu_put_8s(f, &s->vga.dac_write_index);
2993
    qemu_put_buffer(f, s->vga.dac_cache, 3);
2994
    qemu_put_buffer(f, s->vga.palette, 768);
2995

    
2996
    qemu_put_be32(f, s->vga.bank_offset);
2997

    
2998
    qemu_put_8s(f, &s->cirrus_hidden_dac_lockindex);
2999
    qemu_put_8s(f, &s->cirrus_hidden_dac_data);
3000

    
3001
    qemu_put_be32s(f, &s->hw_cursor_x);
3002
    qemu_put_be32s(f, &s->hw_cursor_y);
3003
    /* XXX: we do not save the bitblt state - we assume we do not save
3004
       the state when the blitter is active */
3005
}
3006

    
3007
static int cirrus_vga_load(QEMUFile *f, void *opaque, int version_id)
3008
{
3009
    CirrusVGAState *s = opaque;
3010

    
3011
    if (version_id > 2)
3012
        return -EINVAL;
3013

    
3014
    qemu_get_be32s(f, &s->vga.latch);
3015
    qemu_get_8s(f, &s->vga.sr_index);
3016
    qemu_get_buffer(f, s->vga.sr, 256);
3017
    qemu_get_8s(f, &s->vga.gr_index);
3018
    qemu_get_8s(f, &s->cirrus_shadow_gr0);
3019
    qemu_get_8s(f, &s->cirrus_shadow_gr1);
3020
    s->vga.gr[0x00] = s->cirrus_shadow_gr0 & 0x0f;
3021
    s->vga.gr[0x01] = s->cirrus_shadow_gr1 & 0x0f;
3022
    qemu_get_buffer(f, s->vga.gr + 2, 254);
3023
    qemu_get_8s(f, &s->vga.ar_index);
3024
    qemu_get_buffer(f, s->vga.ar, 21);
3025
    s->vga.ar_flip_flop=qemu_get_be32(f);
3026
    qemu_get_8s(f, &s->vga.cr_index);
3027
    qemu_get_buffer(f, s->vga.cr, 256);
3028
    qemu_get_8s(f, &s->vga.msr);
3029
    qemu_get_8s(f, &s->vga.fcr);
3030
    qemu_get_8s(f, &s->vga.st00);
3031
    qemu_get_8s(f, &s->vga.st01);
3032

    
3033
    qemu_get_8s(f, &s->vga.dac_state);
3034
    qemu_get_8s(f, &s->vga.dac_sub_index);
3035
    qemu_get_8s(f, &s->vga.dac_read_index);
3036
    qemu_get_8s(f, &s->vga.dac_write_index);
3037
    qemu_get_buffer(f, s->vga.dac_cache, 3);
3038
    qemu_get_buffer(f, s->vga.palette, 768);
3039

    
3040
    s->vga.bank_offset = qemu_get_be32(f);
3041

    
3042
    qemu_get_8s(f, &s->cirrus_hidden_dac_lockindex);
3043
    qemu_get_8s(f, &s->cirrus_hidden_dac_data);
3044

    
3045
    qemu_get_be32s(f, &s->hw_cursor_x);
3046
    qemu_get_be32s(f, &s->hw_cursor_y);
3047

    
3048
    cirrus_update_memory_access(s);
3049
    /* force refresh */
3050
    s->vga.graphic_mode = -1;
3051
    cirrus_update_bank_ptr(s, 0);
3052
    cirrus_update_bank_ptr(s, 1);
3053
    return 0;
3054
}
3055

    
3056
static void pci_cirrus_vga_save(QEMUFile *f, void *opaque)
3057
{
3058
    PCICirrusVGAState *s = opaque;
3059

    
3060
    pci_device_save(&s->dev, f);
3061
    cirrus_vga_save(f, &s->cirrus_vga);
3062
}
3063

    
3064
static int pci_cirrus_vga_load(QEMUFile *f, void *opaque, int version_id)
3065
{
3066
    PCICirrusVGAState *s = opaque;
3067
    int ret;
3068

    
3069
    if (version_id > 2)
3070
        return -EINVAL;
3071

    
3072
    if (version_id >= 2) {
3073
        ret = pci_device_load(&s->dev, f);
3074
        if (ret < 0)
3075
            return ret;
3076
    }
3077

    
3078
    return cirrus_vga_load(f, &s->cirrus_vga, version_id);
3079
}
3080

    
3081
/***************************************
3082
 *
3083
 *  initialize
3084
 *
3085
 ***************************************/
3086

    
3087
static void cirrus_reset(void *opaque)
3088
{
3089
    CirrusVGAState *s = opaque;
3090

    
3091
    vga_common_reset(&s->vga);
3092
    unmap_linear_vram(s);
3093
    s->vga.sr[0x06] = 0x0f;
3094
    if (s->device_id == CIRRUS_ID_CLGD5446) {
3095
        /* 4MB 64 bit memory config, always PCI */
3096
        s->vga.sr[0x1F] = 0x2d;                // MemClock
3097
        s->vga.gr[0x18] = 0x0f;             // fastest memory configuration
3098
        s->vga.sr[0x0f] = 0x98;
3099
        s->vga.sr[0x17] = 0x20;
3100
        s->vga.sr[0x15] = 0x04; /* memory size, 3=2MB, 4=4MB */
3101
    } else {
3102
        s->vga.sr[0x1F] = 0x22;                // MemClock
3103
        s->vga.sr[0x0F] = CIRRUS_MEMSIZE_2M;
3104
        s->vga.sr[0x17] = s->bustype;
3105
        s->vga.sr[0x15] = 0x03; /* memory size, 3=2MB, 4=4MB */
3106
    }
3107
    s->vga.cr[0x27] = s->device_id;
3108

    
3109
    /* Win2K seems to assume that the pattern buffer is at 0xff
3110
       initially ! */
3111
    memset(s->vga.vram_ptr, 0xff, s->real_vram_size);
3112

    
3113
    s->cirrus_hidden_dac_lockindex = 5;
3114
    s->cirrus_hidden_dac_data = 0;
3115
}
3116

    
3117
static void cirrus_init_common(CirrusVGAState * s, int device_id, int is_pci)
3118
{
3119
    int i;
3120
    static int inited;
3121

    
3122
    if (!inited) {
3123
        inited = 1;
3124
        for(i = 0;i < 256; i++)
3125
            rop_to_index[i] = CIRRUS_ROP_NOP_INDEX; /* nop rop */
3126
        rop_to_index[CIRRUS_ROP_0] = 0;
3127
        rop_to_index[CIRRUS_ROP_SRC_AND_DST] = 1;
3128
        rop_to_index[CIRRUS_ROP_NOP] = 2;
3129
        rop_to_index[CIRRUS_ROP_SRC_AND_NOTDST] = 3;
3130
        rop_to_index[CIRRUS_ROP_NOTDST] = 4;
3131
        rop_to_index[CIRRUS_ROP_SRC] = 5;
3132
        rop_to_index[CIRRUS_ROP_1] = 6;
3133
        rop_to_index[CIRRUS_ROP_NOTSRC_AND_DST] = 7;
3134
        rop_to_index[CIRRUS_ROP_SRC_XOR_DST] = 8;
3135
        rop_to_index[CIRRUS_ROP_SRC_OR_DST] = 9;
3136
        rop_to_index[CIRRUS_ROP_NOTSRC_OR_NOTDST] = 10;
3137
        rop_to_index[CIRRUS_ROP_SRC_NOTXOR_DST] = 11;
3138
        rop_to_index[CIRRUS_ROP_SRC_OR_NOTDST] = 12;
3139
        rop_to_index[CIRRUS_ROP_NOTSRC] = 13;
3140
        rop_to_index[CIRRUS_ROP_NOTSRC_OR_DST] = 14;
3141
        rop_to_index[CIRRUS_ROP_NOTSRC_AND_NOTDST] = 15;
3142
        s->device_id = device_id;
3143
        if (is_pci)
3144
            s->bustype = CIRRUS_BUSTYPE_PCI;
3145
        else
3146
            s->bustype = CIRRUS_BUSTYPE_ISA;
3147
    }
3148

    
3149
    register_ioport_write(0x3c0, 16, 1, cirrus_vga_ioport_write, s);
3150

    
3151
    register_ioport_write(0x3b4, 2, 1, cirrus_vga_ioport_write, s);
3152
    register_ioport_write(0x3d4, 2, 1, cirrus_vga_ioport_write, s);
3153
    register_ioport_write(0x3ba, 1, 1, cirrus_vga_ioport_write, s);
3154
    register_ioport_write(0x3da, 1, 1, cirrus_vga_ioport_write, s);
3155

    
3156
    register_ioport_read(0x3c0, 16, 1, cirrus_vga_ioport_read, s);
3157

    
3158
    register_ioport_read(0x3b4, 2, 1, cirrus_vga_ioport_read, s);
3159
    register_ioport_read(0x3d4, 2, 1, cirrus_vga_ioport_read, s);
3160
    register_ioport_read(0x3ba, 1, 1, cirrus_vga_ioport_read, s);
3161
    register_ioport_read(0x3da, 1, 1, cirrus_vga_ioport_read, s);
3162

    
3163
    s->vga.vga_io_memory = cpu_register_io_memory(cirrus_vga_mem_read,
3164
                                                  cirrus_vga_mem_write, s);
3165
    cpu_register_physical_memory(isa_mem_base + 0x000a0000, 0x20000,
3166
                                 s->vga.vga_io_memory);
3167
    qemu_register_coalesced_mmio(isa_mem_base + 0x000a0000, 0x20000);
3168

    
3169
    /* I/O handler for LFB */
3170
    s->cirrus_linear_io_addr =
3171
        cpu_register_io_memory(cirrus_linear_read, cirrus_linear_write, s);
3172

    
3173
    /* I/O handler for LFB */
3174
    s->cirrus_linear_bitblt_io_addr =
3175
        cpu_register_io_memory(cirrus_linear_bitblt_read,
3176
                               cirrus_linear_bitblt_write, s);
3177

    
3178
    /* I/O handler for memory-mapped I/O */
3179
    s->cirrus_mmio_io_addr =
3180
        cpu_register_io_memory(cirrus_mmio_read, cirrus_mmio_write, s);
3181

    
3182
    s->real_vram_size =
3183
        (s->device_id == CIRRUS_ID_CLGD5446) ? 4096 * 1024 : 2048 * 1024;
3184

    
3185
    /* XXX: s->vga.vram_size must be a power of two */
3186
    s->cirrus_addr_mask = s->real_vram_size - 1;
3187
    s->linear_mmio_mask = s->real_vram_size - 256;
3188

    
3189
    s->vga.get_bpp = cirrus_get_bpp;
3190
    s->vga.get_offsets = cirrus_get_offsets;
3191
    s->vga.get_resolution = cirrus_get_resolution;
3192
    s->vga.cursor_invalidate = cirrus_cursor_invalidate;
3193
    s->vga.cursor_draw_line = cirrus_cursor_draw_line;
3194

    
3195
    qemu_register_reset(cirrus_reset, s);
3196
    cirrus_reset(s);
3197
}
3198

    
3199
/***************************************
3200
 *
3201
 *  ISA bus support
3202
 *
3203
 ***************************************/
3204

    
3205
void isa_cirrus_vga_init(void)
3206
{
3207
    CirrusVGAState *s;
3208

    
3209
    s = qemu_mallocz(sizeof(CirrusVGAState));
3210

    
3211
    vga_common_init(&s->vga, VGA_RAM_SIZE);
3212
    cirrus_init_common(s, CIRRUS_ID_CLGD5430, 0);
3213
    s->vga.ds = graphic_console_init(s->vga.update, s->vga.invalidate,
3214
                                     s->vga.screen_dump, s->vga.text_update,
3215
                                     &s->vga);
3216
    register_savevm("cirrus_vga", 0, 2, cirrus_vga_save, cirrus_vga_load, s);
3217
    /* XXX ISA-LFB support */
3218
}
3219

    
3220
/***************************************
3221
 *
3222
 *  PCI bus support
3223
 *
3224
 ***************************************/
3225

    
3226
static void cirrus_pci_lfb_map(PCIDevice *d, int region_num,
3227
                               uint32_t addr, uint32_t size, int type)
3228
{
3229
    CirrusVGAState *s = &DO_UPCAST(PCICirrusVGAState, dev, d)->cirrus_vga;
3230

    
3231
    /* XXX: add byte swapping apertures */
3232
    cpu_register_physical_memory(addr, s->vga.vram_size,
3233
                                 s->cirrus_linear_io_addr);
3234
    cpu_register_physical_memory(addr + 0x1000000, 0x400000,
3235
                                 s->cirrus_linear_bitblt_io_addr);
3236

    
3237
    s->vga.map_addr = s->vga.map_end = 0;
3238
    s->vga.lfb_addr = addr & TARGET_PAGE_MASK;
3239
    s->vga.lfb_end = ((addr + VGA_RAM_SIZE) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK;
3240
    /* account for overflow */
3241
    if (s->vga.lfb_end < addr + VGA_RAM_SIZE)
3242
        s->vga.lfb_end = addr + VGA_RAM_SIZE;
3243

    
3244
    vga_dirty_log_start(&s->vga);
3245
}
3246

    
3247
static void cirrus_pci_mmio_map(PCIDevice *d, int region_num,
3248
                                uint32_t addr, uint32_t size, int type)
3249
{
3250
    CirrusVGAState *s = &DO_UPCAST(PCICirrusVGAState, dev, d)->cirrus_vga;
3251

    
3252
    cpu_register_physical_memory(addr, CIRRUS_PNPMMIO_SIZE,
3253
                                 s->cirrus_mmio_io_addr);
3254
}
3255

    
3256
static void pci_cirrus_write_config(PCIDevice *d,
3257
                                    uint32_t address, uint32_t val, int len)
3258
{
3259
    PCICirrusVGAState *pvs = DO_UPCAST(PCICirrusVGAState, dev, d);
3260
    CirrusVGAState *s = &pvs->cirrus_vga;
3261

    
3262
    pci_default_write_config(d, address, val, len);
3263
    if (s->vga.map_addr && d->io_regions[0].addr == -1)
3264
        s->vga.map_addr = 0;
3265
    cirrus_update_memory_access(s);
3266
}
3267

    
3268
static int pci_cirrus_vga_initfn(PCIDevice *dev)
3269
{
3270
     PCICirrusVGAState *d = DO_UPCAST(PCICirrusVGAState, dev, dev);
3271
     CirrusVGAState *s = &d->cirrus_vga;
3272
     uint8_t *pci_conf = d->dev.config;
3273
     int device_id = CIRRUS_ID_CLGD5446;
3274

    
3275
     /* setup VGA */
3276
     vga_common_init(&s->vga, VGA_RAM_SIZE);
3277
     cirrus_init_common(s, device_id, 1);
3278
     s->vga.ds = graphic_console_init(s->vga.update, s->vga.invalidate,
3279
                                      s->vga.screen_dump, s->vga.text_update,
3280
                                      &s->vga);
3281

    
3282
     /* setup PCI */
3283
     pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_CIRRUS);
3284
     pci_config_set_device_id(pci_conf, device_id);
3285
     pci_conf[0x04] = PCI_COMMAND_IOACCESS | PCI_COMMAND_MEMACCESS;
3286
     pci_config_set_class(pci_conf, PCI_CLASS_DISPLAY_VGA);
3287
     pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL;
3288

    
3289
     /* setup memory space */
3290
     /* memory #0 LFB */
3291
     /* memory #1 memory-mapped I/O */
3292
     /* XXX: s->vga.vram_size must be a power of two */
3293
     pci_register_bar((PCIDevice *)d, 0, 0x2000000,
3294
                      PCI_ADDRESS_SPACE_MEM_PREFETCH, cirrus_pci_lfb_map);
3295
     if (device_id == CIRRUS_ID_CLGD5446) {
3296
         pci_register_bar((PCIDevice *)d, 1, CIRRUS_PNPMMIO_SIZE,
3297
                          PCI_ADDRESS_SPACE_MEM, cirrus_pci_mmio_map);
3298
     }
3299
     register_savevm("cirrus_vga", 0, 2, pci_cirrus_vga_save, pci_cirrus_vga_load, d);
3300
     /* XXX: ROM BIOS */
3301
     return 0;
3302
}
3303

    
3304
void pci_cirrus_vga_init(PCIBus *bus)
3305
{
3306
    pci_create_simple(bus, -1, "Cirrus VGA");
3307
}
3308

    
3309
static PCIDeviceInfo cirrus_vga_info = {
3310
    .qdev.name    = "Cirrus VGA",
3311
    .qdev.size    = sizeof(PCICirrusVGAState),
3312
    .init         = pci_cirrus_vga_initfn,
3313
    .config_write = pci_cirrus_write_config,
3314
};
3315

    
3316
static void cirrus_vga_register(void)
3317
{
3318
    pci_qdev_register(&cirrus_vga_info);
3319
}
3320
device_init(cirrus_vga_register);