Statistics
| Branch: | Revision:

root / hw / vmware_vga.c @ 183aa454

History | View | Annotate | Download (35 kB)

1 d34cab9f ths
/*
2 d34cab9f ths
 * QEMU VMware-SVGA "chipset".
3 d34cab9f ths
 *
4 d34cab9f ths
 * Copyright (c) 2007 Andrzej Zaborowski  <balrog@zabor.org>
5 d34cab9f ths
 *
6 d34cab9f ths
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 d34cab9f ths
 * of this software and associated documentation files (the "Software"), to deal
8 d34cab9f ths
 * in the Software without restriction, including without limitation the rights
9 d34cab9f ths
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 d34cab9f ths
 * copies of the Software, and to permit persons to whom the Software is
11 d34cab9f ths
 * furnished to do so, subject to the following conditions:
12 d34cab9f ths
 *
13 d34cab9f ths
 * The above copyright notice and this permission notice shall be included in
14 d34cab9f ths
 * all copies or substantial portions of the Software.
15 d34cab9f ths
 *
16 d34cab9f ths
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 d34cab9f ths
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 d34cab9f ths
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 d34cab9f ths
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 d34cab9f ths
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 d34cab9f ths
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 d34cab9f ths
 * THE SOFTWARE.
23 d34cab9f ths
 */
24 87ecb68b pbrook
#include "hw.h"
25 b3c3f123 Dave Airlie
#include "loader.h"
26 87ecb68b pbrook
#include "console.h"
27 87ecb68b pbrook
#include "pci.h"
28 18e08a55 Michael S. Tsirkin
#include "vmware_vga.h"
29 d34cab9f ths
30 d34cab9f ths
#define VERBOSE
31 d34cab9f ths
#undef DIRECT_VRAM
32 d34cab9f ths
#define HW_RECT_ACCEL
33 d34cab9f ths
#define HW_FILL_ACCEL
34 d34cab9f ths
#define HW_MOUSE_ACCEL
35 d34cab9f ths
36 d34cab9f ths
# include "vga_int.h"
37 d34cab9f ths
38 d34cab9f ths
struct vmsvga_state_s {
39 4e12cd94 Avi Kivity
    VGACommonState vga;
40 d34cab9f ths
41 d34cab9f ths
    int width;
42 d34cab9f ths
    int height;
43 d34cab9f ths
    int invalidated;
44 d34cab9f ths
    int depth;
45 d34cab9f ths
    int bypp;
46 d34cab9f ths
    int enable;
47 d34cab9f ths
    int config;
48 d34cab9f ths
    struct {
49 d34cab9f ths
        int id;
50 d34cab9f ths
        int x;
51 d34cab9f ths
        int y;
52 d34cab9f ths
        int on;
53 d34cab9f ths
    } cursor;
54 d34cab9f ths
55 c227f099 Anthony Liguori
    target_phys_addr_t vram_base;
56 d34cab9f ths
57 d34cab9f ths
    int index;
58 d34cab9f ths
    int scratch_size;
59 d34cab9f ths
    uint32_t *scratch;
60 d34cab9f ths
    int new_width;
61 d34cab9f ths
    int new_height;
62 d34cab9f ths
    uint32_t guest;
63 d34cab9f ths
    uint32_t svgaid;
64 d34cab9f ths
    uint32_t wred;
65 d34cab9f ths
    uint32_t wgreen;
66 d34cab9f ths
    uint32_t wblue;
67 d34cab9f ths
    int syncing;
68 d34cab9f ths
    int fb_size;
69 d34cab9f ths
70 f351d050 Dave Airlie
    ram_addr_t fifo_offset;
71 f351d050 Dave Airlie
    uint8_t *fifo_ptr;
72 f351d050 Dave Airlie
    unsigned int fifo_size;
73 f351d050 Dave Airlie
    target_phys_addr_t fifo_base;
74 f351d050 Dave Airlie
75 d34cab9f ths
    union {
76 d34cab9f ths
        uint32_t *fifo;
77 d34cab9f ths
        struct __attribute__((__packed__)) {
78 d34cab9f ths
            uint32_t min;
79 d34cab9f ths
            uint32_t max;
80 d34cab9f ths
            uint32_t next_cmd;
81 d34cab9f ths
            uint32_t stop;
82 d34cab9f ths
            /* Add registers here when adding capabilities.  */
83 d34cab9f ths
            uint32_t fifo[0];
84 d34cab9f ths
        } *cmd;
85 d34cab9f ths
    };
86 d34cab9f ths
87 d34cab9f ths
#define REDRAW_FIFO_LEN        512
88 d34cab9f ths
    struct vmsvga_rect_s {
89 d34cab9f ths
        int x, y, w, h;
90 d34cab9f ths
    } redraw_fifo[REDRAW_FIFO_LEN];
91 d34cab9f ths
    int redraw_fifo_first, redraw_fifo_last;
92 d34cab9f ths
};
93 d34cab9f ths
94 d34cab9f ths
struct pci_vmsvga_state_s {
95 d34cab9f ths
    PCIDevice card;
96 d34cab9f ths
    struct vmsvga_state_s chip;
97 d34cab9f ths
};
98 d34cab9f ths
99 d34cab9f ths
#define SVGA_MAGIC                0x900000UL
100 d34cab9f ths
#define SVGA_MAKE_ID(ver)        (SVGA_MAGIC << 8 | (ver))
101 d34cab9f ths
#define SVGA_ID_0                SVGA_MAKE_ID(0)
102 d34cab9f ths
#define SVGA_ID_1                SVGA_MAKE_ID(1)
103 d34cab9f ths
#define SVGA_ID_2                SVGA_MAKE_ID(2)
104 d34cab9f ths
105 d34cab9f ths
#define SVGA_LEGACY_BASE_PORT        0x4560
106 d34cab9f ths
#define SVGA_INDEX_PORT                0x0
107 d34cab9f ths
#define SVGA_VALUE_PORT                0x1
108 d34cab9f ths
#define SVGA_BIOS_PORT                0x2
109 d34cab9f ths
110 d34cab9f ths
#define SVGA_VERSION_2
111 d34cab9f ths
112 d34cab9f ths
#ifdef SVGA_VERSION_2
113 d34cab9f ths
# define SVGA_ID                SVGA_ID_2
114 d34cab9f ths
# define SVGA_IO_BASE                SVGA_LEGACY_BASE_PORT
115 d34cab9f ths
# define SVGA_IO_MUL                1
116 d34cab9f ths
# define SVGA_FIFO_SIZE                0x10000
117 1f72aae5 balrog
# define SVGA_MEM_BASE                0xe0000000
118 d34cab9f ths
# define SVGA_PCI_DEVICE_ID        PCI_DEVICE_ID_VMWARE_SVGA2
119 d34cab9f ths
#else
120 d34cab9f ths
# define SVGA_ID                SVGA_ID_1
121 d34cab9f ths
# define SVGA_IO_BASE                SVGA_LEGACY_BASE_PORT
122 d34cab9f ths
# define SVGA_IO_MUL                4
123 d34cab9f ths
# define SVGA_FIFO_SIZE                0x10000
124 1f72aae5 balrog
# define SVGA_MEM_BASE                0xe0000000
125 d34cab9f ths
# define SVGA_PCI_DEVICE_ID        PCI_DEVICE_ID_VMWARE_SVGA
126 d34cab9f ths
#endif
127 d34cab9f ths
128 d34cab9f ths
enum {
129 d34cab9f ths
    /* ID 0, 1 and 2 registers */
130 d34cab9f ths
    SVGA_REG_ID = 0,
131 d34cab9f ths
    SVGA_REG_ENABLE = 1,
132 d34cab9f ths
    SVGA_REG_WIDTH = 2,
133 d34cab9f ths
    SVGA_REG_HEIGHT = 3,
134 d34cab9f ths
    SVGA_REG_MAX_WIDTH = 4,
135 d34cab9f ths
    SVGA_REG_MAX_HEIGHT = 5,
136 d34cab9f ths
    SVGA_REG_DEPTH = 6,
137 d34cab9f ths
    SVGA_REG_BITS_PER_PIXEL = 7,        /* Current bpp in the guest */
138 d34cab9f ths
    SVGA_REG_PSEUDOCOLOR = 8,
139 d34cab9f ths
    SVGA_REG_RED_MASK = 9,
140 d34cab9f ths
    SVGA_REG_GREEN_MASK = 10,
141 d34cab9f ths
    SVGA_REG_BLUE_MASK = 11,
142 d34cab9f ths
    SVGA_REG_BYTES_PER_LINE = 12,
143 d34cab9f ths
    SVGA_REG_FB_START = 13,
144 d34cab9f ths
    SVGA_REG_FB_OFFSET = 14,
145 d34cab9f ths
    SVGA_REG_VRAM_SIZE = 15,
146 d34cab9f ths
    SVGA_REG_FB_SIZE = 16,
147 d34cab9f ths
148 d34cab9f ths
    /* ID 1 and 2 registers */
149 d34cab9f ths
    SVGA_REG_CAPABILITIES = 17,
150 d34cab9f ths
    SVGA_REG_MEM_START = 18,                /* Memory for command FIFO */
151 d34cab9f ths
    SVGA_REG_MEM_SIZE = 19,
152 d34cab9f ths
    SVGA_REG_CONFIG_DONE = 20,                /* Set when memory area configured */
153 d34cab9f ths
    SVGA_REG_SYNC = 21,                        /* Write to force synchronization */
154 d34cab9f ths
    SVGA_REG_BUSY = 22,                        /* Read to check if sync is done */
155 d34cab9f ths
    SVGA_REG_GUEST_ID = 23,                /* Set guest OS identifier */
156 d34cab9f ths
    SVGA_REG_CURSOR_ID = 24,                /* ID of cursor */
157 d34cab9f ths
    SVGA_REG_CURSOR_X = 25,                /* Set cursor X position */
158 d34cab9f ths
    SVGA_REG_CURSOR_Y = 26,                /* Set cursor Y position */
159 d34cab9f ths
    SVGA_REG_CURSOR_ON = 27,                /* Turn cursor on/off */
160 d34cab9f ths
    SVGA_REG_HOST_BITS_PER_PIXEL = 28,        /* Current bpp in the host */
161 d34cab9f ths
    SVGA_REG_SCRATCH_SIZE = 29,                /* Number of scratch registers */
162 d34cab9f ths
    SVGA_REG_MEM_REGS = 30,                /* Number of FIFO registers */
163 d34cab9f ths
    SVGA_REG_NUM_DISPLAYS = 31,                /* Number of guest displays */
164 d34cab9f ths
    SVGA_REG_PITCHLOCK = 32,                /* Fixed pitch for all modes */
165 d34cab9f ths
166 d34cab9f ths
    SVGA_PALETTE_BASE = 1024,                /* Base of SVGA color map */
167 d34cab9f ths
    SVGA_PALETTE_END  = SVGA_PALETTE_BASE + 767,
168 d34cab9f ths
    SVGA_SCRATCH_BASE = SVGA_PALETTE_BASE + 768,
169 d34cab9f ths
};
170 d34cab9f ths
171 d34cab9f ths
#define SVGA_CAP_NONE                        0
172 d34cab9f ths
#define SVGA_CAP_RECT_FILL                (1 << 0)
173 d34cab9f ths
#define SVGA_CAP_RECT_COPY                (1 << 1)
174 d34cab9f ths
#define SVGA_CAP_RECT_PAT_FILL                (1 << 2)
175 d34cab9f ths
#define SVGA_CAP_LEGACY_OFFSCREEN        (1 << 3)
176 d34cab9f ths
#define SVGA_CAP_RASTER_OP                (1 << 4)
177 d34cab9f ths
#define SVGA_CAP_CURSOR                        (1 << 5)
178 d34cab9f ths
#define SVGA_CAP_CURSOR_BYPASS                (1 << 6)
179 d34cab9f ths
#define SVGA_CAP_CURSOR_BYPASS_2        (1 << 7)
180 d34cab9f ths
#define SVGA_CAP_8BIT_EMULATION                (1 << 8)
181 d34cab9f ths
#define SVGA_CAP_ALPHA_CURSOR                (1 << 9)
182 d34cab9f ths
#define SVGA_CAP_GLYPH                        (1 << 10)
183 d34cab9f ths
#define SVGA_CAP_GLYPH_CLIPPING                (1 << 11)
184 d34cab9f ths
#define SVGA_CAP_OFFSCREEN_1                (1 << 12)
185 d34cab9f ths
#define SVGA_CAP_ALPHA_BLEND                (1 << 13)
186 d34cab9f ths
#define SVGA_CAP_3D                        (1 << 14)
187 d34cab9f ths
#define SVGA_CAP_EXTENDED_FIFO                (1 << 15)
188 d34cab9f ths
#define SVGA_CAP_MULTIMON                (1 << 16)
189 d34cab9f ths
#define SVGA_CAP_PITCHLOCK                (1 << 17)
190 d34cab9f ths
191 d34cab9f ths
/*
192 d34cab9f ths
 * FIFO offsets (seen as an array of 32-bit words)
193 d34cab9f ths
 */
