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
28 #include "vmware_vga.h"
34 #define HW_MOUSE_ACCEL
38 struct vmsvga_state_s
{
55 target_phys_addr_t vram_base
;
70 ram_addr_t fifo_offset
;
72 unsigned int fifo_size
;
73 target_phys_addr_t fifo_base
;
77 struct __attribute__((__packed__
)) {
82 /* Add registers here when adding capabilities. */
87 #define REDRAW_FIFO_LEN 512
88 struct vmsvga_rect_s
{
90 } redraw_fifo
[REDRAW_FIFO_LEN
];
91 int redraw_fifo_first
, redraw_fifo_last
;
94 struct pci_vmsvga_state_s
{
96 struct vmsvga_state_s chip
;
99 #define SVGA_MAGIC 0x900000UL
100 #define SVGA_MAKE_ID(ver) (SVGA_MAGIC << 8 | (ver))
101 #define SVGA_ID_0 SVGA_MAKE_ID(0)
102 #define SVGA_ID_1 SVGA_MAKE_ID(1)
103 #define SVGA_ID_2 SVGA_MAKE_ID(2)
105 #define SVGA_LEGACY_BASE_PORT 0x4560
106 #define SVGA_INDEX_PORT 0x0
107 #define SVGA_VALUE_PORT 0x1
108 #define SVGA_BIOS_PORT 0x2
110 #define SVGA_VERSION_2
112 #ifdef SVGA_VERSION_2
113 # define SVGA_ID SVGA_ID_2
114 # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
115 # define SVGA_IO_MUL 1
116 # define SVGA_FIFO_SIZE 0x10000
117 # define SVGA_MEM_BASE 0xe0000000
118 # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA2
120 # define SVGA_ID SVGA_ID_1
121 # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
122 # define SVGA_IO_MUL 4
123 # define SVGA_FIFO_SIZE 0x10000
124 # define SVGA_MEM_BASE 0xe0000000
125 # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA
129 /* ID 0, 1 and 2 registers */
134 SVGA_REG_MAX_WIDTH
= 4,
135 SVGA_REG_MAX_HEIGHT
= 5,
137 SVGA_REG_BITS_PER_PIXEL
= 7, /* Current bpp in the guest */
138 SVGA_REG_PSEUDOCOLOR
= 8,
139 SVGA_REG_RED_MASK
= 9,
140 SVGA_REG_GREEN_MASK
= 10,
141 SVGA_REG_BLUE_MASK
= 11,
142 SVGA_REG_BYTES_PER_LINE
= 12,
143 SVGA_REG_FB_START
= 13,
144 SVGA_REG_FB_OFFSET
= 14,
145 SVGA_REG_VRAM_SIZE
= 15,
146 SVGA_REG_FB_SIZE
= 16,
148 /* ID 1 and 2 registers */
149 SVGA_REG_CAPABILITIES
= 17,
150 SVGA_REG_MEM_START
= 18, /* Memory for command FIFO */
151 SVGA_REG_MEM_SIZE
= 19,
152 SVGA_REG_CONFIG_DONE
= 20, /* Set when memory area configured */
153 SVGA_REG_SYNC
= 21, /* Write to force synchronization */
154 SVGA_REG_BUSY
= 22, /* Read to check if sync is done */
155 SVGA_REG_GUEST_ID
= 23, /* Set guest OS identifier */
156 SVGA_REG_CURSOR_ID
= 24, /* ID of cursor */
157 SVGA_REG_CURSOR_X
= 25, /* Set cursor X position */
158 SVGA_REG_CURSOR_Y
= 26, /* Set cursor Y position */
159 SVGA_REG_CURSOR_ON
= 27, /* Turn cursor on/off */
160 SVGA_REG_HOST_BITS_PER_PIXEL
= 28, /* Current bpp in the host */
161 SVGA_REG_SCRATCH_SIZE
= 29, /* Number of scratch registers */
162 SVGA_REG_MEM_REGS
= 30, /* Number of FIFO registers */
163 SVGA_REG_NUM_DISPLAYS
= 31, /* Number of guest displays */
164 SVGA_REG_PITCHLOCK
= 32, /* Fixed pitch for all modes */
166 SVGA_PALETTE_BASE
= 1024, /* Base of SVGA color map */
167 SVGA_PALETTE_END
= SVGA_PALETTE_BASE
+ 767,
168 SVGA_SCRATCH_BASE
= SVGA_PALETTE_BASE
+ 768,
171 #define SVGA_CAP_NONE 0
172 #define SVGA_CAP_RECT_FILL (1 << 0)
173 #define SVGA_CAP_RECT_COPY (1 << 1)
174 #define SVGA_CAP_RECT_PAT_FILL (1 << 2)
175 #define SVGA_CAP_LEGACY_OFFSCREEN (1 << 3)
176 #define SVGA_CAP_RASTER_OP (1 << 4)
177 #define SVGA_CAP_CURSOR (1 << 5)
178 #define SVGA_CAP_CURSOR_BYPASS (1 << 6)
179 #define SVGA_CAP_CURSOR_BYPASS_2 (1 << 7)
180 #define SVGA_CAP_8BIT_EMULATION (1 << 8)
181 #define SVGA_CAP_ALPHA_CURSOR (1 << 9)
182 #define SVGA_CAP_GLYPH (1 << 10)
183 #define SVGA_CAP_GLYPH_CLIPPING (1 << 11)
184 #define SVGA_CAP_OFFSCREEN_1 (1 << 12)
185 #define SVGA_CAP_ALPHA_BLEND (1 << 13)
186 #define SVGA_CAP_3D (1 << 14)
187 #define SVGA_CAP_EXTENDED_FIFO (1 << 15)
188 #define SVGA_CAP_MULTIMON (1 << 16)
189 #define SVGA_CAP_PITCHLOCK (1 << 17)
192 * FIFO offsets (seen as an array of 32-bit words)
196 * The original defined FIFO offsets
199 SVGA_FIFO_MAX
, /* The distance from MIN to MAX must be at least 10K */
204 * Additional offsets added as of SVGA_CAP_EXTENDED_FIFO
206 SVGA_FIFO_CAPABILITIES
= 4,
209 SVGA_FIFO_3D_HWVERSION
,
213 #define SVGA_FIFO_CAP_NONE 0
214 #define SVGA_FIFO_CAP_FENCE (1 << 0)
215 #define SVGA_FIFO_CAP_ACCELFRONT (1 << 1)
216 #define SVGA_FIFO_CAP_PITCHLOCK (1 << 2)
218 #define SVGA_FIFO_FLAG_NONE 0
219 #define SVGA_FIFO_FLAG_ACCELFRONT (1 << 0)
221 /* These values can probably be changed arbitrarily. */
222 #define SVGA_SCRATCH_SIZE 0x8000
223 #define SVGA_MAX_WIDTH 2360
224 #define SVGA_MAX_HEIGHT 1770
227 # define GUEST_OS_BASE 0x5001
228 static const char *vmsvga_guest_id
[] = {
230 [0x01] = "Windows 3.1",
231 [0x02] = "Windows 95",
232 [0x03] = "Windows 98",
233 [0x04] = "Windows ME",
234 [0x05] = "Windows NT",
235 [0x06] = "Windows 2000",
238 [0x09] = "an unknown OS",
241 [0x0c] = "an unknown OS",
242 [0x0d] = "an unknown OS",
243 [0x0e] = "an unknown OS",
244 [0x0f] = "an unknown OS",
245 [0x10] = "an unknown OS",
246 [0x11] = "an unknown OS",
247 [0x12] = "an unknown OS",
248 [0x13] = "an unknown OS",
249 [0x14] = "an unknown OS",
250 [0x15] = "Windows 2003",
255 SVGA_CMD_INVALID_CMD
= 0,
257 SVGA_CMD_RECT_FILL
= 2,
258 SVGA_CMD_RECT_COPY
= 3,
259 SVGA_CMD_DEFINE_BITMAP
= 4,
260 SVGA_CMD_DEFINE_BITMAP_SCANLINE
= 5,
261 SVGA_CMD_DEFINE_PIXMAP
= 6,
262 SVGA_CMD_DEFINE_PIXMAP_SCANLINE
= 7,
263 SVGA_CMD_RECT_BITMAP_FILL
= 8,
264 SVGA_CMD_RECT_PIXMAP_FILL
= 9,
265 SVGA_CMD_RECT_BITMAP_COPY
= 10,
266 SVGA_CMD_RECT_PIXMAP_COPY
= 11,
267 SVGA_CMD_FREE_OBJECT
= 12,
268 SVGA_CMD_RECT_ROP_FILL
= 13,
269 SVGA_CMD_RECT_ROP_COPY
= 14,
270 SVGA_CMD_RECT_ROP_BITMAP_FILL
= 15,
271 SVGA_CMD_RECT_ROP_PIXMAP_FILL
= 16,
272 SVGA_CMD_RECT_ROP_BITMAP_COPY
= 17,
273 SVGA_CMD_RECT_ROP_PIXMAP_COPY
= 18,
274 SVGA_CMD_DEFINE_CURSOR
= 19,
275 SVGA_CMD_DISPLAY_CURSOR
= 20,
276 SVGA_CMD_MOVE_CURSOR
= 21,
277 SVGA_CMD_DEFINE_ALPHA_CURSOR
= 22,
278 SVGA_CMD_DRAW_GLYPH
= 23,
279 SVGA_CMD_DRAW_GLYPH_CLIPPED
= 24,
280 SVGA_CMD_UPDATE_VERBOSE
= 25,
281 SVGA_CMD_SURFACE_FILL
= 26,
282 SVGA_CMD_SURFACE_COPY
= 27,
283 SVGA_CMD_SURFACE_ALPHA_BLEND
= 28,
284 SVGA_CMD_FRONT_ROP_FILL
= 29,
288 /* Legal values for the SVGA_REG_CURSOR_ON register in cursor bypass mode */
290 SVGA_CURSOR_ON_HIDE
= 0,
291 SVGA_CURSOR_ON_SHOW
= 1,
292 SVGA_CURSOR_ON_REMOVE_FROM_FB
= 2,
293 SVGA_CURSOR_ON_RESTORE_TO_FB
= 3,
296 static inline void vmsvga_update_rect(struct vmsvga_state_s
*s
,
297 int x
, int y
, int w
, int h
)
307 if (x
+ w
> s
->width
) {
308 fprintf(stderr
, "%s: update width too large x: %d, w: %d\n",
310 x
= MIN(x
, s
->width
);
314 if (y
+ h
> s
->height
) {
315 fprintf(stderr
, "%s: update height too large y: %d, h: %d\n",
317 y
= MIN(y
, s
->height
);
322 bypl
= s
->bypp
* s
->width
;
324 start
= s
->bypp
* x
+ bypl
* y
;
325 src
= s
->vga
.vram_ptr
+ start
;
326 dst
= ds_get_data(s
->vga
.ds
) + start
;
328 for (; line
> 0; line
--, src
+= bypl
, dst
+= bypl
)
329 memcpy(dst
, src
, width
);
332 dpy_update(s
->vga
.ds
, x
, y
, w
, h
);
335 static inline void vmsvga_update_screen(struct vmsvga_state_s
*s
)
338 memcpy(ds_get_data(s
->vga
.ds
), s
->vga
.vram_ptr
, s
->bypp
* s
->width
* s
->height
);
341 dpy_update(s
->vga
.ds
, 0, 0, s
->width
, s
->height
);
345 # define vmsvga_update_rect_delayed vmsvga_update_rect
347 static inline void vmsvga_update_rect_delayed(struct vmsvga_state_s
*s
,
348 int x
, int y
, int w
, int h
)
350 struct vmsvga_rect_s
*rect
= &s
->redraw_fifo
[s
->redraw_fifo_last
++];
351 s
->redraw_fifo_last
&= REDRAW_FIFO_LEN
- 1;
359 static inline void vmsvga_update_rect_flush(struct vmsvga_state_s
*s
)
361 struct vmsvga_rect_s
*rect
;
362 if (s
->invalidated
) {
363 s
->redraw_fifo_first
= s
->redraw_fifo_last
;
366 /* Overlapping region updates can be optimised out here - if someone
367 * knows a smart algorithm to do that, please share. */
368 while (s
->redraw_fifo_first
!= s
->redraw_fifo_last
) {
369 rect
= &s
->redraw_fifo
[s
->redraw_fifo_first
++];
370 s
->redraw_fifo_first
&= REDRAW_FIFO_LEN
- 1;
371 vmsvga_update_rect(s
, rect
->x
, rect
->y
, rect
->w
, rect
->h
);
376 static inline void vmsvga_copy_rect(struct vmsvga_state_s
*s
,
377 int x0
, int y0
, int x1
, int y1
, int w
, int h
)
380 uint8_t *vram
= ds_get_data(s
->ds
);
382 uint8_t *vram
= s
->vga
.vram_ptr
;
384 int bypl
= s
->bypp
* s
->width
;
385 int width
= s
->bypp
* w
;
391 qemu_console_copy(s
->ds
, x0
, y0
, x1
, y1
, w
, h
);
396 ptr
[0] = vram
+ s
->bypp
* x0
+ bypl
* (y0
+ h
- 1);
397 ptr
[1] = vram
+ s
->bypp
* x1
+ bypl
* (y1
+ h
- 1);
398 for (; line
> 0; line
--, ptr
[0] -= bypl
, ptr
[1] -= bypl
)
399 memmove(ptr
[1], ptr
[0], width
);
401 ptr
[0] = vram
+ s
->bypp
* x0
+ bypl
* y0
;
402 ptr
[1] = vram
+ s
->bypp
* x1
+ bypl
* y1
;
403 for (; line
> 0; line
--, ptr
[0] += bypl
, ptr
[1] += bypl
)
404 memmove(ptr
[1], ptr
[0], width
);
408 vmsvga_update_rect_delayed(s
, x1
, y1
, w
, h
);
413 static inline void vmsvga_fill_rect(struct vmsvga_state_s
*s
,
414 uint32_t c
, int x
, int y
, int w
, int h
)
417 uint8_t *vram
= ds_get_data(s
->ds
);
419 uint8_t *vram
= s
->vga
.vram_ptr
;
422 int bypl
= bypp
* s
->width
;
423 int width
= bypp
* w
;
426 uint8_t *fst
= vram
+ bypp
* x
+ bypl
* y
;
433 s
->ds
->dpy_fill(s
->ds
, x
, y
, w
, h
, c
);
445 for (column
= width
; column
> 0; column
--) {
446 *(dst
++) = *(src
++);
447 if (src
- col
== bypp
)
451 for (; line
> 0; line
--) {
453 memcpy(dst
, fst
, width
);
458 vmsvga_update_rect_delayed(s
, x
, y
, w
, h
);
462 struct vmsvga_cursor_definition_s
{
470 uint32_t image
[4096];
473 #define SVGA_BITMAP_SIZE(w, h) ((((w) + 31) >> 5) * (h))
474 #define SVGA_PIXMAP_SIZE(w, h, bpp) (((((w) * (bpp)) + 31) >> 5) * (h))
476 #ifdef HW_MOUSE_ACCEL
477 static inline void vmsvga_cursor_define(struct vmsvga_state_s
*s
,
478 struct vmsvga_cursor_definition_s
*c
)
483 qc
= cursor_alloc(c
->width
, c
->height
);
484 qc
->hot_x
= c
->hot_x
;
485 qc
->hot_y
= c
->hot_y
;
488 cursor_set_mono(qc
, 0xffffff, 0x000000, (void*)c
->image
,
491 cursor_print_ascii_art(qc
, "vmware/mono");
495 /* fill alpha channel from mask, set color to zero */
496 cursor_set_mono(qc
, 0x000000, 0x000000, (void*)c
->mask
,
498 /* add in rgb values */
499 pixels
= c
->width
* c
->height
;
500 for (i
= 0; i
< pixels
; i
++) {
501 qc
->data
[i
] |= c
->image
[i
] & 0xffffff;
504 cursor_print_ascii_art(qc
, "vmware/32bit");
508 fprintf(stderr
, "%s: unhandled bpp %d, using fallback cursor\n",
509 __FUNCTION__
, c
->bpp
);
511 qc
= cursor_builtin_left_ptr();
514 if (s
->vga
.ds
->cursor_define
)
515 s
->vga
.ds
->cursor_define(qc
);
520 #define CMD(f) le32_to_cpu(s->cmd->f)
522 static inline int vmsvga_fifo_length(struct vmsvga_state_s
*s
)
525 if (!s
->config
|| !s
->enable
)
527 num
= CMD(next_cmd
) - CMD(stop
);
529 num
+= CMD(max
) - CMD(min
);
533 static inline uint32_t vmsvga_fifo_read_raw(struct vmsvga_state_s
*s
)
535 uint32_t cmd
= s
->fifo
[CMD(stop
) >> 2];
536 s
->cmd
->stop
= cpu_to_le32(CMD(stop
) + 4);
537 if (CMD(stop
) >= CMD(max
))
538 s
->cmd
->stop
= s
->cmd
->min
;
542 static inline uint32_t vmsvga_fifo_read(struct vmsvga_state_s
*s
)
544 return le32_to_cpu(vmsvga_fifo_read_raw(s
));
547 static void vmsvga_fifo_run(struct vmsvga_state_s
*s
)
549 uint32_t cmd
, colour
;
551 int x
, y
, dx
, dy
, width
, height
;
552 struct vmsvga_cursor_definition_s cursor
;
555 len
= vmsvga_fifo_length(s
);
557 /* May need to go back to the start of the command if incomplete */
558 cmd_start
= s
->cmd
->stop
;
560 switch (cmd
= vmsvga_fifo_read(s
)) {
561 case SVGA_CMD_UPDATE
:
562 case SVGA_CMD_UPDATE_VERBOSE
:
567 x
= vmsvga_fifo_read(s
);
568 y
= vmsvga_fifo_read(s
);
569 width
= vmsvga_fifo_read(s
);
570 height
= vmsvga_fifo_read(s
);
571 vmsvga_update_rect_delayed(s
, x
, y
, width
, height
);
574 case SVGA_CMD_RECT_FILL
:
579 colour
= vmsvga_fifo_read(s
);
580 x
= vmsvga_fifo_read(s
);
581 y
= vmsvga_fifo_read(s
);
582 width
= vmsvga_fifo_read(s
);
583 height
= vmsvga_fifo_read(s
);
585 vmsvga_fill_rect(s
, colour
, x
, y
, width
, height
);
592 case SVGA_CMD_RECT_COPY
:
597 x
= vmsvga_fifo_read(s
);
598 y
= vmsvga_fifo_read(s
);
599 dx
= vmsvga_fifo_read(s
);
600 dy
= vmsvga_fifo_read(s
);
601 width
= vmsvga_fifo_read(s
);
602 height
= vmsvga_fifo_read(s
);
604 vmsvga_copy_rect(s
, x
, y
, dx
, dy
, width
, height
);
611 case SVGA_CMD_DEFINE_CURSOR
:
616 cursor
.id
= vmsvga_fifo_read(s
);
617 cursor
.hot_x
= vmsvga_fifo_read(s
);
618 cursor
.hot_y
= vmsvga_fifo_read(s
);
619 cursor
.width
= x
= vmsvga_fifo_read(s
);
620 cursor
.height
= y
= vmsvga_fifo_read(s
);
622 cursor
.bpp
= vmsvga_fifo_read(s
);
624 args
= SVGA_BITMAP_SIZE(x
, y
) + SVGA_PIXMAP_SIZE(x
, y
, cursor
.bpp
);
625 if (SVGA_BITMAP_SIZE(x
, y
) > sizeof cursor
.mask
||
626 SVGA_PIXMAP_SIZE(x
, y
, cursor
.bpp
) > sizeof cursor
.image
)
633 for (args
= 0; args
< SVGA_BITMAP_SIZE(x
, y
); args
++)
634 cursor
.mask
[args
] = vmsvga_fifo_read_raw(s
);
635 for (args
= 0; args
< SVGA_PIXMAP_SIZE(x
, y
, cursor
.bpp
); args
++)
636 cursor
.image
[args
] = vmsvga_fifo_read_raw(s
);
637 #ifdef HW_MOUSE_ACCEL
638 vmsvga_cursor_define(s
, &cursor
);
646 * Other commands that we at least know the number of arguments
647 * for so we can avoid FIFO desync if driver uses them illegally.
649 case SVGA_CMD_DEFINE_ALPHA_CURSOR
:
657 x
= vmsvga_fifo_read(s
);
658 y
= vmsvga_fifo_read(s
);
661 case SVGA_CMD_RECT_ROP_FILL
:
664 case SVGA_CMD_RECT_ROP_COPY
:
667 case SVGA_CMD_DRAW_GLYPH_CLIPPED
:
674 args
= 7 + (vmsvga_fifo_read(s
) >> 2);
676 case SVGA_CMD_SURFACE_ALPHA_BLEND
:
681 * Other commands that are not listed as depending on any
682 * CAPABILITIES bits, but are not described in the README either.
684 case SVGA_CMD_SURFACE_FILL
:
685 case SVGA_CMD_SURFACE_COPY
:
686 case SVGA_CMD_FRONT_ROP_FILL
:
688 case SVGA_CMD_INVALID_CMD
:
699 printf("%s: Unknown command 0x%02x in SVGA command FIFO\n",
704 s
->cmd
->stop
= cmd_start
;
712 static uint32_t vmsvga_index_read(void *opaque
, uint32_t address
)
714 struct vmsvga_state_s
*s
= opaque
;
718 static void vmsvga_index_write(void *opaque
, uint32_t address
, uint32_t index
)
720 struct vmsvga_state_s
*s
= opaque
;
724 static uint32_t vmsvga_value_read(void *opaque
, uint32_t address
)
727 struct vmsvga_state_s
*s
= opaque
;
732 case SVGA_REG_ENABLE
:
738 case SVGA_REG_HEIGHT
:
741 case SVGA_REG_MAX_WIDTH
:
742 return SVGA_MAX_WIDTH
;
744 case SVGA_REG_MAX_HEIGHT
:
745 return SVGA_MAX_HEIGHT
;
750 case SVGA_REG_BITS_PER_PIXEL
:
751 return (s
->depth
+ 7) & ~7;
753 case SVGA_REG_PSEUDOCOLOR
:
756 case SVGA_REG_RED_MASK
:
758 case SVGA_REG_GREEN_MASK
:
760 case SVGA_REG_BLUE_MASK
:
763 case SVGA_REG_BYTES_PER_LINE
:
764 return ((s
->depth
+ 7) >> 3) * s
->new_width
;
766 case SVGA_REG_FB_START
:
769 case SVGA_REG_FB_OFFSET
:
772 case SVGA_REG_VRAM_SIZE
:
773 return s
->vga
.vram_size
;
775 case SVGA_REG_FB_SIZE
:
778 case SVGA_REG_CAPABILITIES
:
779 caps
= SVGA_CAP_NONE
;
781 caps
|= SVGA_CAP_RECT_COPY
;
784 caps
|= SVGA_CAP_RECT_FILL
;
786 #ifdef HW_MOUSE_ACCEL
787 if (s
->vga
.ds
->mouse_set
)
788 caps
|= SVGA_CAP_CURSOR
| SVGA_CAP_CURSOR_BYPASS_2
|
789 SVGA_CAP_CURSOR_BYPASS
;
793 case SVGA_REG_MEM_START
:
796 case SVGA_REG_MEM_SIZE
:
799 case SVGA_REG_CONFIG_DONE
:
806 case SVGA_REG_GUEST_ID
:
809 case SVGA_REG_CURSOR_ID
:
812 case SVGA_REG_CURSOR_X
:
815 case SVGA_REG_CURSOR_Y
:
818 case SVGA_REG_CURSOR_ON
:
821 case SVGA_REG_HOST_BITS_PER_PIXEL
:
822 return (s
->depth
+ 7) & ~7;
824 case SVGA_REG_SCRATCH_SIZE
:
825 return s
->scratch_size
;
827 case SVGA_REG_MEM_REGS
:
828 case SVGA_REG_NUM_DISPLAYS
:
829 case SVGA_REG_PITCHLOCK
:
830 case SVGA_PALETTE_BASE
... SVGA_PALETTE_END
:
834 if (s
->index
>= SVGA_SCRATCH_BASE
&&
835 s
->index
< SVGA_SCRATCH_BASE
+ s
->scratch_size
)
836 return s
->scratch
[s
->index
- SVGA_SCRATCH_BASE
];
837 printf("%s: Bad register %02x\n", __FUNCTION__
, s
->index
);
843 static void vmsvga_value_write(void *opaque
, uint32_t address
, uint32_t value
)
845 struct vmsvga_state_s
*s
= opaque
;
848 if (value
== SVGA_ID_2
|| value
== SVGA_ID_1
|| value
== SVGA_ID_0
)
852 case SVGA_REG_ENABLE
:
854 s
->config
&= !!value
;
858 s
->vga
.invalidate(&s
->vga
);
860 s
->fb_size
= ((s
->depth
+ 7) >> 3) * s
->new_width
* s
->new_height
;
861 vga_dirty_log_stop(&s
->vga
);
863 vga_dirty_log_start(&s
->vga
);
868 s
->new_width
= value
;
872 case SVGA_REG_HEIGHT
:
873 s
->new_height
= value
;
878 case SVGA_REG_BITS_PER_PIXEL
:
879 if (value
!= s
->depth
) {
880 printf("%s: Bad colour depth: %i bits\n", __FUNCTION__
, value
);
885 case SVGA_REG_CONFIG_DONE
:
887 s
->fifo
= (uint32_t *) s
->fifo_ptr
;
888 /* Check range and alignment. */
889 if ((CMD(min
) | CMD(max
) |
890 CMD(next_cmd
) | CMD(stop
)) & 3)
892 if (CMD(min
) < (uint8_t *) s
->cmd
->fifo
- (uint8_t *) s
->fifo
)
894 if (CMD(max
) > SVGA_FIFO_SIZE
)
896 if (CMD(max
) < CMD(min
) + 10 * 1024)
904 vmsvga_fifo_run(s
); /* Or should we just wait for update_display? */
907 case SVGA_REG_GUEST_ID
:
910 if (value
>= GUEST_OS_BASE
&& value
< GUEST_OS_BASE
+
911 ARRAY_SIZE(vmsvga_guest_id
))
912 printf("%s: guest runs %s.\n", __FUNCTION__
,
913 vmsvga_guest_id
[value
- GUEST_OS_BASE
]);
917 case SVGA_REG_CURSOR_ID
:
918 s
->cursor
.id
= value
;
921 case SVGA_REG_CURSOR_X
:
925 case SVGA_REG_CURSOR_Y
:
929 case SVGA_REG_CURSOR_ON
:
930 s
->cursor
.on
|= (value
== SVGA_CURSOR_ON_SHOW
);
931 s
->cursor
.on
&= (value
!= SVGA_CURSOR_ON_HIDE
);
932 #ifdef HW_MOUSE_ACCEL
933 if (s
->vga
.ds
->mouse_set
&& value
<= SVGA_CURSOR_ON_SHOW
)
934 s
->vga
.ds
->mouse_set(s
->cursor
.x
, s
->cursor
.y
, s
->cursor
.on
);
938 case SVGA_REG_MEM_REGS
:
939 case SVGA_REG_NUM_DISPLAYS
:
940 case SVGA_REG_PITCHLOCK
:
941 case SVGA_PALETTE_BASE
... SVGA_PALETTE_END
:
945 if (s
->index
>= SVGA_SCRATCH_BASE
&&
946 s
->index
< SVGA_SCRATCH_BASE
+ s
->scratch_size
) {
947 s
->scratch
[s
->index
- SVGA_SCRATCH_BASE
] = value
;
950 printf("%s: Bad register %02x\n", __FUNCTION__
, s
->index
);
954 static uint32_t vmsvga_bios_read(void *opaque
, uint32_t address
)
956 printf("%s: what are we supposed to return?\n", __FUNCTION__
);
960 static void vmsvga_bios_write(void *opaque
, uint32_t address
, uint32_t data
)
962 printf("%s: what are we supposed to do with (%08x)?\n",
966 static inline void vmsvga_size(struct vmsvga_state_s
*s
)
968 if (s
->new_width
!= s
->width
|| s
->new_height
!= s
->height
) {
969 s
->width
= s
->new_width
;
970 s
->height
= s
->new_height
;
971 qemu_console_resize(s
->vga
.ds
, s
->width
, s
->height
);
976 static void vmsvga_update_display(void *opaque
)
978 struct vmsvga_state_s
*s
= opaque
;
980 s
->vga
.update(&s
->vga
);
987 vmsvga_update_rect_flush(s
);
990 * Is it more efficient to look at vram VGA-dirty bits or wait
991 * for the driver to issue SVGA_CMD_UPDATE?
993 if (s
->invalidated
) {
995 vmsvga_update_screen(s
);
999 static void vmsvga_reset(struct vmsvga_state_s
*s
)
1006 s
->svgaid
= SVGA_ID
;
1007 s
->depth
= ds_get_bits_per_pixel(s
->vga
.ds
);
1008 s
->bypp
= ds_get_bytes_per_pixel(s
->vga
.ds
);
1010 s
->redraw_fifo_first
= 0;
1011 s
->redraw_fifo_last
= 0;
1014 s
->wred
= 0x00000007;
1015 s
->wgreen
= 0x00000038;
1016 s
->wblue
= 0x000000c0;
1019 s
->wred
= 0x0000001f;
1020 s
->wgreen
= 0x000003e0;
1021 s
->wblue
= 0x00007c00;
1024 s
->wred
= 0x0000001f;
1025 s
->wgreen
= 0x000007e0;
1026 s
->wblue
= 0x0000f800;
1029 s
->wred
= 0x00ff0000;
1030 s
->wgreen
= 0x0000ff00;
1031 s
->wblue
= 0x000000ff;
1034 s
->wred
= 0x00ff0000;
1035 s
->wgreen
= 0x0000ff00;
1036 s
->wblue
= 0x000000ff;
1041 vga_dirty_log_start(&s
->vga
);
1044 static void vmsvga_invalidate_display(void *opaque
)
1046 struct vmsvga_state_s
*s
= opaque
;
1048 s
->vga
.invalidate(&s
->vga
);
1055 /* save the vga display in a PPM image even if no display is
1057 static void vmsvga_screen_dump(void *opaque
, const char *filename
)
1059 struct vmsvga_state_s
*s
= opaque
;
1061 s
->vga
.screen_dump(&s
->vga
, filename
);
1065 if (s
->depth
== 32) {
1066 DisplaySurface
*ds
= qemu_create_displaysurface_from(s
->width
,
1067 s
->height
, 32, ds_get_linesize(s
->vga
.ds
), s
->vga
.vram_ptr
);
1068 ppm_save(filename
, ds
);
1073 static void vmsvga_text_update(void *opaque
, console_ch_t
*chardata
)
1075 struct vmsvga_state_s
*s
= opaque
;
1077 if (s
->vga
.text_update
)
1078 s
->vga
.text_update(&s
->vga
, chardata
);
1082 static uint32_t vmsvga_vram_readb(void *opaque
, target_phys_addr_t addr
)
1084 struct vmsvga_state_s
*s
= opaque
;
1085 if (addr
< s
->fb_size
)
1086 return *(uint8_t *) (ds_get_data(s
->ds
) + addr
);
1088 return *(uint8_t *) (s
->vram_ptr
+ addr
);
1091 static uint32_t vmsvga_vram_readw(void *opaque
, target_phys_addr_t addr
)
1093 struct vmsvga_state_s
*s
= opaque
;
1094 if (addr
< s
->fb_size
)
1095 return *(uint16_t *) (ds_get_data(s
->ds
) + addr
);
1097 return *(uint16_t *) (s
->vram_ptr
+ addr
);
1100 static uint32_t vmsvga_vram_readl(void *opaque
, target_phys_addr_t addr
)
1102 struct vmsvga_state_s
*s
= opaque
;
1103 if (addr
< s
->fb_size
)
1104 return *(uint32_t *) (ds_get_data(s
->ds
) + addr
);
1106 return *(uint32_t *) (s
->vram_ptr
+ addr
);
1109 static void vmsvga_vram_writeb(void *opaque
, target_phys_addr_t addr
,
1112 struct vmsvga_state_s
*s
= opaque
;
1113 if (addr
< s
->fb_size
)
1114 *(uint8_t *) (ds_get_data(s
->ds
) + addr
) = value
;
1116 *(uint8_t *) (s
->vram_ptr
+ addr
) = value
;
1119 static void vmsvga_vram_writew(void *opaque
, target_phys_addr_t addr
,
1122 struct vmsvga_state_s
*s
= opaque
;
1123 if (addr
< s
->fb_size
)
1124 *(uint16_t *) (ds_get_data(s
->ds
) + addr
) = value
;
1126 *(uint16_t *) (s
->vram_ptr
+ addr
) = value
;
1129 static void vmsvga_vram_writel(void *opaque
, target_phys_addr_t addr
,
1132 struct vmsvga_state_s
*s
= opaque
;
1133 if (addr
< s
->fb_size
)
1134 *(uint32_t *) (ds_get_data(s
->ds
) + addr
) = value
;
1136 *(uint32_t *) (s
->vram_ptr
+ addr
) = value
;
1139 static CPUReadMemoryFunc
* const vmsvga_vram_read
[] = {
1145 static CPUWriteMemoryFunc
* const vmsvga_vram_write
[] = {
1152 static int vmsvga_post_load(void *opaque
, int version_id
)
1154 struct vmsvga_state_s
*s
= opaque
;
1158 s
->fifo
= (uint32_t *) s
->fifo_ptr
;
1163 static const VMStateDescription vmstate_vmware_vga_internal
= {
1164 .name
= "vmware_vga_internal",
1166 .minimum_version_id
= 0,
1167 .minimum_version_id_old
= 0,
1168 .post_load
= vmsvga_post_load
,
1169 .fields
= (VMStateField
[]) {
1170 VMSTATE_INT32_EQUAL(depth
, struct vmsvga_state_s
),
1171 VMSTATE_INT32(enable
, struct vmsvga_state_s
),
1172 VMSTATE_INT32(config
, struct vmsvga_state_s
),
1173 VMSTATE_INT32(cursor
.id
, struct vmsvga_state_s
),
1174 VMSTATE_INT32(cursor
.x
, struct vmsvga_state_s
),
1175 VMSTATE_INT32(cursor
.y
, struct vmsvga_state_s
),
1176 VMSTATE_INT32(cursor
.on
, struct vmsvga_state_s
),
1177 VMSTATE_INT32(index
, struct vmsvga_state_s
),
1178 VMSTATE_VARRAY_INT32(scratch
, struct vmsvga_state_s
,
1179 scratch_size
, 0, vmstate_info_uint32
, uint32_t),
1180 VMSTATE_INT32(new_width
, struct vmsvga_state_s
),
1181 VMSTATE_INT32(new_height
, struct vmsvga_state_s
),
1182 VMSTATE_UINT32(guest
, struct vmsvga_state_s
),
1183 VMSTATE_UINT32(svgaid
, struct vmsvga_state_s
),
1184 VMSTATE_INT32(syncing
, struct vmsvga_state_s
),
1185 VMSTATE_INT32(fb_size
, struct vmsvga_state_s
),
1186 VMSTATE_END_OF_LIST()
1190 static const VMStateDescription vmstate_vmware_vga
= {
1191 .name
= "vmware_vga",
1193 .minimum_version_id
= 0,
1194 .minimum_version_id_old
= 0,
1195 .fields
= (VMStateField
[]) {
1196 VMSTATE_PCI_DEVICE(card
, struct pci_vmsvga_state_s
),
1197 VMSTATE_STRUCT(chip
, struct pci_vmsvga_state_s
, 0,
1198 vmstate_vmware_vga_internal
, struct vmsvga_state_s
),
1199 VMSTATE_END_OF_LIST()
1203 static void vmsvga_init(struct vmsvga_state_s
*s
, int vga_ram_size
)
1205 s
->scratch_size
= SVGA_SCRATCH_SIZE
;
1206 s
->scratch
= qemu_malloc(s
->scratch_size
* 4);
1208 s
->vga
.ds
= graphic_console_init(vmsvga_update_display
,
1209 vmsvga_invalidate_display
,
1211 vmsvga_text_update
, s
);
1214 s
->fifo_size
= SVGA_FIFO_SIZE
;
1215 s
->fifo_offset
= qemu_ram_alloc(NULL
, "vmsvga.fifo", s
->fifo_size
);
1216 s
->fifo_ptr
= qemu_get_ram_ptr(s
->fifo_offset
);
1218 vga_common_init(&s
->vga
, vga_ram_size
);
1220 vmstate_register(NULL
, 0, &vmstate_vga_common
, &s
->vga
);
1222 vga_init_vbe(&s
->vga
);
1224 rom_add_vga(VGABIOS_FILENAME
);
1229 static void pci_vmsvga_map_ioport(PCIDevice
*pci_dev
, int region_num
,
1230 pcibus_t addr
, pcibus_t size
, int type
)
1232 struct pci_vmsvga_state_s
*d
= (struct pci_vmsvga_state_s
*) pci_dev
;
1233 struct vmsvga_state_s
*s
= &d
->chip
;
1235 register_ioport_read(addr
+ SVGA_IO_MUL
* SVGA_INDEX_PORT
,
1236 1, 4, vmsvga_index_read
, s
);
1237 register_ioport_write(addr
+ SVGA_IO_MUL
* SVGA_INDEX_PORT
,
1238 1, 4, vmsvga_index_write
, s
);
1239 register_ioport_read(addr
+ SVGA_IO_MUL
* SVGA_VALUE_PORT
,
1240 1, 4, vmsvga_value_read
, s
);
1241 register_ioport_write(addr
+ SVGA_IO_MUL
* SVGA_VALUE_PORT
,
1242 1, 4, vmsvga_value_write
, s
);
1243 register_ioport_read(addr
+ SVGA_IO_MUL
* SVGA_BIOS_PORT
,
1244 1, 4, vmsvga_bios_read
, s
);
1245 register_ioport_write(addr
+ SVGA_IO_MUL
* SVGA_BIOS_PORT
,
1246 1, 4, vmsvga_bios_write
, s
);
1249 static void pci_vmsvga_map_mem(PCIDevice
*pci_dev
, int region_num
,
1250 pcibus_t addr
, pcibus_t size
, int type
)
1252 struct pci_vmsvga_state_s
*d
= (struct pci_vmsvga_state_s
*) pci_dev
;
1253 struct vmsvga_state_s
*s
= &d
->chip
;
1254 ram_addr_t iomemtype
;
1256 s
->vram_base
= addr
;
1258 iomemtype
= cpu_register_io_memory(vmsvga_vram_read
,
1259 vmsvga_vram_write
, s
);
1261 iomemtype
= s
->vga
.vram_offset
| IO_MEM_RAM
;
1263 cpu_register_physical_memory(s
->vram_base
, s
->vga
.vram_size
,
1266 s
->vga
.map_addr
= addr
;
1267 s
->vga
.map_end
= addr
+ s
->vga
.vram_size
;
1268 vga_dirty_log_restart(&s
->vga
);
1271 static void pci_vmsvga_map_fifo(PCIDevice
*pci_dev
, int region_num
,
1272 pcibus_t addr
, pcibus_t size
, int type
)
1274 struct pci_vmsvga_state_s
*d
= (struct pci_vmsvga_state_s
*) pci_dev
;
1275 struct vmsvga_state_s
*s
= &d
->chip
;
1276 ram_addr_t iomemtype
;
1278 s
->fifo_base
= addr
;
1279 iomemtype
= s
->fifo_offset
| IO_MEM_RAM
;
1280 cpu_register_physical_memory(s
->fifo_base
, s
->fifo_size
,
1284 static int pci_vmsvga_initfn(PCIDevice
*dev
)
1286 struct pci_vmsvga_state_s
*s
=
1287 DO_UPCAST(struct pci_vmsvga_state_s
, card
, dev
);
1289 pci_config_set_vendor_id(s
->card
.config
, PCI_VENDOR_ID_VMWARE
);
1290 pci_config_set_device_id(s
->card
.config
, SVGA_PCI_DEVICE_ID
);
1291 pci_config_set_class(s
->card
.config
, PCI_CLASS_DISPLAY_VGA
);
1292 s
->card
.config
[PCI_CACHE_LINE_SIZE
] = 0x08; /* Cache line size */
1293 s
->card
.config
[PCI_LATENCY_TIMER
] = 0x40; /* Latency timer */
1294 s
->card
.config
[PCI_SUBSYSTEM_VENDOR_ID
] = PCI_VENDOR_ID_VMWARE
& 0xff;
1295 s
->card
.config
[PCI_SUBSYSTEM_VENDOR_ID
+ 1] = PCI_VENDOR_ID_VMWARE
>> 8;
1296 s
->card
.config
[PCI_SUBSYSTEM_ID
] = SVGA_PCI_DEVICE_ID
& 0xff;
1297 s
->card
.config
[PCI_SUBSYSTEM_ID
+ 1] = SVGA_PCI_DEVICE_ID
>> 8;
1298 s
->card
.config
[PCI_INTERRUPT_LINE
] = 0xff; /* End */
1300 pci_register_bar(&s
->card
, 0, 0x10,
1301 PCI_BASE_ADDRESS_SPACE_IO
, pci_vmsvga_map_ioport
);
1302 pci_register_bar(&s
->card
, 1, VGA_RAM_SIZE
,
1303 PCI_BASE_ADDRESS_MEM_PREFETCH
, pci_vmsvga_map_mem
);
1305 pci_register_bar(&s
->card
, 2, SVGA_FIFO_SIZE
,
1306 PCI_BASE_ADDRESS_MEM_PREFETCH
, pci_vmsvga_map_fifo
);
1308 vmsvga_init(&s
->chip
, VGA_RAM_SIZE
);
1313 void pci_vmsvga_init(PCIBus
*bus
)
1315 pci_create_simple(bus
, -1, "vmware-svga");
1318 static PCIDeviceInfo vmsvga_info
= {
1319 .qdev
.name
= "vmware-svga",
1320 .qdev
.size
= sizeof(struct pci_vmsvga_state_s
),
1321 .qdev
.vmsd
= &vmstate_vmware_vga
,
1322 .init
= pci_vmsvga_initfn
,
1325 static void vmsvga_register(void)
1327 pci_qdev_register(&vmsvga_info
);
1329 device_init(vmsvga_register
);