2014-09-10 14:12:28 +02:00
|
|
|
/*
|
|
|
|
* Virtio GPU Device
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2013-2014
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Dave Airlie <airlied@redhat.com>
|
|
|
|
* Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
*
|
2015-09-16 09:15:15 +02:00
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
2014-09-10 14:12:28 +02:00
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:07 +01:00
|
|
|
#include "qemu/osdep.h"
|
2018-06-25 14:42:06 +02:00
|
|
|
#include "qemu/units.h"
|
2014-09-10 14:12:28 +02:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu/iov.h"
|
|
|
|
#include "ui/console.h"
|
|
|
|
#include "trace.h"
|
2018-08-29 14:21:01 +02:00
|
|
|
#include "sysemu/dma.h"
|
2014-09-10 14:12:28 +02:00
|
|
|
#include "hw/virtio/virtio.h"
|
|
|
|
#include "hw/virtio/virtio-gpu.h"
|
|
|
|
#include "hw/virtio/virtio-bus.h"
|
2019-02-21 09:10:54 +01:00
|
|
|
#include "hw/display/edid.h"
|
2017-04-06 12:00:28 +02:00
|
|
|
#include "migration/blocker.h"
|
2015-12-15 13:16:16 +01:00
|
|
|
#include "qemu/log.h"
|
2016-05-19 12:25:57 +02:00
|
|
|
#include "qapi/error.h"
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
#define VIRTIO_GPU_VM_VERSION 1
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static struct virtio_gpu_simple_resource*
|
|
|
|
virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id);
|
|
|
|
|
2018-08-29 14:21:00 +02:00
|
|
|
static void virtio_gpu_cleanup_mapping(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_simple_resource *res);
|
2016-11-29 03:29:25 +01:00
|
|
|
|
2017-09-15 16:40:31 +02:00
|
|
|
static void
|
|
|
|
virtio_gpu_ctrl_hdr_bswap(struct virtio_gpu_ctrl_hdr *hdr)
|
|
|
|
{
|
|
|
|
le32_to_cpus(&hdr->type);
|
|
|
|
le32_to_cpus(&hdr->flags);
|
|
|
|
le64_to_cpus(&hdr->fence_id);
|
|
|
|
le32_to_cpus(&hdr->ctx_id);
|
|
|
|
le32_to_cpus(&hdr->padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_bswap_32(void *ptr,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
#ifdef HOST_WORDS_BIGENDIAN
|
|
|
|
|
|
|
|
size_t i;
|
|
|
|
struct virtio_gpu_ctrl_hdr *hdr = (struct virtio_gpu_ctrl_hdr *) ptr;
|
|
|
|
|
|
|
|
virtio_gpu_ctrl_hdr_bswap(hdr);
|
|
|
|
|
|
|
|
i = sizeof(struct virtio_gpu_ctrl_hdr);
|
|
|
|
while (i < size) {
|
|
|
|
le32_to_cpus((uint32_t *)(ptr + i));
|
|
|
|
i = i + sizeof(uint32_t);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virtio_gpu_t2d_bswap(struct virtio_gpu_transfer_to_host_2d *t2d)
|
|
|
|
{
|
|
|
|
virtio_gpu_ctrl_hdr_bswap(&t2d->hdr);
|
|
|
|
le32_to_cpus(&t2d->r.x);
|
|
|
|
le32_to_cpus(&t2d->r.y);
|
|
|
|
le32_to_cpus(&t2d->r.width);
|
|
|
|
le32_to_cpus(&t2d->r.height);
|
|
|
|
le64_to_cpus(&t2d->offset);
|
|
|
|
le32_to_cpus(&t2d->resource_id);
|
|
|
|
le32_to_cpus(&t2d->padding);
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
#ifdef CONFIG_VIRGL
|
2016-06-22 19:11:19 +02:00
|
|
|
#include <virglrenderer.h>
|
2014-07-11 12:51:43 +02:00
|
|
|
#define VIRGL(_g, _virgl, _simple, ...) \
|
|
|
|
do { \
|
|
|
|
if (_g->use_virgl_renderer) { \
|
|
|
|
_virgl(__VA_ARGS__); \
|
|
|
|
} else { \
|
|
|
|
_simple(__VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define VIRGL(_g, _virgl, _simple, ...) \
|
|
|
|
do { \
|
|
|
|
_simple(__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void update_cursor_data_simple(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_scanout *s,
|
|
|
|
uint32_t resource_id)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
uint32_t pixels;
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, resource_id);
|
|
|
|
if (!res) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixman_image_get_width(res->image) != s->current_cursor->width ||
|
|
|
|
pixman_image_get_height(res->image) != s->current_cursor->height) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixels = s->current_cursor->width * s->current_cursor->height;
|
|
|
|
memcpy(s->current_cursor->data,
|
|
|
|
pixman_image_get_data(res->image),
|
|
|
|
pixels * sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
#ifdef CONFIG_VIRGL
|
|
|
|
|
|
|
|
static void update_cursor_data_virgl(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_scanout *s,
|
|
|
|
uint32_t resource_id)
|
|
|
|
{
|
|
|
|
uint32_t width, height;
|
|
|
|
uint32_t pixels, *data;
|
|
|
|
|
|
|
|
data = virgl_renderer_get_cursor_data(resource_id, &width, &height);
|
|
|
|
if (!data) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (width != s->current_cursor->width ||
|
|
|
|
height != s->current_cursor->height) {
|
2016-11-01 12:06:58 +01:00
|
|
|
free(data);
|
2014-07-11 12:51:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixels = s->current_cursor->width * s->current_cursor->height;
|
|
|
|
memcpy(s->current_cursor->data, data, pixels * sizeof(uint32_t));
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void update_cursor(VirtIOGPU *g, struct virtio_gpu_update_cursor *cursor)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_scanout *s;
|
2016-05-23 15:22:07 +02:00
|
|
|
bool move = cursor->hdr.type == VIRTIO_GPU_CMD_MOVE_CURSOR;
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
if (cursor->pos.scanout_id >= g->conf.max_outputs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s = &g->scanout[cursor->pos.scanout_id];
|
|
|
|
|
2015-10-02 08:30:27 +02:00
|
|
|
trace_virtio_gpu_update_cursor(cursor->pos.scanout_id,
|
|
|
|
cursor->pos.x,
|
|
|
|
cursor->pos.y,
|
|
|
|
move ? "move" : "update",
|
|
|
|
cursor->resource_id);
|
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
if (!move) {
|
2014-09-10 14:12:28 +02:00
|
|
|
if (!s->current_cursor) {
|
|
|
|
s->current_cursor = cursor_alloc(64, 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
s->current_cursor->hot_x = cursor->hot_x;
|
|
|
|
s->current_cursor->hot_y = cursor->hot_y;
|
|
|
|
|
|
|
|
if (cursor->resource_id > 0) {
|
2014-07-11 12:51:43 +02:00
|
|
|
VIRGL(g, update_cursor_data_virgl, update_cursor_data_simple,
|
|
|
|
g, s, cursor->resource_id);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
dpy_cursor_define(s->con, s->current_cursor);
|
2016-05-23 15:22:07 +02:00
|
|
|
|
|
|
|
s->cursor = *cursor;
|
|
|
|
} else {
|
|
|
|
s->cursor.pos.x = cursor->pos.x;
|
|
|
|
s->cursor.pos.y = cursor->pos.y;
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
dpy_mouse_set(s->con, cursor->pos.x, cursor->pos.y,
|
|
|
|
cursor->resource_id ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_get_config(VirtIODevice *vdev, uint8_t *config)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
memcpy(config, &g->virtio_config, sizeof(g->virtio_config));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_set_config(VirtIODevice *vdev, const uint8_t *config)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
struct virtio_gpu_config vgconfig;
|
|
|
|
|
|
|
|
memcpy(&vgconfig, config, sizeof(g->virtio_config));
|
|
|
|
|
|
|
|
if (vgconfig.events_clear) {
|
|
|
|
g->virtio_config.events_read &= ~vgconfig.events_clear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-27 11:49:19 +02:00
|
|
|
static uint64_t virtio_gpu_get_features(VirtIODevice *vdev, uint64_t features,
|
|
|
|
Error **errp)
|
2014-09-10 14:12:28 +02:00
|
|
|
{
|
2014-07-11 12:51:43 +02:00
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
|
|
|
|
if (virtio_gpu_virgl_enabled(g->conf)) {
|
2015-12-15 15:00:27 +01:00
|
|
|
features |= (1 << VIRTIO_GPU_F_VIRGL);
|
2014-07-11 12:51:43 +02:00
|
|
|
}
|
2019-02-21 09:10:54 +01:00
|
|
|
if (virtio_gpu_edid_enabled(g->conf)) {
|
|
|
|
features |= (1 << VIRTIO_GPU_F_EDID);
|
|
|
|
}
|
2014-09-10 14:12:28 +02:00
|
|
|
return features;
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
static void virtio_gpu_set_features(VirtIODevice *vdev, uint64_t features)
|
|
|
|
{
|
2015-12-15 15:00:27 +01:00
|
|
|
static const uint32_t virgl = (1 << VIRTIO_GPU_F_VIRGL);
|
2014-07-11 12:51:43 +02:00
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
|
|
|
|
g->use_virgl_renderer = ((features & virgl) == virgl);
|
|
|
|
trace_virtio_gpu_features(g->use_virgl_renderer);
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_notify_event(VirtIOGPU *g, uint32_t event_type)
|
|
|
|
{
|
|
|
|
g->virtio_config.events_read |= event_type;
|
|
|
|
virtio_notify_config(&g->parent_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct virtio_gpu_simple_resource *
|
|
|
|
virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(res, &g->reslist, next) {
|
|
|
|
if (res->resource_id == resource_id) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_gpu_ctrl_response(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd,
|
|
|
|
struct virtio_gpu_ctrl_hdr *resp,
|
|
|
|
size_t resp_len)
|
|
|
|
{
|
|
|
|
size_t s;
|
|
|
|
|
|
|
|
if (cmd->cmd_hdr.flags & VIRTIO_GPU_FLAG_FENCE) {
|
|
|
|
resp->flags |= VIRTIO_GPU_FLAG_FENCE;
|
|
|
|
resp->fence_id = cmd->cmd_hdr.fence_id;
|
|
|
|
resp->ctx_id = cmd->cmd_hdr.ctx_id;
|
|
|
|
}
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_ctrl_hdr_bswap(resp);
|
2014-09-10 14:12:28 +02:00
|
|
|
s = iov_from_buf(cmd->elem.in_sg, cmd->elem.in_num, 0, resp, resp_len);
|
|
|
|
if (s != resp_len) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"%s: response size incorrect %zu vs %zu\n",
|
|
|
|
__func__, s, resp_len);
|
|
|
|
}
|
|
|
|
virtqueue_push(cmd->vq, &cmd->elem, s);
|
|
|
|
virtio_notify(VIRTIO_DEVICE(g), cmd->vq);
|
|
|
|
cmd->finished = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_gpu_ctrl_response_nodata(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd,
|
|
|
|
enum virtio_gpu_ctrl_type type)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_ctrl_hdr resp;
|
|
|
|
|
|
|
|
memset(&resp, 0, sizeof(resp));
|
|
|
|
resp.type = type;
|
|
|
|
virtio_gpu_ctrl_response(g, cmd, &resp, sizeof(resp));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virtio_gpu_fill_display_info(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_resp_display_info *dpy_info)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
|
|
|
if (g->enabled_output_bitmask & (1 << i)) {
|
|
|
|
dpy_info->pmodes[i].enabled = 1;
|
2017-09-15 16:40:31 +02:00
|
|
|
dpy_info->pmodes[i].r.width = cpu_to_le32(g->req_state[i].width);
|
|
|
|
dpy_info->pmodes[i].r.height = cpu_to_le32(g->req_state[i].height);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_gpu_get_display_info(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_resp_display_info display_info;
|
|
|
|
|
|
|
|
trace_virtio_gpu_cmd_get_display_info();
|
|
|
|
memset(&display_info, 0, sizeof(display_info));
|
|
|
|
display_info.hdr.type = VIRTIO_GPU_RESP_OK_DISPLAY_INFO;
|
|
|
|
virtio_gpu_fill_display_info(g, &display_info);
|
|
|
|
virtio_gpu_ctrl_response(g, cmd, &display_info.hdr,
|
|
|
|
sizeof(display_info));
|
|
|
|
}
|
|
|
|
|
2019-02-21 09:10:54 +01:00
|
|
|
static void
|
|
|
|
virtio_gpu_generate_edid(VirtIOGPU *g, int scanout,
|
|
|
|
struct virtio_gpu_resp_edid *edid)
|
|
|
|
{
|
|
|
|
qemu_edid_info info = {
|
|
|
|
.prefx = g->req_state[scanout].width,
|
|
|
|
.prefy = g->req_state[scanout].height,
|
|
|
|
};
|
|
|
|
|
|
|
|
edid->size = cpu_to_le32(sizeof(edid->edid));
|
|
|
|
qemu_edid_generate(edid->edid, sizeof(edid->edid), &info);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_gpu_get_edid(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_resp_edid edid;
|
|
|
|
struct virtio_gpu_cmd_get_edid get_edid;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(get_edid);
|
|
|
|
virtio_gpu_bswap_32(&get_edid, sizeof(get_edid));
|
|
|
|
|
|
|
|
if (get_edid.scanout >= g->conf.max_outputs) {
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
trace_virtio_gpu_cmd_get_edid(get_edid.scanout);
|
|
|
|
memset(&edid, 0, sizeof(edid));
|
|
|
|
edid.hdr.type = VIRTIO_GPU_RESP_OK_EDID;
|
|
|
|
virtio_gpu_generate_edid(g, get_edid.scanout, &edid);
|
|
|
|
virtio_gpu_ctrl_response(g, cmd, &edid.hdr, sizeof(edid));
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static pixman_format_code_t get_pixman_format(uint32_t virtio_gpu_format)
|
|
|
|
{
|
|
|
|
switch (virtio_gpu_format) {
|
|
|
|
case VIRTIO_GPU_FORMAT_B8G8R8X8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_b8g8r8x8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_B8G8R8A8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_b8g8r8a8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_X8R8G8B8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_x8r8g8b8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_A8R8G8B8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_a8r8g8b8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_R8G8B8X8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_r8g8b8x8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_R8G8B8A8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_r8g8b8a8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_X8B8G8R8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_x8b8g8r8;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_FORMAT_A8B8G8R8_UNORM:
|
2017-04-03 13:40:44 +02:00
|
|
|
return PIXMAN_BE_a8b8g8r8;
|
2014-09-10 14:12:28 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 19:17:41 +01:00
|
|
|
static uint32_t calc_image_hostmem(pixman_format_code_t pformat,
|
|
|
|
uint32_t width, uint32_t height)
|
|
|
|
{
|
|
|
|
/* Copied from pixman/pixman-bits-image.c, skip integer overflow check.
|
|
|
|
* pixman_image_create_bits will fail in case it overflow.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int bpp = PIXMAN_FORMAT_BPP(pformat);
|
|
|
|
int stride = ((width * bpp + 0x1f) >> 5) * sizeof(uint32_t);
|
|
|
|
return height * stride;
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_resource_create_2d(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
pixman_format_code_t pformat;
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_resource_create_2d c2d;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(c2d);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&c2d, sizeof(c2d));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_create_2d(c2d.resource_id, c2d.format,
|
|
|
|
c2d.width, c2d.height);
|
|
|
|
|
|
|
|
if (c2d.resource_id == 0) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: resource id 0 is not allowed\n",
|
|
|
|
__func__);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, c2d.resource_id);
|
|
|
|
if (res) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: resource already exists %d\n",
|
|
|
|
__func__, c2d.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = g_new0(struct virtio_gpu_simple_resource, 1);
|
|
|
|
|
|
|
|
res->width = c2d.width;
|
|
|
|
res->height = c2d.height;
|
|
|
|
res->format = c2d.format;
|
|
|
|
res->resource_id = c2d.resource_id;
|
|
|
|
|
|
|
|
pformat = get_pixman_format(c2d.format);
|
|
|
|
if (!pformat) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"%s: host couldn't handle guest format %d\n",
|
|
|
|
__func__, c2d.format);
|
2016-09-19 04:07:11 +02:00
|
|
|
g_free(res);
|
2014-09-10 14:12:28 +02:00
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
|
|
|
|
return;
|
|
|
|
}
|
2016-11-29 13:42:36 +01:00
|
|
|
|
2017-11-09 19:17:41 +01:00
|
|
|
res->hostmem = calc_image_hostmem(pformat, c2d.width, c2d.height);
|
2016-11-29 13:42:36 +01:00
|
|
|
if (res->hostmem + g->hostmem < g->conf.max_hostmem) {
|
|
|
|
res->image = pixman_image_create_bits(pformat,
|
|
|
|
c2d.width,
|
|
|
|
c2d.height,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
if (!res->image) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"%s: resource creation failed %d %d %d\n",
|
|
|
|
__func__, c2d.resource_id, c2d.width, c2d.height);
|
|
|
|
g_free(res);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_OUT_OF_MEMORY;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTAILQ_INSERT_HEAD(&g->reslist, res, next);
|
2016-11-29 13:42:36 +01:00
|
|
|
g->hostmem += res->hostmem;
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
2018-07-02 18:24:41 +02:00
|
|
|
static void virtio_gpu_disable_scanout(VirtIOGPU *g, int scanout_id)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_scanout *scanout = &g->scanout[scanout_id];
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
DisplaySurface *ds = NULL;
|
|
|
|
|
|
|
|
if (scanout->resource_id == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, scanout->resource_id);
|
|
|
|
if (res) {
|
|
|
|
res->scanout_bitmask &= ~(1 << scanout_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scanout_id == 0) {
|
|
|
|
/* primary head */
|
|
|
|
ds = qemu_create_message_surface(scanout->width ?: 640,
|
|
|
|
scanout->height ?: 480,
|
|
|
|
"Guest disabled display.");
|
|
|
|
}
|
|
|
|
dpy_gfx_replace_surface(scanout->con, ds);
|
|
|
|
scanout->resource_id = 0;
|
|
|
|
scanout->ds = NULL;
|
|
|
|
scanout->width = 0;
|
|
|
|
scanout->height = 0;
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_resource_destroy(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_simple_resource *res)
|
|
|
|
{
|
2018-07-02 18:24:43 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (res->scanout_bitmask) {
|
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
|
|
|
if (res->scanout_bitmask & (1 << i)) {
|
|
|
|
virtio_gpu_disable_scanout(g, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
pixman_image_unref(res->image);
|
2018-08-29 14:21:00 +02:00
|
|
|
virtio_gpu_cleanup_mapping(g, res);
|
2014-09-10 14:12:28 +02:00
|
|
|
QTAILQ_REMOVE(&g->reslist, res, next);
|
2016-11-29 13:42:36 +01:00
|
|
|
g->hostmem -= res->hostmem;
|
2014-09-10 14:12:28 +02:00
|
|
|
g_free(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_resource_unref(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_resource_unref unref;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(unref);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&unref, sizeof(unref));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_unref(unref.resource_id);
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, unref.resource_id);
|
|
|
|
if (!res) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, unref.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
virtio_gpu_resource_destroy(g, res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_transfer_to_host_2d(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
int h;
|
|
|
|
uint32_t src_offset, dst_offset, stride;
|
|
|
|
int bpp;
|
|
|
|
pixman_format_code_t format;
|
|
|
|
struct virtio_gpu_transfer_to_host_2d t2d;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(t2d);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_t2d_bswap(&t2d);
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_xfer_toh_2d(t2d.resource_id);
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, t2d.resource_id);
|
|
|
|
if (!res || !res->iov) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, t2d.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t2d.r.x > res->width ||
|
|
|
|
t2d.r.y > res->height ||
|
|
|
|
t2d.r.width > res->width ||
|
|
|
|
t2d.r.height > res->height ||
|
|
|
|
t2d.r.x + t2d.r.width > res->width ||
|
|
|
|
t2d.r.y + t2d.r.height > res->height) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: transfer bounds outside resource"
|
|
|
|
" bounds for resource %d: %d %d %d %d vs %d %d\n",
|
|
|
|
__func__, t2d.resource_id, t2d.r.x, t2d.r.y,
|
|
|
|
t2d.r.width, t2d.r.height, res->width, res->height);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
format = pixman_image_get_format(res->image);
|
2017-06-22 13:04:16 +02:00
|
|
|
bpp = DIV_ROUND_UP(PIXMAN_FORMAT_BPP(format), 8);
|
2014-09-10 14:12:28 +02:00
|
|
|
stride = pixman_image_get_stride(res->image);
|
|
|
|
|
|
|
|
if (t2d.offset || t2d.r.x || t2d.r.y ||
|
|
|
|
t2d.r.width != pixman_image_get_width(res->image)) {
|
|
|
|
void *img_data = pixman_image_get_data(res->image);
|
|
|
|
for (h = 0; h < t2d.r.height; h++) {
|
|
|
|
src_offset = t2d.offset + stride * h;
|
|
|
|
dst_offset = (t2d.r.y + h) * stride + (t2d.r.x * bpp);
|
|
|
|
|
|
|
|
iov_to_buf(res->iov, res->iov_cnt, src_offset,
|
|
|
|
(uint8_t *)img_data
|
|
|
|
+ dst_offset, t2d.r.width * bpp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
iov_to_buf(res->iov, res->iov_cnt, 0,
|
|
|
|
pixman_image_get_data(res->image),
|
|
|
|
pixman_image_get_stride(res->image)
|
|
|
|
* pixman_image_get_height(res->image));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_resource_flush(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_resource_flush rf;
|
|
|
|
pixman_region16_t flush_region;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(rf);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&rf, sizeof(rf));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_flush(rf.resource_id,
|
|
|
|
rf.r.width, rf.r.height, rf.r.x, rf.r.y);
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, rf.resource_id);
|
|
|
|
if (!res) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, rf.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rf.r.x > res->width ||
|
|
|
|
rf.r.y > res->height ||
|
|
|
|
rf.r.width > res->width ||
|
|
|
|
rf.r.height > res->height ||
|
|
|
|
rf.r.x + rf.r.width > res->width ||
|
|
|
|
rf.r.y + rf.r.height > res->height) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: flush bounds outside resource"
|
|
|
|
" bounds for resource %d: %d %d %d %d vs %d %d\n",
|
|
|
|
__func__, rf.resource_id, rf.r.x, rf.r.y,
|
|
|
|
rf.r.width, rf.r.height, res->width, res->height);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixman_region_init_rect(&flush_region,
|
|
|
|
rf.r.x, rf.r.y, rf.r.width, rf.r.height);
|
2016-05-19 12:25:58 +02:00
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
2014-09-10 14:12:28 +02:00
|
|
|
struct virtio_gpu_scanout *scanout;
|
|
|
|
pixman_region16_t region, finalregion;
|
|
|
|
pixman_box16_t *extents;
|
|
|
|
|
|
|
|
if (!(res->scanout_bitmask & (1 << i))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
scanout = &g->scanout[i];
|
|
|
|
|
|
|
|
pixman_region_init(&finalregion);
|
|
|
|
pixman_region_init_rect(®ion, scanout->x, scanout->y,
|
|
|
|
scanout->width, scanout->height);
|
|
|
|
|
|
|
|
pixman_region_intersect(&finalregion, &flush_region, ®ion);
|
|
|
|
pixman_region_translate(&finalregion, -scanout->x, -scanout->y);
|
|
|
|
extents = pixman_region_extents(&finalregion);
|
|
|
|
/* work out the area we need to update for each console */
|
|
|
|
dpy_gfx_update(g->scanout[i].con,
|
|
|
|
extents->x1, extents->y1,
|
|
|
|
extents->x2 - extents->x1,
|
|
|
|
extents->y2 - extents->y1);
|
|
|
|
|
|
|
|
pixman_region_fini(®ion);
|
|
|
|
pixman_region_fini(&finalregion);
|
|
|
|
}
|
|
|
|
pixman_region_fini(&flush_region);
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:40:55 +02:00
|
|
|
static void virtio_unref_resource(pixman_image_t *image, void *data)
|
|
|
|
{
|
|
|
|
pixman_image_unref(data);
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_set_scanout(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
2018-07-02 18:24:42 +02:00
|
|
|
struct virtio_gpu_simple_resource *res, *ores;
|
2014-09-10 14:12:28 +02:00
|
|
|
struct virtio_gpu_scanout *scanout;
|
|
|
|
pixman_format_code_t format;
|
|
|
|
uint32_t offset;
|
|
|
|
int bpp;
|
|
|
|
struct virtio_gpu_set_scanout ss;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(ss);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&ss, sizeof(ss));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_set_scanout(ss.scanout_id, ss.resource_id,
|
|
|
|
ss.r.width, ss.r.height, ss.r.x, ss.r.y);
|
|
|
|
|
2016-05-19 12:25:58 +02:00
|
|
|
if (ss.scanout_id >= g->conf.max_outputs) {
|
2016-05-19 12:25:55 +02:00
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal scanout id specified %d",
|
|
|
|
__func__, ss.scanout_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
g->enable = 1;
|
|
|
|
if (ss.resource_id == 0) {
|
2018-07-02 18:24:41 +02:00
|
|
|
virtio_gpu_disable_scanout(g, ss.scanout_id);
|
2014-09-10 14:12:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a surface for this scanout */
|
|
|
|
res = virtio_gpu_find_resource(g, ss.resource_id);
|
|
|
|
if (!res) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, ss.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ss.r.x > res->width ||
|
|
|
|
ss.r.y > res->height ||
|
|
|
|
ss.r.width > res->width ||
|
|
|
|
ss.r.height > res->height ||
|
|
|
|
ss.r.x + ss.r.width > res->width ||
|
|
|
|
ss.r.y + ss.r.height > res->height) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal scanout %d bounds for"
|
|
|
|
" resource %d, (%d,%d)+%d,%d vs %d %d\n",
|
|
|
|
__func__, ss.scanout_id, ss.resource_id, ss.r.x, ss.r.y,
|
|
|
|
ss.r.width, ss.r.height, res->width, res->height);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
scanout = &g->scanout[ss.scanout_id];
|
|
|
|
|
|
|
|
format = pixman_image_get_format(res->image);
|
2017-06-22 13:04:16 +02:00
|
|
|
bpp = DIV_ROUND_UP(PIXMAN_FORMAT_BPP(format), 8);
|
2014-09-10 14:12:28 +02:00
|
|
|
offset = (ss.r.x * bpp) + ss.r.y * pixman_image_get_stride(res->image);
|
|
|
|
if (!scanout->ds || surface_data(scanout->ds)
|
|
|
|
!= ((uint8_t *)pixman_image_get_data(res->image) + offset) ||
|
|
|
|
scanout->width != ss.r.width ||
|
|
|
|
scanout->height != ss.r.height) {
|
2016-05-30 10:40:55 +02:00
|
|
|
pixman_image_t *rect;
|
|
|
|
void *ptr = (uint8_t *)pixman_image_get_data(res->image) + offset;
|
|
|
|
rect = pixman_image_create_bits(format, ss.r.width, ss.r.height, ptr,
|
|
|
|
pixman_image_get_stride(res->image));
|
|
|
|
pixman_image_ref(res->image);
|
|
|
|
pixman_image_set_destroy_function(rect, virtio_unref_resource,
|
|
|
|
res->image);
|
2014-09-10 14:12:28 +02:00
|
|
|
/* realloc the surface ptr */
|
2016-05-30 10:40:55 +02:00
|
|
|
scanout->ds = qemu_create_displaysurface_pixman(rect);
|
2014-09-10 14:12:28 +02:00
|
|
|
if (!scanout->ds) {
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
|
|
|
|
return;
|
|
|
|
}
|
2017-01-22 08:42:33 +01:00
|
|
|
pixman_image_unref(rect);
|
2014-09-10 14:12:28 +02:00
|
|
|
dpy_gfx_replace_surface(g->scanout[ss.scanout_id].con, scanout->ds);
|
|
|
|
}
|
|
|
|
|
2018-07-02 18:24:42 +02:00
|
|
|
ores = virtio_gpu_find_resource(g, scanout->resource_id);
|
|
|
|
if (ores) {
|
|
|
|
ores->scanout_bitmask &= ~(1 << ss.scanout_id);
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
res->scanout_bitmask |= (1 << ss.scanout_id);
|
|
|
|
scanout->resource_id = ss.resource_id;
|
|
|
|
scanout->x = ss.r.x;
|
|
|
|
scanout->y = ss.r.y;
|
|
|
|
scanout->width = ss.r.width;
|
|
|
|
scanout->height = ss.r.height;
|
|
|
|
}
|
|
|
|
|
2018-08-29 14:21:00 +02:00
|
|
|
int virtio_gpu_create_mapping_iov(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_resource_attach_backing *ab,
|
2014-09-10 14:12:28 +02:00
|
|
|
struct virtio_gpu_ctrl_command *cmd,
|
2016-05-23 15:22:07 +02:00
|
|
|
uint64_t **addr, struct iovec **iov)
|
2014-09-10 14:12:28 +02:00
|
|
|
{
|
|
|
|
struct virtio_gpu_mem_entry *ents;
|
|
|
|
size_t esize, s;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (ab->nr_entries > 16384) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
2015-03-17 08:56:18 +01:00
|
|
|
"%s: nr_entries is too big (%d > 16384)\n",
|
2014-09-10 14:12:28 +02:00
|
|
|
__func__, ab->nr_entries);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
esize = sizeof(*ents) * ab->nr_entries;
|
|
|
|
ents = g_malloc(esize);
|
|
|
|
s = iov_to_buf(cmd->elem.out_sg, cmd->elem.out_num,
|
|
|
|
sizeof(*ab), ents, esize);
|
|
|
|
if (s != esize) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"%s: command data size incorrect %zu vs %zu\n",
|
|
|
|
__func__, s, esize);
|
|
|
|
g_free(ents);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*iov = g_malloc0(sizeof(struct iovec) * ab->nr_entries);
|
2016-05-23 15:22:07 +02:00
|
|
|
if (addr) {
|
|
|
|
*addr = g_malloc0(sizeof(uint64_t) * ab->nr_entries);
|
|
|
|
}
|
2014-09-10 14:12:28 +02:00
|
|
|
for (i = 0; i < ab->nr_entries; i++) {
|
2017-09-15 16:40:31 +02:00
|
|
|
uint64_t a = le64_to_cpu(ents[i].addr);
|
|
|
|
uint32_t l = le32_to_cpu(ents[i].length);
|
|
|
|
hwaddr len = l;
|
|
|
|
(*iov)[i].iov_len = l;
|
2018-08-29 14:21:01 +02:00
|
|
|
(*iov)[i].iov_base = dma_memory_map(VIRTIO_DEVICE(g)->dma_as,
|
|
|
|
a, &len, DMA_DIRECTION_TO_DEVICE);
|
2016-05-23 15:22:07 +02:00
|
|
|
if (addr) {
|
2017-09-15 16:40:31 +02:00
|
|
|
(*addr)[i] = a;
|
2016-05-23 15:22:07 +02:00
|
|
|
}
|
2017-09-15 16:40:31 +02:00
|
|
|
if (!(*iov)[i].iov_base || len != l) {
|
2014-09-10 14:12:28 +02:00
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: failed to map MMIO memory for"
|
|
|
|
" resource %d element %d\n",
|
|
|
|
__func__, ab->resource_id, i);
|
2018-08-29 14:21:00 +02:00
|
|
|
virtio_gpu_cleanup_mapping_iov(g, *iov, i);
|
2014-09-10 14:12:28 +02:00
|
|
|
g_free(ents);
|
|
|
|
*iov = NULL;
|
2016-05-23 15:22:07 +02:00
|
|
|
if (addr) {
|
|
|
|
g_free(*addr);
|
|
|
|
*addr = NULL;
|
|
|
|
}
|
2014-09-10 14:12:28 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free(ents);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-29 14:21:00 +02:00
|
|
|
void virtio_gpu_cleanup_mapping_iov(VirtIOGPU *g,
|
|
|
|
struct iovec *iov, uint32_t count)
|
2014-09-10 14:12:28 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
2018-08-29 14:21:01 +02:00
|
|
|
dma_memory_unmap(VIRTIO_DEVICE(g)->dma_as,
|
|
|
|
iov[i].iov_base, iov[i].iov_len,
|
|
|
|
DMA_DIRECTION_TO_DEVICE,
|
|
|
|
iov[i].iov_len);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
2015-09-15 09:23:14 +02:00
|
|
|
g_free(iov);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 14:21:00 +02:00
|
|
|
static void virtio_gpu_cleanup_mapping(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_simple_resource *res)
|
2014-09-10 14:12:28 +02:00
|
|
|
{
|
2018-08-29 14:21:00 +02:00
|
|
|
virtio_gpu_cleanup_mapping_iov(g, res->iov, res->iov_cnt);
|
2014-09-10 14:12:28 +02:00
|
|
|
res->iov = NULL;
|
|
|
|
res->iov_cnt = 0;
|
2016-05-23 15:22:07 +02:00
|
|
|
g_free(res->addrs);
|
|
|
|
res->addrs = NULL;
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virtio_gpu_resource_attach_backing(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_resource_attach_backing ab;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(ab);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&ab, sizeof(ab));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_back_attach(ab.resource_id);
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, ab.resource_id);
|
|
|
|
if (!res) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, ab.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-29 10:28:41 +01:00
|
|
|
if (res->iov) {
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-29 14:21:00 +02:00
|
|
|
ret = virtio_gpu_create_mapping_iov(g, &ab, cmd, &res->addrs, &res->iov);
|
2014-09-10 14:12:28 +02:00
|
|
|
if (ret != 0) {
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res->iov_cnt = ab.nr_entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virtio_gpu_resource_detach_backing(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_resource_detach_backing detach;
|
|
|
|
|
|
|
|
VIRTIO_GPU_FILL_CMD(detach);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&detach, sizeof(detach));
|
2014-09-10 14:12:28 +02:00
|
|
|
trace_virtio_gpu_cmd_res_back_detach(detach.resource_id);
|
|
|
|
|
|
|
|
res = virtio_gpu_find_resource(g, detach.resource_id);
|
|
|
|
if (!res || !res->iov) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
|
|
|
|
__func__, detach.resource_id);
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
|
|
|
|
return;
|
|
|
|
}
|
2018-08-29 14:21:00 +02:00
|
|
|
virtio_gpu_cleanup_mapping(g, res);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_simple_process_cmd(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd)
|
|
|
|
{
|
|
|
|
VIRTIO_GPU_FILL_CMD(cmd->cmd_hdr);
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_ctrl_hdr_bswap(&cmd->cmd_hdr);
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
switch (cmd->cmd_hdr.type) {
|
|
|
|
case VIRTIO_GPU_CMD_GET_DISPLAY_INFO:
|
|
|
|
virtio_gpu_get_display_info(g, cmd);
|
|
|
|
break;
|
2019-02-21 09:10:54 +01:00
|
|
|
case VIRTIO_GPU_CMD_GET_EDID:
|
|
|
|
virtio_gpu_get_edid(g, cmd);
|
|
|
|
break;
|
2014-09-10 14:12:28 +02:00
|
|
|
case VIRTIO_GPU_CMD_RESOURCE_CREATE_2D:
|
|
|
|
virtio_gpu_resource_create_2d(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_RESOURCE_UNREF:
|
|
|
|
virtio_gpu_resource_unref(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_RESOURCE_FLUSH:
|
|
|
|
virtio_gpu_resource_flush(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_TRANSFER_TO_HOST_2D:
|
|
|
|
virtio_gpu_transfer_to_host_2d(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_SET_SCANOUT:
|
|
|
|
virtio_gpu_set_scanout(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_RESOURCE_ATTACH_BACKING:
|
|
|
|
virtio_gpu_resource_attach_backing(g, cmd);
|
|
|
|
break;
|
|
|
|
case VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING:
|
|
|
|
virtio_gpu_resource_detach_backing(g, cmd);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!cmd->finished) {
|
|
|
|
virtio_gpu_ctrl_response_nodata(g, cmd, cmd->error ? cmd->error :
|
|
|
|
VIRTIO_GPU_RESP_OK_NODATA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_handle_ctrl_cb(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
qemu_bh_schedule(g->ctrl_bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_handle_cursor_cb(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
qemu_bh_schedule(g->cursor_bh);
|
|
|
|
}
|
|
|
|
|
2015-12-01 13:18:38 +01:00
|
|
|
void virtio_gpu_process_cmdq(VirtIOGPU *g)
|
2015-12-01 12:05:14 +01:00
|
|
|
{
|
|
|
|
struct virtio_gpu_ctrl_command *cmd;
|
|
|
|
|
|
|
|
while (!QTAILQ_EMPTY(&g->cmdq)) {
|
|
|
|
cmd = QTAILQ_FIRST(&g->cmdq);
|
|
|
|
|
2019-02-21 12:43:30 +01:00
|
|
|
if (g->renderer_blocked) {
|
2015-12-01 13:18:38 +01:00
|
|
|
break;
|
|
|
|
}
|
2019-02-21 12:43:29 +01:00
|
|
|
|
|
|
|
/* process command */
|
|
|
|
VIRGL(g, virtio_gpu_virgl_process_cmd, virtio_gpu_simple_process_cmd,
|
|
|
|
g, cmd);
|
|
|
|
|
2015-12-01 12:05:14 +01:00
|
|
|
QTAILQ_REMOVE(&g->cmdq, cmd, next);
|
|
|
|
if (virtio_gpu_stats_enabled(g->conf)) {
|
|
|
|
g->stats.requests++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cmd->finished) {
|
|
|
|
QTAILQ_INSERT_TAIL(&g->fenceq, cmd, next);
|
|
|
|
g->inflight++;
|
|
|
|
if (virtio_gpu_stats_enabled(g->conf)) {
|
|
|
|
if (g->stats.max_inflight < g->inflight) {
|
|
|
|
g->stats.max_inflight = g->inflight;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "inflight: %3d (+)\r", g->inflight);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_free(cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
struct virtio_gpu_ctrl_command *cmd;
|
|
|
|
|
|
|
|
if (!virtio_queue_ready(vq)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
#ifdef CONFIG_VIRGL
|
|
|
|
if (!g->renderer_inited && g->use_virgl_renderer) {
|
|
|
|
virtio_gpu_virgl_init(g);
|
|
|
|
g->renderer_inited = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-04 15:26:51 +01:00
|
|
|
cmd = virtqueue_pop(vq, sizeof(struct virtio_gpu_ctrl_command));
|
|
|
|
while (cmd) {
|
2014-09-10 14:12:28 +02:00
|
|
|
cmd->vq = vq;
|
|
|
|
cmd->error = 0;
|
|
|
|
cmd->finished = false;
|
2015-12-01 12:05:14 +01:00
|
|
|
QTAILQ_INSERT_TAIL(&g->cmdq, cmd, next);
|
2016-02-04 15:26:51 +01:00
|
|
|
cmd = virtqueue_pop(vq, sizeof(struct virtio_gpu_ctrl_command));
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
2014-07-11 12:51:43 +02:00
|
|
|
|
2015-12-01 12:05:14 +01:00
|
|
|
virtio_gpu_process_cmdq(g);
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
#ifdef CONFIG_VIRGL
|
|
|
|
if (g->use_virgl_renderer) {
|
|
|
|
virtio_gpu_virgl_fence_poll(g);
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_ctrl_bh(void *opaque)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
virtio_gpu_handle_ctrl(&g->parent_obj, g->ctrl_vq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_handle_cursor(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
2016-02-04 15:26:51 +01:00
|
|
|
VirtQueueElement *elem;
|
2014-09-10 14:12:28 +02:00
|
|
|
size_t s;
|
|
|
|
struct virtio_gpu_update_cursor cursor_info;
|
|
|
|
|
|
|
|
if (!virtio_queue_ready(vq)) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-04 15:26:51 +01:00
|
|
|
for (;;) {
|
|
|
|
elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
|
|
|
|
if (!elem) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = iov_to_buf(elem->out_sg, elem->out_num, 0,
|
2014-09-10 14:12:28 +02:00
|
|
|
&cursor_info, sizeof(cursor_info));
|
|
|
|
if (s != sizeof(cursor_info)) {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"%s: cursor size incorrect %zu vs %zu\n",
|
|
|
|
__func__, s, sizeof(cursor_info));
|
|
|
|
} else {
|
2017-09-15 16:40:31 +02:00
|
|
|
virtio_gpu_bswap_32(&cursor_info, sizeof(cursor_info));
|
2014-09-10 14:12:28 +02:00
|
|
|
update_cursor(g, &cursor_info);
|
|
|
|
}
|
2016-02-04 15:26:51 +01:00
|
|
|
virtqueue_push(vq, elem, 0);
|
2014-09-10 14:12:28 +02:00
|
|
|
virtio_notify(vdev, vq);
|
2016-02-04 15:26:51 +01:00
|
|
|
g_free(elem);
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_cursor_bh(void *opaque)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
virtio_gpu_handle_cursor(&g->parent_obj, g->cursor_vq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_invalidate_display(void *opaque)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_update_display(void *opaque)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_gpu_text_update(void *opaque, console_ch_t *chardata)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static int virtio_gpu_ui_info(void *opaque, uint32_t idx, QemuUIInfo *info)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
|
2016-05-19 12:26:00 +02:00
|
|
|
if (idx >= g->conf.max_outputs) {
|
2014-09-10 14:12:28 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
g->req_state[idx].x = info->xoff;
|
|
|
|
g->req_state[idx].y = info->yoff;
|
|
|
|
g->req_state[idx].width = info->width;
|
|
|
|
g->req_state[idx].height = info->height;
|
|
|
|
|
|
|
|
if (info->width && info->height) {
|
|
|
|
g->enabled_output_bitmask |= (1 << idx);
|
|
|
|
} else {
|
|
|
|
g->enabled_output_bitmask &= ~(1 << idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* send event to guest */
|
|
|
|
virtio_gpu_notify_event(g, VIRTIO_GPU_EVENT_DISPLAY);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-02-21 12:43:29 +01:00
|
|
|
static void virtio_gpu_gl_block(void *opaque, bool block)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
|
|
|
|
if (block) {
|
|
|
|
g->renderer_blocked++;
|
|
|
|
} else {
|
|
|
|
g->renderer_blocked--;
|
|
|
|
}
|
|
|
|
assert(g->renderer_blocked >= 0);
|
|
|
|
|
|
|
|
if (g->renderer_blocked == 0) {
|
|
|
|
virtio_gpu_process_cmdq(g);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
const GraphicHwOps virtio_gpu_ops = {
|
|
|
|
.invalidate = virtio_gpu_invalidate_display,
|
|
|
|
.gfx_update = virtio_gpu_update_display,
|
|
|
|
.text_update = virtio_gpu_text_update,
|
|
|
|
.ui_info = virtio_gpu_ui_info,
|
2015-12-02 08:17:24 +01:00
|
|
|
.gl_block = virtio_gpu_gl_block,
|
2014-09-10 14:12:28 +02:00
|
|
|
};
|
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
static const VMStateDescription vmstate_virtio_gpu_scanout = {
|
|
|
|
.name = "virtio-gpu-one-scanout",
|
|
|
|
.version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT32(resource_id, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(width, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(height, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_INT32(x, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_INT32(y, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(cursor.resource_id, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(cursor.hot_x, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(cursor.hot_y, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(cursor.pos.x, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_UINT32(cursor.pos.y, struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_virtio_gpu_scanouts = {
|
|
|
|
.name = "virtio-gpu-scanouts",
|
|
|
|
.version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_INT32(enable, struct VirtIOGPU),
|
2017-06-23 16:48:23 +02:00
|
|
|
VMSTATE_UINT32_EQUAL(conf.max_outputs, struct VirtIOGPU, NULL),
|
2016-05-23 15:22:07 +02:00
|
|
|
VMSTATE_STRUCT_VARRAY_UINT32(scanout, struct VirtIOGPU,
|
|
|
|
conf.max_outputs, 1,
|
|
|
|
vmstate_virtio_gpu_scanout,
|
|
|
|
struct virtio_gpu_scanout),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2017-01-19 20:00:50 +01:00
|
|
|
static int virtio_gpu_save(QEMUFile *f, void *opaque, size_t size,
|
2018-11-14 14:29:30 +01:00
|
|
|
const VMStateField *field, QJSON *vmdesc)
|
2016-05-23 15:22:07 +02:00
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* in 2d mode we should never find unprocessed commands here */
|
|
|
|
assert(QTAILQ_EMPTY(&g->cmdq));
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(res, &g->reslist, next) {
|
|
|
|
qemu_put_be32(f, res->resource_id);
|
|
|
|
qemu_put_be32(f, res->width);
|
|
|
|
qemu_put_be32(f, res->height);
|
|
|
|
qemu_put_be32(f, res->format);
|
|
|
|
qemu_put_be32(f, res->iov_cnt);
|
|
|
|
for (i = 0; i < res->iov_cnt; i++) {
|
|
|
|
qemu_put_be64(f, res->addrs[i]);
|
|
|
|
qemu_put_be32(f, res->iov[i].iov_len);
|
|
|
|
}
|
|
|
|
qemu_put_buffer(f, (void *)pixman_image_get_data(res->image),
|
|
|
|
pixman_image_get_stride(res->image) * res->height);
|
|
|
|
}
|
|
|
|
qemu_put_be32(f, 0); /* end of list */
|
|
|
|
|
2017-09-25 13:29:17 +02:00
|
|
|
return vmstate_save_state(f, &vmstate_virtio_gpu_scanouts, g, NULL);
|
2016-05-23 15:22:07 +02:00
|
|
|
}
|
|
|
|
|
2017-01-19 20:00:50 +01:00
|
|
|
static int virtio_gpu_load(QEMUFile *f, void *opaque, size_t size,
|
2018-11-14 14:29:30 +01:00
|
|
|
const VMStateField *field)
|
2016-05-23 15:22:07 +02:00
|
|
|
{
|
|
|
|
VirtIOGPU *g = opaque;
|
|
|
|
struct virtio_gpu_simple_resource *res;
|
|
|
|
struct virtio_gpu_scanout *scanout;
|
|
|
|
uint32_t resource_id, pformat;
|
2016-10-06 14:55:44 +02:00
|
|
|
int i;
|
2016-05-23 15:22:07 +02:00
|
|
|
|
2017-01-09 14:38:42 +01:00
|
|
|
g->hostmem = 0;
|
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
resource_id = qemu_get_be32(f);
|
|
|
|
while (resource_id != 0) {
|
|
|
|
res = g_new0(struct virtio_gpu_simple_resource, 1);
|
|
|
|
res->resource_id = resource_id;
|
|
|
|
res->width = qemu_get_be32(f);
|
|
|
|
res->height = qemu_get_be32(f);
|
|
|
|
res->format = qemu_get_be32(f);
|
|
|
|
res->iov_cnt = qemu_get_be32(f);
|
|
|
|
|
|
|
|
/* allocate */
|
|
|
|
pformat = get_pixman_format(res->format);
|
|
|
|
if (!pformat) {
|
2017-01-09 14:38:43 +01:00
|
|
|
g_free(res);
|
2016-05-23 15:22:07 +02:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
res->image = pixman_image_create_bits(pformat,
|
|
|
|
res->width, res->height,
|
|
|
|
NULL, 0);
|
|
|
|
if (!res->image) {
|
2017-01-09 14:38:43 +01:00
|
|
|
g_free(res);
|
2016-05-23 15:22:07 +02:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-11-09 19:17:41 +01:00
|
|
|
res->hostmem = calc_image_hostmem(pformat, res->width, res->height);
|
2017-01-09 14:38:42 +01:00
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
res->addrs = g_new(uint64_t, res->iov_cnt);
|
|
|
|
res->iov = g_new(struct iovec, res->iov_cnt);
|
|
|
|
|
|
|
|
/* read data */
|
|
|
|
for (i = 0; i < res->iov_cnt; i++) {
|
|
|
|
res->addrs[i] = qemu_get_be64(f);
|
|
|
|
res->iov[i].iov_len = qemu_get_be32(f);
|
|
|
|
}
|
|
|
|
qemu_get_buffer(f, (void *)pixman_image_get_data(res->image),
|
|
|
|
pixman_image_get_stride(res->image) * res->height);
|
|
|
|
|
|
|
|
/* restore mapping */
|
|
|
|
for (i = 0; i < res->iov_cnt; i++) {
|
|
|
|
hwaddr len = res->iov[i].iov_len;
|
|
|
|
res->iov[i].iov_base =
|
2018-08-29 14:21:01 +02:00
|
|
|
dma_memory_map(VIRTIO_DEVICE(g)->dma_as,
|
|
|
|
res->addrs[i], &len, DMA_DIRECTION_TO_DEVICE);
|
2018-08-29 14:21:00 +02:00
|
|
|
|
2016-05-23 15:22:07 +02:00
|
|
|
if (!res->iov[i].iov_base || len != res->iov[i].iov_len) {
|
2017-01-09 14:38:43 +01:00
|
|
|
/* Clean up the half-a-mapping we just created... */
|
|
|
|
if (res->iov[i].iov_base) {
|
2018-08-29 14:21:01 +02:00
|
|
|
dma_memory_unmap(VIRTIO_DEVICE(g)->dma_as,
|
|
|
|
res->iov[i].iov_base,
|
|
|
|
res->iov[i].iov_len,
|
|
|
|
DMA_DIRECTION_TO_DEVICE,
|
|
|
|
res->iov[i].iov_len);
|
2017-01-09 14:38:43 +01:00
|
|
|
}
|
|
|
|
/* ...and the mappings for previous loop iterations */
|
|
|
|
res->iov_cnt = i;
|
2018-08-29 14:21:00 +02:00
|
|
|
virtio_gpu_cleanup_mapping(g, res);
|
2017-01-09 14:38:43 +01:00
|
|
|
pixman_image_unref(res->image);
|
|
|
|
g_free(res);
|
2016-05-23 15:22:07 +02:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QTAILQ_INSERT_HEAD(&g->reslist, res, next);
|
2017-01-09 14:38:42 +01:00
|
|
|
g->hostmem += res->hostmem;
|
2016-05-23 15:22:07 +02:00
|
|
|
|
|
|
|
resource_id = qemu_get_be32(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* load & apply scanout state */
|
|
|
|
vmstate_load_state(f, &vmstate_virtio_gpu_scanouts, g, 1);
|
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
|
|
|
scanout = &g->scanout[i];
|
|
|
|
if (!scanout->resource_id) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
res = virtio_gpu_find_resource(g, scanout->resource_id);
|
|
|
|
if (!res) {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
scanout->ds = qemu_create_displaysurface_pixman(res->image);
|
|
|
|
if (!scanout->ds) {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dpy_gfx_replace_surface(scanout->con, scanout->ds);
|
2018-08-10 15:28:56 +02:00
|
|
|
dpy_gfx_update_full(scanout->con);
|
2017-07-10 09:04:32 +02:00
|
|
|
if (scanout->cursor.resource_id) {
|
|
|
|
update_cursor(g, &scanout->cursor);
|
|
|
|
}
|
2016-05-23 15:22:07 +02:00
|
|
|
res->scanout_bitmask |= (1 << i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_device_realize(DeviceState *qdev, Error **errp)
|
|
|
|
{
|
|
|
|
VirtIODevice *vdev = VIRTIO_DEVICE(qdev);
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(qdev);
|
2014-07-11 12:51:43 +02:00
|
|
|
bool have_virgl;
|
2017-01-16 12:31:53 +01:00
|
|
|
Error *local_err = NULL;
|
2014-09-10 14:12:28 +02:00
|
|
|
int i;
|
|
|
|
|
2016-05-19 12:25:59 +02:00
|
|
|
if (g->conf.max_outputs > VIRTIO_GPU_MAX_SCANOUTS) {
|
|
|
|
error_setg(errp, "invalid max_outputs > %d", VIRTIO_GPU_MAX_SCANOUTS);
|
2016-05-19 12:25:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
g->use_virgl_renderer = false;
|
|
|
|
#if !defined(CONFIG_VIRGL) || defined(HOST_WORDS_BIGENDIAN)
|
|
|
|
have_virgl = false;
|
|
|
|
#else
|
|
|
|
have_virgl = display_opengl;
|
|
|
|
#endif
|
|
|
|
if (!have_virgl) {
|
|
|
|
g->conf.flags &= ~(1 << VIRTIO_GPU_FLAG_VIRGL_ENABLED);
|
|
|
|
}
|
|
|
|
|
2017-01-16 12:31:53 +01:00
|
|
|
if (virtio_gpu_virgl_enabled(g->conf)) {
|
|
|
|
error_setg(&g->migration_blocker, "virgl is not yet migratable");
|
|
|
|
migrate_add_blocker(g->migration_blocker, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
error_free(g->migration_blocker);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-15 16:40:31 +02:00
|
|
|
g->virtio_config.num_scanouts = cpu_to_le32(g->conf.max_outputs);
|
2017-01-16 12:31:53 +01:00
|
|
|
virtio_init(VIRTIO_DEVICE(g), "virtio-gpu", VIRTIO_ID_GPU,
|
2019-02-21 12:43:28 +01:00
|
|
|
sizeof(struct virtio_gpu_config));
|
2017-01-16 12:31:53 +01:00
|
|
|
|
2017-04-21 11:22:14 +02:00
|
|
|
g->req_state[0].width = g->conf.xres;
|
|
|
|
g->req_state[0].height = g->conf.yres;
|
2017-01-16 12:31:53 +01:00
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
if (virtio_gpu_virgl_enabled(g->conf)) {
|
|
|
|
/* use larger control queue in 3d mode */
|
|
|
|
g->ctrl_vq = virtio_add_queue(vdev, 256, virtio_gpu_handle_ctrl_cb);
|
|
|
|
g->cursor_vq = virtio_add_queue(vdev, 16, virtio_gpu_handle_cursor_cb);
|
2018-02-23 03:38:14 +01:00
|
|
|
|
|
|
|
#if defined(CONFIG_VIRGL)
|
|
|
|
g->virtio_config.num_capsets = virtio_gpu_virgl_get_num_capsets(g);
|
|
|
|
#else
|
|
|
|
g->virtio_config.num_capsets = 0;
|
|
|
|
#endif
|
2014-07-11 12:51:43 +02:00
|
|
|
} else {
|
|
|
|
g->ctrl_vq = virtio_add_queue(vdev, 64, virtio_gpu_handle_ctrl_cb);
|
|
|
|
g->cursor_vq = virtio_add_queue(vdev, 16, virtio_gpu_handle_cursor_cb);
|
|
|
|
}
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
g->ctrl_bh = qemu_bh_new(virtio_gpu_ctrl_bh, g);
|
|
|
|
g->cursor_bh = qemu_bh_new(virtio_gpu_cursor_bh, g);
|
|
|
|
QTAILQ_INIT(&g->reslist);
|
2015-12-01 12:05:14 +01:00
|
|
|
QTAILQ_INIT(&g->cmdq);
|
2014-09-10 14:12:28 +02:00
|
|
|
QTAILQ_INIT(&g->fenceq);
|
|
|
|
|
|
|
|
g->enabled_output_bitmask = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
|
|
|
g->scanout[i].con =
|
|
|
|
graphic_console_init(DEVICE(g), i, &virtio_gpu_ops, g);
|
|
|
|
if (i > 0) {
|
|
|
|
dpy_gfx_replace_surface(g->scanout[i].con, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-14 19:22:54 +02:00
|
|
|
static void virtio_gpu_device_unrealize(DeviceState *qdev, Error **errp)
|
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(qdev);
|
|
|
|
if (g->migration_blocker) {
|
|
|
|
migrate_del_blocker(g->migration_blocker);
|
|
|
|
error_free(g->migration_blocker);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static void virtio_gpu_instance_init(Object *obj)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-03-07 09:02:44 +01:00
|
|
|
static void virtio_gpu_reset(VirtIODevice *vdev)
|
2014-09-10 14:12:28 +02:00
|
|
|
{
|
|
|
|
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
|
|
|
struct virtio_gpu_simple_resource *res, *tmp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
g->enable = 0;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH_SAFE(res, &g->reslist, next, tmp) {
|
|
|
|
virtio_gpu_resource_destroy(g, res);
|
|
|
|
}
|
|
|
|
for (i = 0; i < g->conf.max_outputs; i++) {
|
|
|
|
g->scanout[i].resource_id = 0;
|
|
|
|
g->scanout[i].width = 0;
|
|
|
|
g->scanout[i].height = 0;
|
|
|
|
g->scanout[i].x = 0;
|
|
|
|
g->scanout[i].y = 0;
|
|
|
|
g->scanout[i].ds = NULL;
|
|
|
|
}
|
2014-07-11 12:51:43 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_VIRGL
|
|
|
|
if (g->use_virgl_renderer) {
|
|
|
|
virtio_gpu_virgl_reset(g);
|
|
|
|
g->use_virgl_renderer = 0;
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
2016-10-06 14:55:44 +02:00
|
|
|
/*
|
|
|
|
* For historical reasons virtio_gpu does not adhere to virtio migration
|
|
|
|
* scheme as described in doc/virtio-migration.txt, in a sense that no
|
|
|
|
* save/load callback are provided to the core. Instead the device data
|
|
|
|
* is saved/loaded after the core data.
|
|
|
|
*
|
|
|
|
* Because of this we need a special vmsd.
|
|
|
|
*/
|
|
|
|
static const VMStateDescription vmstate_virtio_gpu = {
|
|
|
|
.name = "virtio-gpu",
|
|
|
|
.minimum_version_id = VIRTIO_GPU_VM_VERSION,
|
|
|
|
.version_id = VIRTIO_GPU_VM_VERSION,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_VIRTIO_DEVICE /* core */,
|
|
|
|
{
|
|
|
|
.name = "virtio-gpu",
|
|
|
|
.info = &(const VMStateInfo) {
|
|
|
|
.name = "virtio-gpu",
|
|
|
|
.get = virtio_gpu_load,
|
|
|
|
.put = virtio_gpu_save,
|
|
|
|
},
|
|
|
|
.flags = VMS_SINGLE,
|
|
|
|
} /* device */,
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
},
|
|
|
|
};
|
2016-07-14 19:22:55 +02:00
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
static Property virtio_gpu_properties[] = {
|
2015-06-24 12:22:09 +02:00
|
|
|
DEFINE_PROP_UINT32("max_outputs", VirtIOGPU, conf.max_outputs, 1),
|
2018-06-25 14:42:06 +02:00
|
|
|
DEFINE_PROP_SIZE("max_hostmem", VirtIOGPU, conf.max_hostmem, 256 * MiB),
|
2014-07-11 12:51:43 +02:00
|
|
|
#ifdef CONFIG_VIRGL
|
|
|
|
DEFINE_PROP_BIT("virgl", VirtIOGPU, conf.flags,
|
|
|
|
VIRTIO_GPU_FLAG_VIRGL_ENABLED, true),
|
|
|
|
DEFINE_PROP_BIT("stats", VirtIOGPU, conf.flags,
|
|
|
|
VIRTIO_GPU_FLAG_STATS_ENABLED, false),
|
|
|
|
#endif
|
2019-02-21 09:10:54 +01:00
|
|
|
DEFINE_PROP_BIT("edid", VirtIOGPU, conf.flags,
|
|
|
|
VIRTIO_GPU_FLAG_EDID_ENABLED, false),
|
2017-04-21 11:22:14 +02:00
|
|
|
DEFINE_PROP_UINT32("xres", VirtIOGPU, conf.xres, 1024),
|
|
|
|
DEFINE_PROP_UINT32("yres", VirtIOGPU, conf.yres, 768),
|
2014-09-10 14:12:28 +02:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void virtio_gpu_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
vdc->realize = virtio_gpu_device_realize;
|
2016-07-14 19:22:54 +02:00
|
|
|
vdc->unrealize = virtio_gpu_device_unrealize;
|
2014-09-10 14:12:28 +02:00
|
|
|
vdc->get_config = virtio_gpu_get_config;
|
|
|
|
vdc->set_config = virtio_gpu_set_config;
|
|
|
|
vdc->get_features = virtio_gpu_get_features;
|
2014-07-11 12:51:43 +02:00
|
|
|
vdc->set_features = virtio_gpu_set_features;
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
vdc->reset = virtio_gpu_reset;
|
|
|
|
|
2017-09-15 10:46:21 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories);
|
2014-09-10 14:12:28 +02:00
|
|
|
dc->props = virtio_gpu_properties;
|
2016-07-14 19:22:55 +02:00
|
|
|
dc->vmsd = &vmstate_virtio_gpu;
|
2017-01-09 14:55:38 +01:00
|
|
|
dc->hotpluggable = false;
|
2014-09-10 14:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo virtio_gpu_info = {
|
|
|
|
.name = TYPE_VIRTIO_GPU,
|
|
|
|
.parent = TYPE_VIRTIO_DEVICE,
|
|
|
|
.instance_size = sizeof(VirtIOGPU),
|
|
|
|
.instance_init = virtio_gpu_instance_init,
|
|
|
|
.class_init = virtio_gpu_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void virtio_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&virtio_gpu_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(virtio_register_types)
|
|
|
|
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctrl_hdr) != 24);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_update_cursor) != 56);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_unref) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_create_2d) != 40);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_set_scanout) != 48);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_flush) != 48);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_transfer_to_host_2d) != 56);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_mem_entry) != 16);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_attach_backing) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_detach_backing) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_display_info) != 408);
|
2014-07-11 12:51:43 +02:00
|
|
|
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_transfer_host_3d) != 72);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_create_3d) != 72);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_create) != 96);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_destroy) != 24);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_resource) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_cmd_submit) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_get_capset_info) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_capset_info) != 40);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_get_capset) != 32);
|
|
|
|
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_capset) != 24);
|