194 d34cab9f ths
enum {
195 d34cab9f ths
    /*
196 d34cab9f ths
     * The original defined FIFO offsets
197 d34cab9f ths
     */
198 d34cab9f ths
    SVGA_FIFO_MIN = 0,
199 d34cab9f ths
    SVGA_FIFO_MAX,        /* The distance from MIN to MAX must be at least 10K */
200 d34cab9f ths
    SVGA_FIFO_NEXT_CMD,
201 d34cab9f ths
    SVGA_FIFO_STOP,
202 d34cab9f ths
203 d34cab9f ths
    /*
204 d34cab9f ths
     * Additional offsets added as of SVGA_CAP_EXTENDED_FIFO
205 d34cab9f ths
     */
206 d34cab9f ths
    SVGA_FIFO_CAPABILITIES = 4,
207 d34cab9f ths
    SVGA_FIFO_FLAGS,
208 d34cab9f ths
    SVGA_FIFO_FENCE,
209 d34cab9f ths
    SVGA_FIFO_3D_HWVERSION,
210 d34cab9f ths
    SVGA_FIFO_PITCHLOCK,
211 d34cab9f ths
};
212 d34cab9f ths
213 d34cab9f ths
#define SVGA_FIFO_CAP_NONE                0
214 d34cab9f ths
#define SVGA_FIFO_CAP_FENCE                (1 << 0)
215 d34cab9f ths
#define SVGA_FIFO_CAP_ACCELFRONT        (1 << 1)
216 d34cab9f ths
#define SVGA_FIFO_CAP_PITCHLOCK                (1 << 2)
217 d34cab9f ths
218 d34cab9f ths
#define SVGA_FIFO_FLAG_NONE                0
219 d34cab9f ths
#define SVGA_FIFO_FLAG_ACCELFRONT        (1 << 0)
220 d34cab9f ths
221 d34cab9f ths
/* These values can probably be changed arbitrarily.  */
222 d34cab9f ths
#define SVGA_SCRATCH_SIZE                0x8000
223 d34cab9f ths
#define SVGA_MAX_WIDTH                        2360
224 d34cab9f ths
#define SVGA_MAX_HEIGHT                        1770
225 d34cab9f ths
226 d34cab9f ths
#ifdef VERBOSE
227 d34cab9f ths
# define GUEST_OS_BASE                0x5001
228 d34cab9f ths
static const char *vmsvga_guest_id[] = {
229 f707cfba balrog
    [0x00] = "Dos",
230 f707cfba balrog
    [0x01] = "Windows 3.1",
231 f707cfba balrog
    [0x02] = "Windows 95",
232 f707cfba balrog
    [0x03] = "Windows 98",
233 f707cfba balrog
    [0x04] = "Windows ME",
234 f707cfba balrog
    [0x05] = "Windows NT",
235 f707cfba balrog
    [0x06] = "Windows 2000",
236 f707cfba balrog
    [0x07] = "Linux",
237 f707cfba balrog
    [0x08] = "OS/2",
238 511d2b14 blueswir1
    [0x09] = "an unknown OS",
239 f707cfba balrog
    [0x0a] = "BSD",
240 f707cfba balrog
    [0x0b] = "Whistler",
241 511d2b14 blueswir1
    [0x0c] = "an unknown OS",
242 511d2b14 blueswir1
    [0x0d] = "an unknown OS",
243 511d2b14 blueswir1
    [0x0e] = "an unknown OS",
244 511d2b14 blueswir1
    [0x0f] = "an unknown OS",
245 511d2b14 blueswir1
    [0x10] = "an unknown OS",
246 511d2b14 blueswir1
    [0x11] = "an unknown OS",
247 511d2b14 blueswir1
    [0x12] = "an unknown OS",
248 511d2b14 blueswir1
    [0x13] = "an unknown OS",
249 511d2b14 blueswir1
    [0x14] = "an unknown OS",
250 f707cfba balrog
    [0x15] = "Windows 2003",
251 d34cab9f ths
};
252 d34cab9f ths
#endif
253 d34cab9f ths
254 d34cab9f ths
enum {
255 d34cab9f ths
    SVGA_CMD_INVALID_CMD = 0,
256 d34cab9f ths
    SVGA_CMD_UPDATE = 1,
257 d34cab9f ths
    SVGA_CMD_RECT_FILL = 2,
258 d34cab9f ths
    SVGA_CMD_RECT_COPY = 3,
259 d34cab9f ths
    SVGA_CMD_DEFINE_BITMAP = 4,
260 d34cab9f ths
    SVGA_CMD_DEFINE_BITMAP_SCANLINE = 5,
261 d34cab9f ths
    SVGA_CMD_DEFINE_PIXMAP = 6,
262 d34cab9f ths
    SVGA_CMD_DEFINE_PIXMAP_SCANLINE = 7,
263 d34cab9f ths
    SVGA_CMD_RECT_BITMAP_FILL = 8,
264 d34cab9f ths
    SVGA_CMD_RECT_PIXMAP_FILL = 9,
265 d34cab9f ths
    SVGA_CMD_RECT_BITMAP_COPY = 10,
266 d34cab9f ths
    SVGA_CMD_RECT_PIXMAP_COPY = 11,
267 d34cab9f ths
    SVGA_CMD_FREE_OBJECT = 12,
268 d34cab9f ths
    SVGA_CMD_RECT_ROP_FILL = 13,
269 d34cab9f ths
    SVGA_CMD_RECT_ROP_COPY = 14,
270 d34cab9f ths
    SVGA_CMD_RECT_ROP_BITMAP_FILL = 15,
271 d34cab9f ths
    SVGA_CMD_RECT_ROP_PIXMAP_FILL = 16,
272 d34cab9f ths
    SVGA_CMD_RECT_ROP_BITMAP_COPY = 17,
273 d34cab9f ths
    SVGA_CMD_RECT_ROP_PIXMAP_COPY = 18,
274 d34cab9f ths
    SVGA_CMD_DEFINE_CURSOR = 19,
275 d34cab9f ths
    SVGA_CMD_DISPLAY_CURSOR = 20,
276 d34cab9f ths
    SVGA_CMD_MOVE_CURSOR = 21,
277 d34cab9f ths
    SVGA_CMD_DEFINE_ALPHA_CURSOR = 22,
278 d34cab9f ths
    SVGA_CMD_DRAW_GLYPH = 23,
279 d34cab9f ths
    SVGA_CMD_DRAW_GLYPH_CLIPPED = 24,
280 d34cab9f ths
    SVGA_CMD_UPDATE_VERBOSE = 25,
281 d34cab9f ths
    SVGA_CMD_SURFACE_FILL = 26,
282 d34cab9f ths
    SVGA_CMD_SURFACE_COPY = 27,
283 d34cab9f ths
    SVGA_CMD_SURFACE_ALPHA_BLEND = 28,
284 d34cab9f ths
    SVGA_CMD_FRONT_ROP_FILL = 29,
285 d34cab9f ths
    SVGA_CMD_FENCE = 30,
286 d34cab9f ths
};
287 d34cab9f ths
288 d34cab9f ths
/* Legal values for the SVGA_REG_CURSOR_ON register in cursor bypass mode */
289 d34cab9f ths
enum {
290 d34cab9f ths
    SVGA_CURSOR_ON_HIDE = 0,
291 d34cab9f ths
    SVGA_CURSOR_ON_SHOW = 1,
292 d34cab9f ths
    SVGA_CURSOR_ON_REMOVE_FROM_FB = 2,
293 d34cab9f ths
    SVGA_CURSOR_ON_RESTORE_TO_FB = 3,
294 d34cab9f ths
};
295 d34cab9f ths
296 d34cab9f ths
static inline void vmsvga_update_rect(struct vmsvga_state_s *s,
297 d34cab9f ths
                int x, int y, int w, int h)
