Partial SD card SPI mode support.
[qemu/mini2440.git] / hw / vmware_vga.c
blob7937e071b6676dca2df1ed0b860ef1f7e71f99a2
1 /*
2 * QEMU VMware-SVGA "chipset".
4 * Copyright (c) 2007 Andrzej Zaborowski <balrog@zabor.org>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include "hw.h"
25 #include "console.h"
26 #include "pci.h"
28 #define VERBOSE
29 #define EMBED_STDVGA
30 #undef DIRECT_VRAM
31 #define HW_RECT_ACCEL
32 #define HW_FILL_ACCEL
33 #define HW_MOUSE_ACCEL
35 #ifdef EMBED_STDVGA
36 # include "vga_int.h"
37 #endif
39 struct vmsvga_state_s {
40 #ifdef EMBED_STDVGA
41 VGA_STATE_COMMON
42 #endif
44 int width;
45 int height;
46 int invalidated;
47 int depth;
48 int bypp;
49 int enable;
50 int config;
51 struct {
52 int id;
53 int x;
54 int y;
55 int on;
56 } cursor;
58 #ifndef EMBED_STDVGA
59 DisplayState *ds;
60 int vram_size;
61 #endif
62 uint8_t *vram;
64 int index;
65 int scratch_size;
66 uint32_t *scratch;
67 int new_width;
68 int new_height;
69 uint32_t guest;
70 uint32_t svgaid;
71 uint32_t wred;
72 uint32_t wgreen;
73 uint32_t wblue;
74 int syncing;
75 int fb_size;
77 union {
78 uint32_t *fifo;
79 struct __attribute__((__packed__)) {
80 uint32_t min;
81 uint32_t max;
82 uint32_t next_cmd;
83 uint32_t stop;
84 /* Add registers here when adding capabilities. */
85 uint32_t fifo[0];
86 } *cmd;
89 #define REDRAW_FIFO_LEN 512
90 struct vmsvga_rect_s {
91 int x, y, w, h;
92 } redraw_fifo[REDRAW_FIFO_LEN];
93 int redraw_fifo_first, redraw_fifo_last;
96 struct pci_vmsvga_state_s {
97 PCIDevice card;
98 struct vmsvga_state_s chip;
101 #define SVGA_MAGIC 0x900000UL
102 #define SVGA_MAKE_ID(ver) (SVGA_MAGIC << 8 | (ver))
103 #define SVGA_ID_0 SVGA_MAKE_ID(0)
104 #define SVGA_ID_1 SVGA_MAKE_ID(1)
105 #define SVGA_ID_2 SVGA_MAKE_ID(2)
107 #define SVGA_LEGACY_BASE_PORT 0x4560
108 #define SVGA_INDEX_PORT 0x0
109 #define SVGA_VALUE_PORT 0x1
110 #define SVGA_BIOS_PORT 0x2
112 #define SVGA_VERSION_2
114 #ifdef SVGA_VERSION_2
115 # define SVGA_ID SVGA_ID_2
116 # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
117 # define SVGA_IO_MUL 1
118 # define SVGA_FIFO_SIZE 0x10000
119 # define SVGA_MEM_BASE 0xe0000000
120 # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA2
121 #else
122 # define SVGA_ID SVGA_ID_1
123 # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
124 # define SVGA_IO_MUL 4
125 # define SVGA_FIFO_SIZE 0x10000
126 # define SVGA_MEM_BASE 0xe0000000
127 # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA
128 #endif
130 enum {
131 /* ID 0, 1 and 2 registers */
132 SVGA_REG_ID = 0,
133 SVGA_REG_ENABLE = 1,
134 SVGA_REG_WIDTH = 2,
135 SVGA_REG_HEIGHT = 3,
136 SVGA_REG_MAX_WIDTH = 4,
137 SVGA_REG_MAX_HEIGHT = 5,
138 SVGA_REG_DEPTH = 6,
139 SVGA_REG_BITS_PER_PIXEL = 7, /* Current bpp in the guest */
140 SVGA_REG_PSEUDOCOLOR = 8,
141 SVGA_REG_RED_MASK = 9,
142 SVGA_REG_GREEN_MASK = 10,
143 SVGA_REG_BLUE_MASK = 11,
144 SVGA_REG_BYTES_PER_LINE = 12,
145 SVGA_REG_FB_START = 13,
146 SVGA_REG_FB_OFFSET = 14,
147 SVGA_REG_VRAM_SIZE = 15,
148 SVGA_REG_FB_SIZE = 16,
150 /* ID 1 and 2 registers */
151 SVGA_REG_CAPABILITIES = 17,
152 SVGA_REG_MEM_START = 18, /* Memory for command FIFO */
153 SVGA_REG_MEM_SIZE = 19,
154 SVGA_REG_CONFIG_DONE = 20, /* Set when memory area configured */
155 SVGA_REG_SYNC = 21, /* Write to force synchronization */
156 SVGA_REG_BUSY = 22, /* Read to check if sync is done */
157 SVGA_REG_GUEST_ID = 23, /* Set guest OS identifier */
158 SVGA_REG_CURSOR_ID = 24, /* ID of cursor */
159 SVGA_REG_CURSOR_X = 25, /* Set cursor X position */
160 SVGA_REG_CURSOR_Y = 26, /* Set cursor Y position */
161 SVGA_REG_CURSOR_ON = 27, /* Turn cursor on/off */
162 SVGA_REG_HOST_BITS_PER_PIXEL = 28, /* Current bpp in the host */
163 SVGA_REG_SCRATCH_SIZE = 29, /* Number of scratch registers */
164 SVGA_REG_MEM_REGS = 30, /* Number of FIFO registers */
165 SVGA_REG_NUM_DISPLAYS = 31, /* Number of guest displays */
166 SVGA_REG_PITCHLOCK = 32, /* Fixed pitch for all modes */
168 SVGA_PALETTE_BASE = 1024, /* Base of SVGA color map */
169 SVGA_PALETTE_END = SVGA_PALETTE_BASE + 767,
170 SVGA_SCRATCH_BASE = SVGA_PALETTE_BASE + 768,
173 #define SVGA_CAP_NONE 0
174 #define SVGA_CAP_RECT_FILL (1 << 0)
175 #define SVGA_CAP_RECT_COPY (1 << 1)
176 #define SVGA_CAP_RECT_PAT_FILL (1 << 2)
177 #define SVGA_CAP_LEGACY_OFFSCREEN (1 << 3)
178 #define SVGA_CAP_RASTER_OP (1 << 4)
179 #define SVGA_CAP_CURSOR (1 << 5)
180 #define SVGA_CAP_CURSOR_BYPASS (1 << 6)
181 #define SVGA_CAP_CURSOR_BYPASS_2 (1 << 7)
182 #define SVGA_CAP_8BIT_EMULATION (1 << 8)
183 #define SVGA_CAP_ALPHA_CURSOR (1 << 9)
184 #define SVGA_CAP_GLYPH (1 << 10)
185 #define SVGA_CAP_GLYPH_CLIPPING (1 << 11)
186 #define SVGA_CAP_OFFSCREEN_1 (1 << 12)
187 #define SVGA_CAP_ALPHA_BLEND (1 << 13)
188 #define SVGA_CAP_3D (1 << 14)
189 #define SVGA_CAP_EXTENDED_FIFO (1 << 15)
190 #define SVGA_CAP_MULTIMON (1 << 16)
191 #define SVGA_CAP_PITCHLOCK (1 << 17)
194 * FIFO offsets (seen as an array of 32-bit words)
196 enum {
198 * The original defined FIFO offsets
200 SVGA_FIFO_MIN = 0,
201 SVGA_FIFO_MAX, /* The distance from MIN to MAX must be at least 10K */
202 SVGA_FIFO_NEXT_CMD,
203 SVGA_FIFO_STOP,
206 * Additional offsets added as of SVGA_CAP_EXTENDED_FIFO
208 SVGA_FIFO_CAPABILITIES = 4,
209 SVGA_FIFO_FLAGS,
210 SVGA_FIFO_FENCE,
211 SVGA_FIFO_3D_HWVERSION,
212 SVGA_FIFO_PITCHLOCK,
215 #define SVGA_FIFO_CAP_NONE 0
216 #define SVGA_FIFO_CAP_FENCE (1 << 0)
217 #define SVGA_FIFO_CAP_ACCELFRONT (1 << 1)
218 #define SVGA_FIFO_CAP_PITCHLOCK (1 << 2)
220 #define SVGA_FIFO_FLAG_NONE 0
221 #define SVGA_FIFO_FLAG_ACCELFRONT (1 << 0)
223 /* These values can probably be changed arbitrarily. */
224 #define SVGA_SCRATCH_SIZE 0x8000
225 #define SVGA_MAX_WIDTH 2360
226 #define SVGA_MAX_HEIGHT 1770
228 #ifdef VERBOSE
229 # define GUEST_OS_BASE 0x5001
230 static const char *vmsvga_guest_id[] = {
231 [0x00 ... 0x15] = "an unknown OS",
232 [0x00] = "Dos",
233 [0x01] = "Windows 3.1",
234 [0x02] = "Windows 95",
235 [0x03] = "Windows 98",
236 [0x04] = "Windows ME",
237 [0x05] = "Windows NT",
238 [0x06] = "Windows 2000",
239 [0x07] = "Linux",
240 [0x08] = "OS/2",
241 [0x0a] = "BSD",
242 [0x0b] = "Whistler",
243 [0x15] = "Windows 2003",
245 #endif
247 enum {
248 SVGA_CMD_INVALID_CMD = 0,
249 SVGA_CMD_UPDATE = 1,
250 SVGA_CMD_RECT_FILL = 2,
251 SVGA_CMD_RECT_COPY = 3,
252 SVGA_CMD_DEFINE_BITMAP = 4,
253 SVGA_CMD_DEFINE_BITMAP_SCANLINE = 5,
254 SVGA_CMD_DEFINE_PIXMAP = 6,
255 SVGA_CMD_DEFINE_PIXMAP_SCANLINE = 7,
256 SVGA_CMD_RECT_BITMAP_FILL = 8,
257 SVGA_CMD_RECT_PIXMAP_FILL = 9,
258 SVGA_CMD_RECT_BITMAP_COPY = 10,
259 SVGA_CMD_RECT_PIXMAP_COPY = 11,
260 SVGA_CMD_FREE_OBJECT = 12,
261 SVGA_CMD_RECT_ROP_FILL = 13,
262 SVGA_CMD_RECT_ROP_COPY = 14,
263 SVGA_CMD_RECT_ROP_BITMAP_FILL = 15,
264 SVGA_CMD_RECT_ROP_PIXMAP_FILL = 16,
265 SVGA_CMD_RECT_ROP_BITMAP_COPY = 17,
266 SVGA_CMD_RECT_ROP_PIXMAP_COPY = 18,
267 SVGA_CMD_DEFINE_CURSOR = 19,
268 SVGA_CMD_DISPLAY_CURSOR = 20,
269 SVGA_CMD_MOVE_CURSOR = 21,
270 SVGA_CMD_DEFINE_ALPHA_CURSOR = 22,
271 SVGA_CMD_DRAW_GLYPH = 23,
272 SVGA_CMD_DRAW_GLYPH_CLIPPED = 24,
273 SVGA_CMD_UPDATE_VERBOSE = 25,
274 SVGA_CMD_SURFACE_FILL = 26,
275 SVGA_CMD_SURFACE_COPY = 27,
276 SVGA_CMD_SURFACE_ALPHA_BLEND = 28,
277 SVGA_CMD_FRONT_ROP_FILL = 29,
278 SVGA_CMD_FENCE = 30,
281 /* Legal values for the SVGA_REG_CURSOR_ON register in cursor bypass mode */
282 enum {
283 SVGA_CURSOR_ON_HIDE = 0,
284 SVGA_CURSOR_ON_SHOW = 1,
285 SVGA_CURSOR_ON_REMOVE_FROM_FB = 2,
286 SVGA_CURSOR_ON_RESTORE_TO_FB = 3,
289 static inline void vmsvga_update_rect(struct vmsvga_state_s *s,
290 int x, int y, int w, int h)
292 #ifndef DIRECT_VRAM
293 int line = h;
294 int bypl = s->bypp * s->width;
295 int width = s->bypp * w;
296 int start = s->bypp * x + bypl * y;
297 uint8_t *src = s->vram + start;
298 uint8_t *dst = s->ds->data + start;
300 for (; line > 0; line --, src += bypl, dst += bypl)
301 memcpy(dst, src, width);
302 #endif
304 dpy_update(s->ds, x, y, w, h);
307 static inline void vmsvga_update_screen(struct vmsvga_state_s *s)
309 #ifndef DIRECT_VRAM
310 memcpy(s->ds->data, s->vram, s->bypp * s->width * s->height);
311 #endif
313 dpy_update(s->ds, 0, 0, s->width, s->height);
316 #ifdef DIRECT_VRAM
317 # define vmsvga_update_rect_delayed vmsvga_update_rect
318 #else
319 static inline void vmsvga_update_rect_delayed(struct vmsvga_state_s *s,
320 int x, int y, int w, int h)
322 struct vmsvga_rect_s *rect = &s->redraw_fifo[s->redraw_fifo_last ++];
323 s->redraw_fifo_last &= REDRAW_FIFO_LEN - 1;
324 rect->x = x;
325 rect->y = y;
326 rect->w = w;
327 rect->h = h;
329 #endif
331 static inline void vmsvga_update_rect_flush(struct vmsvga_state_s *s)
333 struct vmsvga_rect_s *rect;
334 if (s->invalidated) {
335 s->redraw_fifo_first = s->redraw_fifo_last;
336 return;
338 /* Overlapping region updates can be optimised out here - if someone
339 * knows a smart algorithm to do that, please share. */
340 while (s->redraw_fifo_first != s->redraw_fifo_last) {
341 rect = &s->redraw_fifo[s->redraw_fifo_first ++];
342 s->redraw_fifo_first &= REDRAW_FIFO_LEN - 1;
343 vmsvga_update_rect(s, rect->x, rect->y, rect->w, rect->h);
347 #ifdef HW_RECT_ACCEL
348 static inline void vmsvga_copy_rect(struct vmsvga_state_s *s,
349 int x0, int y0, int x1, int y1, int w, int h)
351 # ifdef DIRECT_VRAM
352 uint8_t *vram = s->ds->data;
353 # else
354 uint8_t *vram = s->vram;
355 # endif
356 int bypl = s->bypp * s->width;
357 int width = s->bypp * w;
358 int line = h;
359 uint8_t *ptr[2];
361 # ifdef DIRECT_VRAM
362 if (s->ds->dpy_copy)
363 s->ds->dpy_copy(s->ds, x0, y0, x1, y1, w, h);
364 else
365 # endif
367 if (y1 > y0) {
368 ptr[0] = vram + s->bypp * x0 + bypl * (y0 + h - 1);
369 ptr[1] = vram + s->bypp * x1 + bypl * (y1 + h - 1);
370 for (; line > 0; line --, ptr[0] -= bypl, ptr[1] -= bypl)
371 memmove(ptr[1], ptr[0], width);
372 } else {
373 ptr[0] = vram + s->bypp * x0 + bypl * y0;
374 ptr[1] = vram + s->bypp * x1 + bypl * y1;
375 for (; line > 0; line --, ptr[0] += bypl, ptr[1] += bypl)
376 memmove(ptr[1], ptr[0], width);
380 vmsvga_update_rect_delayed(s, x1, y1, w, h);
382 #endif
384 #ifdef HW_FILL_ACCEL
385 static inline void vmsvga_fill_rect(struct vmsvga_state_s *s,
386 uint32_t c, int x, int y, int w, int h)
388 # ifdef DIRECT_VRAM
389 uint8_t *vram = s->ds->data;
390 # else
391 uint8_t *vram = s->vram;
392 # endif
393 int bypp = s->bypp;
394 int bypl = bypp * s->width;
395 int width = bypp * w;
396 int line = h;
397 int column;
398 uint8_t *fst = vram + bypp * x + bypl * y;
399 uint8_t *dst;
400 uint8_t *src;
401 uint8_t col[4];
403 # ifdef DIRECT_VRAM
404 if (s->ds->dpy_fill)
405 s->ds->dpy_fill(s->ds, x, y, w, h, c);
406 else
407 # endif
409 col[0] = c;
410 col[1] = c >> 8;
411 col[2] = c >> 16;
412 col[3] = c >> 24;
414 if (line --) {
415 dst = fst;
416 src = col;
417 for (column = width; column > 0; column --) {
418 *(dst ++) = *(src ++);
419 if (src - col == bypp)
420 src = col;
422 dst = fst;
423 for (; line > 0; line --) {
424 dst += bypl;
425 memcpy(dst, fst, width);
430 vmsvga_update_rect_delayed(s, x, y, w, h);
432 #endif
434 struct vmsvga_cursor_definition_s {
435 int width;
436 int height;
437 int id;
438 int bpp;
439 int hot_x;
440 int hot_y;
441 uint32_t mask[1024];
442 uint32_t image[1024];
445 #define SVGA_BITMAP_SIZE(w, h) ((((w) + 31) >> 5) * (h))
446 #define SVGA_PIXMAP_SIZE(w, h, bpp) (((((w) * (bpp)) + 31) >> 5) * (h))
448 #ifdef HW_MOUSE_ACCEL
449 static inline void vmsvga_cursor_define(struct vmsvga_state_s *s,
450 struct vmsvga_cursor_definition_s *c)
452 int i;
453 for (i = SVGA_BITMAP_SIZE(c->width, c->height) - 1; i >= 0; i --)
454 c->mask[i] = ~c->mask[i];
456 if (s->ds->cursor_define)
457 s->ds->cursor_define(c->width, c->height, c->bpp, c->hot_x, c->hot_y,
458 (uint8_t *) c->image, (uint8_t *) c->mask);
460 #endif
462 static inline int vmsvga_fifo_empty(struct vmsvga_state_s *s)
464 if (!s->config || !s->enable)
465 return 1;
466 return (s->cmd->next_cmd == s->cmd->stop);
469 static inline uint32_t vmsvga_fifo_read(struct vmsvga_state_s *s)
471 uint32_t cmd = s->fifo[s->cmd->stop >> 2];
472 s->cmd->stop += 4;
473 if (s->cmd->stop >= s->cmd->max)
474 s->cmd->stop = s->cmd->min;
475 return cmd;
478 static void vmsvga_fifo_run(struct vmsvga_state_s *s)
480 uint32_t cmd, colour;
481 int args = 0;
482 int x, y, dx, dy, width, height;
483 struct vmsvga_cursor_definition_s cursor;
484 while (!vmsvga_fifo_empty(s))
485 switch (cmd = vmsvga_fifo_read(s)) {
486 case SVGA_CMD_UPDATE:
487 case SVGA_CMD_UPDATE_VERBOSE:
488 x = vmsvga_fifo_read(s);
489 y = vmsvga_fifo_read(s);
490 width = vmsvga_fifo_read(s);
491 height = vmsvga_fifo_read(s);
492 vmsvga_update_rect_delayed(s, x, y, width, height);
493 break;
495 case SVGA_CMD_RECT_FILL:
496 colour = vmsvga_fifo_read(s);
497 x = vmsvga_fifo_read(s);
498 y = vmsvga_fifo_read(s);
499 width = vmsvga_fifo_read(s);
500 height = vmsvga_fifo_read(s);
501 #ifdef HW_FILL_ACCEL
502 vmsvga_fill_rect(s, colour, x, y, width, height);
503 break;
504 #else
505 goto badcmd;
506 #endif
508 case SVGA_CMD_RECT_COPY:
509 x = vmsvga_fifo_read(s);
510 y = vmsvga_fifo_read(s);
511 dx = vmsvga_fifo_read(s);
512 dy = vmsvga_fifo_read(s);
513 width = vmsvga_fifo_read(s);
514 height = vmsvga_fifo_read(s);
515 #ifdef HW_RECT_ACCEL
516 vmsvga_copy_rect(s, x, y, dx, dy, width, height);
517 break;
518 #else
519 goto badcmd;
520 #endif
522 case SVGA_CMD_DEFINE_CURSOR:
523 cursor.id = vmsvga_fifo_read(s);
524 cursor.hot_x = vmsvga_fifo_read(s);
525 cursor.hot_y = vmsvga_fifo_read(s);
526 cursor.width = x = vmsvga_fifo_read(s);
527 cursor.height = y = vmsvga_fifo_read(s);
528 vmsvga_fifo_read(s);
529 cursor.bpp = vmsvga_fifo_read(s);
530 for (args = 0; args < SVGA_BITMAP_SIZE(x, y); args ++)
531 cursor.mask[args] = vmsvga_fifo_read(s);
532 for (args = 0; args < SVGA_PIXMAP_SIZE(x, y, cursor.bpp); args ++)
533 cursor.image[args] = vmsvga_fifo_read(s);
534 #ifdef HW_MOUSE_ACCEL
535 vmsvga_cursor_define(s, &cursor);
536 break;
537 #else
538 args = 0;
539 goto badcmd;
540 #endif
543 * Other commands that we at least know the number of arguments
544 * for so we can avoid FIFO desync if driver uses them illegally.
546 case SVGA_CMD_DEFINE_ALPHA_CURSOR:
547 vmsvga_fifo_read(s);
548 vmsvga_fifo_read(s);
549 vmsvga_fifo_read(s);
550 x = vmsvga_fifo_read(s);
551 y = vmsvga_fifo_read(s);
552 args = x * y;
553 goto badcmd;
554 case SVGA_CMD_RECT_ROP_FILL:
555 args = 6;
556 goto badcmd;
557 case SVGA_CMD_RECT_ROP_COPY:
558 args = 7;
559 goto badcmd;
560 case SVGA_CMD_DRAW_GLYPH_CLIPPED:
561 vmsvga_fifo_read(s);
562 vmsvga_fifo_read(s);
563 args = 7 + (vmsvga_fifo_read(s) >> 2);
564 goto badcmd;
565 case SVGA_CMD_SURFACE_ALPHA_BLEND:
566 args = 12;
567 goto badcmd;
570 * Other commands that are not listed as depending on any
571 * CAPABILITIES bits, but are not described in the README either.
573 case SVGA_CMD_SURFACE_FILL:
574 case SVGA_CMD_SURFACE_COPY:
575 case SVGA_CMD_FRONT_ROP_FILL:
576 case SVGA_CMD_FENCE:
577 case SVGA_CMD_INVALID_CMD:
578 break; /* Nop */
580 default:
581 badcmd:
582 while (args --)
583 vmsvga_fifo_read(s);
584 printf("%s: Unknown command 0x%02x in SVGA command FIFO\n",
585 __FUNCTION__, cmd);
586 break;
589 s->syncing = 0;
592 static uint32_t vmsvga_index_read(void *opaque, uint32_t address)
594 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
595 return s->index;
598 static void vmsvga_index_write(void *opaque, uint32_t address, uint32_t index)
600 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
601 s->index = index;
604 static uint32_t vmsvga_value_read(void *opaque, uint32_t address)
606 uint32_t caps;
607 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
608 switch (s->index) {
609 case SVGA_REG_ID:
610 return s->svgaid;
612 case SVGA_REG_ENABLE:
613 return s->enable;
615 case SVGA_REG_WIDTH:
616 return s->width;
618 case SVGA_REG_HEIGHT:
619 return s->height;
621 case SVGA_REG_MAX_WIDTH:
622 return SVGA_MAX_WIDTH;
624 case SVGA_REG_MAX_HEIGHT:
625 return SVGA_MAX_HEIGHT;
627 case SVGA_REG_DEPTH:
628 return s->depth;
630 case SVGA_REG_BITS_PER_PIXEL:
631 return (s->depth + 7) & ~7;
633 case SVGA_REG_PSEUDOCOLOR:
634 return 0x0;
636 case SVGA_REG_RED_MASK:
637 return s->wred;
638 case SVGA_REG_GREEN_MASK:
639 return s->wgreen;
640 case SVGA_REG_BLUE_MASK:
641 return s->wblue;
643 case SVGA_REG_BYTES_PER_LINE:
644 return ((s->depth + 7) >> 3) * s->new_width;
646 case SVGA_REG_FB_START:
647 return SVGA_MEM_BASE;
649 case SVGA_REG_FB_OFFSET:
650 return 0x0;
652 case SVGA_REG_VRAM_SIZE:
653 return s->vram_size - SVGA_FIFO_SIZE;
655 case SVGA_REG_FB_SIZE:
656 return s->fb_size;
658 case SVGA_REG_CAPABILITIES:
659 caps = SVGA_CAP_NONE;
660 #ifdef HW_RECT_ACCEL
661 caps |= SVGA_CAP_RECT_COPY;
662 #endif
663 #ifdef HW_FILL_ACCEL
664 caps |= SVGA_CAP_RECT_FILL;
665 #endif
666 #ifdef HW_MOUSE_ACCEL
667 if (s->ds->mouse_set)
668 caps |= SVGA_CAP_CURSOR | SVGA_CAP_CURSOR_BYPASS_2 |
669 SVGA_CAP_CURSOR_BYPASS;
670 #endif
671 return caps;
673 case SVGA_REG_MEM_START:
674 return SVGA_MEM_BASE + s->vram_size - SVGA_FIFO_SIZE;
676 case SVGA_REG_MEM_SIZE:
677 return SVGA_FIFO_SIZE;
679 case SVGA_REG_CONFIG_DONE:
680 return s->config;
682 case SVGA_REG_SYNC:
683 case SVGA_REG_BUSY:
684 return s->syncing;
686 case SVGA_REG_GUEST_ID:
687 return s->guest;
689 case SVGA_REG_CURSOR_ID:
690 return s->cursor.id;
692 case SVGA_REG_CURSOR_X:
693 return s->cursor.x;
695 case SVGA_REG_CURSOR_Y:
696 return s->cursor.x;
698 case SVGA_REG_CURSOR_ON:
699 return s->cursor.on;
701 case SVGA_REG_HOST_BITS_PER_PIXEL:
702 return (s->depth + 7) & ~7;
704 case SVGA_REG_SCRATCH_SIZE:
705 return s->scratch_size;
707 case SVGA_REG_MEM_REGS:
708 case SVGA_REG_NUM_DISPLAYS:
709 case SVGA_REG_PITCHLOCK:
710 case SVGA_PALETTE_BASE ... SVGA_PALETTE_END:
711 return 0;
713 default:
714 if (s->index >= SVGA_SCRATCH_BASE &&
715 s->index < SVGA_SCRATCH_BASE + s->scratch_size)
716 return s->scratch[s->index - SVGA_SCRATCH_BASE];
717 printf("%s: Bad register %02x\n", __FUNCTION__, s->index);
720 return 0;
723 static void vmsvga_value_write(void *opaque, uint32_t address, uint32_t value)
725 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
726 switch (s->index) {
727 case SVGA_REG_ID:
728 if (value == SVGA_ID_2 || value == SVGA_ID_1 || value == SVGA_ID_0)
729 s->svgaid = value;
730 break;
732 case SVGA_REG_ENABLE:
733 s->enable = value;
734 s->config &= !!value;
735 s->width = -1;
736 s->height = -1;
737 s->invalidated = 1;
738 #ifdef EMBED_STDVGA
739 s->invalidate(opaque);
740 #endif
741 if (s->enable)
742 s->fb_size = ((s->depth + 7) >> 3) * s->new_width * s->new_height;
743 break;
745 case SVGA_REG_WIDTH:
746 s->new_width = value;
747 s->invalidated = 1;
748 break;
750 case SVGA_REG_HEIGHT:
751 s->new_height = value;
752 s->invalidated = 1;
753 break;
755 case SVGA_REG_DEPTH:
756 case SVGA_REG_BITS_PER_PIXEL:
757 if (value != s->depth) {
758 printf("%s: Bad colour depth: %i bits\n", __FUNCTION__, value);
759 s->config = 0;
761 break;
763 case SVGA_REG_CONFIG_DONE:
764 if (value) {
765 s->fifo = (uint32_t *) &s->vram[s->vram_size - SVGA_FIFO_SIZE];
766 /* Check range and alignment. */
767 if ((s->cmd->min | s->cmd->max |
768 s->cmd->next_cmd | s->cmd->stop) & 3)
769 break;
770 if (s->cmd->min < (uint8_t *) s->cmd->fifo - (uint8_t *) s->fifo)
771 break;
772 if (s->cmd->max > SVGA_FIFO_SIZE)
773 break;
774 if (s->cmd->max < s->cmd->min + 10 * 1024)
775 break;
777 s->config = !!value;
778 break;
780 case SVGA_REG_SYNC:
781 s->syncing = 1;
782 vmsvga_fifo_run(s); /* Or should we just wait for update_display? */
783 break;
785 case SVGA_REG_GUEST_ID:
786 s->guest = value;
787 #ifdef VERBOSE
788 if (value >= GUEST_OS_BASE && value < GUEST_OS_BASE +
789 sizeof(vmsvga_guest_id) / sizeof(*vmsvga_guest_id))
790 printf("%s: guest runs %s.\n", __FUNCTION__,
791 vmsvga_guest_id[value - GUEST_OS_BASE]);
792 #endif
793 break;
795 case SVGA_REG_CURSOR_ID:
796 s->cursor.id = value;
797 break;
799 case SVGA_REG_CURSOR_X:
800 s->cursor.x = value;
801 break;
803 case SVGA_REG_CURSOR_Y:
804 s->cursor.y = value;
805 break;
807 case SVGA_REG_CURSOR_ON:
808 s->cursor.on |= (value == SVGA_CURSOR_ON_SHOW);
809 s->cursor.on &= (value != SVGA_CURSOR_ON_HIDE);
810 #ifdef HW_MOUSE_ACCEL
811 if (s->ds->mouse_set && value <= SVGA_CURSOR_ON_SHOW)
812 s->ds->mouse_set(s->cursor.x, s->cursor.y, s->cursor.on);
813 #endif
814 break;
816 case SVGA_REG_MEM_REGS:
817 case SVGA_REG_NUM_DISPLAYS:
818 case SVGA_REG_PITCHLOCK:
819 case SVGA_PALETTE_BASE ... SVGA_PALETTE_END:
820 break;
822 default:
823 if (s->index >= SVGA_SCRATCH_BASE &&
824 s->index < SVGA_SCRATCH_BASE + s->scratch_size) {
825 s->scratch[s->index - SVGA_SCRATCH_BASE] = value;
826 break;
828 printf("%s: Bad register %02x\n", __FUNCTION__, s->index);
832 static uint32_t vmsvga_bios_read(void *opaque, uint32_t address)
834 printf("%s: what are we supposed to return?\n", __FUNCTION__);
835 return 0xcafe;
838 static void vmsvga_bios_write(void *opaque, uint32_t address, uint32_t data)
840 printf("%s: what are we supposed to do with (%08x)?\n",
841 __FUNCTION__, data);
844 static inline void vmsvga_size(struct vmsvga_state_s *s)
846 if (s->new_width != s->width || s->new_height != s->height) {
847 s->width = s->new_width;
848 s->height = s->new_height;
849 dpy_resize(s->ds, s->width, s->height);
850 s->invalidated = 1;
854 static void vmsvga_update_display(void *opaque)
856 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
857 if (!s->enable) {
858 #ifdef EMBED_STDVGA
859 s->update(opaque);
860 #endif
861 return;
864 vmsvga_size(s);
866 vmsvga_fifo_run(s);
867 vmsvga_update_rect_flush(s);
870 * Is it more efficient to look at vram VGA-dirty bits or wait
871 * for the driver to issue SVGA_CMD_UPDATE?
873 if (s->invalidated) {
874 s->invalidated = 0;
875 vmsvga_update_screen(s);
879 static void vmsvga_reset(struct vmsvga_state_s *s)
881 s->index = 0;
882 s->enable = 0;
883 s->config = 0;
884 s->width = -1;
885 s->height = -1;
886 s->svgaid = SVGA_ID;
887 s->depth = s->ds->depth ? s->ds->depth : 24;
888 s->bypp = (s->depth + 7) >> 3;
889 s->cursor.on = 0;
890 s->redraw_fifo_first = 0;
891 s->redraw_fifo_last = 0;
892 switch (s->depth) {
893 case 8:
894 s->wred = 0x00000007;
895 s->wgreen = 0x00000038;
896 s->wblue = 0x000000c0;
897 break;
898 case 15:
899 s->wred = 0x0000001f;
900 s->wgreen = 0x000003e0;
901 s->wblue = 0x00007c00;
902 break;
903 case 16:
904 s->wred = 0x0000001f;
905 s->wgreen = 0x000007e0;
906 s->wblue = 0x0000f800;
907 break;
908 case 24:
909 s->wred = 0x00ff0000;
910 s->wgreen = 0x0000ff00;
911 s->wblue = 0x000000ff;
912 break;
913 case 32:
914 s->wred = 0x00ff0000;
915 s->wgreen = 0x0000ff00;
916 s->wblue = 0x000000ff;
917 break;
919 s->syncing = 0;
922 static void vmsvga_invalidate_display(void *opaque)
924 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
925 if (!s->enable) {
926 #ifdef EMBED_STDVGA
927 s->invalidate(opaque);
928 #endif
929 return;
932 s->invalidated = 1;
935 /* save the vga display in a PPM image even if no display is
936 available */
937 static void vmsvga_screen_dump(void *opaque, const char *filename)
939 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
940 if (!s->enable) {
941 #ifdef EMBED_STDVGA
942 s->screen_dump(opaque, filename);
943 #endif
944 return;
947 if (s->depth == 32) {
948 ppm_save(filename, s->vram, s->width, s->height, s->ds->linesize);
952 #ifdef DIRECT_VRAM
953 static uint32_t vmsvga_vram_readb(void *opaque, target_phys_addr_t addr)
955 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
956 addr -= SVGA_MEM_BASE;
957 if (addr < s->fb_size)
958 return *(uint8_t *) (s->ds->data + addr);
959 else
960 return *(uint8_t *) (s->vram + addr);
963 static uint32_t vmsvga_vram_readw(void *opaque, target_phys_addr_t addr)
965 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
966 addr -= SVGA_MEM_BASE;
967 if (addr < s->fb_size)
968 return *(uint16_t *) (s->ds->data + addr);
969 else
970 return *(uint16_t *) (s->vram + addr);
973 static uint32_t vmsvga_vram_readl(void *opaque, target_phys_addr_t addr)
975 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
976 addr -= SVGA_MEM_BASE;
977 if (addr < s->fb_size)
978 return *(uint32_t *) (s->ds->data + addr);
979 else
980 return *(uint32_t *) (s->vram + addr);
983 static void vmsvga_vram_writeb(void *opaque, target_phys_addr_t addr,
984 uint32_t value)
986 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
987 addr -= SVGA_MEM_BASE;
988 if (addr < s->fb_size)
989 *(uint8_t *) (s->ds->data + addr) = value;
990 else
991 *(uint8_t *) (s->vram + addr) = value;
994 static void vmsvga_vram_writew(void *opaque, target_phys_addr_t addr,
995 uint32_t value)
997 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
998 addr -= SVGA_MEM_BASE;
999 if (addr < s->fb_size)
1000 *(uint16_t *) (s->ds->data + addr) = value;
1001 else
1002 *(uint16_t *) (s->vram + addr) = value;
1005 static void vmsvga_vram_writel(void *opaque, target_phys_addr_t addr,
1006 uint32_t value)
1008 struct vmsvga_state_s *s = (struct vmsvga_state_s *) opaque;
1009 addr -= SVGA_MEM_BASE;
1010 if (addr < s->fb_size)
1011 *(uint32_t *) (s->ds->data + addr) = value;
1012 else
1013 *(uint32_t *) (s->vram + addr) = value;
1016 static CPUReadMemoryFunc *vmsvga_vram_read[] = {
1017 vmsvga_vram_readb,
1018 vmsvga_vram_readw,
1019 vmsvga_vram_readl,
1022 static CPUWriteMemoryFunc *vmsvga_vram_write[] = {
1023 vmsvga_vram_writeb,
1024 vmsvga_vram_writew,
1025 vmsvga_vram_writel,
1027 #endif
1029 static void vmsvga_save(struct vmsvga_state_s *s, QEMUFile *f)
1031 qemu_put_be32s(f, &s->depth);
1032 qemu_put_be32s(f, &s->enable);
1033 qemu_put_be32s(f, &s->config);
1034 qemu_put_be32s(f, &s->cursor.id);
1035 qemu_put_be32s(f, &s->cursor.x);
1036 qemu_put_be32s(f, &s->cursor.y);
1037 qemu_put_be32s(f, &s->cursor.on);
1038 qemu_put_be32s(f, &s->index);
1039 qemu_put_buffer(f, (uint8_t *) s->scratch, s->scratch_size * 4);
1040 qemu_put_be32s(f, &s->new_width);
1041 qemu_put_be32s(f, &s->new_height);
1042 qemu_put_be32s(f, &s->guest);
1043 qemu_put_be32s(f, &s->svgaid);
1044 qemu_put_be32s(f, &s->syncing);
1045 qemu_put_be32s(f, &s->fb_size);
1048 static int vmsvga_load(struct vmsvga_state_s *s, QEMUFile *f)
1050 int depth;
1051 qemu_get_be32s(f, &depth);
1052 qemu_get_be32s(f, &s->enable);
1053 qemu_get_be32s(f, &s->config);
1054 qemu_get_be32s(f, &s->cursor.id);
1055 qemu_get_be32s(f, &s->cursor.x);
1056 qemu_get_be32s(f, &s->cursor.y);
1057 qemu_get_be32s(f, &s->cursor.on);
1058 qemu_get_be32s(f, &s->index);
1059 qemu_get_buffer(f, (uint8_t *) s->scratch, s->scratch_size * 4);
1060 qemu_get_be32s(f, &s->new_width);
1061 qemu_get_be32s(f, &s->new_height);
1062 qemu_get_be32s(f, &s->guest);
1063 qemu_get_be32s(f, &s->svgaid);
1064 qemu_get_be32s(f, &s->syncing);
1065 qemu_get_be32s(f, &s->fb_size);
1067 if (s->enable && depth != s->depth) {
1068 printf("%s: need colour depth of %i bits to resume operation.\n",
1069 __FUNCTION__, depth);
1070 return -EINVAL;
1073 s->invalidated = 1;
1074 if (s->config)
1075 s->fifo = (uint32_t *) &s->vram[s->vram_size - SVGA_FIFO_SIZE];
1077 return 0;
1080 static void vmsvga_init(struct vmsvga_state_s *s, DisplayState *ds,
1081 uint8_t *vga_ram_base, unsigned long vga_ram_offset,
1082 int vga_ram_size)
1084 int iomemtype;
1085 s->ds = ds;
1086 s->vram = vga_ram_base;
1087 s->vram_size = vga_ram_size;
1089 s->scratch_size = SVGA_SCRATCH_SIZE;
1090 s->scratch = (uint32_t *) qemu_malloc(s->scratch_size * 4);
1092 vmsvga_reset(s);
1094 #ifdef DIRECT_VRAM
1095 iomemtype = cpu_register_io_memory(0, vmsvga_vram_read,
1096 vmsvga_vram_write, s);
1097 #else
1098 iomemtype = vga_ram_offset | IO_MEM_RAM;
1099 #endif
1100 cpu_register_physical_memory(SVGA_MEM_BASE, vga_ram_size,
1101 iomemtype);
1103 register_ioport_read(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_INDEX_PORT,
1104 1, 4, vmsvga_index_read, s);
1105 register_ioport_write(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_INDEX_PORT,
1106 1, 4, vmsvga_index_write, s);
1107 register_ioport_read(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_VALUE_PORT,
1108 1, 4, vmsvga_value_read, s);
1109 register_ioport_write(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_VALUE_PORT,
1110 1, 4, vmsvga_value_write, s);
1111 register_ioport_read(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_BIOS_PORT,
1112 1, 4, vmsvga_bios_read, s);
1113 register_ioport_write(SVGA_IO_BASE + SVGA_IO_MUL * SVGA_BIOS_PORT,
1114 1, 4, vmsvga_bios_write, s);
1116 graphic_console_init(ds, vmsvga_update_display,
1117 vmsvga_invalidate_display, vmsvga_screen_dump, s);
1119 #ifdef EMBED_STDVGA
1120 vga_common_init((VGAState *) s, ds,
1121 vga_ram_base, vga_ram_offset, vga_ram_size);
1122 vga_init((VGAState *) s);
1123 #endif
1126 static void pci_vmsvga_save(QEMUFile *f, void *opaque)
1128 struct pci_vmsvga_state_s *s = (struct pci_vmsvga_state_s *) opaque;
1129 pci_device_save(&s->card, f);
1130 vmsvga_save(&s->chip, f);
1133 static int pci_vmsvga_load(QEMUFile *f, void *opaque, int version_id)
1135 struct pci_vmsvga_state_s *s = (struct pci_vmsvga_state_s *) opaque;
1136 int ret;
1138 ret = pci_device_load(&s->card, f);
1139 if (ret < 0)
1140 return ret;
1142 ret = vmsvga_load(&s->chip, f);
1143 if (ret < 0)
1144 return ret;
1146 return 0;
1149 #define PCI_VENDOR_ID_VMWARE 0x15ad
1150 #define PCI_DEVICE_ID_VMWARE_SVGA2 0x0405
1151 #define PCI_DEVICE_ID_VMWARE_SVGA 0x0710
1152 #define PCI_DEVICE_ID_VMWARE_NET 0x0720
1153 #define PCI_DEVICE_ID_VMWARE_SCSI 0x0730
1154 #define PCI_DEVICE_ID_VMWARE_IDE 0x1729
1155 #define PCI_CLASS_BASE_DISPLAY 0x03
1156 #define PCI_CLASS_SUB_VGA 0x00
1157 #define PCI_CLASS_HEADERTYPE_00h 0x00
1159 void pci_vmsvga_init(PCIBus *bus, DisplayState *ds, uint8_t *vga_ram_base,
1160 unsigned long vga_ram_offset, int vga_ram_size)
1162 struct pci_vmsvga_state_s *s;
1164 /* Setup PCI configuration */
1165 s = (struct pci_vmsvga_state_s *)
1166 pci_register_device(bus, "QEMUware SVGA",
1167 sizeof(struct pci_vmsvga_state_s), -1, 0, 0);
1168 s->card.config[PCI_VENDOR_ID] = PCI_VENDOR_ID_VMWARE & 0xff;
1169 s->card.config[PCI_VENDOR_ID + 1] = PCI_VENDOR_ID_VMWARE >> 8;
1170 s->card.config[PCI_DEVICE_ID] = SVGA_PCI_DEVICE_ID & 0xff;
1171 s->card.config[PCI_DEVICE_ID + 1] = SVGA_PCI_DEVICE_ID >> 8;
1172 s->card.config[PCI_COMMAND] = 0x07; /* I/O + Memory */
1173 s->card.config[PCI_CLASS_DEVICE] = PCI_CLASS_SUB_VGA;
1174 s->card.config[0x0b] = PCI_CLASS_BASE_DISPLAY;
1175 s->card.config[0x0c] = 0x08; /* Cache line size */
1176 s->card.config[0x0d] = 0x40; /* Latency timer */
1177 s->card.config[0x0e] = PCI_CLASS_HEADERTYPE_00h;
1178 s->card.config[0x10] = ((SVGA_IO_BASE >> 0) & 0xff) | 1;
1179 s->card.config[0x11] = (SVGA_IO_BASE >> 8) & 0xff;
1180 s->card.config[0x12] = (SVGA_IO_BASE >> 16) & 0xff;
1181 s->card.config[0x13] = (SVGA_IO_BASE >> 24) & 0xff;
1182 s->card.config[0x18] = (SVGA_MEM_BASE >> 0) & 0xff;
1183 s->card.config[0x19] = (SVGA_MEM_BASE >> 8) & 0xff;
1184 s->card.config[0x1a] = (SVGA_MEM_BASE >> 16) & 0xff;
1185 s->card.config[0x1b] = (SVGA_MEM_BASE >> 24) & 0xff;
1186 s->card.config[0x2c] = PCI_VENDOR_ID_VMWARE & 0xff;
1187 s->card.config[0x2d] = PCI_VENDOR_ID_VMWARE >> 8;
1188 s->card.config[0x2e] = SVGA_PCI_DEVICE_ID & 0xff;
1189 s->card.config[0x2f] = SVGA_PCI_DEVICE_ID >> 8;
1190 s->card.config[0x3c] = 0xff; /* End */
1192 vmsvga_init(&s->chip, ds, vga_ram_base, vga_ram_offset, vga_ram_size);
1194 register_savevm("vmware_vga", 0, 0, pci_vmsvga_save, pci_vmsvga_load, s);