scsi-disk: Remove duplicate cdb parsing
[qemu/ar7.git] / ui / spice-display.c
blob020b423bd6bcce8961a8c5c427ee420690f8cb6e
1 /*
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 <pthread.h>
20 #include "qemu-common.h"
21 #include "qemu-spice.h"
22 #include "qemu-timer.h"
23 #include "qemu-queue.h"
24 #include "monitor.h"
25 #include "console.h"
26 #include "sysemu.h"
28 #include "spice-display.h"
30 static int debug = 0;
32 static void GCC_FMT_ATTR(2, 3) dprint(int level, const char *fmt, ...)
34 va_list args;
36 if (level <= debug) {
37 va_start(args, fmt);
38 vfprintf(stderr, fmt, args);
39 va_end(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)) {
51 return;
54 if (qemu_spice_rect_is_empty(dest)) {
55 *dest = *r;
56 return;
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).
68 * We must aquire the global qemu mutex here to make sure the
69 * DisplayState (+DisplaySurface) we are accessing doesn't change
70 * underneath us.
72 SimpleSpiceUpdate *qemu_spice_create_update(SimpleSpiceDisplay *ssd)
74 SimpleSpiceUpdate *update;
75 QXLDrawable *drawable;
76 QXLImage *image;
77 QXLCommand *cmd;
78 uint8_t *src, *dst;
79 int by, bw, bh;
81 qemu_mutex_lock_iothread();
82 if (qemu_spice_rect_is_empty(&ssd->dirty)) {
83 qemu_mutex_unlock_iothread();
84 return NULL;
87 dprint(2, "%s: lr %d -> %d, tb -> %d -> %d\n", __FUNCTION__,
88 ssd->dirty.left, ssd->dirty.right,
89 ssd->dirty.top, ssd->dirty.bottom);
91 update = qemu_mallocz(sizeof(*update));
92 drawable = &update->drawable;
93 image = &update->image;
94 cmd = &update->ext.cmd;
96 bw = ssd->dirty.right - ssd->dirty.left;
97 bh = ssd->dirty.bottom - ssd->dirty.top;
98 update->bitmap = qemu_malloc(bw * bh * 4);
100 drawable->bbox = ssd->dirty;
101 drawable->clip.type = SPICE_CLIP_TYPE_NONE;
102 drawable->effect = QXL_EFFECT_OPAQUE;
103 drawable->release_info.id = (intptr_t)update;
104 drawable->type = QXL_DRAW_COPY;
105 drawable->surfaces_dest[0] = -1;
106 drawable->surfaces_dest[1] = -1;
107 drawable->surfaces_dest[2] = -1;
109 drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT;
110 drawable->u.copy.src_bitmap = (intptr_t)image;
111 drawable->u.copy.src_area.right = bw;
112 drawable->u.copy.src_area.bottom = bh;
114 QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, ssd->unique++);
115 image->descriptor.type = SPICE_IMAGE_TYPE_BITMAP;
116 image->bitmap.flags = QXL_BITMAP_DIRECT | QXL_BITMAP_TOP_DOWN;
117 image->bitmap.stride = bw * 4;
118 image->descriptor.width = image->bitmap.x = bw;
119 image->descriptor.height = image->bitmap.y = bh;
120 image->bitmap.data = (intptr_t)(update->bitmap);
121 image->bitmap.palette = 0;
122 image->bitmap.format = SPICE_BITMAP_FMT_32BIT;
124 if (ssd->conv == NULL) {
125 PixelFormat dst = qemu_default_pixelformat(32);
126 ssd->conv = qemu_pf_conv_get(&dst, &ssd->ds->surface->pf);
127 assert(ssd->conv);
130 src = ds_get_data(ssd->ds) +
131 ssd->dirty.top * ds_get_linesize(ssd->ds) +
132 ssd->dirty.left * ds_get_bytes_per_pixel(ssd->ds);
133 dst = update->bitmap;
134 for (by = 0; by < bh; by++) {
135 qemu_pf_conv_run(ssd->conv, dst, src, bw);
136 src += ds_get_linesize(ssd->ds);
137 dst += image->bitmap.stride;
140 cmd->type = QXL_CMD_DRAW;
141 cmd->data = (intptr_t)drawable;
143 memset(&ssd->dirty, 0, sizeof(ssd->dirty));
144 qemu_mutex_unlock_iothread();
145 return update;
149 * Called from spice server thread context (via interface_release_ressource)
150 * We do *not* hold the global qemu mutex here, so extra care is needed
151 * when calling qemu functions. Qemu interfaces used:
152 * - qemu_free (underlying glibc free is re-entrant).
154 void qemu_spice_destroy_update(SimpleSpiceDisplay *sdpy, SimpleSpiceUpdate *update)
156 qemu_free(update->bitmap);
157 qemu_free(update);
160 void qemu_spice_create_host_memslot(SimpleSpiceDisplay *ssd)
162 QXLDevMemSlot memslot;
164 dprint(1, "%s:\n", __FUNCTION__);
166 memset(&memslot, 0, sizeof(memslot));
167 memslot.slot_group_id = MEMSLOT_GROUP_HOST;
168 memslot.virt_end = ~0;
169 ssd->worker->add_memslot(ssd->worker, &memslot);
172 void qemu_spice_create_host_primary(SimpleSpiceDisplay *ssd)
174 QXLDevSurfaceCreate surface;
176 dprint(1, "%s: %dx%d\n", __FUNCTION__,
177 ds_get_width(ssd->ds), ds_get_height(ssd->ds));
179 surface.format = SPICE_SURFACE_FMT_32_xRGB;
180 surface.width = ds_get_width(ssd->ds);
181 surface.height = ds_get_height(ssd->ds);
182 surface.stride = -surface.width * 4;
183 surface.mouse_mode = true;
184 surface.flags = 0;
185 surface.type = 0;
186 surface.mem = (intptr_t)ssd->buf;
187 surface.group_id = MEMSLOT_GROUP_HOST;
189 qemu_mutex_unlock_iothread();
190 ssd->worker->create_primary_surface(ssd->worker, 0, &surface);
191 qemu_mutex_lock_iothread();
194 void qemu_spice_destroy_host_primary(SimpleSpiceDisplay *ssd)
196 dprint(1, "%s:\n", __FUNCTION__);
198 qemu_mutex_unlock_iothread();
199 ssd->worker->destroy_primary_surface(ssd->worker, 0);
200 qemu_mutex_lock_iothread();
203 void qemu_spice_vm_change_state_handler(void *opaque, int running, int reason)
205 SimpleSpiceDisplay *ssd = opaque;
207 if (running) {
208 ssd->worker->start(ssd->worker);
209 } else {
210 qemu_mutex_unlock_iothread();
211 ssd->worker->stop(ssd->worker);
212 qemu_mutex_lock_iothread();
214 ssd->running = running;
217 /* display listener callbacks */
219 void qemu_spice_display_update(SimpleSpiceDisplay *ssd,
220 int x, int y, int w, int h)
222 QXLRect update_area;
224 dprint(2, "%s: x %d y %d w %d h %d\n", __FUNCTION__, x, y, w, h);
225 update_area.left = x,
226 update_area.right = x + w;
227 update_area.top = y;
228 update_area.bottom = y + h;
230 if (qemu_spice_rect_is_empty(&ssd->dirty)) {
231 ssd->notify++;
233 qemu_spice_rect_union(&ssd->dirty, &update_area);
236 void qemu_spice_display_resize(SimpleSpiceDisplay *ssd)
238 dprint(1, "%s:\n", __FUNCTION__);
240 memset(&ssd->dirty, 0, sizeof(ssd->dirty));
241 qemu_pf_conv_put(ssd->conv);
242 ssd->conv = NULL;
244 qemu_spice_destroy_host_primary(ssd);
245 qemu_spice_create_host_primary(ssd);
247 memset(&ssd->dirty, 0, sizeof(ssd->dirty));
248 ssd->notify++;
251 void qemu_spice_display_refresh(SimpleSpiceDisplay *ssd)
253 dprint(3, "%s:\n", __FUNCTION__);
254 vga_hw_update();
255 if (ssd->notify) {
256 ssd->notify = 0;
257 ssd->worker->wakeup(ssd->worker);
258 dprint(2, "%s: notify\n", __FUNCTION__);
262 /* spice display interface callbacks */
264 static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker)
266 SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
268 dprint(1, "%s:\n", __FUNCTION__);
269 ssd->worker = qxl_worker;
272 static void interface_set_compression_level(QXLInstance *sin, int level)
274 dprint(1, "%s:\n", __FUNCTION__);
275 /* nothing to do */
278 static void interface_set_mm_time(QXLInstance *sin, uint32_t mm_time)
280 dprint(3, "%s:\n", __FUNCTION__);
281 /* nothing to do */
284 static void interface_get_init_info(QXLInstance *sin, QXLDevInitInfo *info)
286 SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
288 info->memslot_gen_bits = MEMSLOT_GENERATION_BITS;
289 info->memslot_id_bits = MEMSLOT_SLOT_BITS;
290 info->num_memslots = NUM_MEMSLOTS;
291 info->num_memslots_groups = NUM_MEMSLOTS_GROUPS;
292 info->internal_groupslot_id = 0;
293 info->qxl_ram_size = ssd->bufsize;
294 info->n_surfaces = NUM_SURFACES;
297 static int interface_get_command(QXLInstance *sin, struct QXLCommandExt *ext)
299 SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
300 SimpleSpiceUpdate *update;
302 dprint(3, "%s:\n", __FUNCTION__);
303 update = qemu_spice_create_update(ssd);
304 if (update == NULL) {
305 return false;
307 *ext = update->ext;
308 return true;
311 static int interface_req_cmd_notification(QXLInstance *sin)
313 dprint(1, "%s:\n", __FUNCTION__);
314 return 1;
317 static void interface_release_resource(QXLInstance *sin,
318 struct QXLReleaseInfoExt ext)
320 SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
321 uintptr_t id;
323 dprint(2, "%s:\n", __FUNCTION__);
324 id = ext.info->id;
325 qemu_spice_destroy_update(ssd, (void*)id);
328 static int interface_get_cursor_command(QXLInstance *sin, struct QXLCommandExt *ext)
330 dprint(3, "%s:\n", __FUNCTION__);
331 return false;
334 static int interface_req_cursor_notification(QXLInstance *sin)
336 dprint(1, "%s:\n", __FUNCTION__);
337 return 1;
340 static void interface_notify_update(QXLInstance *sin, uint32_t update_id)
342 fprintf(stderr, "%s: abort()\n", __FUNCTION__);
343 abort();
346 static int interface_flush_resources(QXLInstance *sin)
348 fprintf(stderr, "%s: abort()\n", __FUNCTION__);
349 abort();
350 return 0;
353 static const QXLInterface dpy_interface = {
354 .base.type = SPICE_INTERFACE_QXL,
355 .base.description = "qemu simple display",
356 .base.major_version = SPICE_INTERFACE_QXL_MAJOR,
357 .base.minor_version = SPICE_INTERFACE_QXL_MINOR,
359 .attache_worker = interface_attach_worker,
360 .set_compression_level = interface_set_compression_level,
361 .set_mm_time = interface_set_mm_time,
362 .get_init_info = interface_get_init_info,
364 /* the callbacks below are called from spice server thread context */
365 .get_command = interface_get_command,
366 .req_cmd_notification = interface_req_cmd_notification,
367 .release_resource = interface_release_resource,
368 .get_cursor_command = interface_get_cursor_command,
369 .req_cursor_notification = interface_req_cursor_notification,
370 .notify_update = interface_notify_update,
371 .flush_resources = interface_flush_resources,
374 static SimpleSpiceDisplay sdpy;
376 static void display_update(struct DisplayState *ds, int x, int y, int w, int h)
378 qemu_spice_display_update(&sdpy, x, y, w, h);
381 static void display_resize(struct DisplayState *ds)
383 qemu_spice_display_resize(&sdpy);
386 static void display_refresh(struct DisplayState *ds)
388 qemu_spice_display_refresh(&sdpy);
391 static DisplayChangeListener display_listener = {
392 .dpy_update = display_update,
393 .dpy_resize = display_resize,
394 .dpy_refresh = display_refresh,
397 void qemu_spice_display_init(DisplayState *ds)
399 assert(sdpy.ds == NULL);
400 sdpy.ds = ds;
401 sdpy.bufsize = (16 * 1024 * 1024);
402 sdpy.buf = qemu_malloc(sdpy.bufsize);
403 register_displaychangelistener(ds, &display_listener);
405 sdpy.qxl.base.sif = &dpy_interface.base;
406 qemu_spice_add_interface(&sdpy.qxl.base);
407 assert(sdpy.worker);
409 qemu_add_vm_change_state_handler(qemu_spice_vm_change_state_handler, &sdpy);
410 qemu_spice_create_host_memslot(&sdpy);
411 qemu_spice_create_host_primary(&sdpy);