298 d34cab9f ths
{
299 d34cab9f ths
#ifndef DIRECT_VRAM
300 a8fbaf96 balrog
    int line;
301 a8fbaf96 balrog
    int bypl;
302 a8fbaf96 balrog
    int width;
303 a8fbaf96 balrog
    int start;
304 a8fbaf96 balrog
    uint8_t *src;
305 a8fbaf96 balrog
    uint8_t *dst;
306 a8fbaf96 balrog
307 a8fbaf96 balrog
    if (x + w > s->width) {
308 a8fbaf96 balrog
        fprintf(stderr, "%s: update width too large x: %d, w: %d\n",
309 a8fbaf96 balrog
                        __FUNCTION__, x, w);
310 a8fbaf96 balrog
        x = MIN(x, s->width);
311 a8fbaf96 balrog
        w = s->width - x;
312 a8fbaf96 balrog
    }
313 a8fbaf96 balrog
314 a8fbaf96 balrog
    if (y + h > s->height) {
315 a8fbaf96 balrog
        fprintf(stderr, "%s: update height too large y: %d, h: %d\n",
316 a8fbaf96 balrog
                        __FUNCTION__, y, h);
317 a8fbaf96 balrog
        y = MIN(y, s->height);
318 a8fbaf96 balrog
        h = s->height - y;
319 a8fbaf96 balrog
    }
320 a8fbaf96 balrog
321 a8fbaf96 balrog
    line = h;
322 a8fbaf96 balrog
    bypl = s->bypp * s->width;
323 a8fbaf96 balrog
    width = s->bypp * w;
324 a8fbaf96 balrog
    start = s->bypp * x + bypl * y;
325 4e12cd94 Avi Kivity
    src = s->vga.vram_ptr + start;
326 4e12cd94 Avi Kivity
    dst = ds_get_data(s->vga.ds) + start;
327 d34cab9f ths
328 d34cab9f ths
    for (; line > 0; line --, src += bypl, dst += bypl)
329 d34cab9f ths
        memcpy(dst, src, width);
330 d34cab9f ths
#endif
331 d34cab9f ths
332 4e12cd94 Avi Kivity
    dpy_update(s->vga.ds, x, y, w, h);
333 d34cab9f ths
}
334 d34cab9f ths
335 d34cab9f ths
static inline void vmsvga_update_screen(struct vmsvga_state_s *s)
336 d34cab9f ths
{
337 d34cab9f ths
#ifndef DIRECT_VRAM
338 4e12cd94 Avi Kivity
    memcpy(ds_get_data(s->vga.ds), s->vga.vram_ptr, s->bypp * s->width * s->height);
339 d34cab9f ths
#endif
340 d34cab9f ths
341 4e12cd94 Avi Kivity
    dpy_update(s->vga.ds, 0, 0, s->width, s->height);
342 d34cab9f ths
}
343 d34cab9f ths
344 d34cab9f ths
#ifdef DIRECT_VRAM
345 d34cab9f ths
# define vmsvga_update_rect_delayed        vmsvga_update_rect
346 d34cab9f ths
#else
347 d34cab9f ths
static inline void vmsvga_update_rect_delayed(struct vmsvga_state_s *s,
348 d34cab9f ths
                int x, int y, int w, int h)
349 d34cab9f ths
{
350 d34cab9f ths
    struct vmsvga_rect_s *rect = &s->redraw_fifo[s->redraw_fifo_last ++];
351 d34cab9f ths
    s->redraw_fifo_last &= REDRAW_FIFO_LEN - 1;
352 d34cab9f ths
    rect->x = x;
353 d34cab9f ths
    rect->y = y;
354 d34cab9f ths
    rect->w = w;
355 d34cab9f ths
    rect->h = h;
356 d34cab9f ths
}
357 d34cab9f ths
#endif
358 d34cab9f ths
359 d34cab9f ths
static inline void vmsvga_update_rect_flush(struct vmsvga_state_s *s)
360 d34cab9f ths
{
361 d34cab9f ths
    struct vmsvga_rect_s *rect;
362 d34cab9f ths
    if (s->invalidated) {
363 d34cab9f ths
        s->redraw_fifo_first = s->redraw_fifo_last;
364 d34cab9f ths
        return;
365 d34cab9f ths
    }
366 d34cab9f ths
    /* Overlapping region updates can be optimised out here - if someone
367 d34cab9f ths
     * knows a smart algorithm to do that, please share.  */
368 d34cab9f ths
    while (s->redraw_fifo_first != s->redraw_fifo_last) {
369 d34cab9f ths
        rect = &s->redraw_fifo[s->redraw_fifo_first ++];
370 d34cab9f ths
        s->redraw_fifo_first &= REDRAW_FIFO_LEN - 1;
371 d34cab9f ths
        vmsvga_update_rect(s, rect->x, rect->y, rect->w, rect->h);
372 d34cab9f ths
    }
373 d34cab9f ths
}
374 d34cab9f ths
375 d34cab9f ths
#ifdef HW_RECT_ACCEL
376 d34cab9f ths
static inline void vmsvga_copy_rect(struct vmsvga_state_s *s,
377 d34cab9f ths
                int x0, int y0, int x1, int y1, int w, int h)
378 d34cab9f ths
{
379 d34cab9f ths
# ifdef DIRECT_VRAM
380 0e1f5a0c aliguori
    uint8_t *vram = ds_get_data(s->ds);
381 d34cab9f ths
# else
382 4e12cd94 Avi Kivity
    uint8_t *vram = s->vga.vram_ptr;
383 d34cab9f ths
# endif
384 d34cab9f ths
    int bypl = s->bypp * s->width;
385 d34cab9f ths
    int width = s->bypp * w;
386 d34cab9f ths
    int line = h;
387 d34cab9f ths
    uint8_t *ptr[2];
388 d34cab9f ths
389 d34cab9f ths
# ifdef DIRECT_VRAM
390 d34cab9f ths
    if (s->ds->dpy_copy)
391 3023f332 aliguori
        qemu_console_copy(s->ds, x0, y0, x1, y1, w, h);
392 d34cab9f ths
    else
393 d34cab9f ths
# endif
394 d34cab9f ths
    {
395 d34cab9f ths
        if (y1 > y0) {
396 d34cab9f ths
            ptr[0] = vram + s->bypp * x0 + bypl * (y0 + h - 1);
397 d34cab9f ths
            ptr[1] = vram + s->bypp * x1 + bypl * (y1 + h - 1);
398 d34cab9f ths
            for (; line > 0; line --, ptr[0] -= bypl, ptr[1] -= bypl)
399 d34cab9f ths
                memmove(ptr[1], ptr[0], width);
400 d34cab9f ths
        } else {
401 d34cab9f ths
            ptr[0] = vram + s->bypp * x0 + bypl * y0;
402 d34cab9f ths
            ptr[1] = vram + s->bypp * x1 + bypl * y1;
403 d34cab9f ths
            for (; line > 0; line --, ptr[0] += bypl, ptr[1] += bypl)
404 d34cab9f ths
                memmove(ptr[1], ptr[0], width);
405 d34cab9f ths
        }
406 d34cab9f ths
    }
407 d34cab9f ths
408 d34cab9f ths
    vmsvga_update_rect_delayed(s, x1, y1, w, h);
409 d34cab9f ths
}
410 d34cab9f ths
#endif
411 d34cab9f ths
412 d34cab9f ths
#ifdef HW_FILL_ACCEL
413 d34cab9f ths
static inline void vmsvga_fill_rect(struct vmsvga_state_s *s,
414 d34cab9f ths
                uint32_t c, int x, int y, int w, int h)
415 d34cab9f ths
{
416 d34cab9f ths
# ifdef DIRECT_VRAM
417 0e1f5a0c aliguori
    uint8_t *vram = ds_get_data(s->ds);
418 d34cab9f ths
# else
419 4e12cd94 Avi Kivity
    uint8_t *vram = s->vga.vram_ptr;
420 d34cab9f ths
# endif
421 d34cab9f ths
    int bypp = s->bypp;
422 d34cab9f ths
    int bypl = bypp * s->width;
423 d34cab9f ths
    int width = bypp * w;
424 d34cab9f ths
    int line = h;
425 d34cab9f ths
    int column;
426 d34cab9f ths
    uint8_t *fst = vram + bypp * x + bypl * y;
427 d34cab9f ths
    uint8_t *dst;
428 d34cab9f ths
    uint8_t *src;
429 d34cab9f ths
    uint8_t col[4];
430 d34cab9f ths
431 d34cab9f ths
# ifdef DIRECT_VRAM
432 d34cab9f ths
    if (s->ds->dpy_fill)
433 d34cab9f ths
        s->ds->dpy_fill(s->ds, x, y, w, h, c);
434 d34cab9f ths
    else
435 d34cab9f ths
# endif
436 d34cab9f ths
    {
437 d34cab9f ths
        col[0] = c;
438 d34cab9f ths
        col[1] = c >> 8;
439 d34cab9f ths
        col[2] = c >> 16;
440 d34cab9f ths
        col[3] = c >> 24;
441 d34cab9f ths
442 d34cab9f ths
        if (line --) {
443 d34cab9f ths
            dst = fst;
444 d34cab9f ths
            src = col;
445 d34cab9f ths
            for (column = width; column > 0; column --) {
446 d34cab9f ths
                *(dst ++) = *(src ++);
447 d34cab9f ths
                if (src - col == bypp)
448 d34cab9f ths
                    src = col;
449 d34cab9f ths
            }
450 d34cab9f ths
            dst = fst;
451 d34cab9f ths
            for (; line > 0; line --) {
452 d34cab9f ths
                dst += bypl;
453 d34cab9f ths
                memcpy(dst, fst, width);
454 d34cab9f ths
            }
455 d34cab9f ths
        }
456 d34cab9f ths
    }
457 d34cab9f ths
458 d34cab9f ths
    vmsvga_update_rect_delayed(s, x, y, w, h);
459 d34cab9f ths
}
460 d34cab9f ths
#endif
461 d34cab9f ths
462 d34cab9f ths
struct vmsvga_cursor_definition_s {
463 d34cab9f ths
    int width;
464 d34cab9f ths
    int height;
465 d34cab9f ths
    int id;
466 d34cab9f ths
    int bpp;
467 d34cab9f ths
    int hot_x;
468 d34cab9f ths
    int hot_y;
469 d34cab9f ths
    uint32_t mask[1024];
470 8095cb3e Dave Airlie
    uint32_t image[4096];
471 d34cab9f ths
};
472 d34cab9f ths
473 d34cab9f ths
#define SVGA_BITMAP_SIZE(w, h)                ((((w) + 31) >> 5) * (h))
474 d34cab9f ths
#define SVGA_PIXMAP_SIZE(w, h, bpp)        (((((w) * (bpp)) + 31) >> 5) * (h))
475 d34cab9f ths
476 d34cab9f ths
#ifdef HW_MOUSE_ACCEL
477 d34cab9f ths
static inline void vmsvga_cursor_define(struct vmsvga_state_s *s,
478 d34cab9f ths
                struct vmsvga_cursor_definition_s *c)
