2 * Copyright (C) 2010 Red Hat, Inc.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 or
7 * (at your option) version 3 of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "qemu/osdep.h"
19 #include "ui/qemu-spice.h"
20 #include "qemu/timer.h"
21 #include "qemu/lockable.h"
22 #include "qemu/main-loop.h"
23 #include "qemu/option.h"
24 #include "qemu/queue.h"
25 #include "ui/console.h"
28 #include "ui/spice-display.h"
32 int qemu_spice_rect_is_empty(const QXLRect
* r
)
34 return r
->top
== r
->bottom
|| r
->left
== r
->right
;
37 void qemu_spice_rect_union(QXLRect
*dest
, const QXLRect
*r
)
39 if (qemu_spice_rect_is_empty(r
)) {
43 if (qemu_spice_rect_is_empty(dest
)) {
48 dest
->top
= MIN(dest
->top
, r
->top
);
49 dest
->left
= MIN(dest
->left
, r
->left
);
50 dest
->bottom
= MAX(dest
->bottom
, r
->bottom
);
51 dest
->right
= MAX(dest
->right
, r
->right
);
54 QXLCookie
*qxl_cookie_new(int type
, uint64_t io
)
58 cookie
= g_malloc0(sizeof(*cookie
));
64 void qemu_spice_add_memslot(SimpleSpiceDisplay
*ssd
, QXLDevMemSlot
*memslot
,
67 trace_qemu_spice_add_memslot(ssd
->qxl
.id
, memslot
->slot_id
,
68 memslot
->virt_start
, memslot
->virt_end
,
71 if (async
!= QXL_SYNC
) {
72 spice_qxl_add_memslot_async(&ssd
->qxl
, memslot
,
73 (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
74 QXL_IO_MEMSLOT_ADD_ASYNC
));
76 spice_qxl_add_memslot(&ssd
->qxl
, memslot
);
80 void qemu_spice_del_memslot(SimpleSpiceDisplay
*ssd
, uint32_t gid
, uint32_t sid
)
82 trace_qemu_spice_del_memslot(ssd
->qxl
.id
, gid
, sid
);
83 spice_qxl_del_memslot(&ssd
->qxl
, gid
, sid
);
86 void qemu_spice_create_primary_surface(SimpleSpiceDisplay
*ssd
, uint32_t id
,
87 QXLDevSurfaceCreate
*surface
,
90 trace_qemu_spice_create_primary_surface(ssd
->qxl
.id
, id
, surface
, async
);
91 if (async
!= QXL_SYNC
) {
92 spice_qxl_create_primary_surface_async(&ssd
->qxl
, id
, surface
,
93 (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
94 QXL_IO_CREATE_PRIMARY_ASYNC
));
96 spice_qxl_create_primary_surface(&ssd
->qxl
, id
, surface
);
100 void qemu_spice_destroy_primary_surface(SimpleSpiceDisplay
*ssd
,
101 uint32_t id
, qxl_async_io async
)
103 trace_qemu_spice_destroy_primary_surface(ssd
->qxl
.id
, id
, async
);
104 if (async
!= QXL_SYNC
) {
105 spice_qxl_destroy_primary_surface_async(&ssd
->qxl
, id
,
106 (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
107 QXL_IO_DESTROY_PRIMARY_ASYNC
));
109 spice_qxl_destroy_primary_surface(&ssd
->qxl
, id
);
113 void qemu_spice_wakeup(SimpleSpiceDisplay
*ssd
)
115 trace_qemu_spice_wakeup(ssd
->qxl
.id
);
116 spice_qxl_wakeup(&ssd
->qxl
);
119 static void qemu_spice_create_one_update(SimpleSpiceDisplay
*ssd
,
122 SimpleSpiceUpdate
*update
;
123 QXLDrawable
*drawable
;
127 struct timespec time_space
;
128 pixman_image_t
*dest
;
130 trace_qemu_spice_create_update(
131 rect
->left
, rect
->right
,
132 rect
->top
, rect
->bottom
);
134 update
= g_malloc0(sizeof(*update
));
135 drawable
= &update
->drawable
;
136 image
= &update
->image
;
137 cmd
= &update
->ext
.cmd
;
139 bw
= rect
->right
- rect
->left
;
140 bh
= rect
->bottom
- rect
->top
;
141 update
->bitmap
= g_malloc(bw
* bh
* 4);
143 drawable
->bbox
= *rect
;
144 drawable
->clip
.type
= SPICE_CLIP_TYPE_NONE
;
145 drawable
->effect
= QXL_EFFECT_OPAQUE
;
146 drawable
->release_info
.id
= (uintptr_t)(&update
->ext
);
147 drawable
->type
= QXL_DRAW_COPY
;
148 drawable
->surfaces_dest
[0] = -1;
149 drawable
->surfaces_dest
[1] = -1;
150 drawable
->surfaces_dest
[2] = -1;
151 clock_gettime(CLOCK_MONOTONIC
, &time_space
);
152 /* time in milliseconds from epoch. */
153 drawable
->mm_time
= time_space
.tv_sec
* 1000
154 + time_space
.tv_nsec
/ 1000 / 1000;
156 drawable
->u
.copy
.rop_descriptor
= SPICE_ROPD_OP_PUT
;
157 drawable
->u
.copy
.src_bitmap
= (uintptr_t)image
;
158 drawable
->u
.copy
.src_area
.right
= bw
;
159 drawable
->u
.copy
.src_area
.bottom
= bh
;
161 QXL_SET_IMAGE_ID(image
, QXL_IMAGE_GROUP_DEVICE
, ssd
->unique
++);
162 image
->descriptor
.type
= SPICE_IMAGE_TYPE_BITMAP
;
163 image
->bitmap
.flags
= QXL_BITMAP_DIRECT
| QXL_BITMAP_TOP_DOWN
;
164 image
->bitmap
.stride
= bw
* 4;
165 image
->descriptor
.width
= image
->bitmap
.x
= bw
;
166 image
->descriptor
.height
= image
->bitmap
.y
= bh
;
167 image
->bitmap
.data
= (uintptr_t)(update
->bitmap
);
168 image
->bitmap
.palette
= 0;
169 image
->bitmap
.format
= SPICE_BITMAP_FMT_32BIT
;
171 dest
= pixman_image_create_bits(PIXMAN_LE_x8r8g8b8
, bw
, bh
,
172 (void *)update
->bitmap
, bw
* 4);
173 pixman_image_composite(PIXMAN_OP_SRC
, ssd
->surface
, NULL
, ssd
->mirror
,
174 rect
->left
, rect
->top
, 0, 0,
175 rect
->left
, rect
->top
, bw
, bh
);
176 pixman_image_composite(PIXMAN_OP_SRC
, ssd
->mirror
, NULL
, dest
,
177 rect
->left
, rect
->top
, 0, 0,
179 pixman_image_unref(dest
);
181 cmd
->type
= QXL_CMD_DRAW
;
182 cmd
->data
= (uintptr_t)drawable
;
184 QTAILQ_INSERT_TAIL(&ssd
->updates
, update
, next
);
187 static void qemu_spice_create_update(SimpleSpiceDisplay
*ssd
)
189 static const int blksize
= 32;
190 int blocks
= DIV_ROUND_UP(surface_width(ssd
->ds
), blksize
);
191 int dirty_top
[blocks
];
192 int y
, yoff1
, yoff2
, x
, xoff
, blk
, bw
;
193 int bpp
= surface_bytes_per_pixel(ssd
->ds
);
194 uint8_t *guest
, *mirror
;
196 if (qemu_spice_rect_is_empty(&ssd
->dirty
)) {
200 for (blk
= 0; blk
< blocks
; blk
++) {
204 guest
= surface_data(ssd
->ds
);
205 mirror
= (void *)pixman_image_get_data(ssd
->mirror
);
206 for (y
= ssd
->dirty
.top
; y
< ssd
->dirty
.bottom
; y
++) {
207 yoff1
= y
* surface_stride(ssd
->ds
);
208 yoff2
= y
* pixman_image_get_stride(ssd
->mirror
);
209 for (x
= ssd
->dirty
.left
; x
< ssd
->dirty
.right
; x
+= blksize
) {
212 bw
= MIN(blksize
, ssd
->dirty
.right
- x
);
213 if (memcmp(guest
+ yoff1
+ xoff
,
214 mirror
+ yoff2
+ xoff
,
216 if (dirty_top
[blk
] != -1) {
218 .top
= dirty_top
[blk
],
223 qemu_spice_create_one_update(ssd
, &update
);
227 if (dirty_top
[blk
] == -1) {
234 for (x
= ssd
->dirty
.left
; x
< ssd
->dirty
.right
; x
+= blksize
) {
236 bw
= MIN(blksize
, ssd
->dirty
.right
- x
);
237 if (dirty_top
[blk
] != -1) {
239 .top
= dirty_top
[blk
],
240 .bottom
= ssd
->dirty
.bottom
,
244 qemu_spice_create_one_update(ssd
, &update
);
249 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
252 static SimpleSpiceCursor
*
253 qemu_spice_create_cursor_update(SimpleSpiceDisplay
*ssd
,
257 size_t size
= c
? c
->width
* c
->height
* 4 : 0;
258 SimpleSpiceCursor
*update
;
263 update
= g_malloc0(sizeof(*update
) + size
);
265 cursor
= &update
->cursor
;
266 cmd
= &update
->ext
.cmd
;
269 ccmd
->type
= QXL_CURSOR_SET
;
270 ccmd
->u
.set
.position
.x
= ssd
->ptr_x
+ ssd
->hot_x
;
271 ccmd
->u
.set
.position
.y
= ssd
->ptr_y
+ ssd
->hot_y
;
272 ccmd
->u
.set
.visible
= true;
273 ccmd
->u
.set
.shape
= (uintptr_t)cursor
;
274 cursor
->header
.unique
= ssd
->unique
++;
275 cursor
->header
.type
= SPICE_CURSOR_TYPE_ALPHA
;
276 cursor
->header
.width
= c
->width
;
277 cursor
->header
.height
= c
->height
;
278 cursor
->header
.hot_spot_x
= c
->hot_x
;
279 cursor
->header
.hot_spot_y
= c
->hot_y
;
280 cursor
->data_size
= size
;
281 cursor
->chunk
.data_size
= size
;
282 memcpy(cursor
->chunk
.data
, c
->data
, size
);
284 ccmd
->type
= QXL_CURSOR_HIDE
;
286 ccmd
->type
= QXL_CURSOR_MOVE
;
287 ccmd
->u
.position
.x
= ssd
->ptr_x
+ ssd
->hot_x
;
288 ccmd
->u
.position
.y
= ssd
->ptr_y
+ ssd
->hot_y
;
290 ccmd
->release_info
.id
= (uintptr_t)(&update
->ext
);
292 cmd
->type
= QXL_CMD_CURSOR
;
293 cmd
->data
= (uintptr_t)ccmd
;
299 * Called from spice server thread context (via interface_release_resource)
300 * We do *not* hold the global qemu mutex here, so extra care is needed
301 * when calling qemu functions. QEMU interfaces used:
302 * - g_free (underlying glibc free is re-entrant).
304 void qemu_spice_destroy_update(SimpleSpiceDisplay
*sdpy
, SimpleSpiceUpdate
*update
)
306 g_free(update
->bitmap
);
310 void qemu_spice_create_host_memslot(SimpleSpiceDisplay
*ssd
)
312 QXLDevMemSlot memslot
;
314 memset(&memslot
, 0, sizeof(memslot
));
315 memslot
.slot_group_id
= MEMSLOT_GROUP_HOST
;
316 memslot
.virt_end
= ~0;
317 qemu_spice_add_memslot(ssd
, &memslot
, QXL_SYNC
);
320 void qemu_spice_create_host_primary(SimpleSpiceDisplay
*ssd
)
322 QXLDevSurfaceCreate surface
;
323 uint64_t surface_size
;
325 memset(&surface
, 0, sizeof(surface
));
327 surface_size
= (uint64_t) surface_width(ssd
->ds
) *
328 surface_height(ssd
->ds
) * 4;
329 assert(surface_size
> 0);
330 assert(surface_size
< INT_MAX
);
331 if (ssd
->bufsize
< surface_size
) {
332 ssd
->bufsize
= surface_size
;
334 ssd
->buf
= g_malloc(ssd
->bufsize
);
337 surface
.format
= SPICE_SURFACE_FMT_32_xRGB
;
338 surface
.width
= surface_width(ssd
->ds
);
339 surface
.height
= surface_height(ssd
->ds
);
340 surface
.stride
= -surface
.width
* 4;
341 surface
.mouse_mode
= true;
344 surface
.mem
= (uintptr_t)ssd
->buf
;
345 surface
.group_id
= MEMSLOT_GROUP_HOST
;
347 qemu_spice_create_primary_surface(ssd
, 0, &surface
, QXL_SYNC
);
350 void qemu_spice_destroy_host_primary(SimpleSpiceDisplay
*ssd
)
352 qemu_spice_destroy_primary_surface(ssd
, 0, QXL_SYNC
);
355 void qemu_spice_display_init_common(SimpleSpiceDisplay
*ssd
)
357 qemu_mutex_init(&ssd
->lock
);
358 QTAILQ_INIT(&ssd
->updates
);
361 if (ssd
->num_surfaces
== 0) {
362 ssd
->num_surfaces
= 1024;
366 /* display listener callbacks */
368 void qemu_spice_display_update(SimpleSpiceDisplay
*ssd
,
369 int x
, int y
, int w
, int h
)
373 trace_qemu_spice_display_update(ssd
->qxl
.id
, x
, y
, w
, h
);
374 update_area
.left
= x
,
375 update_area
.right
= x
+ w
;
377 update_area
.bottom
= y
+ h
;
379 if (qemu_spice_rect_is_empty(&ssd
->dirty
)) {
382 qemu_spice_rect_union(&ssd
->dirty
, &update_area
);
385 void qemu_spice_display_switch(SimpleSpiceDisplay
*ssd
,
386 DisplaySurface
*surface
)
388 SimpleSpiceUpdate
*update
;
392 surface_width(surface
) == pixman_image_get_width(ssd
->surface
) &&
393 surface_height(surface
) == pixman_image_get_height(ssd
->surface
) &&
394 surface_format(surface
) == pixman_image_get_format(ssd
->surface
)) {
395 /* no-resize fast path: just swap backing store */
396 trace_qemu_spice_display_surface(ssd
->qxl
.id
,
397 surface_width(surface
),
398 surface_height(surface
),
400 qemu_mutex_lock(&ssd
->lock
);
402 pixman_image_unref(ssd
->surface
);
403 ssd
->surface
= pixman_image_ref(ssd
->ds
->image
);
404 qemu_mutex_unlock(&ssd
->lock
);
405 qemu_spice_display_update(ssd
, 0, 0,
406 surface_width(surface
),
407 surface_height(surface
));
411 /* full mode switch */
412 trace_qemu_spice_display_surface(ssd
->qxl
.id
,
413 surface_width(surface
),
414 surface_height(surface
),
417 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
419 pixman_image_unref(ssd
->surface
);
421 pixman_image_unref(ssd
->mirror
);
425 qemu_mutex_lock(&ssd
->lock
);
426 need_destroy
= (ssd
->ds
!= NULL
);
428 while ((update
= QTAILQ_FIRST(&ssd
->updates
)) != NULL
) {
429 QTAILQ_REMOVE(&ssd
->updates
, update
, next
);
430 qemu_spice_destroy_update(ssd
, update
);
432 qemu_mutex_unlock(&ssd
->lock
);
434 qemu_spice_destroy_host_primary(ssd
);
437 ssd
->surface
= pixman_image_ref(ssd
->ds
->image
);
438 ssd
->mirror
= qemu_pixman_mirror_create(ssd
->ds
->format
,
440 qemu_spice_create_host_primary(ssd
);
443 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
446 qemu_mutex_lock(&ssd
->lock
);
448 g_free(ssd
->ptr_define
);
449 ssd
->ptr_define
= qemu_spice_create_cursor_update(ssd
, ssd
->cursor
, 0);
451 qemu_mutex_unlock(&ssd
->lock
);
454 void qemu_spice_cursor_refresh_bh(void *opaque
)
456 SimpleSpiceDisplay
*ssd
= opaque
;
458 qemu_mutex_lock(&ssd
->lock
);
460 QEMUCursor
*c
= ssd
->cursor
;
461 assert(ssd
->dcl
.con
);
463 qemu_mutex_unlock(&ssd
->lock
);
464 dpy_cursor_define(ssd
->dcl
.con
, c
);
465 qemu_mutex_lock(&ssd
->lock
);
469 if (ssd
->mouse_x
!= -1 && ssd
->mouse_y
!= -1) {
471 assert(ssd
->dcl
.con
);
476 qemu_mutex_unlock(&ssd
->lock
);
477 dpy_mouse_set(ssd
->dcl
.con
, x
, y
, 1);
479 qemu_mutex_unlock(&ssd
->lock
);
483 void qemu_spice_display_refresh(SimpleSpiceDisplay
*ssd
)
485 graphic_hw_update(ssd
->dcl
.con
);
487 WITH_QEMU_LOCK_GUARD(&ssd
->lock
) {
488 if (QTAILQ_EMPTY(&ssd
->updates
) && ssd
->ds
) {
489 qemu_spice_create_update(ssd
);
494 trace_qemu_spice_display_refresh(ssd
->qxl
.id
, ssd
->notify
);
497 qemu_spice_wakeup(ssd
);
501 /* spice display interface callbacks */
503 #if SPICE_HAS_ATTACHED_WORKER
504 static void interface_attached_worker(QXLInstance
*sin
)
509 static void interface_attach_worker(QXLInstance
*sin
, QXLWorker
*qxl_worker
)
515 static void interface_set_compression_level(QXLInstance
*sin
, int level
)
520 #if SPICE_NEEDS_SET_MM_TIME
521 static void interface_set_mm_time(QXLInstance
*sin
, uint32_t mm_time
)
527 static void interface_get_init_info(QXLInstance
*sin
, QXLDevInitInfo
*info
)
529 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
531 info
->memslot_gen_bits
= MEMSLOT_GENERATION_BITS
;
532 info
->memslot_id_bits
= MEMSLOT_SLOT_BITS
;
533 info
->num_memslots
= NUM_MEMSLOTS
;
534 info
->num_memslots_groups
= NUM_MEMSLOTS_GROUPS
;
535 info
->internal_groupslot_id
= 0;
536 info
->qxl_ram_size
= 16 * 1024 * 1024;
537 info
->n_surfaces
= ssd
->num_surfaces
;
540 static int interface_get_command(QXLInstance
*sin
, QXLCommandExt
*ext
)
542 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
543 SimpleSpiceUpdate
*update
;
546 qemu_mutex_lock(&ssd
->lock
);
547 update
= QTAILQ_FIRST(&ssd
->updates
);
548 if (update
!= NULL
) {
549 QTAILQ_REMOVE(&ssd
->updates
, update
, next
);
553 qemu_mutex_unlock(&ssd
->lock
);
558 static int interface_req_cmd_notification(QXLInstance
*sin
)
563 static void interface_release_resource(QXLInstance
*sin
,
564 QXLReleaseInfoExt rext
)
566 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
567 SimpleSpiceUpdate
*update
;
568 SimpleSpiceCursor
*cursor
;
575 ext
= (void *)(intptr_t)(rext
.info
->id
);
576 switch (ext
->cmd
.type
) {
578 update
= container_of(ext
, SimpleSpiceUpdate
, ext
);
579 qemu_spice_destroy_update(ssd
, update
);
582 cursor
= container_of(ext
, SimpleSpiceCursor
, ext
);
586 g_assert_not_reached();
590 static int interface_get_cursor_command(QXLInstance
*sin
, QXLCommandExt
*ext
)
592 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
595 QEMU_LOCK_GUARD(&ssd
->lock
);
596 if (ssd
->ptr_define
) {
597 *ext
= ssd
->ptr_define
->ext
;
598 ssd
->ptr_define
= NULL
;
600 } else if (ssd
->ptr_move
) {
601 *ext
= ssd
->ptr_move
->ext
;
602 ssd
->ptr_move
= NULL
;
610 static int interface_req_cursor_notification(QXLInstance
*sin
)
615 static void interface_notify_update(QXLInstance
*sin
, uint32_t update_id
)
617 fprintf(stderr
, "%s: abort()\n", __func__
);
621 static int interface_flush_resources(QXLInstance
*sin
)
623 fprintf(stderr
, "%s: abort()\n", __func__
);
628 static void interface_update_area_complete(QXLInstance
*sin
,
630 QXLRect
*dirty
, uint32_t num_updated_rects
)
632 /* should never be called, used in qxl native mode only */
633 fprintf(stderr
, "%s: abort()\n", __func__
);
637 /* called from spice server thread context only */
638 static void interface_async_complete(QXLInstance
*sin
, uint64_t cookie_token
)
640 QXLCookie
*cookie
= (QXLCookie
*)(uintptr_t)cookie_token
;
642 switch (cookie
->type
) {
644 case QXL_COOKIE_TYPE_GL_DRAW_DONE
:
646 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
647 qemu_bh_schedule(ssd
->gl_unblock_bh
);
650 case QXL_COOKIE_TYPE_IO
:
651 if (cookie
->io
== QXL_IO_MONITORS_CONFIG_ASYNC
) {
652 g_free(cookie
->u
.data
);
657 /* should never be called, used in qxl native mode only */
658 fprintf(stderr
, "%s: abort()\n", __func__
);
664 static void interface_set_client_capabilities(QXLInstance
*sin
,
665 uint8_t client_present
,
671 static int interface_client_monitors_config(QXLInstance
*sin
,
672 VDAgentMonitorsConfig
*mc
)
674 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
678 if (!dpy_ui_info_supported(ssd
->dcl
.con
)) {
679 return 0; /* == not supported by guest */
686 info
= *dpy_get_ui_info(ssd
->dcl
.con
);
688 head
= qemu_console_get_index(ssd
->dcl
.con
);
689 if (mc
->num_of_monitors
> head
) {
690 info
.width
= mc
->monitors
[head
].width
;
691 info
.height
= mc
->monitors
[head
].height
;
692 #if SPICE_SERVER_VERSION >= 0x000e04 /* release 0.14.4 */
693 if (mc
->flags
& VD_AGENT_CONFIG_MONITORS_FLAG_PHYSICAL_SIZE
) {
694 VDAgentMonitorMM
*mm
= (void *)&mc
->monitors
[mc
->num_of_monitors
];
695 info
.width_mm
= mm
[head
].width
;
696 info
.height_mm
= mm
[head
].height
;
701 trace_qemu_spice_ui_info(ssd
->qxl
.id
, info
.width
, info
.height
);
702 dpy_set_ui_info(ssd
->dcl
.con
, &info
, false);
706 static const QXLInterface dpy_interface
= {
707 .base
.type
= SPICE_INTERFACE_QXL
,
708 .base
.description
= "qemu simple display",
709 .base
.major_version
= SPICE_INTERFACE_QXL_MAJOR
,
710 .base
.minor_version
= SPICE_INTERFACE_QXL_MINOR
,
712 #if SPICE_HAS_ATTACHED_WORKER
713 .attached_worker
= interface_attached_worker
,
715 .attache_worker
= interface_attach_worker
,
717 .set_compression_level
= interface_set_compression_level
,
718 #if SPICE_NEEDS_SET_MM_TIME
719 .set_mm_time
= interface_set_mm_time
,
721 .get_init_info
= interface_get_init_info
,
723 /* the callbacks below are called from spice server thread context */
724 .get_command
= interface_get_command
,
725 .req_cmd_notification
= interface_req_cmd_notification
,
726 .release_resource
= interface_release_resource
,
727 .get_cursor_command
= interface_get_cursor_command
,
728 .req_cursor_notification
= interface_req_cursor_notification
,
729 .notify_update
= interface_notify_update
,
730 .flush_resources
= interface_flush_resources
,
731 .async_complete
= interface_async_complete
,
732 .update_area_complete
= interface_update_area_complete
,
733 .set_client_capabilities
= interface_set_client_capabilities
,
734 .client_monitors_config
= interface_client_monitors_config
,
737 static void display_update(DisplayChangeListener
*dcl
,
738 int x
, int y
, int w
, int h
)
740 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
741 qemu_spice_display_update(ssd
, x
, y
, w
, h
);
744 static void display_switch(DisplayChangeListener
*dcl
,
745 DisplaySurface
*surface
)
747 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
748 qemu_spice_display_switch(ssd
, surface
);
751 static void display_refresh(DisplayChangeListener
*dcl
)
753 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
754 qemu_spice_display_refresh(ssd
);
757 static void display_mouse_set(DisplayChangeListener
*dcl
,
758 int x
, int y
, int on
)
760 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
762 qemu_mutex_lock(&ssd
->lock
);
765 g_free(ssd
->ptr_move
);
766 ssd
->ptr_move
= qemu_spice_create_cursor_update(ssd
, NULL
, on
);
767 qemu_mutex_unlock(&ssd
->lock
);
768 qemu_spice_wakeup(ssd
);
771 static void display_mouse_define(DisplayChangeListener
*dcl
,
774 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
776 qemu_mutex_lock(&ssd
->lock
);
778 cursor_put(ssd
->cursor
);
780 ssd
->hot_x
= c
->hot_x
;
781 ssd
->hot_y
= c
->hot_y
;
782 g_free(ssd
->ptr_move
);
783 ssd
->ptr_move
= NULL
;
784 g_free(ssd
->ptr_define
);
785 ssd
->ptr_define
= qemu_spice_create_cursor_update(ssd
, c
, 0);
786 qemu_mutex_unlock(&ssd
->lock
);
787 qemu_spice_wakeup(ssd
);
790 static const DisplayChangeListenerOps display_listener_ops
= {
792 .dpy_gfx_update
= display_update
,
793 .dpy_gfx_switch
= display_switch
,
794 .dpy_gfx_check_format
= qemu_pixman_check_format
,
795 .dpy_refresh
= display_refresh
,
796 .dpy_mouse_set
= display_mouse_set
,
797 .dpy_cursor_define
= display_mouse_define
,
802 static void qemu_spice_gl_monitor_config(SimpleSpiceDisplay
*ssd
,
803 int x
, int y
, int w
, int h
)
805 QXLMonitorsConfig
*config
;
808 config
= g_malloc0(sizeof(QXLMonitorsConfig
) + sizeof(QXLHead
));
810 config
->max_allowed
= 1;
811 config
->heads
[0].x
= x
;
812 config
->heads
[0].y
= y
;
813 config
->heads
[0].width
= w
;
814 config
->heads
[0].height
= h
;
815 cookie
= qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
816 QXL_IO_MONITORS_CONFIG_ASYNC
);
817 cookie
->u
.data
= config
;
819 spice_qxl_monitors_config_async(&ssd
->qxl
,
825 static void qemu_spice_gl_block(SimpleSpiceDisplay
*ssd
, bool block
)
830 timeout
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
831 timeout
+= 1000; /* one sec */
832 timer_mod(ssd
->gl_unblock_timer
, timeout
);
834 timer_del(ssd
->gl_unblock_timer
);
836 graphic_hw_gl_block(ssd
->dcl
.con
, block
);
839 static void qemu_spice_gl_unblock_bh(void *opaque
)
841 SimpleSpiceDisplay
*ssd
= opaque
;
843 qemu_spice_gl_block(ssd
, false);
846 static void qemu_spice_gl_block_timer(void *opaque
)
848 warn_report("spice: no gl-draw-done within one second");
851 static void spice_gl_refresh(DisplayChangeListener
*dcl
)
853 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
856 if (!ssd
->ds
|| qemu_console_is_gl_blocked(ssd
->dcl
.con
)) {
860 graphic_hw_update(dcl
->con
);
861 if (ssd
->gl_updates
&& ssd
->have_surface
) {
862 qemu_spice_gl_block(ssd
, true);
864 cookie
= (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_GL_DRAW_DONE
, 0);
865 spice_qxl_gl_draw_async(&ssd
->qxl
, 0, 0,
866 surface_width(ssd
->ds
),
867 surface_height(ssd
->ds
),
873 static void spice_gl_update(DisplayChangeListener
*dcl
,
874 int x
, int y
, int w
, int h
)
876 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
878 surface_gl_update_texture(ssd
->gls
, ssd
->ds
, x
, y
, w
, h
);
882 static void spice_gl_switch(DisplayChangeListener
*dcl
,
883 struct DisplaySurface
*new_surface
)
885 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
886 EGLint stride
, fourcc
;
890 surface_gl_destroy_texture(ssd
->gls
, ssd
->ds
);
892 ssd
->ds
= new_surface
;
894 surface_gl_create_texture(ssd
->gls
, ssd
->ds
);
895 fd
= egl_get_fd_for_texture(ssd
->ds
->texture
,
899 surface_gl_destroy_texture(ssd
->gls
, ssd
->ds
);
903 trace_qemu_spice_gl_surface(ssd
->qxl
.id
,
904 surface_width(ssd
->ds
),
905 surface_height(ssd
->ds
),
908 /* note: spice server will close the fd */
909 spice_qxl_gl_scanout(&ssd
->qxl
, fd
,
910 surface_width(ssd
->ds
),
911 surface_height(ssd
->ds
),
912 stride
, fourcc
, false);
913 ssd
->have_surface
= true;
914 ssd
->have_scanout
= false;
916 qemu_spice_gl_monitor_config(ssd
, 0, 0,
917 surface_width(ssd
->ds
),
918 surface_height(ssd
->ds
));
922 static QEMUGLContext
qemu_spice_gl_create_context(DisplayGLCtx
*dgc
,
923 QEMUGLParams
*params
)
925 eglMakeCurrent(qemu_egl_display
, EGL_NO_SURFACE
, EGL_NO_SURFACE
,
927 return qemu_egl_create_context(dgc
, params
);
930 static void qemu_spice_gl_scanout_disable(DisplayChangeListener
*dcl
)
932 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
934 trace_qemu_spice_gl_scanout_disable(ssd
->qxl
.id
);
935 spice_qxl_gl_scanout(&ssd
->qxl
, -1, 0, 0, 0, 0, false);
936 qemu_spice_gl_monitor_config(ssd
, 0, 0, 0, 0);
937 ssd
->have_surface
= false;
938 ssd
->have_scanout
= false;
941 static void qemu_spice_gl_scanout_texture(DisplayChangeListener
*dcl
,
944 uint32_t backing_width
,
945 uint32_t backing_height
,
946 uint32_t x
, uint32_t y
,
947 uint32_t w
, uint32_t h
)
949 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
950 EGLint stride
= 0, fourcc
= 0;
954 fd
= egl_get_fd_for_texture(tex_id
, &stride
, &fourcc
, NULL
);
956 fprintf(stderr
, "%s: failed to get fd for texture\n", __func__
);
959 trace_qemu_spice_gl_scanout_texture(ssd
->qxl
.id
, w
, h
, fourcc
);
961 /* note: spice server will close the fd */
962 spice_qxl_gl_scanout(&ssd
->qxl
, fd
, backing_width
, backing_height
,
963 stride
, fourcc
, y_0_top
);
964 qemu_spice_gl_monitor_config(ssd
, x
, y
, w
, h
);
965 ssd
->have_surface
= false;
966 ssd
->have_scanout
= true;
969 static void qemu_spice_gl_scanout_dmabuf(DisplayChangeListener
*dcl
,
972 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
974 ssd
->guest_dmabuf
= dmabuf
;
975 ssd
->guest_dmabuf_refresh
= true;
977 ssd
->have_surface
= false;
978 ssd
->have_scanout
= true;
981 static void qemu_spice_gl_cursor_dmabuf(DisplayChangeListener
*dcl
,
982 QemuDmaBuf
*dmabuf
, bool have_hot
,
983 uint32_t hot_x
, uint32_t hot_y
)
985 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
987 ssd
->have_hot
= have_hot
;
991 trace_qemu_spice_gl_cursor(ssd
->qxl
.id
, dmabuf
!= NULL
, have_hot
);
993 egl_dmabuf_import_texture(dmabuf
);
994 if (!dmabuf
->texture
) {
997 egl_fb_setup_for_tex(&ssd
->cursor_fb
, dmabuf
->width
, dmabuf
->height
,
998 dmabuf
->texture
, false);
1000 egl_fb_destroy(&ssd
->cursor_fb
);
1004 static void qemu_spice_gl_cursor_position(DisplayChangeListener
*dcl
,
1005 uint32_t pos_x
, uint32_t pos_y
)
1007 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
1009 qemu_mutex_lock(&ssd
->lock
);
1012 qemu_mutex_unlock(&ssd
->lock
);
1015 static void qemu_spice_gl_release_dmabuf(DisplayChangeListener
*dcl
,
1018 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
1020 if (ssd
->guest_dmabuf
== dmabuf
) {
1021 ssd
->guest_dmabuf
= NULL
;
1022 ssd
->guest_dmabuf_refresh
= false;
1024 egl_dmabuf_release_texture(dmabuf
);
1027 static void qemu_spice_gl_update(DisplayChangeListener
*dcl
,
1028 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
)
1030 SimpleSpiceDisplay
*ssd
= container_of(dcl
, SimpleSpiceDisplay
, dcl
);
1031 EGLint stride
= 0, fourcc
= 0;
1032 bool render_cursor
= false;
1033 bool y_0_top
= false; /* FIXME */
1037 if (!ssd
->have_scanout
) {
1041 if (ssd
->cursor_fb
.texture
) {
1042 render_cursor
= true;
1044 if (ssd
->render_cursor
!= render_cursor
) {
1045 ssd
->render_cursor
= render_cursor
;
1046 ssd
->guest_dmabuf_refresh
= true;
1047 egl_fb_destroy(&ssd
->blit_fb
);
1050 if (ssd
->guest_dmabuf_refresh
) {
1051 QemuDmaBuf
*dmabuf
= ssd
->guest_dmabuf
;
1052 if (render_cursor
) {
1053 egl_dmabuf_import_texture(dmabuf
);
1054 if (!dmabuf
->texture
) {
1058 /* source framebuffer */
1059 egl_fb_setup_for_tex(&ssd
->guest_fb
,
1060 dmabuf
->width
, dmabuf
->height
,
1061 dmabuf
->texture
, false);
1063 /* dest framebuffer */
1064 if (ssd
->blit_fb
.width
!= dmabuf
->width
||
1065 ssd
->blit_fb
.height
!= dmabuf
->height
) {
1066 trace_qemu_spice_gl_render_dmabuf(ssd
->qxl
.id
, dmabuf
->width
,
1068 egl_fb_destroy(&ssd
->blit_fb
);
1069 egl_fb_setup_new_tex(&ssd
->blit_fb
,
1070 dmabuf
->width
, dmabuf
->height
);
1071 fd
= egl_get_fd_for_texture(ssd
->blit_fb
.texture
,
1072 &stride
, &fourcc
, NULL
);
1073 spice_qxl_gl_scanout(&ssd
->qxl
, fd
,
1074 dmabuf
->width
, dmabuf
->height
,
1075 stride
, fourcc
, false);
1078 trace_qemu_spice_gl_forward_dmabuf(ssd
->qxl
.id
,
1079 dmabuf
->width
, dmabuf
->height
);
1080 /* note: spice server will close the fd, so hand over a dup */
1081 spice_qxl_gl_scanout(&ssd
->qxl
, dup(dmabuf
->fd
),
1082 dmabuf
->width
, dmabuf
->height
,
1083 dmabuf
->stride
, dmabuf
->fourcc
,
1086 qemu_spice_gl_monitor_config(ssd
, 0, 0, dmabuf
->width
, dmabuf
->height
);
1087 ssd
->guest_dmabuf_refresh
= false;
1090 if (render_cursor
) {
1092 qemu_mutex_lock(&ssd
->lock
);
1095 qemu_mutex_unlock(&ssd
->lock
);
1096 egl_texture_blit(ssd
->gls
, &ssd
->blit_fb
, &ssd
->guest_fb
,
1098 egl_texture_blend(ssd
->gls
, &ssd
->blit_fb
, &ssd
->cursor_fb
,
1099 !y_0_top
, x
, y
, 1.0, 1.0);
1103 trace_qemu_spice_gl_update(ssd
->qxl
.id
, w
, h
, x
, y
);
1104 qemu_spice_gl_block(ssd
, true);
1106 cookie
= (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_GL_DRAW_DONE
, 0);
1107 spice_qxl_gl_draw_async(&ssd
->qxl
, x
, y
, w
, h
, cookie
);
1110 static const DisplayChangeListenerOps display_listener_gl_ops
= {
1111 .dpy_name
= "spice-egl",
1112 .dpy_gfx_update
= spice_gl_update
,
1113 .dpy_gfx_switch
= spice_gl_switch
,
1114 .dpy_gfx_check_format
= console_gl_check_format
,
1115 .dpy_refresh
= spice_gl_refresh
,
1116 .dpy_mouse_set
= display_mouse_set
,
1117 .dpy_cursor_define
= display_mouse_define
,
1119 .dpy_gl_scanout_disable
= qemu_spice_gl_scanout_disable
,
1120 .dpy_gl_scanout_texture
= qemu_spice_gl_scanout_texture
,
1121 .dpy_gl_scanout_dmabuf
= qemu_spice_gl_scanout_dmabuf
,
1122 .dpy_gl_cursor_dmabuf
= qemu_spice_gl_cursor_dmabuf
,
1123 .dpy_gl_cursor_position
= qemu_spice_gl_cursor_position
,
1124 .dpy_gl_release_dmabuf
= qemu_spice_gl_release_dmabuf
,
1125 .dpy_gl_update
= qemu_spice_gl_update
,
1129 qemu_spice_is_compatible_dcl(DisplayGLCtx
*dgc
,
1130 DisplayChangeListener
*dcl
)
1132 return dcl
->ops
== &display_listener_gl_ops
;
1135 static const DisplayGLCtxOps gl_ctx_ops
= {
1136 .dpy_gl_ctx_is_compatible_dcl
= qemu_spice_is_compatible_dcl
,
1137 .dpy_gl_ctx_create
= qemu_spice_gl_create_context
,
1138 .dpy_gl_ctx_destroy
= qemu_egl_destroy_context
,
1139 .dpy_gl_ctx_make_current
= qemu_egl_make_context_current
,
1142 #endif /* HAVE_SPICE_GL */
1144 static void qemu_spice_display_init_one(QemuConsole
*con
)
1146 SimpleSpiceDisplay
*ssd
= g_new0(SimpleSpiceDisplay
, 1);
1148 qemu_spice_display_init_common(ssd
);
1150 ssd
->dcl
.ops
= &display_listener_ops
;
1151 #ifdef HAVE_SPICE_GL
1153 ssd
->dcl
.ops
= &display_listener_gl_ops
;
1154 ssd
->dgc
.ops
= &gl_ctx_ops
;
1155 ssd
->gl_unblock_bh
= qemu_bh_new(qemu_spice_gl_unblock_bh
, ssd
);
1156 ssd
->gl_unblock_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
1157 qemu_spice_gl_block_timer
, ssd
);
1158 ssd
->gls
= qemu_gl_init_shader();
1159 ssd
->have_surface
= false;
1160 ssd
->have_scanout
= false;
1165 ssd
->qxl
.base
.sif
= &dpy_interface
.base
;
1166 qemu_spice_add_display_interface(&ssd
->qxl
, con
);
1168 #if SPICE_SERVER_VERSION >= 0x000e02 /* release 0.14.2 */
1170 char device_address
[256] = "";
1171 if (qemu_console_fill_device_address(con
, device_address
, 256, &err
)) {
1172 spice_qxl_set_device_info(&ssd
->qxl
,
1174 qemu_console_get_head(con
),
1177 error_report_err(err
);
1181 qemu_spice_create_host_memslot(ssd
);
1184 qemu_console_set_display_gl_ctx(con
, &ssd
->dgc
);
1186 register_displaychangelistener(&ssd
->dcl
);
1189 void qemu_spice_display_init(void)
1191 QemuOptsList
*olist
= qemu_find_opts("spice");
1192 QemuOpts
*opts
= QTAILQ_FIRST(&olist
->head
);
1193 QemuConsole
*spice_con
, *con
;
1197 str
= qemu_opt_get(opts
, "display");
1199 int head
= qemu_opt_get_number(opts
, "head", 0);
1202 spice_con
= qemu_console_lookup_by_device_name(str
, head
, &err
);
1204 error_report("Failed to lookup display/head");
1212 con
= qemu_console_lookup_by_index(i
);
1213 if (!con
|| !qemu_console_is_graphic(con
)) {
1216 if (qemu_spice_have_display_interface(con
)) {
1219 if (spice_con
!= NULL
&& spice_con
!= con
) {
1222 qemu_spice_display_init_one(con
);
1225 qemu_spice_display_init_done();