]>
Commit | Line | Data |
---|---|---|
a3e22260 GH |
1 | /* |
2 | * Copyright (C) 2010 Red Hat, Inc. | |
3 | * | |
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. | |
8 | * | |
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. | |
13 | * | |
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/>. | |
16 | */ | |
17 | ||
a3e22260 | 18 | #include "qemu-common.h" |
28ecbaee | 19 | #include "ui/qemu-spice.h" |
1de7afc9 PB |
20 | #include "qemu/timer.h" |
21 | #include "qemu/queue.h" | |
83c9089e | 22 | #include "monitor/monitor.h" |
28ecbaee | 23 | #include "ui/console.h" |
9c17d615 | 24 | #include "sysemu/sysemu.h" |
c480bb7d | 25 | #include "trace.h" |
a3e22260 | 26 | |
28ecbaee | 27 | #include "ui/spice-display.h" |
a3e22260 GH |
28 | |
29 | static int debug = 0; | |
30 | ||
2c80e423 | 31 | static void GCC_FMT_ATTR(2, 3) dprint(int level, const char *fmt, ...) |
a3e22260 GH |
32 | { |
33 | va_list args; | |
34 | ||
35 | if (level <= debug) { | |
36 | va_start(args, fmt); | |
37 | vfprintf(stderr, fmt, args); | |
38 | va_end(args); | |
39 | } | |
40 | } | |
41 | ||
42 | int qemu_spice_rect_is_empty(const QXLRect* r) | |
43 | { | |
44 | return r->top == r->bottom || r->left == r->right; | |
45 | } | |
46 | ||
47 | void qemu_spice_rect_union(QXLRect *dest, const QXLRect *r) | |
48 | { | |
49 | if (qemu_spice_rect_is_empty(r)) { | |
50 | return; | |
51 | } | |
52 | ||
53 | if (qemu_spice_rect_is_empty(dest)) { | |
54 | *dest = *r; | |
55 | return; | |
56 | } | |
57 | ||
58 | dest->top = MIN(dest->top, r->top); | |
59 | dest->left = MIN(dest->left, r->left); | |
60 | dest->bottom = MAX(dest->bottom, r->bottom); | |
61 | dest->right = MAX(dest->right, r->right); | |
62 | } | |
63 | ||
2e1a98c9 AL |
64 | QXLCookie *qxl_cookie_new(int type, uint64_t io) |
65 | { | |
66 | QXLCookie *cookie; | |
67 | ||
68 | cookie = g_malloc0(sizeof(*cookie)); | |
69 | cookie->type = type; | |
70 | cookie->io = io; | |
71 | return cookie; | |
72 | } | |
73 | ||
5ff4e36c AL |
74 | void qemu_spice_add_memslot(SimpleSpiceDisplay *ssd, QXLDevMemSlot *memslot, |
75 | qxl_async_io async) | |
5c59d118 | 76 | { |
c480bb7d AL |
77 | trace_qemu_spice_add_memslot(ssd->qxl.id, memslot->slot_id, |
78 | memslot->virt_start, memslot->virt_end, | |
79 | async); | |
80 | ||
5ff4e36c | 81 | if (async != QXL_SYNC) { |
2e1a98c9 | 82 | spice_qxl_add_memslot_async(&ssd->qxl, memslot, |
34d14c6d PM |
83 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, |
84 | QXL_IO_MEMSLOT_ADD_ASYNC)); | |
5ff4e36c | 85 | } else { |
26defe81 | 86 | spice_qxl_add_memslot(&ssd->qxl, memslot); |
5ff4e36c | 87 | } |
5c59d118 GH |
88 | } |
89 | ||
90 | void qemu_spice_del_memslot(SimpleSpiceDisplay *ssd, uint32_t gid, uint32_t sid) | |
91 | { | |
c480bb7d | 92 | trace_qemu_spice_del_memslot(ssd->qxl.id, gid, sid); |
26defe81 | 93 | spice_qxl_del_memslot(&ssd->qxl, gid, sid); |
5c59d118 GH |
94 | } |
95 | ||
96 | void qemu_spice_create_primary_surface(SimpleSpiceDisplay *ssd, uint32_t id, | |
5ff4e36c AL |
97 | QXLDevSurfaceCreate *surface, |
98 | qxl_async_io async) | |
5c59d118 | 99 | { |
c480bb7d | 100 | trace_qemu_spice_create_primary_surface(ssd->qxl.id, id, surface, async); |
5ff4e36c | 101 | if (async != QXL_SYNC) { |
2e1a98c9 | 102 | spice_qxl_create_primary_surface_async(&ssd->qxl, id, surface, |
34d14c6d PM |
103 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, |
104 | QXL_IO_CREATE_PRIMARY_ASYNC)); | |
5ff4e36c | 105 | } else { |
26defe81 | 106 | spice_qxl_create_primary_surface(&ssd->qxl, id, surface); |
5ff4e36c | 107 | } |
5c59d118 GH |
108 | } |
109 | ||
5ff4e36c AL |
110 | void qemu_spice_destroy_primary_surface(SimpleSpiceDisplay *ssd, |
111 | uint32_t id, qxl_async_io async) | |
5c59d118 | 112 | { |
c480bb7d | 113 | trace_qemu_spice_destroy_primary_surface(ssd->qxl.id, id, async); |
5ff4e36c | 114 | if (async != QXL_SYNC) { |
2e1a98c9 | 115 | spice_qxl_destroy_primary_surface_async(&ssd->qxl, id, |
34d14c6d PM |
116 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, |
117 | QXL_IO_DESTROY_PRIMARY_ASYNC)); | |
5ff4e36c | 118 | } else { |
26defe81 | 119 | spice_qxl_destroy_primary_surface(&ssd->qxl, id); |
5ff4e36c | 120 | } |
5c59d118 GH |
121 | } |
122 | ||
5c59d118 GH |
123 | void qemu_spice_wakeup(SimpleSpiceDisplay *ssd) |
124 | { | |
c480bb7d | 125 | trace_qemu_spice_wakeup(ssd->qxl.id); |
26defe81 | 126 | spice_qxl_wakeup(&ssd->qxl); |
5c59d118 GH |
127 | } |
128 | ||
71d388d4 YH |
129 | static int spice_display_is_running; |
130 | ||
131 | void qemu_spice_display_start(void) | |
132 | { | |
133 | spice_display_is_running = true; | |
134 | } | |
135 | ||
136 | void qemu_spice_display_stop(void) | |
137 | { | |
138 | spice_display_is_running = false; | |
139 | } | |
140 | ||
71d388d4 YH |
141 | int qemu_spice_display_is_running(SimpleSpiceDisplay *ssd) |
142 | { | |
71d388d4 | 143 | return spice_display_is_running; |
71d388d4 YH |
144 | } |
145 | ||
c60319a3 GH |
146 | static void qemu_spice_create_one_update(SimpleSpiceDisplay *ssd, |
147 | QXLRect *rect) | |
a3e22260 GH |
148 | { |
149 | SimpleSpiceUpdate *update; | |
150 | QXLDrawable *drawable; | |
151 | QXLImage *image; | |
152 | QXLCommand *cmd; | |
d9a86569 | 153 | int bw, bh; |
22795174 | 154 | struct timespec time_space; |
d9a86569 | 155 | pixman_image_t *dest; |
a3e22260 | 156 | |
c480bb7d | 157 | trace_qemu_spice_create_update( |
c60319a3 GH |
158 | rect->left, rect->right, |
159 | rect->top, rect->bottom); | |
a3e22260 | 160 | |
7267c094 | 161 | update = g_malloc0(sizeof(*update)); |
a3e22260 GH |
162 | drawable = &update->drawable; |
163 | image = &update->image; | |
164 | cmd = &update->ext.cmd; | |
165 | ||
c60319a3 GH |
166 | bw = rect->right - rect->left; |
167 | bh = rect->bottom - rect->top; | |
7267c094 | 168 | update->bitmap = g_malloc(bw * bh * 4); |
a3e22260 | 169 | |
c60319a3 | 170 | drawable->bbox = *rect; |
a3e22260 GH |
171 | drawable->clip.type = SPICE_CLIP_TYPE_NONE; |
172 | drawable->effect = QXL_EFFECT_OPAQUE; | |
a13ccc99 | 173 | drawable->release_info.id = (uintptr_t)update; |
a3e22260 GH |
174 | drawable->type = QXL_DRAW_COPY; |
175 | drawable->surfaces_dest[0] = -1; | |
176 | drawable->surfaces_dest[1] = -1; | |
177 | drawable->surfaces_dest[2] = -1; | |
22795174 AL |
178 | clock_gettime(CLOCK_MONOTONIC, &time_space); |
179 | /* time in milliseconds from epoch. */ | |
180 | drawable->mm_time = time_space.tv_sec * 1000 | |
181 | + time_space.tv_nsec / 1000 / 1000; | |
a3e22260 GH |
182 | |
183 | drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT; | |
a13ccc99 | 184 | drawable->u.copy.src_bitmap = (uintptr_t)image; |
a3e22260 GH |
185 | drawable->u.copy.src_area.right = bw; |
186 | drawable->u.copy.src_area.bottom = bh; | |
187 | ||
188 | QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, ssd->unique++); | |
189 | image->descriptor.type = SPICE_IMAGE_TYPE_BITMAP; | |
190 | image->bitmap.flags = QXL_BITMAP_DIRECT | QXL_BITMAP_TOP_DOWN; | |
191 | image->bitmap.stride = bw * 4; | |
192 | image->descriptor.width = image->bitmap.x = bw; | |
193 | image->descriptor.height = image->bitmap.y = bh; | |
a13ccc99 | 194 | image->bitmap.data = (uintptr_t)(update->bitmap); |
a3e22260 GH |
195 | image->bitmap.palette = 0; |
196 | image->bitmap.format = SPICE_BITMAP_FMT_32BIT; | |
197 | ||
d9a86569 GH |
198 | dest = pixman_image_create_bits(PIXMAN_x8r8g8b8, bw, bh, |
199 | (void *)update->bitmap, bw * 4); | |
200 | pixman_image_composite(PIXMAN_OP_SRC, ssd->surface, NULL, ssd->mirror, | |
201 | rect->left, rect->top, 0, 0, | |
202 | rect->left, rect->top, bw, bh); | |
203 | pixman_image_composite(PIXMAN_OP_SRC, ssd->mirror, NULL, dest, | |
204 | rect->left, rect->top, 0, 0, | |
205 | 0, 0, bw, bh); | |
206 | pixman_image_unref(dest); | |
a3e22260 GH |
207 | |
208 | cmd->type = QXL_CMD_DRAW; | |
a13ccc99 | 209 | cmd->data = (uintptr_t)drawable; |
a3e22260 | 210 | |
b1af98ba | 211 | QTAILQ_INSERT_TAIL(&ssd->updates, update, next); |
a3e22260 GH |
212 | } |
213 | ||
c60319a3 GH |
214 | static void qemu_spice_create_update(SimpleSpiceDisplay *ssd) |
215 | { | |
b021bd29 | 216 | static const int blksize = 32; |
71874c17 | 217 | int blocks = (surface_width(ssd->ds) + blksize - 1) / blksize; |
b021bd29 GH |
218 | int dirty_top[blocks]; |
219 | int y, yoff, x, xoff, blk, bw; | |
71874c17 | 220 | int bpp = surface_bytes_per_pixel(ssd->ds); |
b021bd29 GH |
221 | uint8_t *guest, *mirror; |
222 | ||
c60319a3 GH |
223 | if (qemu_spice_rect_is_empty(&ssd->dirty)) { |
224 | return; | |
225 | }; | |
a7310dd3 | 226 | |
d9a86569 | 227 | if (ssd->surface == NULL) { |
71874c17 GH |
228 | ssd->surface = pixman_image_ref(ssd->ds->image); |
229 | ssd->mirror = qemu_pixman_mirror_create(ssd->ds->format, | |
230 | ssd->ds->image); | |
a7310dd3 GH |
231 | } |
232 | ||
b021bd29 GH |
233 | for (blk = 0; blk < blocks; blk++) { |
234 | dirty_top[blk] = -1; | |
235 | } | |
236 | ||
71874c17 | 237 | guest = surface_data(ssd->ds); |
d9a86569 | 238 | mirror = (void *)pixman_image_get_data(ssd->mirror); |
b021bd29 | 239 | for (y = ssd->dirty.top; y < ssd->dirty.bottom; y++) { |
71874c17 | 240 | yoff = y * surface_stride(ssd->ds); |
b021bd29 GH |
241 | for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { |
242 | xoff = x * bpp; | |
243 | blk = x / blksize; | |
244 | bw = MIN(blksize, ssd->dirty.right - x); | |
245 | if (memcmp(guest + yoff + xoff, | |
246 | mirror + yoff + xoff, | |
247 | bw * bpp) == 0) { | |
248 | if (dirty_top[blk] != -1) { | |
249 | QXLRect update = { | |
250 | .top = dirty_top[blk], | |
251 | .bottom = y, | |
252 | .left = x, | |
253 | .right = x + bw, | |
254 | }; | |
255 | qemu_spice_create_one_update(ssd, &update); | |
256 | dirty_top[blk] = -1; | |
257 | } | |
258 | } else { | |
259 | if (dirty_top[blk] == -1) { | |
260 | dirty_top[blk] = y; | |
261 | } | |
262 | } | |
263 | } | |
264 | } | |
265 | ||
266 | for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { | |
267 | blk = x / blksize; | |
268 | bw = MIN(blksize, ssd->dirty.right - x); | |
269 | if (dirty_top[blk] != -1) { | |
270 | QXLRect update = { | |
271 | .top = dirty_top[blk], | |
272 | .bottom = ssd->dirty.bottom, | |
273 | .left = x, | |
274 | .right = x + bw, | |
275 | }; | |
276 | qemu_spice_create_one_update(ssd, &update); | |
277 | dirty_top[blk] = -1; | |
278 | } | |
279 | } | |
280 | ||
c60319a3 GH |
281 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); |
282 | } | |
283 | ||
a3e22260 | 284 | /* |
4580c490 | 285 | * Called from spice server thread context (via interface_release_resource) |
a3e22260 | 286 | * We do *not* hold the global qemu mutex here, so extra care is needed |
5cbdb3a3 | 287 | * when calling qemu functions. QEMU interfaces used: |
7267c094 | 288 | * - g_free (underlying glibc free is re-entrant). |
a3e22260 GH |
289 | */ |
290 | void qemu_spice_destroy_update(SimpleSpiceDisplay *sdpy, SimpleSpiceUpdate *update) | |
291 | { | |
7267c094 AL |
292 | g_free(update->bitmap); |
293 | g_free(update); | |
a3e22260 GH |
294 | } |
295 | ||
296 | void qemu_spice_create_host_memslot(SimpleSpiceDisplay *ssd) | |
297 | { | |
298 | QXLDevMemSlot memslot; | |
299 | ||
35b2122d | 300 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); |
a3e22260 GH |
301 | |
302 | memset(&memslot, 0, sizeof(memslot)); | |
303 | memslot.slot_group_id = MEMSLOT_GROUP_HOST; | |
304 | memslot.virt_end = ~0; | |
5ff4e36c | 305 | qemu_spice_add_memslot(ssd, &memslot, QXL_SYNC); |
a3e22260 GH |
306 | } |
307 | ||
308 | void qemu_spice_create_host_primary(SimpleSpiceDisplay *ssd) | |
309 | { | |
310 | QXLDevSurfaceCreate surface; | |
311 | ||
160c31f7 AL |
312 | memset(&surface, 0, sizeof(surface)); |
313 | ||
35b2122d | 314 | dprint(1, "%s/%d: %dx%d\n", __func__, ssd->qxl.id, |
71874c17 | 315 | surface_width(ssd->ds), surface_height(ssd->ds)); |
a3e22260 GH |
316 | |
317 | surface.format = SPICE_SURFACE_FMT_32_xRGB; | |
71874c17 GH |
318 | surface.width = surface_width(ssd->ds); |
319 | surface.height = surface_height(ssd->ds); | |
a3e22260 | 320 | surface.stride = -surface.width * 4; |
869564a9 | 321 | surface.mouse_mode = true; |
a3e22260 GH |
322 | surface.flags = 0; |
323 | surface.type = 0; | |
a13ccc99 | 324 | surface.mem = (uintptr_t)ssd->buf; |
a3e22260 | 325 | surface.group_id = MEMSLOT_GROUP_HOST; |
7466bc49 | 326 | |
5ff4e36c | 327 | qemu_spice_create_primary_surface(ssd, 0, &surface, QXL_SYNC); |
a3e22260 GH |
328 | } |
329 | ||
330 | void qemu_spice_destroy_host_primary(SimpleSpiceDisplay *ssd) | |
331 | { | |
35b2122d | 332 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); |
a3e22260 | 333 | |
5ff4e36c | 334 | qemu_spice_destroy_primary_surface(ssd, 0, QXL_SYNC); |
a3e22260 GH |
335 | } |
336 | ||
c78f7137 | 337 | void qemu_spice_display_init_common(SimpleSpiceDisplay *ssd) |
a963f876 | 338 | { |
a963f876 | 339 | qemu_mutex_init(&ssd->lock); |
b1af98ba | 340 | QTAILQ_INIT(&ssd->updates); |
a963f876 GH |
341 | ssd->mouse_x = -1; |
342 | ssd->mouse_y = -1; | |
ddd8fdc7 GH |
343 | if (ssd->num_surfaces == 0) { |
344 | ssd->num_surfaces = 1024; | |
345 | } | |
a963f876 | 346 | ssd->bufsize = (16 * 1024 * 1024); |
7267c094 | 347 | ssd->buf = g_malloc(ssd->bufsize); |
a963f876 GH |
348 | } |
349 | ||
a3e22260 GH |
350 | /* display listener callbacks */ |
351 | ||
352 | void qemu_spice_display_update(SimpleSpiceDisplay *ssd, | |
353 | int x, int y, int w, int h) | |
354 | { | |
355 | QXLRect update_area; | |
356 | ||
35b2122d GH |
357 | dprint(2, "%s/%d: x %d y %d w %d h %d\n", __func__, |
358 | ssd->qxl.id, x, y, w, h); | |
a3e22260 GH |
359 | update_area.left = x, |
360 | update_area.right = x + w; | |
361 | update_area.top = y; | |
362 | update_area.bottom = y + h; | |
363 | ||
a3e22260 GH |
364 | if (qemu_spice_rect_is_empty(&ssd->dirty)) { |
365 | ssd->notify++; | |
366 | } | |
367 | qemu_spice_rect_union(&ssd->dirty, &update_area); | |
a3e22260 GH |
368 | } |
369 | ||
c12aeb86 GH |
370 | void qemu_spice_display_switch(SimpleSpiceDisplay *ssd, |
371 | DisplaySurface *surface) | |
a3e22260 | 372 | { |
b1af98ba GH |
373 | SimpleSpiceUpdate *update; |
374 | ||
35b2122d | 375 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); |
a3e22260 | 376 | |
a3e22260 | 377 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); |
d9a86569 GH |
378 | if (ssd->surface) { |
379 | pixman_image_unref(ssd->surface); | |
380 | ssd->surface = NULL; | |
381 | pixman_image_unref(ssd->mirror); | |
382 | ssd->mirror = NULL; | |
383 | } | |
a3e22260 | 384 | |
e0c64d08 | 385 | qemu_mutex_lock(&ssd->lock); |
71874c17 | 386 | ssd->ds = surface; |
b1af98ba GH |
387 | while ((update = QTAILQ_FIRST(&ssd->updates)) != NULL) { |
388 | QTAILQ_REMOVE(&ssd->updates, update, next); | |
389 | qemu_spice_destroy_update(ssd, update); | |
e0c64d08 GH |
390 | } |
391 | qemu_mutex_unlock(&ssd->lock); | |
a3e22260 GH |
392 | qemu_spice_destroy_host_primary(ssd); |
393 | qemu_spice_create_host_primary(ssd); | |
394 | ||
a3e22260 GH |
395 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); |
396 | ssd->notify++; | |
a3e22260 GH |
397 | } |
398 | ||
bb5a8cd5 | 399 | void qemu_spice_cursor_refresh_unlocked(SimpleSpiceDisplay *ssd) |
a3e22260 | 400 | { |
07536094 | 401 | if (ssd->cursor) { |
284d1c6b GH |
402 | assert(ssd->dcl.con); |
403 | dpy_cursor_define(ssd->dcl.con, ssd->cursor); | |
07536094 GH |
404 | cursor_put(ssd->cursor); |
405 | ssd->cursor = NULL; | |
406 | } | |
407 | if (ssd->mouse_x != -1 && ssd->mouse_y != -1) { | |
284d1c6b GH |
408 | assert(ssd->dcl.con); |
409 | dpy_mouse_set(ssd->dcl.con, ssd->mouse_x, ssd->mouse_y, 1); | |
07536094 GH |
410 | ssd->mouse_x = -1; |
411 | ssd->mouse_y = -1; | |
412 | } | |
bb5a8cd5 AL |
413 | } |
414 | ||
415 | void qemu_spice_display_refresh(SimpleSpiceDisplay *ssd) | |
416 | { | |
35b2122d | 417 | dprint(3, "%s/%d:\n", __func__, ssd->qxl.id); |
284d1c6b | 418 | graphic_hw_update(ssd->dcl.con); |
bb5a8cd5 AL |
419 | |
420 | qemu_mutex_lock(&ssd->lock); | |
71874c17 | 421 | if (QTAILQ_EMPTY(&ssd->updates) && ssd->ds) { |
b1af98ba | 422 | qemu_spice_create_update(ssd); |
bb5a8cd5 AL |
423 | ssd->notify++; |
424 | } | |
425 | qemu_spice_cursor_refresh_unlocked(ssd); | |
e0c64d08 GH |
426 | qemu_mutex_unlock(&ssd->lock); |
427 | ||
a3e22260 GH |
428 | if (ssd->notify) { |
429 | ssd->notify = 0; | |
5c59d118 | 430 | qemu_spice_wakeup(ssd); |
35b2122d | 431 | dprint(2, "%s/%d: notify\n", __func__, ssd->qxl.id); |
a3e22260 GH |
432 | } |
433 | } | |
434 | ||
435 | /* spice display interface callbacks */ | |
436 | ||
437 | static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker) | |
438 | { | |
439 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
440 | ||
35b2122d | 441 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); |
a3e22260 GH |
442 | ssd->worker = qxl_worker; |
443 | } | |
444 | ||
445 | static void interface_set_compression_level(QXLInstance *sin, int level) | |
446 | { | |
35b2122d | 447 | dprint(1, "%s/%d:\n", __func__, sin->id); |
a3e22260 GH |
448 | /* nothing to do */ |
449 | } | |
450 | ||
451 | static void interface_set_mm_time(QXLInstance *sin, uint32_t mm_time) | |
452 | { | |
35b2122d | 453 | dprint(3, "%s/%d:\n", __func__, sin->id); |
a3e22260 GH |
454 | /* nothing to do */ |
455 | } | |
456 | ||
457 | static void interface_get_init_info(QXLInstance *sin, QXLDevInitInfo *info) | |
458 | { | |
459 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
460 | ||
461 | info->memslot_gen_bits = MEMSLOT_GENERATION_BITS; | |
462 | info->memslot_id_bits = MEMSLOT_SLOT_BITS; | |
463 | info->num_memslots = NUM_MEMSLOTS; | |
464 | info->num_memslots_groups = NUM_MEMSLOTS_GROUPS; | |
465 | info->internal_groupslot_id = 0; | |
466 | info->qxl_ram_size = ssd->bufsize; | |
ddd8fdc7 | 467 | info->n_surfaces = ssd->num_surfaces; |
a3e22260 GH |
468 | } |
469 | ||
470 | static int interface_get_command(QXLInstance *sin, struct QXLCommandExt *ext) | |
471 | { | |
472 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
473 | SimpleSpiceUpdate *update; | |
e0c64d08 | 474 | int ret = false; |
a3e22260 | 475 | |
35b2122d | 476 | dprint(3, "%s/%d:\n", __func__, ssd->qxl.id); |
e0c64d08 GH |
477 | |
478 | qemu_mutex_lock(&ssd->lock); | |
b1af98ba GH |
479 | update = QTAILQ_FIRST(&ssd->updates); |
480 | if (update != NULL) { | |
481 | QTAILQ_REMOVE(&ssd->updates, update, next); | |
e0c64d08 GH |
482 | *ext = update->ext; |
483 | ret = true; | |
a3e22260 | 484 | } |
e0c64d08 GH |
485 | qemu_mutex_unlock(&ssd->lock); |
486 | ||
487 | return ret; | |
a3e22260 GH |
488 | } |
489 | ||
490 | static int interface_req_cmd_notification(QXLInstance *sin) | |
491 | { | |
35b2122d | 492 | dprint(1, "%s/%d:\n", __func__, sin->id); |
a3e22260 GH |
493 | return 1; |
494 | } | |
495 | ||
496 | static void interface_release_resource(QXLInstance *sin, | |
497 | struct QXLReleaseInfoExt ext) | |
498 | { | |
499 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
500 | uintptr_t id; | |
501 | ||
35b2122d | 502 | dprint(2, "%s/%d:\n", __func__, ssd->qxl.id); |
a3e22260 GH |
503 | id = ext.info->id; |
504 | qemu_spice_destroy_update(ssd, (void*)id); | |
505 | } | |
506 | ||
507 | static int interface_get_cursor_command(QXLInstance *sin, struct QXLCommandExt *ext) | |
508 | { | |
509 | dprint(3, "%s:\n", __FUNCTION__); | |
510 | return false; | |
511 | } | |
512 | ||
513 | static int interface_req_cursor_notification(QXLInstance *sin) | |
514 | { | |
515 | dprint(1, "%s:\n", __FUNCTION__); | |
516 | return 1; | |
517 | } | |
518 | ||
519 | static void interface_notify_update(QXLInstance *sin, uint32_t update_id) | |
520 | { | |
521 | fprintf(stderr, "%s: abort()\n", __FUNCTION__); | |
522 | abort(); | |
523 | } | |
524 | ||
525 | static int interface_flush_resources(QXLInstance *sin) | |
526 | { | |
527 | fprintf(stderr, "%s: abort()\n", __FUNCTION__); | |
528 | abort(); | |
529 | return 0; | |
530 | } | |
531 | ||
21a50d0b GH |
532 | static void interface_update_area_complete(QXLInstance *sin, |
533 | uint32_t surface_id, | |
534 | QXLRect *dirty, uint32_t num_updated_rects) | |
535 | { | |
536 | /* should never be called, used in qxl native mode only */ | |
537 | fprintf(stderr, "%s: abort()\n", __func__); | |
538 | abort(); | |
539 | } | |
540 | ||
541 | /* called from spice server thread context only */ | |
542 | static void interface_async_complete(QXLInstance *sin, uint64_t cookie_token) | |
543 | { | |
544 | /* should never be called, used in qxl native mode only */ | |
545 | fprintf(stderr, "%s: abort()\n", __func__); | |
546 | abort(); | |
547 | } | |
548 | ||
549 | static void interface_set_client_capabilities(QXLInstance *sin, | |
550 | uint8_t client_present, | |
551 | uint8_t caps[58]) | |
552 | { | |
553 | dprint(3, "%s:\n", __func__); | |
554 | } | |
555 | ||
556 | static int interface_client_monitors_config(QXLInstance *sin, | |
557 | VDAgentMonitorsConfig *monitors_config) | |
558 | { | |
559 | dprint(3, "%s:\n", __func__); | |
560 | return 0; /* == not supported by guest */ | |
561 | } | |
562 | ||
a3e22260 GH |
563 | static const QXLInterface dpy_interface = { |
564 | .base.type = SPICE_INTERFACE_QXL, | |
565 | .base.description = "qemu simple display", | |
566 | .base.major_version = SPICE_INTERFACE_QXL_MAJOR, | |
567 | .base.minor_version = SPICE_INTERFACE_QXL_MINOR, | |
568 | ||
569 | .attache_worker = interface_attach_worker, | |
570 | .set_compression_level = interface_set_compression_level, | |
571 | .set_mm_time = interface_set_mm_time, | |
572 | .get_init_info = interface_get_init_info, | |
573 | ||
574 | /* the callbacks below are called from spice server thread context */ | |
575 | .get_command = interface_get_command, | |
576 | .req_cmd_notification = interface_req_cmd_notification, | |
577 | .release_resource = interface_release_resource, | |
578 | .get_cursor_command = interface_get_cursor_command, | |
579 | .req_cursor_notification = interface_req_cursor_notification, | |
580 | .notify_update = interface_notify_update, | |
581 | .flush_resources = interface_flush_resources, | |
21a50d0b GH |
582 | .async_complete = interface_async_complete, |
583 | .update_area_complete = interface_update_area_complete, | |
584 | .set_client_capabilities = interface_set_client_capabilities, | |
585 | .client_monitors_config = interface_client_monitors_config, | |
a3e22260 GH |
586 | }; |
587 | ||
7c20b4a3 | 588 | static void display_update(DisplayChangeListener *dcl, |
7c20b4a3 | 589 | int x, int y, int w, int h) |
a3e22260 | 590 | { |
9c80a315 GH |
591 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); |
592 | qemu_spice_display_update(ssd, x, y, w, h); | |
a3e22260 GH |
593 | } |
594 | ||
c12aeb86 | 595 | static void display_switch(DisplayChangeListener *dcl, |
c12aeb86 | 596 | struct DisplaySurface *surface) |
a3e22260 | 597 | { |
9c80a315 | 598 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); |
c12aeb86 | 599 | qemu_spice_display_switch(ssd, surface); |
a3e22260 GH |
600 | } |
601 | ||
bc2ed970 | 602 | static void display_refresh(DisplayChangeListener *dcl) |
a3e22260 | 603 | { |
9c80a315 GH |
604 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); |
605 | qemu_spice_display_refresh(ssd); | |
a3e22260 GH |
606 | } |
607 | ||
7c20b4a3 GH |
608 | static const DisplayChangeListenerOps display_listener_ops = { |
609 | .dpy_name = "spice", | |
a93a4a22 | 610 | .dpy_gfx_update = display_update, |
c12aeb86 | 611 | .dpy_gfx_switch = display_switch, |
7c20b4a3 | 612 | .dpy_refresh = display_refresh, |
a3e22260 GH |
613 | }; |
614 | ||
9fa03286 | 615 | static void qemu_spice_display_init_one(QemuConsole *con) |
a3e22260 | 616 | { |
9c80a315 GH |
617 | SimpleSpiceDisplay *ssd = g_new0(SimpleSpiceDisplay, 1); |
618 | ||
c78f7137 | 619 | qemu_spice_display_init_common(ssd); |
a3e22260 | 620 | |
9c80a315 | 621 | ssd->qxl.base.sif = &dpy_interface.base; |
9fa03286 | 622 | qemu_spice_add_display_interface(&ssd->qxl, con); |
9c80a315 | 623 | assert(ssd->worker); |
a3e22260 | 624 | |
9c80a315 | 625 | qemu_spice_create_host_memslot(ssd); |
7c20b4a3 | 626 | |
9c80a315 | 627 | ssd->dcl.ops = &display_listener_ops; |
9fa03286 | 628 | ssd->dcl.con = con; |
5209089f | 629 | register_displaychangelistener(&ssd->dcl); |
71874c17 GH |
630 | |
631 | qemu_spice_create_host_primary(ssd); | |
a3e22260 | 632 | } |
9fa03286 GH |
633 | |
634 | void qemu_spice_display_init(void) | |
635 | { | |
636 | QemuConsole *con; | |
637 | int i; | |
638 | ||
639 | for (i = 0;; i++) { | |
640 | con = qemu_console_lookup_by_index(i); | |
641 | if (!con || !qemu_console_is_graphic(con)) { | |
642 | break; | |
643 | } | |
644 | if (qemu_spice_have_display_interface(con)) { | |
645 | continue; | |
646 | } | |
647 | qemu_spice_display_init_one(con); | |
648 | } | |
649 | } |