479 d34cab9f ths
{
480 d34cab9f ths
    int i;
481 d34cab9f ths
    for (i = SVGA_BITMAP_SIZE(c->width, c->height) - 1; i >= 0; i --)
482 d34cab9f ths
        c->mask[i] = ~c->mask[i];
483 d34cab9f ths
484 4e12cd94 Avi Kivity
    if (s->vga.ds->cursor_define)
485 4e12cd94 Avi Kivity
        s->vga.ds->cursor_define(c->width, c->height, c->bpp, c->hot_x, c->hot_y,
486 d34cab9f ths
                        (uint8_t *) c->image, (uint8_t *) c->mask);
487 d34cab9f ths
}
488 d34cab9f ths
#endif
489 d34cab9f ths
490 ff9cf2cb balrog
#define CMD(f)        le32_to_cpu(s->cmd->f)
491 ff9cf2cb balrog
492 d34cab9f ths
static inline int vmsvga_fifo_empty(struct vmsvga_state_s *s)
493 d34cab9f ths
{
494 d34cab9f ths
    if (!s->config || !s->enable)
495 f707cfba balrog
        return 1;
496 d34cab9f ths
    return (s->cmd->next_cmd == s->cmd->stop);
497 d34cab9f ths
}
498 d34cab9f ths
499 ff9cf2cb balrog
static inline uint32_t vmsvga_fifo_read_raw(struct vmsvga_state_s *s)
500 d34cab9f ths
{
501 ff9cf2cb balrog
    uint32_t cmd = s->fifo[CMD(stop) >> 2];
502 ff9cf2cb balrog
    s->cmd->stop = cpu_to_le32(CMD(stop) + 4);
503 ff9cf2cb balrog
    if (CMD(stop) >= CMD(max))
504 d34cab9f ths
        s->cmd->stop = s->cmd->min;
505 d34cab9f ths
    return cmd;
506 d34cab9f ths
}
507 d34cab9f ths
508 ff9cf2cb balrog
static inline uint32_t vmsvga_fifo_read(struct vmsvga_state_s *s)
509 ff9cf2cb balrog
{
510 ff9cf2cb balrog
    return le32_to_cpu(vmsvga_fifo_read_raw(s));
511 ff9cf2cb balrog
}
512 ff9cf2cb balrog
513 d34cab9f ths
static void vmsvga_fifo_run(struct vmsvga_state_s *s)
514 d34cab9f ths
{
515 d34cab9f ths
    uint32_t cmd, colour;
516 d34cab9f ths
    int args = 0;
517 d34cab9f ths
    int x, y, dx, dy, width, height;
518 d34cab9f ths
    struct vmsvga_cursor_definition_s cursor;
519 d34cab9f ths
    while (!vmsvga_fifo_empty(s))
520 d34cab9f ths
        switch (cmd = vmsvga_fifo_read(s)) {
521 d34cab9f ths
        case SVGA_CMD_UPDATE:
522 d34cab9f ths
        case SVGA_CMD_UPDATE_VERBOSE:
523 d34cab9f ths
            x = vmsvga_fifo_read(s);
524 d34cab9f ths
            y = vmsvga_fifo_read(s);
525 d34cab9f ths
            width = vmsvga_fifo_read(s);
526 d34cab9f ths
            height = vmsvga_fifo_read(s);
527 d34cab9f ths
            vmsvga_update_rect_delayed(s, x, y, width, height);
528 d34cab9f ths
            break;
529 d34cab9f ths
530 d34cab9f ths
        case SVGA_CMD_RECT_FILL:
531 d34cab9f ths
            colour = vmsvga_fifo_read(s);
532 d34cab9f ths
            x = vmsvga_fifo_read(s);
533 d34cab9f ths
            y = vmsvga_fifo_read(s);
534 d34cab9f ths
            width = vmsvga_fifo_read(s);
535 d34cab9f ths
            height = vmsvga_fifo_read(s);
536 d34cab9f ths
#ifdef HW_FILL_ACCEL
537 d34cab9f ths
            vmsvga_fill_rect(s, colour, x, y, width, height);
538 d34cab9f ths
            break;
539 d34cab9f ths
#else
540 d34cab9f ths
            goto badcmd;
541 d34cab9f ths
#endif
542 d34cab9f ths
543 d34cab9f ths
        case SVGA_CMD_RECT_COPY:
544 d34cab9f ths
            x = vmsvga_fifo_read(s);
545 d34cab9f ths
            y = vmsvga_fifo_read(s);
546 d34cab9f ths
            dx = vmsvga_fifo_read(s);
547 d34cab9f ths
            dy = vmsvga_fifo_read(s);
548 d34cab9f ths
            width = vmsvga_fifo_read(s);
549 d34cab9f ths
            height = vmsvga_fifo_read(s);
550 d34cab9f ths
#ifdef HW_RECT_ACCEL
551 d34cab9f ths
            vmsvga_copy_rect(s, x, y, dx, dy, width, height);
552 d34cab9f ths
            break;
553 d34cab9f ths
#else
554 d34cab9f ths
            goto badcmd;
555 d34cab9f ths
#endif
556 d34cab9f ths
557 d34cab9f ths
        case SVGA_CMD_DEFINE_CURSOR:
558 d34cab9f ths
            cursor.id = vmsvga_fifo_read(s);
559 d34cab9f ths
            cursor.hot_x = vmsvga_fifo_read(s);
560 d34cab9f ths
            cursor.hot_y = vmsvga_fifo_read(s);
561 d34cab9f ths
            cursor.width = x = vmsvga_fifo_read(s);
562 d34cab9f ths
            cursor.height = y = vmsvga_fifo_read(s);
563 d34cab9f ths
            vmsvga_fifo_read(s);
564 d34cab9f ths
            cursor.bpp = vmsvga_fifo_read(s);
565 f2d928d4 Roland Dreier
566 f2d928d4 Roland Dreier
            if (SVGA_BITMAP_SIZE(x, y) > sizeof cursor.mask ||
567 f2d928d4 Roland Dreier
                SVGA_PIXMAP_SIZE(x, y, cursor.bpp) > sizeof cursor.image) {
568 f2d928d4 Roland Dreier
                    args = SVGA_BITMAP_SIZE(x, y) + SVGA_PIXMAP_SIZE(x, y, cursor.bpp);
569 f2d928d4 Roland Dreier
                    goto badcmd;
570 f2d928d4 Roland Dreier
            }
571 f2d928d4 Roland Dreier
572 d34cab9f ths
            for (args = 0; args < SVGA_BITMAP_SIZE(x, y); args ++)
573 ff9cf2cb balrog
                cursor.mask[args] = vmsvga_fifo_read_raw(s);
574 d34cab9f ths
            for (args = 0; args < SVGA_PIXMAP_SIZE(x, y, cursor.bpp); args ++)
575 ff9cf2cb balrog
                cursor.image[args] = vmsvga_fifo_read_raw(s);
576 d34cab9f ths
#ifdef HW_MOUSE_ACCEL
577 d34cab9f ths
            vmsvga_cursor_define(s, &cursor);
578 d34cab9f ths
            break;
579 d34cab9f ths
#else
580 d34cab9f ths
            args = 0;
581 d34cab9f ths
            goto badcmd;
582 d34cab9f ths
#endif
583 d34cab9f ths
584 d34cab9f ths
        /*
585 d34cab9f ths
         * Other commands that we at least know the number of arguments
586 d34cab9f ths
         * for so we can avoid FIFO desync if driver uses them illegally.
587 d34cab9f ths
         */
588 d34cab9f ths
        case SVGA_CMD_DEFINE_ALPHA_CURSOR:
589 d34cab9f ths
            vmsvga_fifo_read(s);
590 d34cab9f ths
            vmsvga_fifo_read(s);
591 d34cab9f ths
            vmsvga_fifo_read(s);
592 d34cab9f ths
            x = vmsvga_fifo_read(s);
593 d34cab9f ths
            y = vmsvga_fifo_read(s);
594 d34cab9f ths
            args = x * y;
595 d34cab9f ths
            goto badcmd;
596 d34cab9f ths
        case SVGA_CMD_RECT_ROP_FILL:
597 d34cab9f ths
            args = 6;
598 d34cab9f ths
            goto badcmd;
599 d34cab9f ths
        case SVGA_CMD_RECT_ROP_COPY:
600 d34cab9f ths
            args = 7;
601 d34cab9f ths
            goto badcmd;
602 d34cab9f ths
        case SVGA_CMD_DRAW_GLYPH_CLIPPED:
603 d34cab9f ths
            vmsvga_fifo_read(s);
604 d34cab9f ths
            vmsvga_fifo_read(s);
605 d34cab9f ths
            args = 7 + (vmsvga_fifo_read(s) >> 2);
606 d34cab9f ths
            goto badcmd;
607 d34cab9f ths
        case SVGA_CMD_SURFACE_ALPHA_BLEND:
608 d34cab9f ths
            args = 12;
609 d34cab9f ths
            goto badcmd;
610 d34cab9f ths
611 d34cab9f ths
        /*
612 d34cab9f ths
         * Other commands that are not listed as depending on any
613 d34cab9f ths
         * CAPABILITIES bits, but are not described in the README either.
614 d34cab9f ths
         */
615 d34cab9f ths
        case SVGA_CMD_SURFACE_FILL:
616 d34cab9f ths
        case SVGA_CMD_SURFACE_COPY:
617 d34cab9f ths
        case SVGA_CMD_FRONT_ROP_FILL:
618 d34cab9f ths
        case SVGA_CMD_FENCE:
619 d34cab9f ths
        case SVGA_CMD_INVALID_CMD:
620 d34cab9f ths
            break; /* Nop */
621 d34cab9f ths
622 d34cab9f ths
        default:
623 d34cab9f ths
        badcmd:
624 d34cab9f ths
            while (args --)
625 d34cab9f ths
                vmsvga_fifo_read(s);
626 d34cab9f ths
            printf("%s: Unknown command 0x%02x in SVGA command FIFO\n",
627 d34cab9f ths
                            __FUNCTION__, cmd);
628 d34cab9f ths
            break;
629 d34cab9f ths
        }
630 d34cab9f ths
631 d34cab9f ths
    s->syncing = 0;
632 d34cab9f ths
}
633 d34cab9f ths
634 d34cab9f ths
static uint32_t vmsvga_index_read(void *opaque, uint32_t address)
635 d34cab9f ths
{
636 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
637 d34cab9f ths
    return s->index;
638 d34cab9f ths
}
639 d34cab9f ths
640 d34cab9f ths
static void vmsvga_index_write(void *opaque, uint32_t address, uint32_t index)
641 d34cab9f ths
{
642 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
643 d34cab9f ths
    s->index = index;
644 d34cab9f ths
}
645 d34cab9f ths
646 d34cab9f ths
static uint32_t vmsvga_value_read(void *opaque, uint32_t address)
647 d34cab9f ths
{
648 d34cab9f ths
    uint32_t caps;
649 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
650 d34cab9f ths
    switch (s->index) {
651 d34cab9f ths
    case SVGA_REG_ID:
652 d34cab9f ths
        return s->svgaid;
653 d34cab9f ths
654 d34cab9f ths
    case SVGA_REG_ENABLE:
655 d34cab9f ths
        return s->enable;
656 d34cab9f ths
657 d34cab9f ths
    case SVGA_REG_WIDTH:
658 d34cab9f ths
        return s->width;
659 d34cab9f ths
660 d34cab9f ths
    case SVGA_REG_HEIGHT:
661 d34cab9f ths
        return s->height;
662 d34cab9f ths
663 d34cab9f ths
    case SVGA_REG_MAX_WIDTH:
664 d34cab9f ths
        return SVGA_MAX_WIDTH;
665 d34cab9f ths
666 d34cab9f ths
    case SVGA_REG_MAX_HEIGHT:
667 f707cfba balrog
        return SVGA_MAX_HEIGHT;
668 d34cab9f ths
669 d34cab9f ths
    case SVGA_REG_DEPTH:
670 d34cab9f ths
        return s->depth;
671 d34cab9f ths
672 d34cab9f ths
    case SVGA_REG_BITS_PER_PIXEL:
673 d34cab9f ths
        return (s->depth + 7) & ~7;
674 d34cab9f ths
675 d34cab9f ths
    case SVGA_REG_PSEUDOCOLOR:
676 d34cab9f ths
        return 0x0;
677 d34cab9f ths
678 d34cab9f ths
    case SVGA_REG_RED_MASK:
679 d34cab9f ths
        return s->wred;
680 d34cab9f ths
    case SVGA_REG_GREEN_MASK:
681 d34cab9f ths
        return s->wgreen;
682 d34cab9f ths
    case SVGA_REG_BLUE_MASK:
683 d34cab9f ths
        return s->wblue;
684 d34cab9f ths
685 d34cab9f ths
    case SVGA_REG_BYTES_PER_LINE:
686 d34cab9f ths
        return ((s->depth + 7) >> 3) * s->new_width;
687 d34cab9f ths
688 d34cab9f ths
    case SVGA_REG_FB_START:
689 3016d80b balrog
        return s->vram_base;
690 d34cab9f ths
691 d34cab9f ths
    case SVGA_REG_FB_OFFSET:
692 d34cab9f ths
        return 0x0;
693 d34cab9f ths
694 d34cab9f ths
    case SVGA_REG_VRAM_SIZE:
695 f351d050 Dave Airlie
        return s->vga.vram_size;
696 d34cab9f ths
697 d34cab9f ths
    case SVGA_REG_FB_SIZE:
698 d34cab9f ths
        return s->fb_size;
699 d34cab9f ths
700 d34cab9f ths
    case SVGA_REG_CAPABILITIES:
701 d34cab9f ths
        caps = SVGA_CAP_NONE;
702 d34cab9f ths
#ifdef HW_RECT_ACCEL
703 d34cab9f ths
        caps |= SVGA_CAP_RECT_COPY;
704 d34cab9f ths
#endif
705 d34cab9f ths
#ifdef HW_FILL_ACCEL
706 d34cab9f ths
        caps |= SVGA_CAP_RECT_FILL;
707 d34cab9f ths
#endif
708 d34cab9f ths
#ifdef HW_MOUSE_ACCEL
709 4e12cd94 Avi Kivity
        if (s->vga.ds->mouse_set)
710 d34cab9f ths
            caps |= SVGA_CAP_CURSOR | SVGA_CAP_CURSOR_BYPASS_2 |
711 d34cab9f ths
                    SVGA_CAP_CURSOR_BYPASS;
712 d34cab9f ths
#endif
713 d34cab9f ths
        return caps;
714 d34cab9f ths
715 d34cab9f ths
    case SVGA_REG_MEM_START:
716 f351d050 Dave Airlie
        return s->fifo_base;
717 d34cab9f ths
718 d34cab9f ths
    case SVGA_REG_MEM_SIZE:
719 f351d050 Dave Airlie
        return s->fifo_size;
720 d34cab9f ths
721 d34cab9f ths
    case SVGA_REG_CONFIG_DONE:
722 d34cab9f ths
        return s->config;
723 d34cab9f ths
724 d34cab9f ths
    case SVGA_REG_SYNC:
725 d34cab9f ths
    case SVGA_REG_BUSY:
726 d34cab9f ths
        return s->syncing;
727 d34cab9f ths
728 d34cab9f ths
    case SVGA_REG_GUEST_ID:
729 d34cab9f ths
        return s->guest;
730 d34cab9f ths
731 d34cab9f ths
    case SVGA_REG_CURSOR_ID:
732 d34cab9f ths
        return s->cursor.id;
733 d34cab9f ths
734 d34cab9f ths
    case SVGA_REG_CURSOR_X:
735 d34cab9f ths
        return s->cursor.x;
736 d34cab9f ths
737 d34cab9f ths
    case SVGA_REG_CURSOR_Y:
738 d34cab9f ths
        return s->cursor.x;
739 d34cab9f ths
740 d34cab9f ths
    case SVGA_REG_CURSOR_ON:
741 d34cab9f ths
        return s->cursor.on;
742 d34cab9f ths
743 d34cab9f ths
    case SVGA_REG_HOST_BITS_PER_PIXEL:
744 d34cab9f ths
        return (s->depth + 7) & ~7;
745 d34cab9f ths
746 d34cab9f ths
    case SVGA_REG_SCRATCH_SIZE:
747 d34cab9f ths
        return s->scratch_size;
748 d34cab9f ths
749 d34cab9f ths
    case SVGA_REG_MEM_REGS:
750 d34cab9f ths
    case SVGA_REG_NUM_DISPLAYS:
751 d34cab9f ths
    case SVGA_REG_PITCHLOCK:
752 d34cab9f ths
    case SVGA_PALETTE_BASE ... SVGA_PALETTE_END:
753 d34cab9f ths
        return 0;
754 d34cab9f ths
755 d34cab9f ths
    default:
756 d34cab9f ths
        if (s->index >= SVGA_SCRATCH_BASE &&
757 d34cab9f ths
                s->index < SVGA_SCRATCH_BASE + s->scratch_size)
758 d34cab9f ths
            return s->scratch[s->index - SVGA_SCRATCH_BASE];
759 d34cab9f ths
        printf("%s: Bad register %02x\n", __FUNCTION__, s->index);
760 d34cab9f ths
    }
761 d34cab9f ths
762 d34cab9f ths
    return 0;
763 d34cab9f ths
}
764 d34cab9f ths
765 d34cab9f ths
static void vmsvga_value_write(void *opaque, uint32_t address, uint32_t value)
766 d34cab9f ths
{
767 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
768 d34cab9f ths
    switch (s->index) {
769 d34cab9f ths
    case SVGA_REG_ID:
770 d34cab9f ths
        if (value == SVGA_ID_2 || value == SVGA_ID_1 || value == SVGA_ID_0)
771 d34cab9f ths
            s->svgaid = value;
772 d34cab9f ths
        break;
773 d34cab9f ths
774 d34cab9f ths
    case SVGA_REG_ENABLE:
775 f707cfba balrog
        s->enable = value;
776 f707cfba balrog
        s->config &= !!value;
777 d34cab9f ths
        s->width = -1;
778 d34cab9f ths
        s->height = -1;
779 d34cab9f ths
        s->invalidated = 1;
780 4e12cd94 Avi Kivity
        s->vga.invalidate(&s->vga);
781 b5cc6e32 Anthony Liguori
        if (s->enable) {
782 b5cc6e32 Anthony Liguori
          s->fb_size = ((s->depth + 7) >> 3) * s->new_width * s->new_height;
783 b5cc6e32 Anthony Liguori
          vga_dirty_log_stop(&s->vga);
784 b5cc6e32 Anthony Liguori
        } else {
785 b5cc6e32 Anthony Liguori
          vga_dirty_log_start(&s->vga);
786 b5cc6e32 Anthony Liguori
        }
787 d34cab9f ths
        break;
788 d34cab9f ths
789 d34cab9f ths
    case SVGA_REG_WIDTH:
790 d34cab9f ths
        s->new_width = value;
791 d34cab9f ths
        s->invalidated = 1;
792 d34cab9f ths
        break;
793 d34cab9f ths
794 d34cab9f ths
    case SVGA_REG_HEIGHT:
795 d34cab9f ths
        s->new_height = value;
796 d34cab9f ths
        s->invalidated = 1;
797 d34cab9f ths
        break;
798 d34cab9f ths
799 d34cab9f ths
    case SVGA_REG_DEPTH:
800 d34cab9f ths
    case SVGA_REG_BITS_PER_PIXEL:
801 d34cab9f ths
        if (value != s->depth) {
802 d34cab9f ths
            printf("%s: Bad colour depth: %i bits\n", __FUNCTION__, value);
803 d34cab9f ths
            s->config = 0;
804 d34cab9f ths
        }
805 d34cab9f ths
        break;
806 d34cab9f ths
807 d34cab9f ths
    case SVGA_REG_CONFIG_DONE:
808 d34cab9f ths
        if (value) {
809 f351d050 Dave Airlie
            s->fifo = (uint32_t *) s->fifo_ptr;
810 d34cab9f ths
            /* Check range and alignment.  */
811 ff9cf2cb balrog
            if ((CMD(min) | CMD(max) |
812 ff9cf2cb balrog
                        CMD(next_cmd) | CMD(stop)) & 3)
813 d34cab9f ths
                break;
814 ff9cf2cb balrog
            if (CMD(min) < (uint8_t *) s->cmd->fifo - (uint8_t *) s->fifo)
815 d34cab9f ths
                break;
816 ff9cf2cb balrog
            if (CMD(max) > SVGA_FIFO_SIZE)
817 d34cab9f ths
                break;
818 ff9cf2cb balrog
            if (CMD(max) < CMD(min) + 10 * 1024)
819 d34cab9f ths
                break;
820 d34cab9f ths
        }
821 f707cfba balrog
        s->config = !!value;
822 d34cab9f ths
        break;
823 d34cab9f ths
824 d34cab9f ths
    case SVGA_REG_SYNC:
825 d34cab9f ths
        s->syncing = 1;
826 d34cab9f ths
        vmsvga_fifo_run(s); /* Or should we just wait for update_display? */
827 d34cab9f ths
        break;
828 d34cab9f ths
829 d34cab9f ths
    case SVGA_REG_GUEST_ID:
830 d34cab9f ths
        s->guest = value;
831 d34cab9f ths
#ifdef VERBOSE
832 d34cab9f ths
        if (value >= GUEST_OS_BASE && value < GUEST_OS_BASE +
833 b1503cda malc
                ARRAY_SIZE(vmsvga_guest_id))
834 d34cab9f ths
            printf("%s: guest runs %s.\n", __FUNCTION__,
835 d34cab9f ths
                            vmsvga_guest_id[value - GUEST_OS_BASE]);
836 d34cab9f ths
#endif
837 d34cab9f ths
        break;
838 d34cab9f ths
839 d34cab9f ths
    case SVGA_REG_CURSOR_ID:
840 d34cab9f ths
        s->cursor.id = value;
841 d34cab9f ths
        break;
842 d34cab9f ths
843 d34cab9f ths
    case SVGA_REG_CURSOR_X:
844 d34cab9f ths
        s->cursor.x = value;
845 d34cab9f ths
        break;
846 d34cab9f ths
847 d34cab9f ths
    case SVGA_REG_CURSOR_Y:
848 d34cab9f ths
        s->cursor.y = value;
849 d34cab9f ths
        break;
850 d34cab9f ths
851 d34cab9f ths
    case SVGA_REG_CURSOR_ON:
852 d34cab9f ths
        s->cursor.on |= (value == SVGA_CURSOR_ON_SHOW);
853 d34cab9f ths
        s->cursor.on &= (value != SVGA_CURSOR_ON_HIDE);
854 d34cab9f ths
#ifdef HW_MOUSE_ACCEL
855 4e12cd94 Avi Kivity
        if (s->vga.ds->mouse_set && value <= SVGA_CURSOR_ON_SHOW)
856 4e12cd94 Avi Kivity
            s->vga.ds->mouse_set(s->cursor.x, s->cursor.y, s->cursor.on);
857 d34cab9f ths
#endif
858 d34cab9f ths
        break;
859 d34cab9f ths
860 d34cab9f ths
    case SVGA_REG_MEM_REGS:
861 d34cab9f ths
    case SVGA_REG_NUM_DISPLAYS:
862 d34cab9f ths
    case SVGA_REG_PITCHLOCK:
863 d34cab9f ths
    case SVGA_PALETTE_BASE ... SVGA_PALETTE_END:
864 d34cab9f ths
        break;
865 d34cab9f ths
866 d34cab9f ths
    default:
867 d34cab9f ths
        if (s->index >= SVGA_SCRATCH_BASE &&
868 d34cab9f ths
                s->index < SVGA_SCRATCH_BASE + s->scratch_size) {
869 d34cab9f ths
            s->scratch[s->index - SVGA_SCRATCH_BASE] = value;
870 d34cab9f ths
            break;
871 d34cab9f ths
        }
872 d34cab9f ths
        printf("%s: Bad register %02x\n", __FUNCTION__, s->index);
873 d34cab9f ths
    }
874 d34cab9f ths
}
875 d34cab9f ths
876 d34cab9f ths
static uint32_t vmsvga_bios_read(void *opaque, uint32_t address)
877 d34cab9f ths
{
878 d34cab9f ths
    printf("%s: what are we supposed to return?\n", __FUNCTION__);
879 d34cab9f ths
    return 0xcafe;
880 d34cab9f ths
}
881 d34cab9f ths
882 d34cab9f ths
static void vmsvga_bios_write(void *opaque, uint32_t address, uint32_t data)
883 d34cab9f ths
{
884 d34cab9f ths
    printf("%s: what are we supposed to do with (%08x)?\n",
885 d34cab9f ths
                    __FUNCTION__, data);
886 d34cab9f ths
}
887 d34cab9f ths
888 d34cab9f ths
static inline void vmsvga_size(struct vmsvga_state_s *s)
889 d34cab9f ths
{
890 d34cab9f ths
    if (s->new_width != s->width || s->new_height != s->height) {
891 d34cab9f ths
        s->width = s->new_width;
892 d34cab9f ths
        s->height = s->new_height;
893 4e12cd94 Avi Kivity
        qemu_console_resize(s->vga.ds, s->width, s->height);
894 d34cab9f ths
        s->invalidated = 1;
895 d34cab9f ths
    }
896 d34cab9f ths
}
897 d34cab9f ths
898 d34cab9f ths
static void vmsvga_update_display(void *opaque)
899 d34cab9f ths
{
900 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
901 d34cab9f ths
    if (!s->enable) {
902 4e12cd94 Avi Kivity
        s->vga.update(&s->vga);
903 d34cab9f ths
        return;
904 d34cab9f ths
    }
905 d34cab9f ths
906 d34cab9f ths
    vmsvga_size(s);
907 d34cab9f ths
908 d34cab9f ths
    vmsvga_fifo_run(s);
909 d34cab9f ths
    vmsvga_update_rect_flush(s);
910 d34cab9f ths
911 d34cab9f ths
    /*
912 d34cab9f ths
     * Is it more efficient to look at vram VGA-dirty bits or wait
913 d34cab9f ths
     * for the driver to issue SVGA_CMD_UPDATE?
914 d34cab9f ths
     */
915 d34cab9f ths
    if (s->invalidated) {
916 d34cab9f ths
        s->invalidated = 0;
917 d34cab9f ths
        vmsvga_update_screen(s);
918 d34cab9f ths
    }
919 d34cab9f ths
}
920 d34cab9f ths
921 d34cab9f ths
static void vmsvga_reset(struct vmsvga_state_s *s)
922 d34cab9f ths
{
923 d34cab9f ths
    s->index = 0;
924 d34cab9f ths
    s->enable = 0;
925 d34cab9f ths
    s->config = 0;
926 d34cab9f ths
    s->width = -1;
927 d34cab9f ths
    s->height = -1;
928 d34cab9f ths
    s->svgaid = SVGA_ID;
929 a6109ff1 Anthony Liguori
    s->depth = ds_get_bits_per_pixel(s->vga.ds);
930 a6109ff1 Anthony Liguori
    s->bypp = ds_get_bytes_per_pixel(s->vga.ds);
931 d34cab9f ths
    s->cursor.on = 0;
932 d34cab9f ths
    s->redraw_fifo_first = 0;
933 d34cab9f ths
    s->redraw_fifo_last = 0;
934 d34cab9f ths
    switch (s->depth) {
935 d34cab9f ths
    case 8:
936 d34cab9f ths
        s->wred   = 0x00000007;
937 d34cab9f ths
        s->wgreen = 0x00000038;
938 d34cab9f ths
        s->wblue  = 0x000000c0;
939 d34cab9f ths
        break;
940 d34cab9f ths
    case 15:
941 d34cab9f ths
        s->wred   = 0x0000001f;
942 d34cab9f ths
        s->wgreen = 0x000003e0;
943 d34cab9f ths
        s->wblue  = 0x00007c00;
944 d34cab9f ths
        break;
945 d34cab9f ths
    case 16:
946 d34cab9f ths
        s->wred   = 0x0000001f;
947 d34cab9f ths
        s->wgreen = 0x000007e0;
948 d34cab9f ths
        s->wblue  = 0x0000f800;
949 d34cab9f ths
        break;
950 d34cab9f ths
    case 24:
951 f707cfba balrog
        s->wred   = 0x00ff0000;
952 d34cab9f ths
        s->wgreen = 0x0000ff00;
953 f707cfba balrog
        s->wblue  = 0x000000ff;
954 d34cab9f ths
        break;
955 d34cab9f ths
    case 32:
956 f707cfba balrog
        s->wred   = 0x00ff0000;
957 d34cab9f ths
        s->wgreen = 0x0000ff00;
958 f707cfba balrog
        s->wblue  = 0x000000ff;
959 d34cab9f ths
        break;
960 d34cab9f ths
    }
961 d34cab9f ths
    s->syncing = 0;
962 b5cc6e32 Anthony Liguori
963 b5cc6e32 Anthony Liguori
    vga_dirty_log_start(&s->vga);
964 d34cab9f ths
}
965 d34cab9f ths
966 d34cab9f ths
static void vmsvga_invalidate_display(void *opaque)
967 d34cab9f ths
{
968 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
969 d34cab9f ths
    if (!s->enable) {
970 4e12cd94 Avi Kivity
        s->vga.invalidate(&s->vga);
971 d34cab9f ths
        return;
972 d34cab9f ths
    }
973 d34cab9f ths
974 d34cab9f ths
    s->invalidated = 1;
975 d34cab9f ths
}
976 d34cab9f ths
977 f707cfba balrog
/* save the vga display in a PPM image even if no display is
978 f707cfba balrog
   available */
