2010-08-25 15:32:06 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 or
|
|
|
|
* (at your option) version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/qemu-spice.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
|
|
|
#include "qemu/queue.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-03-18 13:46:14 +01:00
|
|
|
#include "trace.h"
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/spice-display.h"
|
2010-08-25 15:32:06 +02:00
|
|
|
|
|
|
|
static int debug = 0;
|
|
|
|
|
2010-10-13 20:54:27 +02:00
|
|
|
static void GCC_FMT_ATTR(2, 3) dprint(int level, const char *fmt, ...)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (level <= debug) {
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int qemu_spice_rect_is_empty(const QXLRect* r)
|
|
|
|
{
|
|
|
|
return r->top == r->bottom || r->left == r->right;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_rect_union(QXLRect *dest, const QXLRect *r)
|
|
|
|
{
|
|
|
|
if (qemu_spice_rect_is_empty(r)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qemu_spice_rect_is_empty(dest)) {
|
|
|
|
*dest = *r;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest->top = MIN(dest->top, r->top);
|
|
|
|
dest->left = MIN(dest->left, r->left);
|
|
|
|
dest->bottom = MAX(dest->bottom, r->bottom);
|
|
|
|
dest->right = MAX(dest->right, r->right);
|
|
|
|
}
|
|
|
|
|
2012-02-24 22:19:30 +01:00
|
|
|
QXLCookie *qxl_cookie_new(int type, uint64_t io)
|
|
|
|
{
|
|
|
|
QXLCookie *cookie;
|
|
|
|
|
|
|
|
cookie = g_malloc0(sizeof(*cookie));
|
|
|
|
cookie->type = type;
|
|
|
|
cookie->io = io;
|
|
|
|
return cookie;
|
|
|
|
}
|
|
|
|
|
2011-07-20 11:20:58 +02:00
|
|
|
void qemu_spice_add_memslot(SimpleSpiceDisplay *ssd, QXLDevMemSlot *memslot,
|
|
|
|
qxl_async_io async)
|
2011-07-20 11:20:50 +02:00
|
|
|
{
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_add_memslot(ssd->qxl.id, memslot->slot_id,
|
|
|
|
memslot->virt_start, memslot->virt_end,
|
|
|
|
async);
|
|
|
|
|
2011-07-20 11:20:58 +02:00
|
|
|
if (async != QXL_SYNC) {
|
2012-02-24 22:19:30 +01:00
|
|
|
spice_qxl_add_memslot_async(&ssd->qxl, memslot,
|
2012-03-07 14:36:48 +01:00
|
|
|
(uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
|
|
|
|
QXL_IO_MEMSLOT_ADD_ASYNC));
|
2011-07-20 11:20:58 +02:00
|
|
|
} else {
|
|
|
|
ssd->worker->add_memslot(ssd->worker, memslot);
|
|
|
|
}
|
2011-07-20 11:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_del_memslot(SimpleSpiceDisplay *ssd, uint32_t gid, uint32_t sid)
|
|
|
|
{
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_del_memslot(ssd->qxl.id, gid, sid);
|
2011-07-20 11:20:50 +02:00
|
|
|
ssd->worker->del_memslot(ssd->worker, gid, sid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_create_primary_surface(SimpleSpiceDisplay *ssd, uint32_t id,
|
2011-07-20 11:20:58 +02:00
|
|
|
QXLDevSurfaceCreate *surface,
|
|
|
|
qxl_async_io async)
|
2011-07-20 11:20:50 +02:00
|
|
|
{
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_create_primary_surface(ssd->qxl.id, id, surface, async);
|
2011-07-20 11:20:58 +02:00
|
|
|
if (async != QXL_SYNC) {
|
2012-02-24 22:19:30 +01:00
|
|
|
spice_qxl_create_primary_surface_async(&ssd->qxl, id, surface,
|
2012-03-07 14:36:48 +01:00
|
|
|
(uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
|
|
|
|
QXL_IO_CREATE_PRIMARY_ASYNC));
|
2011-07-20 11:20:58 +02:00
|
|
|
} else {
|
|
|
|
ssd->worker->create_primary_surface(ssd->worker, id, surface);
|
|
|
|
}
|
2011-07-20 11:20:50 +02:00
|
|
|
}
|
|
|
|
|
2011-07-20 11:20:58 +02:00
|
|
|
void qemu_spice_destroy_primary_surface(SimpleSpiceDisplay *ssd,
|
|
|
|
uint32_t id, qxl_async_io async)
|
2011-07-20 11:20:50 +02:00
|
|
|
{
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_destroy_primary_surface(ssd->qxl.id, id, async);
|
2011-07-20 11:20:58 +02:00
|
|
|
if (async != QXL_SYNC) {
|
2012-02-24 22:19:30 +01:00
|
|
|
spice_qxl_destroy_primary_surface_async(&ssd->qxl, id,
|
2012-03-07 14:36:48 +01:00
|
|
|
(uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
|
|
|
|
QXL_IO_DESTROY_PRIMARY_ASYNC));
|
2011-07-20 11:20:58 +02:00
|
|
|
} else {
|
|
|
|
ssd->worker->destroy_primary_surface(ssd->worker, id);
|
|
|
|
}
|
2011-07-20 11:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_wakeup(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_wakeup(ssd->qxl.id);
|
2011-07-20 11:20:50 +02:00
|
|
|
ssd->worker->wakeup(ssd->worker);
|
|
|
|
}
|
|
|
|
|
2012-08-21 10:51:56 +02:00
|
|
|
static int spice_display_is_running;
|
|
|
|
|
|
|
|
void qemu_spice_display_start(void)
|
|
|
|
{
|
|
|
|
spice_display_is_running = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_display_stop(void)
|
|
|
|
{
|
|
|
|
spice_display_is_running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int qemu_spice_display_is_running(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
|
|
|
return spice_display_is_running;
|
|
|
|
}
|
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
static void qemu_spice_create_one_update(SimpleSpiceDisplay *ssd,
|
|
|
|
QXLRect *rect)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
|
|
|
SimpleSpiceUpdate *update;
|
|
|
|
QXLDrawable *drawable;
|
|
|
|
QXLImage *image;
|
|
|
|
QXLCommand *cmd;
|
2012-11-02 09:12:49 +01:00
|
|
|
int bw, bh;
|
2011-06-15 20:44:38 +02:00
|
|
|
struct timespec time_space;
|
2012-11-02 09:12:49 +01:00
|
|
|
pixman_image_t *dest;
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2012-03-18 13:46:14 +01:00
|
|
|
trace_qemu_spice_create_update(
|
2012-09-05 08:52:23 +02:00
|
|
|
rect->left, rect->right,
|
|
|
|
rect->top, rect->bottom);
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
update = g_malloc0(sizeof(*update));
|
2010-08-25 15:32:06 +02:00
|
|
|
drawable = &update->drawable;
|
|
|
|
image = &update->image;
|
|
|
|
cmd = &update->ext.cmd;
|
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
bw = rect->right - rect->left;
|
|
|
|
bh = rect->bottom - rect->top;
|
2011-08-21 05:09:37 +02:00
|
|
|
update->bitmap = g_malloc(bw * bh * 4);
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
drawable->bbox = *rect;
|
2010-08-25 15:32:06 +02:00
|
|
|
drawable->clip.type = SPICE_CLIP_TYPE_NONE;
|
|
|
|
drawable->effect = QXL_EFFECT_OPAQUE;
|
2012-03-21 17:17:18 +01:00
|
|
|
drawable->release_info.id = (uintptr_t)update;
|
2010-08-25 15:32:06 +02:00
|
|
|
drawable->type = QXL_DRAW_COPY;
|
|
|
|
drawable->surfaces_dest[0] = -1;
|
|
|
|
drawable->surfaces_dest[1] = -1;
|
|
|
|
drawable->surfaces_dest[2] = -1;
|
2011-06-15 20:44:38 +02:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &time_space);
|
|
|
|
/* time in milliseconds from epoch. */
|
|
|
|
drawable->mm_time = time_space.tv_sec * 1000
|
|
|
|
+ time_space.tv_nsec / 1000 / 1000;
|
2010-08-25 15:32:06 +02:00
|
|
|
|
|
|
|
drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT;
|
2012-03-21 17:17:18 +01:00
|
|
|
drawable->u.copy.src_bitmap = (uintptr_t)image;
|
2010-08-25 15:32:06 +02:00
|
|
|
drawable->u.copy.src_area.right = bw;
|
|
|
|
drawable->u.copy.src_area.bottom = bh;
|
|
|
|
|
|
|
|
QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, ssd->unique++);
|
|
|
|
image->descriptor.type = SPICE_IMAGE_TYPE_BITMAP;
|
|
|
|
image->bitmap.flags = QXL_BITMAP_DIRECT | QXL_BITMAP_TOP_DOWN;
|
|
|
|
image->bitmap.stride = bw * 4;
|
|
|
|
image->descriptor.width = image->bitmap.x = bw;
|
|
|
|
image->descriptor.height = image->bitmap.y = bh;
|
2012-03-21 17:17:18 +01:00
|
|
|
image->bitmap.data = (uintptr_t)(update->bitmap);
|
2010-08-25 15:32:06 +02:00
|
|
|
image->bitmap.palette = 0;
|
|
|
|
image->bitmap.format = SPICE_BITMAP_FMT_32BIT;
|
|
|
|
|
2012-11-02 09:12:49 +01:00
|
|
|
dest = pixman_image_create_bits(PIXMAN_x8r8g8b8, bw, bh,
|
|
|
|
(void *)update->bitmap, bw * 4);
|
|
|
|
pixman_image_composite(PIXMAN_OP_SRC, ssd->surface, NULL, ssd->mirror,
|
|
|
|
rect->left, rect->top, 0, 0,
|
|
|
|
rect->left, rect->top, bw, bh);
|
|
|
|
pixman_image_composite(PIXMAN_OP_SRC, ssd->mirror, NULL, dest,
|
|
|
|
rect->left, rect->top, 0, 0,
|
|
|
|
0, 0, bw, bh);
|
|
|
|
pixman_image_unref(dest);
|
2010-08-25 15:32:06 +02:00
|
|
|
|
|
|
|
cmd->type = QXL_CMD_DRAW;
|
2012-03-21 17:17:18 +01:00
|
|
|
cmd->data = (uintptr_t)drawable;
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2012-09-05 08:25:08 +02:00
|
|
|
QTAILQ_INSERT_TAIL(&ssd->updates, update, next);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
static void qemu_spice_create_update(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
2012-09-05 10:41:42 +02:00
|
|
|
static const int blksize = 32;
|
2013-02-28 16:42:28 +01:00
|
|
|
int blocks = (surface_width(ssd->ds) + blksize - 1) / blksize;
|
2012-09-05 10:41:42 +02:00
|
|
|
int dirty_top[blocks];
|
|
|
|
int y, yoff, x, xoff, blk, bw;
|
2013-02-28 16:42:28 +01:00
|
|
|
int bpp = surface_bytes_per_pixel(ssd->ds);
|
2012-09-05 10:41:42 +02:00
|
|
|
uint8_t *guest, *mirror;
|
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
if (qemu_spice_rect_is_empty(&ssd->dirty)) {
|
|
|
|
return;
|
|
|
|
};
|
2012-09-05 09:35:57 +02:00
|
|
|
|
2012-11-02 09:12:49 +01:00
|
|
|
if (ssd->surface == NULL) {
|
2013-02-28 16:42:28 +01:00
|
|
|
ssd->surface = pixman_image_ref(ssd->ds->image);
|
|
|
|
ssd->mirror = qemu_pixman_mirror_create(ssd->ds->format,
|
|
|
|
ssd->ds->image);
|
2012-09-05 09:35:57 +02:00
|
|
|
}
|
|
|
|
|
2012-09-05 10:41:42 +02:00
|
|
|
for (blk = 0; blk < blocks; blk++) {
|
|
|
|
dirty_top[blk] = -1;
|
|
|
|
}
|
|
|
|
|
2013-02-28 16:42:28 +01:00
|
|
|
guest = surface_data(ssd->ds);
|
2012-11-02 09:12:49 +01:00
|
|
|
mirror = (void *)pixman_image_get_data(ssd->mirror);
|
2012-09-05 10:41:42 +02:00
|
|
|
for (y = ssd->dirty.top; y < ssd->dirty.bottom; y++) {
|
2013-02-28 16:42:28 +01:00
|
|
|
yoff = y * surface_stride(ssd->ds);
|
2012-09-05 10:41:42 +02:00
|
|
|
for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) {
|
|
|
|
xoff = x * bpp;
|
|
|
|
blk = x / blksize;
|
|
|
|
bw = MIN(blksize, ssd->dirty.right - x);
|
|
|
|
if (memcmp(guest + yoff + xoff,
|
|
|
|
mirror + yoff + xoff,
|
|
|
|
bw * bpp) == 0) {
|
|
|
|
if (dirty_top[blk] != -1) {
|
|
|
|
QXLRect update = {
|
|
|
|
.top = dirty_top[blk],
|
|
|
|
.bottom = y,
|
|
|
|
.left = x,
|
|
|
|
.right = x + bw,
|
|
|
|
};
|
|
|
|
qemu_spice_create_one_update(ssd, &update);
|
|
|
|
dirty_top[blk] = -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (dirty_top[blk] == -1) {
|
|
|
|
dirty_top[blk] = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) {
|
|
|
|
blk = x / blksize;
|
|
|
|
bw = MIN(blksize, ssd->dirty.right - x);
|
|
|
|
if (dirty_top[blk] != -1) {
|
|
|
|
QXLRect update = {
|
|
|
|
.top = dirty_top[blk],
|
|
|
|
.bottom = ssd->dirty.bottom,
|
|
|
|
.left = x,
|
|
|
|
.right = x + bw,
|
|
|
|
};
|
|
|
|
qemu_spice_create_one_update(ssd, &update);
|
|
|
|
dirty_top[blk] = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 08:52:23 +02:00
|
|
|
memset(&ssd->dirty, 0, sizeof(ssd->dirty));
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
/*
|
2012-08-17 15:20:00 +02:00
|
|
|
* Called from spice server thread context (via interface_release_resource)
|
2010-08-25 15:32:06 +02:00
|
|
|
* We do *not* hold the global qemu mutex here, so extra care is needed
|
2012-04-07 09:23:39 +02:00
|
|
|
* when calling qemu functions. QEMU interfaces used:
|
2011-08-21 05:09:37 +02:00
|
|
|
* - g_free (underlying glibc free is re-entrant).
|
2010-08-25 15:32:06 +02:00
|
|
|
*/
|
|
|
|
void qemu_spice_destroy_update(SimpleSpiceDisplay *sdpy, SimpleSpiceUpdate *update)
|
|
|
|
{
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(update->bitmap);
|
|
|
|
g_free(update);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_create_host_memslot(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
|
|
|
QXLDevMemSlot memslot;
|
|
|
|
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
|
|
|
|
memset(&memslot, 0, sizeof(memslot));
|
|
|
|
memslot.slot_group_id = MEMSLOT_GROUP_HOST;
|
|
|
|
memslot.virt_end = ~0;
|
2011-07-20 11:20:58 +02:00
|
|
|
qemu_spice_add_memslot(ssd, &memslot, QXL_SYNC);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_create_host_primary(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
|
|
|
QXLDevSurfaceCreate surface;
|
|
|
|
|
2012-05-24 11:38:11 +02:00
|
|
|
memset(&surface, 0, sizeof(surface));
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
dprint(1, "%s: %dx%d\n", __FUNCTION__,
|
2013-02-28 16:42:28 +01:00
|
|
|
surface_width(ssd->ds), surface_height(ssd->ds));
|
2010-08-25 15:32:06 +02:00
|
|
|
|
|
|
|
surface.format = SPICE_SURFACE_FMT_32_xRGB;
|
2013-02-28 16:42:28 +01:00
|
|
|
surface.width = surface_width(ssd->ds);
|
|
|
|
surface.height = surface_height(ssd->ds);
|
2010-08-25 15:32:06 +02:00
|
|
|
surface.stride = -surface.width * 4;
|
2010-04-13 09:05:03 +02:00
|
|
|
surface.mouse_mode = true;
|
2010-08-25 15:32:06 +02:00
|
|
|
surface.flags = 0;
|
|
|
|
surface.type = 0;
|
2012-03-21 17:17:18 +01:00
|
|
|
surface.mem = (uintptr_t)ssd->buf;
|
2010-08-25 15:32:06 +02:00
|
|
|
surface.group_id = MEMSLOT_GROUP_HOST;
|
2010-10-14 16:55:01 +02:00
|
|
|
|
2011-07-20 11:20:58 +02:00
|
|
|
qemu_spice_create_primary_surface(ssd, 0, &surface, QXL_SYNC);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_destroy_host_primary(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
|
2011-07-20 11:20:58 +02:00
|
|
|
qemu_spice_destroy_primary_surface(ssd, 0, QXL_SYNC);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void qemu_spice_display_init_common(SimpleSpiceDisplay *ssd)
|
2011-07-20 11:20:51 +02:00
|
|
|
{
|
|
|
|
qemu_mutex_init(&ssd->lock);
|
2012-09-05 08:25:08 +02:00
|
|
|
QTAILQ_INIT(&ssd->updates);
|
2011-07-20 11:20:51 +02:00
|
|
|
ssd->mouse_x = -1;
|
|
|
|
ssd->mouse_y = -1;
|
2012-09-04 11:39:41 +02:00
|
|
|
if (ssd->num_surfaces == 0) {
|
|
|
|
ssd->num_surfaces = 1024;
|
|
|
|
}
|
2011-07-20 11:20:51 +02:00
|
|
|
ssd->bufsize = (16 * 1024 * 1024);
|
2011-08-21 05:09:37 +02:00
|
|
|
ssd->buf = g_malloc(ssd->bufsize);
|
2011-07-20 11:20:51 +02:00
|
|
|
}
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
/* display listener callbacks */
|
|
|
|
|
|
|
|
void qemu_spice_display_update(SimpleSpiceDisplay *ssd,
|
|
|
|
int x, int y, int w, int h)
|
|
|
|
{
|
|
|
|
QXLRect update_area;
|
|
|
|
|
|
|
|
dprint(2, "%s: x %d y %d w %d h %d\n", __FUNCTION__, x, y, w, h);
|
|
|
|
update_area.left = x,
|
|
|
|
update_area.right = x + w;
|
|
|
|
update_area.top = y;
|
|
|
|
update_area.bottom = y + h;
|
|
|
|
|
|
|
|
if (qemu_spice_rect_is_empty(&ssd->dirty)) {
|
|
|
|
ssd->notify++;
|
|
|
|
}
|
|
|
|
qemu_spice_rect_union(&ssd->dirty, &update_area);
|
|
|
|
}
|
|
|
|
|
2013-02-28 15:03:04 +01:00
|
|
|
void qemu_spice_display_switch(SimpleSpiceDisplay *ssd,
|
|
|
|
DisplaySurface *surface)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
2012-09-05 08:25:08 +02:00
|
|
|
SimpleSpiceUpdate *update;
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
|
|
|
|
memset(&ssd->dirty, 0, sizeof(ssd->dirty));
|
2012-11-02 09:12:49 +01:00
|
|
|
if (ssd->surface) {
|
|
|
|
pixman_image_unref(ssd->surface);
|
|
|
|
ssd->surface = NULL;
|
|
|
|
pixman_image_unref(ssd->mirror);
|
|
|
|
ssd->mirror = NULL;
|
|
|
|
}
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2011-04-27 15:21:51 +02:00
|
|
|
qemu_mutex_lock(&ssd->lock);
|
2013-02-28 16:42:28 +01:00
|
|
|
ssd->ds = surface;
|
2012-09-05 08:25:08 +02:00
|
|
|
while ((update = QTAILQ_FIRST(&ssd->updates)) != NULL) {
|
|
|
|
QTAILQ_REMOVE(&ssd->updates, update, next);
|
|
|
|
qemu_spice_destroy_update(ssd, update);
|
2011-04-27 15:21:51 +02:00
|
|
|
}
|
|
|
|
qemu_mutex_unlock(&ssd->lock);
|
2010-08-25 15:32:06 +02:00
|
|
|
qemu_spice_destroy_host_primary(ssd);
|
|
|
|
qemu_spice_create_host_primary(ssd);
|
|
|
|
|
|
|
|
memset(&ssd->dirty, 0, sizeof(ssd->dirty));
|
|
|
|
ssd->notify++;
|
|
|
|
}
|
|
|
|
|
2012-02-24 22:19:25 +01:00
|
|
|
void qemu_spice_cursor_refresh_unlocked(SimpleSpiceDisplay *ssd)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
2011-04-27 15:50:32 +02:00
|
|
|
if (ssd->cursor) {
|
2013-03-15 15:45:54 +01:00
|
|
|
assert(ssd->dcl.con);
|
|
|
|
dpy_cursor_define(ssd->dcl.con, ssd->cursor);
|
2011-04-27 15:50:32 +02:00
|
|
|
cursor_put(ssd->cursor);
|
|
|
|
ssd->cursor = NULL;
|
|
|
|
}
|
|
|
|
if (ssd->mouse_x != -1 && ssd->mouse_y != -1) {
|
2013-03-15 15:45:54 +01:00
|
|
|
assert(ssd->dcl.con);
|
|
|
|
dpy_mouse_set(ssd->dcl.con, ssd->mouse_x, ssd->mouse_y, 1);
|
2011-04-27 15:50:32 +02:00
|
|
|
ssd->mouse_x = -1;
|
|
|
|
ssd->mouse_y = -1;
|
|
|
|
}
|
2012-02-24 22:19:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_spice_display_refresh(SimpleSpiceDisplay *ssd)
|
|
|
|
{
|
|
|
|
dprint(3, "%s:\n", __func__);
|
2013-03-15 15:45:54 +01:00
|
|
|
graphic_hw_update(ssd->dcl.con);
|
2012-02-24 22:19:25 +01:00
|
|
|
|
|
|
|
qemu_mutex_lock(&ssd->lock);
|
2013-02-28 16:42:28 +01:00
|
|
|
if (QTAILQ_EMPTY(&ssd->updates) && ssd->ds) {
|
2012-09-05 08:25:08 +02:00
|
|
|
qemu_spice_create_update(ssd);
|
2012-02-24 22:19:25 +01:00
|
|
|
ssd->notify++;
|
|
|
|
}
|
|
|
|
qemu_spice_cursor_refresh_unlocked(ssd);
|
2011-04-27 15:21:51 +02:00
|
|
|
qemu_mutex_unlock(&ssd->lock);
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
if (ssd->notify) {
|
|
|
|
ssd->notify = 0;
|
2011-07-20 11:20:50 +02:00
|
|
|
qemu_spice_wakeup(ssd);
|
2010-08-25 15:32:06 +02:00
|
|
|
dprint(2, "%s: notify\n", __FUNCTION__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* spice display interface callbacks */
|
|
|
|
|
|
|
|
static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker)
|
|
|
|
{
|
|
|
|
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
|
|
|
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
ssd->worker = qxl_worker;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_set_compression_level(QXLInstance *sin, int level)
|
|
|
|
{
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
/* nothing to do */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_set_mm_time(QXLInstance *sin, uint32_t mm_time)
|
|
|
|
{
|
|
|
|
dprint(3, "%s:\n", __FUNCTION__);
|
|
|
|
/* nothing to do */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_get_init_info(QXLInstance *sin, QXLDevInitInfo *info)
|
|
|
|
{
|
|
|
|
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
|
|
|
|
|
|
|
info->memslot_gen_bits = MEMSLOT_GENERATION_BITS;
|
|
|
|
info->memslot_id_bits = MEMSLOT_SLOT_BITS;
|
|
|
|
info->num_memslots = NUM_MEMSLOTS;
|
|
|
|
info->num_memslots_groups = NUM_MEMSLOTS_GROUPS;
|
|
|
|
info->internal_groupslot_id = 0;
|
|
|
|
info->qxl_ram_size = ssd->bufsize;
|
2012-09-04 11:39:41 +02:00
|
|
|
info->n_surfaces = ssd->num_surfaces;
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_get_command(QXLInstance *sin, struct QXLCommandExt *ext)
|
|
|
|
{
|
|
|
|
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
|
|
|
SimpleSpiceUpdate *update;
|
2011-04-27 15:21:51 +02:00
|
|
|
int ret = false;
|
2010-08-25 15:32:06 +02:00
|
|
|
|
|
|
|
dprint(3, "%s:\n", __FUNCTION__);
|
2011-04-27 15:21:51 +02:00
|
|
|
|
|
|
|
qemu_mutex_lock(&ssd->lock);
|
2012-09-05 08:25:08 +02:00
|
|
|
update = QTAILQ_FIRST(&ssd->updates);
|
|
|
|
if (update != NULL) {
|
|
|
|
QTAILQ_REMOVE(&ssd->updates, update, next);
|
2011-04-27 15:21:51 +02:00
|
|
|
*ext = update->ext;
|
|
|
|
ret = true;
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
2011-04-27 15:21:51 +02:00
|
|
|
qemu_mutex_unlock(&ssd->lock);
|
|
|
|
|
|
|
|
return ret;
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_req_cmd_notification(QXLInstance *sin)
|
|
|
|
{
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_release_resource(QXLInstance *sin,
|
|
|
|
struct QXLReleaseInfoExt ext)
|
|
|
|
{
|
|
|
|
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
|
|
|
uintptr_t id;
|
|
|
|
|
|
|
|
dprint(2, "%s:\n", __FUNCTION__);
|
|
|
|
id = ext.info->id;
|
|
|
|
qemu_spice_destroy_update(ssd, (void*)id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_get_cursor_command(QXLInstance *sin, struct QXLCommandExt *ext)
|
|
|
|
{
|
|
|
|
dprint(3, "%s:\n", __FUNCTION__);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_req_cursor_notification(QXLInstance *sin)
|
|
|
|
{
|
|
|
|
dprint(1, "%s:\n", __FUNCTION__);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_notify_update(QXLInstance *sin, uint32_t update_id)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: abort()\n", __FUNCTION__);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_flush_resources(QXLInstance *sin)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: abort()\n", __FUNCTION__);
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-21 14:41:48 +01:00
|
|
|
static void interface_update_area_complete(QXLInstance *sin,
|
|
|
|
uint32_t surface_id,
|
|
|
|
QXLRect *dirty, uint32_t num_updated_rects)
|
|
|
|
{
|
|
|
|
/* should never be called, used in qxl native mode only */
|
|
|
|
fprintf(stderr, "%s: abort()\n", __func__);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* called from spice server thread context only */
|
|
|
|
static void interface_async_complete(QXLInstance *sin, uint64_t cookie_token)
|
|
|
|
{
|
|
|
|
/* should never be called, used in qxl native mode only */
|
|
|
|
fprintf(stderr, "%s: abort()\n", __func__);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interface_set_client_capabilities(QXLInstance *sin,
|
|
|
|
uint8_t client_present,
|
|
|
|
uint8_t caps[58])
|
|
|
|
{
|
|
|
|
dprint(3, "%s:\n", __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int interface_client_monitors_config(QXLInstance *sin,
|
|
|
|
VDAgentMonitorsConfig *monitors_config)
|
|
|
|
{
|
|
|
|
dprint(3, "%s:\n", __func__);
|
|
|
|
return 0; /* == not supported by guest */
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:32:06 +02:00
|
|
|
static const QXLInterface dpy_interface = {
|
|
|
|
.base.type = SPICE_INTERFACE_QXL,
|
|
|
|
.base.description = "qemu simple display",
|
|
|
|
.base.major_version = SPICE_INTERFACE_QXL_MAJOR,
|
|
|
|
.base.minor_version = SPICE_INTERFACE_QXL_MINOR,
|
|
|
|
|
|
|
|
.attache_worker = interface_attach_worker,
|
|
|
|
.set_compression_level = interface_set_compression_level,
|
|
|
|
.set_mm_time = interface_set_mm_time,
|
|
|
|
.get_init_info = interface_get_init_info,
|
|
|
|
|
|
|
|
/* the callbacks below are called from spice server thread context */
|
|
|
|
.get_command = interface_get_command,
|
|
|
|
.req_cmd_notification = interface_req_cmd_notification,
|
|
|
|
.release_resource = interface_release_resource,
|
|
|
|
.get_cursor_command = interface_get_cursor_command,
|
|
|
|
.req_cursor_notification = interface_req_cursor_notification,
|
|
|
|
.notify_update = interface_notify_update,
|
|
|
|
.flush_resources = interface_flush_resources,
|
2012-11-21 14:41:48 +01:00
|
|
|
.async_complete = interface_async_complete,
|
|
|
|
.update_area_complete = interface_update_area_complete,
|
|
|
|
.set_client_capabilities = interface_set_client_capabilities,
|
|
|
|
.client_monitors_config = interface_client_monitors_config,
|
2010-08-25 15:32:06 +02:00
|
|
|
};
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
static void display_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
2013-02-28 14:47:07 +01:00
|
|
|
SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl);
|
|
|
|
qemu_spice_display_update(ssd, x, y, w, h);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
2013-02-28 15:03:04 +01:00
|
|
|
static void display_switch(DisplayChangeListener *dcl,
|
|
|
|
struct DisplaySurface *surface)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
2013-02-28 14:47:07 +01:00
|
|
|
SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl);
|
2013-02-28 15:03:04 +01:00
|
|
|
qemu_spice_display_switch(ssd, surface);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
2013-03-01 13:03:04 +01:00
|
|
|
static void display_refresh(DisplayChangeListener *dcl)
|
2010-08-25 15:32:06 +02:00
|
|
|
{
|
2013-02-28 14:47:07 +01:00
|
|
|
SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl);
|
|
|
|
qemu_spice_display_refresh(ssd);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
static const DisplayChangeListenerOps display_listener_ops = {
|
|
|
|
.dpy_name = "spice",
|
2012-09-28 15:02:08 +02:00
|
|
|
.dpy_gfx_update = display_update,
|
2013-02-28 15:03:04 +01:00
|
|
|
.dpy_gfx_switch = display_switch,
|
2012-11-13 14:51:41 +01:00
|
|
|
.dpy_refresh = display_refresh,
|
2010-08-25 15:32:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void qemu_spice_display_init(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 14:47:07 +01:00
|
|
|
SimpleSpiceDisplay *ssd = g_new0(SimpleSpiceDisplay, 1);
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
qemu_spice_display_init_common(ssd);
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2013-02-28 14:47:07 +01:00
|
|
|
ssd->qxl.base.sif = &dpy_interface.base;
|
|
|
|
qemu_spice_add_interface(&ssd->qxl.base);
|
|
|
|
assert(ssd->worker);
|
2010-08-25 15:32:06 +02:00
|
|
|
|
2013-02-28 14:47:07 +01:00
|
|
|
qemu_spice_create_host_memslot(ssd);
|
2012-11-13 14:51:41 +01:00
|
|
|
|
2013-02-28 14:47:07 +01:00
|
|
|
ssd->dcl.ops = &display_listener_ops;
|
2013-03-15 15:45:54 +01:00
|
|
|
ssd->dcl.con = qemu_console_lookup_by_index(0);
|
2013-04-23 15:44:31 +02:00
|
|
|
register_displaychangelistener(&ssd->dcl);
|
2013-02-28 16:42:28 +01:00
|
|
|
|
|
|
|
qemu_spice_create_host_primary(ssd);
|
2010-08-25 15:32:06 +02:00
|
|
|
}
|