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/>.
20 #include "qemu-common.h"
21 #include "qemu-spice.h"
22 #include "qemu-timer.h"
23 #include "qemu-queue.h"
28 #include "spice-display.h"
32 static void GCC_FMT_ATTR(2, 3) dprint(int level
, const char *fmt
, ...)
38 vfprintf(stderr
, fmt
, args
);
43 int qemu_spice_rect_is_empty(const QXLRect
* r
)
45 return r
->top
== r
->bottom
|| r
->left
== r
->right
;
48 void qemu_spice_rect_union(QXLRect
*dest
, const QXLRect
*r
)
50 if (qemu_spice_rect_is_empty(r
)) {
54 if (qemu_spice_rect_is_empty(dest
)) {
59 dest
->top
= MIN(dest
->top
, r
->top
);
60 dest
->left
= MIN(dest
->left
, r
->left
);
61 dest
->bottom
= MAX(dest
->bottom
, r
->bottom
);
62 dest
->right
= MAX(dest
->right
, r
->right
);
66 * Called from spice server thread context (via interface_get_command).
67 * We do *not* hold the global qemu mutex here, so extra care is needed
68 * when calling qemu functions. Qemu interfaces used:
69 * - pflib (is re-entrant).
70 * - qemu_malloc (underlying glibc malloc is re-entrant).
72 SimpleSpiceUpdate
*qemu_spice_create_update(SimpleSpiceDisplay
*ssd
)
74 SimpleSpiceUpdate
*update
;
75 QXLDrawable
*drawable
;
81 if (qemu_spice_rect_is_empty(&ssd
->dirty
)) {
85 pthread_mutex_lock(&ssd
->lock
);
86 dprint(2, "%s: lr %d -> %d, tb -> %d -> %d\n", __FUNCTION__
,
87 ssd
->dirty
.left
, ssd
->dirty
.right
,
88 ssd
->dirty
.top
, ssd
->dirty
.bottom
);
90 update
= qemu_mallocz(sizeof(*update
));
91 drawable
= &update
->drawable
;
92 image
= &update
->image
;
93 cmd
= &update
->ext
.cmd
;
95 bw
= ssd
->dirty
.right
- ssd
->dirty
.left
;
96 bh
= ssd
->dirty
.bottom
- ssd
->dirty
.top
;
97 update
->bitmap
= qemu_malloc(bw
* bh
* 4);
99 drawable
->bbox
= ssd
->dirty
;
100 drawable
->clip
.type
= SPICE_CLIP_TYPE_NONE
;
101 drawable
->effect
= QXL_EFFECT_OPAQUE
;
102 drawable
->release_info
.id
= (intptr_t)update
;
103 drawable
->type
= QXL_DRAW_COPY
;
104 drawable
->surfaces_dest
[0] = -1;
105 drawable
->surfaces_dest
[1] = -1;
106 drawable
->surfaces_dest
[2] = -1;
108 drawable
->u
.copy
.rop_descriptor
= SPICE_ROPD_OP_PUT
;
109 drawable
->u
.copy
.src_bitmap
= (intptr_t)image
;
110 drawable
->u
.copy
.src_area
.right
= bw
;
111 drawable
->u
.copy
.src_area
.bottom
= bh
;
113 QXL_SET_IMAGE_ID(image
, QXL_IMAGE_GROUP_DEVICE
, ssd
->unique
++);
114 image
->descriptor
.type
= SPICE_IMAGE_TYPE_BITMAP
;
115 image
->bitmap
.flags
= QXL_BITMAP_DIRECT
| QXL_BITMAP_TOP_DOWN
;
116 image
->bitmap
.stride
= bw
* 4;
117 image
->descriptor
.width
= image
->bitmap
.x
= bw
;
118 image
->descriptor
.height
= image
->bitmap
.y
= bh
;
119 image
->bitmap
.data
= (intptr_t)(update
->bitmap
);
120 image
->bitmap
.palette
= 0;
121 image
->bitmap
.format
= SPICE_BITMAP_FMT_32BIT
;
123 if (ssd
->conv
== NULL
) {
124 PixelFormat dst
= qemu_default_pixelformat(32);
125 ssd
->conv
= qemu_pf_conv_get(&dst
, &ssd
->ds
->surface
->pf
);
129 src
= ds_get_data(ssd
->ds
) +
130 ssd
->dirty
.top
* ds_get_linesize(ssd
->ds
) +
131 ssd
->dirty
.left
* ds_get_bytes_per_pixel(ssd
->ds
);
132 dst
= update
->bitmap
;
133 for (by
= 0; by
< bh
; by
++) {
134 qemu_pf_conv_run(ssd
->conv
, dst
, src
, bw
);
135 src
+= ds_get_linesize(ssd
->ds
);
136 dst
+= image
->bitmap
.stride
;
139 cmd
->type
= QXL_CMD_DRAW
;
140 cmd
->data
= (intptr_t)drawable
;
142 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
143 pthread_mutex_unlock(&ssd
->lock
);
148 * Called from spice server thread context (via interface_release_ressource)
149 * We do *not* hold the global qemu mutex here, so extra care is needed
150 * when calling qemu functions. Qemu interfaces used:
151 * - qemu_free (underlying glibc free is re-entrant).
153 void qemu_spice_destroy_update(SimpleSpiceDisplay
*sdpy
, SimpleSpiceUpdate
*update
)
155 qemu_free(update
->bitmap
);
159 void qemu_spice_create_host_memslot(SimpleSpiceDisplay
*ssd
)
161 QXLDevMemSlot memslot
;
163 dprint(1, "%s:\n", __FUNCTION__
);
165 memset(&memslot
, 0, sizeof(memslot
));
166 memslot
.slot_group_id
= MEMSLOT_GROUP_HOST
;
167 memslot
.virt_end
= ~0;
168 ssd
->worker
->add_memslot(ssd
->worker
, &memslot
);
171 void qemu_spice_create_host_primary(SimpleSpiceDisplay
*ssd
)
173 QXLDevSurfaceCreate surface
;
175 dprint(1, "%s: %dx%d\n", __FUNCTION__
,
176 ds_get_width(ssd
->ds
), ds_get_height(ssd
->ds
));
178 surface
.format
= SPICE_SURFACE_FMT_32_xRGB
;
179 surface
.width
= ds_get_width(ssd
->ds
);
180 surface
.height
= ds_get_height(ssd
->ds
);
181 surface
.stride
= -surface
.width
* 4;
182 surface
.mouse_mode
= true;
185 surface
.mem
= (intptr_t)ssd
->buf
;
186 surface
.group_id
= MEMSLOT_GROUP_HOST
;
187 ssd
->worker
->create_primary_surface(ssd
->worker
, 0, &surface
);
190 void qemu_spice_destroy_host_primary(SimpleSpiceDisplay
*ssd
)
192 dprint(1, "%s:\n", __FUNCTION__
);
194 ssd
->worker
->destroy_primary_surface(ssd
->worker
, 0);
197 void qemu_spice_vm_change_state_handler(void *opaque
, int running
, int reason
)
199 SimpleSpiceDisplay
*ssd
= opaque
;
202 ssd
->worker
->start(ssd
->worker
);
204 ssd
->worker
->stop(ssd
->worker
);
206 ssd
->running
= running
;
209 /* display listener callbacks */
211 void qemu_spice_display_update(SimpleSpiceDisplay
*ssd
,
212 int x
, int y
, int w
, int h
)
216 dprint(2, "%s: x %d y %d w %d h %d\n", __FUNCTION__
, x
, y
, w
, h
);
217 update_area
.left
= x
,
218 update_area
.right
= x
+ w
;
220 update_area
.bottom
= y
+ h
;
222 pthread_mutex_lock(&ssd
->lock
);
223 if (qemu_spice_rect_is_empty(&ssd
->dirty
)) {
226 qemu_spice_rect_union(&ssd
->dirty
, &update_area
);
227 pthread_mutex_unlock(&ssd
->lock
);
230 void qemu_spice_display_resize(SimpleSpiceDisplay
*ssd
)
232 dprint(1, "%s:\n", __FUNCTION__
);
234 pthread_mutex_lock(&ssd
->lock
);
235 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
236 qemu_pf_conv_put(ssd
->conv
);
238 pthread_mutex_unlock(&ssd
->lock
);
240 qemu_spice_destroy_host_primary(ssd
);
241 qemu_spice_create_host_primary(ssd
);
243 pthread_mutex_lock(&ssd
->lock
);
244 memset(&ssd
->dirty
, 0, sizeof(ssd
->dirty
));
246 pthread_mutex_unlock(&ssd
->lock
);
249 void qemu_spice_display_refresh(SimpleSpiceDisplay
*ssd
)
251 dprint(3, "%s:\n", __FUNCTION__
);
255 ssd
->worker
->wakeup(ssd
->worker
);
256 dprint(2, "%s: notify\n", __FUNCTION__
);
260 /* spice display interface callbacks */
262 static void interface_attach_worker(QXLInstance
*sin
, QXLWorker
*qxl_worker
)
264 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
266 dprint(1, "%s:\n", __FUNCTION__
);
267 ssd
->worker
= qxl_worker
;
270 static void interface_set_compression_level(QXLInstance
*sin
, int level
)
272 dprint(1, "%s:\n", __FUNCTION__
);
276 static void interface_set_mm_time(QXLInstance
*sin
, uint32_t mm_time
)
278 dprint(3, "%s:\n", __FUNCTION__
);
282 static void interface_get_init_info(QXLInstance
*sin
, QXLDevInitInfo
*info
)
284 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
286 info
->memslot_gen_bits
= MEMSLOT_GENERATION_BITS
;
287 info
->memslot_id_bits
= MEMSLOT_SLOT_BITS
;
288 info
->num_memslots
= NUM_MEMSLOTS
;
289 info
->num_memslots_groups
= NUM_MEMSLOTS_GROUPS
;
290 info
->internal_groupslot_id
= 0;
291 info
->qxl_ram_size
= ssd
->bufsize
;
292 info
->n_surfaces
= NUM_SURFACES
;
295 static int interface_get_command(QXLInstance
*sin
, struct QXLCommandExt
*ext
)
297 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
298 SimpleSpiceUpdate
*update
;
300 dprint(3, "%s:\n", __FUNCTION__
);
301 update
= qemu_spice_create_update(ssd
);
302 if (update
== NULL
) {
309 static int interface_req_cmd_notification(QXLInstance
*sin
)
311 dprint(1, "%s:\n", __FUNCTION__
);
315 static void interface_release_resource(QXLInstance
*sin
,
316 struct QXLReleaseInfoExt ext
)
318 SimpleSpiceDisplay
*ssd
= container_of(sin
, SimpleSpiceDisplay
, qxl
);
321 dprint(2, "%s:\n", __FUNCTION__
);
323 qemu_spice_destroy_update(ssd
, (void*)id
);
326 static int interface_get_cursor_command(QXLInstance
*sin
, struct QXLCommandExt
*ext
)
328 dprint(3, "%s:\n", __FUNCTION__
);
332 static int interface_req_cursor_notification(QXLInstance
*sin
)
334 dprint(1, "%s:\n", __FUNCTION__
);
338 static void interface_notify_update(QXLInstance
*sin
, uint32_t update_id
)
340 fprintf(stderr
, "%s: abort()\n", __FUNCTION__
);
344 static int interface_flush_resources(QXLInstance
*sin
)
346 fprintf(stderr
, "%s: abort()\n", __FUNCTION__
);
351 static const QXLInterface dpy_interface
= {
352 .base
.type
= SPICE_INTERFACE_QXL
,
353 .base
.description
= "qemu simple display",
354 .base
.major_version
= SPICE_INTERFACE_QXL_MAJOR
,
355 .base
.minor_version
= SPICE_INTERFACE_QXL_MINOR
,
357 .attache_worker
= interface_attach_worker
,
358 .set_compression_level
= interface_set_compression_level
,
359 .set_mm_time
= interface_set_mm_time
,
360 .get_init_info
= interface_get_init_info
,
362 /* the callbacks below are called from spice server thread context */
363 .get_command
= interface_get_command
,
364 .req_cmd_notification
= interface_req_cmd_notification
,
365 .release_resource
= interface_release_resource
,
366 .get_cursor_command
= interface_get_cursor_command
,
367 .req_cursor_notification
= interface_req_cursor_notification
,
368 .notify_update
= interface_notify_update
,
369 .flush_resources
= interface_flush_resources
,
372 static SimpleSpiceDisplay sdpy
;
374 static void display_update(struct DisplayState
*ds
, int x
, int y
, int w
, int h
)
376 qemu_spice_display_update(&sdpy
, x
, y
, w
, h
);
379 static void display_resize(struct DisplayState
*ds
)
381 qemu_spice_display_resize(&sdpy
);
384 static void display_refresh(struct DisplayState
*ds
)
386 qemu_spice_display_refresh(&sdpy
);
389 static DisplayChangeListener display_listener
= {
390 .dpy_update
= display_update
,
391 .dpy_resize
= display_resize
,
392 .dpy_refresh
= display_refresh
,
395 void qemu_spice_display_init(DisplayState
*ds
)
397 assert(sdpy
.ds
== NULL
);
399 sdpy
.bufsize
= (16 * 1024 * 1024);
400 sdpy
.buf
= qemu_malloc(sdpy
.bufsize
);
401 pthread_mutex_init(&sdpy
.lock
, NULL
);
402 register_displaychangelistener(ds
, &display_listener
);
404 sdpy
.qxl
.base
.sif
= &dpy_interface
.base
;
405 qemu_spice_add_interface(&sdpy
.qxl
.base
);
408 qemu_add_vm_change_state_handler(qemu_spice_vm_change_state_handler
, &sdpy
);
409 qemu_spice_create_host_memslot(&sdpy
);
410 qemu_spice_create_host_primary(&sdpy
);