979 d34cab9f ths
static void vmsvga_screen_dump(void *opaque, const char *filename)
980 d34cab9f ths
{
981 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
982 d34cab9f ths
    if (!s->enable) {
983 4e12cd94 Avi Kivity
        s->vga.screen_dump(&s->vga, filename);
984 d34cab9f ths
        return;
985 d34cab9f ths
    }
986 d34cab9f ths
987 f707cfba balrog
    if (s->depth == 32) {
988 e07d630a aliguori
        DisplaySurface *ds = qemu_create_displaysurface_from(s->width,
989 4e12cd94 Avi Kivity
                s->height, 32, ds_get_linesize(s->vga.ds), s->vga.vram_ptr);
990 e07d630a aliguori
        ppm_save(filename, ds);
991 e07d630a aliguori
        qemu_free(ds);
992 f707cfba balrog
    }
993 d34cab9f ths
}
994 d34cab9f ths
995 c227f099 Anthony Liguori
static void vmsvga_text_update(void *opaque, console_ch_t *chardata)
996 4d3b6f6e balrog
{
997 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
998 4d3b6f6e balrog
999 4e12cd94 Avi Kivity
    if (s->vga.text_update)
1000 4e12cd94 Avi Kivity
        s->vga.text_update(&s->vga, chardata);
1001 4d3b6f6e balrog
}
1002 4d3b6f6e balrog
1003 d34cab9f ths
#ifdef DIRECT_VRAM
1004 c227f099 Anthony Liguori
static uint32_t vmsvga_vram_readb(void *opaque, target_phys_addr_t addr)
1005 d34cab9f ths
{
1006 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1007 d34cab9f ths
    if (addr < s->fb_size)
1008 0e1f5a0c aliguori
        return *(uint8_t *) (ds_get_data(s->ds) + addr);
1009 d34cab9f ths
    else
1010 b584726d pbrook
        return *(uint8_t *) (s->vram_ptr + addr);
1011 d34cab9f ths
}
1012 d34cab9f ths
1013 c227f099 Anthony Liguori
static uint32_t vmsvga_vram_readw(void *opaque, target_phys_addr_t addr)
1014 d34cab9f ths
{
1015 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1016 d34cab9f ths
    if (addr < s->fb_size)
1017 0e1f5a0c aliguori
        return *(uint16_t *) (ds_get_data(s->ds) + addr);
1018 d34cab9f ths
    else
1019 b584726d pbrook
        return *(uint16_t *) (s->vram_ptr + addr);
1020 d34cab9f ths
}
1021 d34cab9f ths
1022 c227f099 Anthony Liguori
static uint32_t vmsvga_vram_readl(void *opaque, target_phys_addr_t addr)
1023 d34cab9f ths
{
1024 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1025 d34cab9f ths
    if (addr < s->fb_size)
1026 0e1f5a0c aliguori
        return *(uint32_t *) (ds_get_data(s->ds) + addr);
1027 d34cab9f ths
    else
1028 b584726d pbrook
        return *(uint32_t *) (s->vram_ptr + addr);
1029 d34cab9f ths
}
1030 d34cab9f ths
1031 c227f099 Anthony Liguori
static void vmsvga_vram_writeb(void *opaque, target_phys_addr_t addr,
1032 d34cab9f ths
                uint32_t value)
1033 d34cab9f ths
{
1034 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1035 d34cab9f ths
    if (addr < s->fb_size)
1036 0e1f5a0c aliguori
        *(uint8_t *) (ds_get_data(s->ds) + addr) = value;
1037 d34cab9f ths
    else
1038 b584726d pbrook
        *(uint8_t *) (s->vram_ptr + addr) = value;
1039 d34cab9f ths
}
1040 d34cab9f ths
1041 c227f099 Anthony Liguori
static void vmsvga_vram_writew(void *opaque, target_phys_addr_t addr,
1042 d34cab9f ths
                uint32_t value)
1043 d34cab9f ths
{
1044 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1045 d34cab9f ths
    if (addr < s->fb_size)
1046 0e1f5a0c aliguori
        *(uint16_t *) (ds_get_data(s->ds) + addr) = value;
1047 d34cab9f ths
    else
1048 b584726d pbrook
        *(uint16_t *) (s->vram_ptr + addr) = value;
1049 d34cab9f ths
}
1050 d34cab9f ths
1051 c227f099 Anthony Liguori
static void vmsvga_vram_writel(void *opaque, target_phys_addr_t addr,
1052 d34cab9f ths
                uint32_t value)
1053 d34cab9f ths
{
1054 467d44b2 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1055 d34cab9f ths
    if (addr < s->fb_size)
1056 0e1f5a0c aliguori
        *(uint32_t *) (ds_get_data(s->ds) + addr) = value;
1057 d34cab9f ths
    else
1058 b584726d pbrook
        *(uint32_t *) (s->vram_ptr + addr) = value;
1059 d34cab9f ths
}
1060 d34cab9f ths
1061 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const vmsvga_vram_read[] = {
1062 d34cab9f ths
    vmsvga_vram_readb,
1063 d34cab9f ths
    vmsvga_vram_readw,
1064 d34cab9f ths
    vmsvga_vram_readl,
1065 d34cab9f ths
};
1066 d34cab9f ths
1067 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const vmsvga_vram_write[] = {
1068 d34cab9f ths
    vmsvga_vram_writeb,
1069 d34cab9f ths
    vmsvga_vram_writew,
1070 d34cab9f ths
    vmsvga_vram_writel,
1071 d34cab9f ths
};
1072 d34cab9f ths
#endif
1073 d34cab9f ths
1074 bacbe284 Juan Quintela
static int vmsvga_post_load(void *opaque, int version_id)
1075 d34cab9f ths
{
1076 bacbe284 Juan Quintela
    struct vmsvga_state_s *s = opaque;
1077 d34cab9f ths
1078 d34cab9f ths
    s->invalidated = 1;
1079 d34cab9f ths
    if (s->config)
1080 f351d050 Dave Airlie
        s->fifo = (uint32_t *) s->fifo_ptr;
1081 d34cab9f ths
1082 d34cab9f ths
    return 0;
1083 d34cab9f ths
}
1084 d34cab9f ths
1085 d05ac8fa Blue Swirl
static const VMStateDescription vmstate_vmware_vga_internal = {
1086 bacbe284 Juan Quintela
    .name = "vmware_vga_internal",
1087 bacbe284 Juan Quintela
    .version_id = 0,
1088 bacbe284 Juan Quintela
    .minimum_version_id = 0,
1089 bacbe284 Juan Quintela
    .minimum_version_id_old = 0,
1090 bacbe284 Juan Quintela
    .post_load = vmsvga_post_load,
1091 bacbe284 Juan Quintela
    .fields      = (VMStateField []) {
1092 bacbe284 Juan Quintela
        VMSTATE_INT32_EQUAL(depth, struct vmsvga_state_s),
1093 bacbe284 Juan Quintela
        VMSTATE_INT32(enable, struct vmsvga_state_s),
1094 bacbe284 Juan Quintela
        VMSTATE_INT32(config, struct vmsvga_state_s),
1095 bacbe284 Juan Quintela
        VMSTATE_INT32(cursor.id, struct vmsvga_state_s),
1096 bacbe284 Juan Quintela
        VMSTATE_INT32(cursor.x, struct vmsvga_state_s),
1097 bacbe284 Juan Quintela
        VMSTATE_INT32(cursor.y, struct vmsvga_state_s),
1098 bacbe284 Juan Quintela
        VMSTATE_INT32(cursor.on, struct vmsvga_state_s),
1099 bacbe284 Juan Quintela
        VMSTATE_INT32(index, struct vmsvga_state_s),
1100 bacbe284 Juan Quintela
        VMSTATE_VARRAY_INT32(scratch, struct vmsvga_state_s,
1101 bacbe284 Juan Quintela
                             scratch_size, 0, vmstate_info_uint32, uint32_t),
1102 bacbe284 Juan Quintela
        VMSTATE_INT32(new_width, struct vmsvga_state_s),
1103 bacbe284 Juan Quintela
        VMSTATE_INT32(new_height, struct vmsvga_state_s),
1104 bacbe284 Juan Quintela
        VMSTATE_UINT32(guest, struct vmsvga_state_s),
1105 bacbe284 Juan Quintela
        VMSTATE_UINT32(svgaid, struct vmsvga_state_s),
1106 bacbe284 Juan Quintela
        VMSTATE_INT32(syncing, struct vmsvga_state_s),
1107 bacbe284 Juan Quintela
        VMSTATE_INT32(fb_size, struct vmsvga_state_s),
1108 bacbe284 Juan Quintela
        VMSTATE_END_OF_LIST()
1109 bacbe284 Juan Quintela
    }
1110 bacbe284 Juan Quintela
};
1111 bacbe284 Juan Quintela
1112 d05ac8fa Blue Swirl
static const VMStateDescription vmstate_vmware_vga = {
1113 bacbe284 Juan Quintela
    .name = "vmware_vga",
1114 bacbe284 Juan Quintela
    .version_id = 0,
1115 bacbe284 Juan Quintela
    .minimum_version_id = 0,
1116 bacbe284 Juan Quintela
    .minimum_version_id_old = 0,
1117 bacbe284 Juan Quintela
    .fields      = (VMStateField []) {
1118 bacbe284 Juan Quintela
        VMSTATE_PCI_DEVICE(card, struct pci_vmsvga_state_s),
1119 bacbe284 Juan Quintela
        VMSTATE_STRUCT(chip, struct pci_vmsvga_state_s, 0,
1120 bacbe284 Juan Quintela
                       vmstate_vmware_vga_internal, struct vmsvga_state_s),
1121 bacbe284 Juan Quintela
        VMSTATE_END_OF_LIST()
1122 bacbe284 Juan Quintela
    }
1123 bacbe284 Juan Quintela
};
1124 bacbe284 Juan Quintela
1125 b584726d pbrook
static void vmsvga_init(struct vmsvga_state_s *s, int vga_ram_size)
1126 d34cab9f ths
{
1127 d34cab9f ths
    s->scratch_size = SVGA_SCRATCH_SIZE;
1128 fe740c43 Juan Quintela
    s->scratch = qemu_malloc(s->scratch_size * 4);
1129 d34cab9f ths
1130 a6109ff1 Anthony Liguori
    s->vga.ds = graphic_console_init(vmsvga_update_display,
1131 a6109ff1 Anthony Liguori
                                     vmsvga_invalidate_display,
1132 a6109ff1 Anthony Liguori
                                     vmsvga_screen_dump,
1133 a6109ff1 Anthony Liguori
                                     vmsvga_text_update, s);
1134 a6109ff1 Anthony Liguori
1135 4445b0a6 Andrzej Zaborowski
1136 f351d050 Dave Airlie
    s->fifo_size = SVGA_FIFO_SIZE;
1137 f351d050 Dave Airlie
    s->fifo_offset = qemu_ram_alloc(s->fifo_size);
1138 f351d050 Dave Airlie
    s->fifo_ptr = qemu_get_ram_ptr(s->fifo_offset);
1139 f351d050 Dave Airlie
1140 a4a2f59c Juan Quintela
    vga_common_init(&s->vga, vga_ram_size);
1141 a4a2f59c Juan Quintela
    vga_init(&s->vga);
1142 f74599c4 Juan Quintela
    vmstate_register(0, &vmstate_vga_common, &s->vga);
1143 e93a5f4f balrog
1144 f0138a63 Anthony Liguori
    vga_init_vbe(&s->vga);
1145 b5cc6e32 Anthony Liguori
1146 f0138a63 Anthony Liguori
    rom_add_vga(VGABIOS_FILENAME);
1147 b5cc6e32 Anthony Liguori
1148 b5cc6e32 Anthony Liguori
    vmsvga_reset(s);
1149 d34cab9f ths
}
1150 d34cab9f ths
1151 1492a3c4 balrog
static void pci_vmsvga_map_ioport(PCIDevice *pci_dev, int region_num,
1152 6e355d90 Isaku Yamahata
                pcibus_t addr, pcibus_t size, int type)
1153 1492a3c4 balrog
{
1154 1492a3c4 balrog
    struct pci_vmsvga_state_s *d = (struct pci_vmsvga_state_s *) pci_dev;
1155 1492a3c4 balrog
    struct vmsvga_state_s *s = &d->chip;
1156 1492a3c4 balrog
1157 1492a3c4 balrog
    register_ioport_read(addr + SVGA_IO_MUL * SVGA_INDEX_PORT,
1158 1492a3c4 balrog
                    1, 4, vmsvga_index_read, s);
1159 1492a3c4 balrog
    register_ioport_write(addr + SVGA_IO_MUL * SVGA_INDEX_PORT,
1160 1492a3c4 balrog
                    1, 4, vmsvga_index_write, s);
1161 1492a3c4 balrog
    register_ioport_read(addr + SVGA_IO_MUL * SVGA_VALUE_PORT,
1162 1492a3c4 balrog
                    1, 4, vmsvga_value_read, s);
1163 1492a3c4 balrog
    register_ioport_write(addr + SVGA_IO_MUL * SVGA_VALUE_PORT,
1164 1492a3c4 balrog
                    1, 4, vmsvga_value_write, s);
1165 1492a3c4 balrog
    register_ioport_read(addr + SVGA_IO_MUL * SVGA_BIOS_PORT,
1166 1492a3c4 balrog
                    1, 4, vmsvga_bios_read, s);
1167 1492a3c4 balrog
    register_ioport_write(addr + SVGA_IO_MUL * SVGA_BIOS_PORT,
1168 1492a3c4 balrog
                    1, 4, vmsvga_bios_write, s);
1169 1492a3c4 balrog
}
1170 1492a3c4 balrog
1171 3016d80b balrog
static void pci_vmsvga_map_mem(PCIDevice *pci_dev, int region_num,
1172 6e355d90 Isaku Yamahata
                pcibus_t addr, pcibus_t size, int type)
1173 3016d80b balrog
{
1174 3016d80b balrog
    struct pci_vmsvga_state_s *d = (struct pci_vmsvga_state_s *) pci_dev;
1175 3016d80b balrog
    struct vmsvga_state_s *s = &d->chip;
1176 c227f099 Anthony Liguori
    ram_addr_t iomemtype;
1177 3016d80b balrog
1178 3016d80b balrog
    s->vram_base = addr;
1179 3016d80b balrog
#ifdef DIRECT_VRAM
1180 1eed09cb Avi Kivity
    iomemtype = cpu_register_io_memory(vmsvga_vram_read,
1181 3016d80b balrog
                    vmsvga_vram_write, s);
1182 3016d80b balrog
#else
1183 4e12cd94 Avi Kivity
    iomemtype = s->vga.vram_offset | IO_MEM_RAM;
1184 3016d80b balrog
#endif
1185 4e12cd94 Avi Kivity
    cpu_register_physical_memory(s->vram_base, s->vga.vram_size,
1186 3016d80b balrog
                    iomemtype);
1187 ee3e41a9 Anthony Liguori
1188 ee3e41a9 Anthony Liguori
    s->vga.map_addr = addr;
1189 ee3e41a9 Anthony Liguori
    s->vga.map_end = addr + s->vga.vram_size;
1190 b5cc6e32 Anthony Liguori
    vga_dirty_log_restart(&s->vga);
1191 3016d80b balrog
}
1192 3016d80b balrog
1193 f351d050 Dave Airlie
static void pci_vmsvga_map_fifo(PCIDevice *pci_dev, int region_num,
1194 f351d050 Dave Airlie
                pcibus_t addr, pcibus_t size, int type)
1195 f351d050 Dave Airlie
{
1196 f351d050 Dave Airlie
    struct pci_vmsvga_state_s *d = (struct pci_vmsvga_state_s *) pci_dev;
1197 f351d050 Dave Airlie
    struct vmsvga_state_s *s = &d->chip;
1198 f351d050 Dave Airlie
    ram_addr_t iomemtype;
1199 f351d050 Dave Airlie
1200 f351d050 Dave Airlie
    s->fifo_base = addr;
1201 f351d050 Dave Airlie
    iomemtype = s->fifo_offset | IO_MEM_RAM;
1202 f351d050 Dave Airlie
    cpu_register_physical_memory(s->fifo_base, s->fifo_size,
1203 f351d050 Dave Airlie
                    iomemtype);
1204 f351d050 Dave Airlie
}
1205 f351d050 Dave Airlie
1206 81a322d4 Gerd Hoffmann
static int pci_vmsvga_initfn(PCIDevice *dev)
1207 d34cab9f ths
{
1208 a414c306 Gerd Hoffmann
    struct pci_vmsvga_state_s *s =
1209 a414c306 Gerd Hoffmann
        DO_UPCAST(struct pci_vmsvga_state_s, card, dev);
1210 d34cab9f ths
1211 deb54399 aliguori
    pci_config_set_vendor_id(s->card.config, PCI_VENDOR_ID_VMWARE);
1212 deb54399 aliguori
    pci_config_set_device_id(s->card.config, SVGA_PCI_DEVICE_ID);
1213 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_COMMAND]        = PCI_COMMAND_IO |
1214 3fa0f955 Michael S. Tsirkin
                                  PCI_COMMAND_MEMORY |
1215 3fa0f955 Michael S. Tsirkin
                                  PCI_COMMAND_MASTER; /* I/O + Memory */
1216 173a543b blueswir1
    pci_config_set_class(s->card.config, PCI_CLASS_DISPLAY_VGA);
1217 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_CACHE_LINE_SIZE]        = 0x08;                /* Cache line size */
1218 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_LATENCY_TIMER] = 0x40;                /* Latency timer */
1219 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL;
1220 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_SUBSYSTEM_VENDOR_ID] = PCI_VENDOR_ID_VMWARE & 0xff;
1221 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_SUBSYSTEM_VENDOR_ID + 1]        = PCI_VENDOR_ID_VMWARE >> 8;
1222 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_SUBSYSTEM_ID] = SVGA_PCI_DEVICE_ID & 0xff;
1223 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_SUBSYSTEM_ID + 1] = SVGA_PCI_DEVICE_ID >> 8;
1224 3fa0f955 Michael S. Tsirkin
    s->card.config[PCI_INTERRUPT_LINE] = 0xff;                /* End */
1225 d34cab9f ths
1226 28c2c264 Avi Kivity
    pci_register_bar(&s->card, 0, 0x10,
1227 0392a017 Isaku Yamahata
                    PCI_BASE_ADDRESS_SPACE_IO, pci_vmsvga_map_ioport);
1228 28c2c264 Avi Kivity
    pci_register_bar(&s->card, 1, VGA_RAM_SIZE,
1229 0392a017 Isaku Yamahata
                    PCI_BASE_ADDRESS_MEM_PREFETCH, pci_vmsvga_map_mem);
1230 1492a3c4 balrog
1231 f351d050 Dave Airlie
    pci_register_bar(&s->card, 2, SVGA_FIFO_SIZE,
1232 f351d050 Dave Airlie
                     PCI_BASE_ADDRESS_MEM_PREFETCH, pci_vmsvga_map_fifo);
1233 f351d050 Dave Airlie
1234 fbe1b595 Paul Brook
    vmsvga_init(&s->chip, VGA_RAM_SIZE);
1235 d34cab9f ths
1236 81a322d4 Gerd Hoffmann
    return 0;
1237 d34cab9f ths
}
1238 a414c306 Gerd Hoffmann
1239 a414c306 Gerd Hoffmann
void pci_vmsvga_init(PCIBus *bus)
1240 a414c306 Gerd Hoffmann
{
1241 556cd098 Markus Armbruster
    pci_create_simple(bus, -1, "vmware-svga");
1242 a414c306 Gerd Hoffmann
}
1243 a414c306 Gerd Hoffmann
1244 a414c306 Gerd Hoffmann
static PCIDeviceInfo vmsvga_info = {
1245 556cd098 Markus Armbruster
    .qdev.name    = "vmware-svga",
1246 a414c306 Gerd Hoffmann
    .qdev.size    = sizeof(struct pci_vmsvga_state_s),
1247 be73cfe2 Juan Quintela
    .qdev.vmsd    = &vmstate_vmware_vga,
1248 a414c306 Gerd Hoffmann
    .init         = pci_vmsvga_initfn,
1249 a414c306 Gerd Hoffmann
};
1250 a414c306 Gerd Hoffmann
1251 a414c306 Gerd Hoffmann
static void vmsvga_register(void)
1252 a414c306 Gerd Hoffmann
{
1253 a414c306 Gerd Hoffmann
    pci_qdev_register(&vmsvga_info);
1254 a414c306 Gerd Hoffmann
}
1255 a414c306 Gerd Hoffmann
device_init(vmsvga_register);