virtio-gpu: move virgl realize + properties
[qemu/ar7.git] / hw / display / virtio-gpu.c
blob461b7769b457eb601bf2f4b8f68476ba89b91e6e
1 /*
2 * Virtio GPU Device
4 * Copyright Red Hat, Inc. 2013-2014
6 * Authors:
7 * Dave Airlie <airlied@redhat.com>
8 * Gerd Hoffmann <kraxel@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu/units.h"
16 #include "qemu/iov.h"
17 #include "ui/console.h"
18 #include "trace.h"
19 #include "sysemu/dma.h"
20 #include "sysemu/sysemu.h"
21 #include "hw/virtio/virtio.h"
22 #include "migration/qemu-file-types.h"
23 #include "hw/virtio/virtio-gpu.h"
24 #include "hw/virtio/virtio-gpu-bswap.h"
25 #include "hw/virtio/virtio-gpu-pixman.h"
26 #include "hw/virtio/virtio-bus.h"
27 #include "hw/display/edid.h"
28 #include "hw/qdev-properties.h"
29 #include "qemu/log.h"
30 #include "qemu/module.h"
31 #include "qapi/error.h"
32 #include "qemu/error-report.h"
34 #define VIRTIO_GPU_VM_VERSION 1
36 static struct virtio_gpu_simple_resource*
37 virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id);
39 static void virtio_gpu_cleanup_mapping(VirtIOGPU *g,
40 struct virtio_gpu_simple_resource *res);
42 #ifdef CONFIG_VIRGL
43 #include <virglrenderer.h>
44 #define VIRGL(_g, _virgl, _simple, ...) \
45 do { \
46 if (_g->parent_obj.use_virgl_renderer) { \
47 _virgl(__VA_ARGS__); \
48 } else { \
49 _simple(__VA_ARGS__); \
50 } \
51 } while (0)
52 #else
53 #define VIRGL(_g, _virgl, _simple, ...) \
54 do { \
55 _simple(__VA_ARGS__); \
56 } while (0)
57 #endif
59 static void update_cursor_data_simple(VirtIOGPU *g,
60 struct virtio_gpu_scanout *s,
61 uint32_t resource_id)
63 struct virtio_gpu_simple_resource *res;
64 uint32_t pixels;
66 res = virtio_gpu_find_resource(g, resource_id);
67 if (!res) {
68 return;
71 if (pixman_image_get_width(res->image) != s->current_cursor->width ||
72 pixman_image_get_height(res->image) != s->current_cursor->height) {
73 return;
76 pixels = s->current_cursor->width * s->current_cursor->height;
77 memcpy(s->current_cursor->data,
78 pixman_image_get_data(res->image),
79 pixels * sizeof(uint32_t));
82 #ifdef CONFIG_VIRGL
84 static void update_cursor_data_virgl(VirtIOGPU *g,
85 struct virtio_gpu_scanout *s,
86 uint32_t resource_id)
88 uint32_t width, height;
89 uint32_t pixels, *data;
91 data = virgl_renderer_get_cursor_data(resource_id, &width, &height);
92 if (!data) {
93 return;
96 if (width != s->current_cursor->width ||
97 height != s->current_cursor->height) {
98 free(data);
99 return;
102 pixels = s->current_cursor->width * s->current_cursor->height;
103 memcpy(s->current_cursor->data, data, pixels * sizeof(uint32_t));
104 free(data);
107 #endif
109 static void update_cursor(VirtIOGPU *g, struct virtio_gpu_update_cursor *cursor)
111 struct virtio_gpu_scanout *s;
112 bool move = cursor->hdr.type == VIRTIO_GPU_CMD_MOVE_CURSOR;
114 if (cursor->pos.scanout_id >= g->parent_obj.conf.max_outputs) {
115 return;
117 s = &g->parent_obj.scanout[cursor->pos.scanout_id];
119 trace_virtio_gpu_update_cursor(cursor->pos.scanout_id,
120 cursor->pos.x,
121 cursor->pos.y,
122 move ? "move" : "update",
123 cursor->resource_id);
125 if (!move) {
126 if (!s->current_cursor) {
127 s->current_cursor = cursor_alloc(64, 64);
130 s->current_cursor->hot_x = cursor->hot_x;
131 s->current_cursor->hot_y = cursor->hot_y;
133 if (cursor->resource_id > 0) {
134 VIRGL(g, update_cursor_data_virgl, update_cursor_data_simple,
135 g, s, cursor->resource_id);
137 dpy_cursor_define(s->con, s->current_cursor);
139 s->cursor = *cursor;
140 } else {
141 s->cursor.pos.x = cursor->pos.x;
142 s->cursor.pos.y = cursor->pos.y;
144 dpy_mouse_set(s->con, cursor->pos.x, cursor->pos.y,
145 cursor->resource_id ? 1 : 0);
148 static struct virtio_gpu_simple_resource *
149 virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id)
151 struct virtio_gpu_simple_resource *res;
153 QTAILQ_FOREACH(res, &g->reslist, next) {
154 if (res->resource_id == resource_id) {
155 return res;
158 return NULL;
161 void virtio_gpu_ctrl_response(VirtIOGPU *g,
162 struct virtio_gpu_ctrl_command *cmd,
163 struct virtio_gpu_ctrl_hdr *resp,
164 size_t resp_len)
166 size_t s;
168 if (cmd->cmd_hdr.flags & VIRTIO_GPU_FLAG_FENCE) {
169 resp->flags |= VIRTIO_GPU_FLAG_FENCE;
170 resp->fence_id = cmd->cmd_hdr.fence_id;
171 resp->ctx_id = cmd->cmd_hdr.ctx_id;
173 virtio_gpu_ctrl_hdr_bswap(resp);
174 s = iov_from_buf(cmd->elem.in_sg, cmd->elem.in_num, 0, resp, resp_len);
175 if (s != resp_len) {
176 qemu_log_mask(LOG_GUEST_ERROR,
177 "%s: response size incorrect %zu vs %zu\n",
178 __func__, s, resp_len);
180 virtqueue_push(cmd->vq, &cmd->elem, s);
181 virtio_notify(VIRTIO_DEVICE(g), cmd->vq);
182 cmd->finished = true;
185 void virtio_gpu_ctrl_response_nodata(VirtIOGPU *g,
186 struct virtio_gpu_ctrl_command *cmd,
187 enum virtio_gpu_ctrl_type type)
189 struct virtio_gpu_ctrl_hdr resp;
191 memset(&resp, 0, sizeof(resp));
192 resp.type = type;
193 virtio_gpu_ctrl_response(g, cmd, &resp, sizeof(resp));
196 void virtio_gpu_get_display_info(VirtIOGPU *g,
197 struct virtio_gpu_ctrl_command *cmd)
199 struct virtio_gpu_resp_display_info display_info;
201 trace_virtio_gpu_cmd_get_display_info();
202 memset(&display_info, 0, sizeof(display_info));
203 display_info.hdr.type = VIRTIO_GPU_RESP_OK_DISPLAY_INFO;
204 virtio_gpu_base_fill_display_info(VIRTIO_GPU_BASE(g), &display_info);
205 virtio_gpu_ctrl_response(g, cmd, &display_info.hdr,
206 sizeof(display_info));
209 static void
210 virtio_gpu_generate_edid(VirtIOGPU *g, int scanout,
211 struct virtio_gpu_resp_edid *edid)
213 VirtIOGPUBase *b = VIRTIO_GPU_BASE(g);
214 qemu_edid_info info = {
215 .width_mm = b->req_state[scanout].width_mm,
216 .height_mm = b->req_state[scanout].height_mm,
217 .prefx = b->req_state[scanout].width,
218 .prefy = b->req_state[scanout].height,
221 edid->size = cpu_to_le32(sizeof(edid->edid));
222 qemu_edid_generate(edid->edid, sizeof(edid->edid), &info);
225 void virtio_gpu_get_edid(VirtIOGPU *g,
226 struct virtio_gpu_ctrl_command *cmd)
228 struct virtio_gpu_resp_edid edid;
229 struct virtio_gpu_cmd_get_edid get_edid;
230 VirtIOGPUBase *b = VIRTIO_GPU_BASE(g);
232 VIRTIO_GPU_FILL_CMD(get_edid);
233 virtio_gpu_bswap_32(&get_edid, sizeof(get_edid));
235 if (get_edid.scanout >= b->conf.max_outputs) {
236 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
237 return;
240 trace_virtio_gpu_cmd_get_edid(get_edid.scanout);
241 memset(&edid, 0, sizeof(edid));
242 edid.hdr.type = VIRTIO_GPU_RESP_OK_EDID;
243 virtio_gpu_generate_edid(g, get_edid.scanout, &edid);
244 virtio_gpu_ctrl_response(g, cmd, &edid.hdr, sizeof(edid));
247 static uint32_t calc_image_hostmem(pixman_format_code_t pformat,
248 uint32_t width, uint32_t height)
250 /* Copied from pixman/pixman-bits-image.c, skip integer overflow check.
251 * pixman_image_create_bits will fail in case it overflow.
254 int bpp = PIXMAN_FORMAT_BPP(pformat);
255 int stride = ((width * bpp + 0x1f) >> 5) * sizeof(uint32_t);
256 return height * stride;
259 static void virtio_gpu_resource_create_2d(VirtIOGPU *g,
260 struct virtio_gpu_ctrl_command *cmd)
262 pixman_format_code_t pformat;
263 struct virtio_gpu_simple_resource *res;
264 struct virtio_gpu_resource_create_2d c2d;
266 VIRTIO_GPU_FILL_CMD(c2d);
267 virtio_gpu_bswap_32(&c2d, sizeof(c2d));
268 trace_virtio_gpu_cmd_res_create_2d(c2d.resource_id, c2d.format,
269 c2d.width, c2d.height);
271 if (c2d.resource_id == 0) {
272 qemu_log_mask(LOG_GUEST_ERROR, "%s: resource id 0 is not allowed\n",
273 __func__);
274 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
275 return;
278 res = virtio_gpu_find_resource(g, c2d.resource_id);
279 if (res) {
280 qemu_log_mask(LOG_GUEST_ERROR, "%s: resource already exists %d\n",
281 __func__, c2d.resource_id);
282 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
283 return;
286 res = g_new0(struct virtio_gpu_simple_resource, 1);
288 res->width = c2d.width;
289 res->height = c2d.height;
290 res->format = c2d.format;
291 res->resource_id = c2d.resource_id;
293 pformat = virtio_gpu_get_pixman_format(c2d.format);
294 if (!pformat) {
295 qemu_log_mask(LOG_GUEST_ERROR,
296 "%s: host couldn't handle guest format %d\n",
297 __func__, c2d.format);
298 g_free(res);
299 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
300 return;
303 res->hostmem = calc_image_hostmem(pformat, c2d.width, c2d.height);
304 if (res->hostmem + g->hostmem < g->conf_max_hostmem) {
305 res->image = pixman_image_create_bits(pformat,
306 c2d.width,
307 c2d.height,
308 NULL, 0);
311 if (!res->image) {
312 qemu_log_mask(LOG_GUEST_ERROR,
313 "%s: resource creation failed %d %d %d\n",
314 __func__, c2d.resource_id, c2d.width, c2d.height);
315 g_free(res);
316 cmd->error = VIRTIO_GPU_RESP_ERR_OUT_OF_MEMORY;
317 return;
320 QTAILQ_INSERT_HEAD(&g->reslist, res, next);
321 g->hostmem += res->hostmem;
324 static void virtio_gpu_disable_scanout(VirtIOGPU *g, int scanout_id)
326 struct virtio_gpu_scanout *scanout = &g->parent_obj.scanout[scanout_id];
327 struct virtio_gpu_simple_resource *res;
329 if (scanout->resource_id == 0) {
330 return;
333 res = virtio_gpu_find_resource(g, scanout->resource_id);
334 if (res) {
335 res->scanout_bitmask &= ~(1 << scanout_id);
338 dpy_gfx_replace_surface(scanout->con, NULL);
339 scanout->resource_id = 0;
340 scanout->ds = NULL;
341 scanout->width = 0;
342 scanout->height = 0;
345 static void virtio_gpu_resource_destroy(VirtIOGPU *g,
346 struct virtio_gpu_simple_resource *res)
348 int i;
350 if (res->scanout_bitmask) {
351 for (i = 0; i < g->parent_obj.conf.max_outputs; i++) {
352 if (res->scanout_bitmask & (1 << i)) {
353 virtio_gpu_disable_scanout(g, i);
358 pixman_image_unref(res->image);
359 virtio_gpu_cleanup_mapping(g, res);
360 QTAILQ_REMOVE(&g->reslist, res, next);
361 g->hostmem -= res->hostmem;
362 g_free(res);
365 static void virtio_gpu_resource_unref(VirtIOGPU *g,
366 struct virtio_gpu_ctrl_command *cmd)
368 struct virtio_gpu_simple_resource *res;
369 struct virtio_gpu_resource_unref unref;
371 VIRTIO_GPU_FILL_CMD(unref);
372 virtio_gpu_bswap_32(&unref, sizeof(unref));
373 trace_virtio_gpu_cmd_res_unref(unref.resource_id);
375 res = virtio_gpu_find_resource(g, unref.resource_id);
376 if (!res) {
377 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
378 __func__, unref.resource_id);
379 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
380 return;
382 virtio_gpu_resource_destroy(g, res);
385 static void virtio_gpu_transfer_to_host_2d(VirtIOGPU *g,
386 struct virtio_gpu_ctrl_command *cmd)
388 struct virtio_gpu_simple_resource *res;
389 int h;
390 uint32_t src_offset, dst_offset, stride;
391 int bpp;
392 pixman_format_code_t format;
393 struct virtio_gpu_transfer_to_host_2d t2d;
395 VIRTIO_GPU_FILL_CMD(t2d);
396 virtio_gpu_t2d_bswap(&t2d);
397 trace_virtio_gpu_cmd_res_xfer_toh_2d(t2d.resource_id);
399 res = virtio_gpu_find_resource(g, t2d.resource_id);
400 if (!res || !res->iov) {
401 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
402 __func__, t2d.resource_id);
403 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
404 return;
407 if (t2d.r.x > res->width ||
408 t2d.r.y > res->height ||
409 t2d.r.width > res->width ||
410 t2d.r.height > res->height ||
411 t2d.r.x + t2d.r.width > res->width ||
412 t2d.r.y + t2d.r.height > res->height) {
413 qemu_log_mask(LOG_GUEST_ERROR, "%s: transfer bounds outside resource"
414 " bounds for resource %d: %d %d %d %d vs %d %d\n",
415 __func__, t2d.resource_id, t2d.r.x, t2d.r.y,
416 t2d.r.width, t2d.r.height, res->width, res->height);
417 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
418 return;
421 format = pixman_image_get_format(res->image);
422 bpp = DIV_ROUND_UP(PIXMAN_FORMAT_BPP(format), 8);
423 stride = pixman_image_get_stride(res->image);
425 if (t2d.offset || t2d.r.x || t2d.r.y ||
426 t2d.r.width != pixman_image_get_width(res->image)) {
427 void *img_data = pixman_image_get_data(res->image);
428 for (h = 0; h < t2d.r.height; h++) {
429 src_offset = t2d.offset + stride * h;
430 dst_offset = (t2d.r.y + h) * stride + (t2d.r.x * bpp);
432 iov_to_buf(res->iov, res->iov_cnt, src_offset,
433 (uint8_t *)img_data
434 + dst_offset, t2d.r.width * bpp);
436 } else {
437 iov_to_buf(res->iov, res->iov_cnt, 0,
438 pixman_image_get_data(res->image),
439 pixman_image_get_stride(res->image)
440 * pixman_image_get_height(res->image));
444 static void virtio_gpu_resource_flush(VirtIOGPU *g,
445 struct virtio_gpu_ctrl_command *cmd)
447 struct virtio_gpu_simple_resource *res;
448 struct virtio_gpu_resource_flush rf;
449 pixman_region16_t flush_region;
450 int i;
452 VIRTIO_GPU_FILL_CMD(rf);
453 virtio_gpu_bswap_32(&rf, sizeof(rf));
454 trace_virtio_gpu_cmd_res_flush(rf.resource_id,
455 rf.r.width, rf.r.height, rf.r.x, rf.r.y);
457 res = virtio_gpu_find_resource(g, rf.resource_id);
458 if (!res) {
459 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
460 __func__, rf.resource_id);
461 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
462 return;
465 if (rf.r.x > res->width ||
466 rf.r.y > res->height ||
467 rf.r.width > res->width ||
468 rf.r.height > res->height ||
469 rf.r.x + rf.r.width > res->width ||
470 rf.r.y + rf.r.height > res->height) {
471 qemu_log_mask(LOG_GUEST_ERROR, "%s: flush bounds outside resource"
472 " bounds for resource %d: %d %d %d %d vs %d %d\n",
473 __func__, rf.resource_id, rf.r.x, rf.r.y,
474 rf.r.width, rf.r.height, res->width, res->height);
475 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
476 return;
479 pixman_region_init_rect(&flush_region,
480 rf.r.x, rf.r.y, rf.r.width, rf.r.height);
481 for (i = 0; i < g->parent_obj.conf.max_outputs; i++) {
482 struct virtio_gpu_scanout *scanout;
483 pixman_region16_t region, finalregion;
484 pixman_box16_t *extents;
486 if (!(res->scanout_bitmask & (1 << i))) {
487 continue;
489 scanout = &g->parent_obj.scanout[i];
491 pixman_region_init(&finalregion);
492 pixman_region_init_rect(&region, scanout->x, scanout->y,
493 scanout->width, scanout->height);
495 pixman_region_intersect(&finalregion, &flush_region, &region);
496 pixman_region_translate(&finalregion, -scanout->x, -scanout->y);
497 extents = pixman_region_extents(&finalregion);
498 /* work out the area we need to update for each console */
499 dpy_gfx_update(g->parent_obj.scanout[i].con,
500 extents->x1, extents->y1,
501 extents->x2 - extents->x1,
502 extents->y2 - extents->y1);
504 pixman_region_fini(&region);
505 pixman_region_fini(&finalregion);
507 pixman_region_fini(&flush_region);
510 static void virtio_unref_resource(pixman_image_t *image, void *data)
512 pixman_image_unref(data);
515 static void virtio_gpu_set_scanout(VirtIOGPU *g,
516 struct virtio_gpu_ctrl_command *cmd)
518 struct virtio_gpu_simple_resource *res, *ores;
519 struct virtio_gpu_scanout *scanout;
520 pixman_format_code_t format;
521 uint32_t offset;
522 int bpp;
523 struct virtio_gpu_set_scanout ss;
525 VIRTIO_GPU_FILL_CMD(ss);
526 virtio_gpu_bswap_32(&ss, sizeof(ss));
527 trace_virtio_gpu_cmd_set_scanout(ss.scanout_id, ss.resource_id,
528 ss.r.width, ss.r.height, ss.r.x, ss.r.y);
530 if (ss.scanout_id >= g->parent_obj.conf.max_outputs) {
531 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal scanout id specified %d",
532 __func__, ss.scanout_id);
533 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID;
534 return;
537 g->parent_obj.enable = 1;
538 if (ss.resource_id == 0) {
539 virtio_gpu_disable_scanout(g, ss.scanout_id);
540 return;
543 /* create a surface for this scanout */
544 res = virtio_gpu_find_resource(g, ss.resource_id);
545 if (!res) {
546 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
547 __func__, ss.resource_id);
548 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
549 return;
552 if (ss.r.x > res->width ||
553 ss.r.y > res->height ||
554 ss.r.width < 16 ||
555 ss.r.height < 16 ||
556 ss.r.width > res->width ||
557 ss.r.height > res->height ||
558 ss.r.x + ss.r.width > res->width ||
559 ss.r.y + ss.r.height > res->height) {
560 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal scanout %d bounds for"
561 " resource %d, (%d,%d)+%d,%d vs %d %d\n",
562 __func__, ss.scanout_id, ss.resource_id, ss.r.x, ss.r.y,
563 ss.r.width, ss.r.height, res->width, res->height);
564 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
565 return;
568 scanout = &g->parent_obj.scanout[ss.scanout_id];
570 format = pixman_image_get_format(res->image);
571 bpp = DIV_ROUND_UP(PIXMAN_FORMAT_BPP(format), 8);
572 offset = (ss.r.x * bpp) + ss.r.y * pixman_image_get_stride(res->image);
573 if (!scanout->ds || surface_data(scanout->ds)
574 != ((uint8_t *)pixman_image_get_data(res->image) + offset) ||
575 scanout->width != ss.r.width ||
576 scanout->height != ss.r.height) {
577 pixman_image_t *rect;
578 void *ptr = (uint8_t *)pixman_image_get_data(res->image) + offset;
579 rect = pixman_image_create_bits(format, ss.r.width, ss.r.height, ptr,
580 pixman_image_get_stride(res->image));
581 pixman_image_ref(res->image);
582 pixman_image_set_destroy_function(rect, virtio_unref_resource,
583 res->image);
584 /* realloc the surface ptr */
585 scanout->ds = qemu_create_displaysurface_pixman(rect);
586 if (!scanout->ds) {
587 cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
588 return;
590 pixman_image_unref(rect);
591 dpy_gfx_replace_surface(g->parent_obj.scanout[ss.scanout_id].con,
592 scanout->ds);
595 ores = virtio_gpu_find_resource(g, scanout->resource_id);
596 if (ores) {
597 ores->scanout_bitmask &= ~(1 << ss.scanout_id);
600 res->scanout_bitmask |= (1 << ss.scanout_id);
601 scanout->resource_id = ss.resource_id;
602 scanout->x = ss.r.x;
603 scanout->y = ss.r.y;
604 scanout->width = ss.r.width;
605 scanout->height = ss.r.height;
608 int virtio_gpu_create_mapping_iov(VirtIOGPU *g,
609 struct virtio_gpu_resource_attach_backing *ab,
610 struct virtio_gpu_ctrl_command *cmd,
611 uint64_t **addr, struct iovec **iov,
612 uint32_t *niov)
614 struct virtio_gpu_mem_entry *ents;
615 size_t esize, s;
616 int e, v;
618 if (ab->nr_entries > 16384) {
619 qemu_log_mask(LOG_GUEST_ERROR,
620 "%s: nr_entries is too big (%d > 16384)\n",
621 __func__, ab->nr_entries);
622 return -1;
625 esize = sizeof(*ents) * ab->nr_entries;
626 ents = g_malloc(esize);
627 s = iov_to_buf(cmd->elem.out_sg, cmd->elem.out_num,
628 sizeof(*ab), ents, esize);
629 if (s != esize) {
630 qemu_log_mask(LOG_GUEST_ERROR,
631 "%s: command data size incorrect %zu vs %zu\n",
632 __func__, s, esize);
633 g_free(ents);
634 return -1;
637 *iov = NULL;
638 if (addr) {
639 *addr = NULL;
641 for (e = 0, v = 0; e < ab->nr_entries; e++) {
642 uint64_t a = le64_to_cpu(ents[e].addr);
643 uint32_t l = le32_to_cpu(ents[e].length);
644 hwaddr len;
645 void *map;
647 do {
648 len = l;
649 map = dma_memory_map(VIRTIO_DEVICE(g)->dma_as,
650 a, &len, DMA_DIRECTION_TO_DEVICE);
651 if (!map) {
652 qemu_log_mask(LOG_GUEST_ERROR, "%s: failed to map MMIO memory for"
653 " resource %d element %d\n",
654 __func__, ab->resource_id, e);
655 virtio_gpu_cleanup_mapping_iov(g, *iov, v);
656 g_free(ents);
657 *iov = NULL;
658 if (addr) {
659 g_free(*addr);
660 *addr = NULL;
662 return -1;
665 if (!(v % 16)) {
666 *iov = g_realloc(*iov, sizeof(struct iovec) * (v + 16));
667 if (addr) {
668 *addr = g_realloc(*addr, sizeof(uint64_t) * (v + 16));
671 (*iov)[v].iov_base = map;
672 (*iov)[v].iov_len = len;
673 if (addr) {
674 (*addr)[v] = a;
677 a += len;
678 l -= len;
679 v += 1;
680 } while (l > 0);
682 *niov = v;
684 g_free(ents);
685 return 0;
688 void virtio_gpu_cleanup_mapping_iov(VirtIOGPU *g,
689 struct iovec *iov, uint32_t count)
691 int i;
693 for (i = 0; i < count; i++) {
694 dma_memory_unmap(VIRTIO_DEVICE(g)->dma_as,
695 iov[i].iov_base, iov[i].iov_len,
696 DMA_DIRECTION_TO_DEVICE,
697 iov[i].iov_len);
699 g_free(iov);
702 static void virtio_gpu_cleanup_mapping(VirtIOGPU *g,
703 struct virtio_gpu_simple_resource *res)
705 virtio_gpu_cleanup_mapping_iov(g, res->iov, res->iov_cnt);
706 res->iov = NULL;
707 res->iov_cnt = 0;
708 g_free(res->addrs);
709 res->addrs = NULL;
712 static void
713 virtio_gpu_resource_attach_backing(VirtIOGPU *g,
714 struct virtio_gpu_ctrl_command *cmd)
716 struct virtio_gpu_simple_resource *res;
717 struct virtio_gpu_resource_attach_backing ab;
718 int ret;
720 VIRTIO_GPU_FILL_CMD(ab);
721 virtio_gpu_bswap_32(&ab, sizeof(ab));
722 trace_virtio_gpu_cmd_res_back_attach(ab.resource_id);
724 res = virtio_gpu_find_resource(g, ab.resource_id);
725 if (!res) {
726 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
727 __func__, ab.resource_id);
728 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
729 return;
732 if (res->iov) {
733 cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
734 return;
737 ret = virtio_gpu_create_mapping_iov(g, &ab, cmd, &res->addrs,
738 &res->iov, &res->iov_cnt);
739 if (ret != 0) {
740 cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
741 return;
745 static void
746 virtio_gpu_resource_detach_backing(VirtIOGPU *g,
747 struct virtio_gpu_ctrl_command *cmd)
749 struct virtio_gpu_simple_resource *res;
750 struct virtio_gpu_resource_detach_backing detach;
752 VIRTIO_GPU_FILL_CMD(detach);
753 virtio_gpu_bswap_32(&detach, sizeof(detach));
754 trace_virtio_gpu_cmd_res_back_detach(detach.resource_id);
756 res = virtio_gpu_find_resource(g, detach.resource_id);
757 if (!res || !res->iov) {
758 qemu_log_mask(LOG_GUEST_ERROR, "%s: illegal resource specified %d\n",
759 __func__, detach.resource_id);
760 cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID;
761 return;
763 virtio_gpu_cleanup_mapping(g, res);
766 static void virtio_gpu_simple_process_cmd(VirtIOGPU *g,
767 struct virtio_gpu_ctrl_command *cmd)
769 VIRTIO_GPU_FILL_CMD(cmd->cmd_hdr);
770 virtio_gpu_ctrl_hdr_bswap(&cmd->cmd_hdr);
772 switch (cmd->cmd_hdr.type) {
773 case VIRTIO_GPU_CMD_GET_DISPLAY_INFO:
774 virtio_gpu_get_display_info(g, cmd);
775 break;
776 case VIRTIO_GPU_CMD_GET_EDID:
777 virtio_gpu_get_edid(g, cmd);
778 break;
779 case VIRTIO_GPU_CMD_RESOURCE_CREATE_2D:
780 virtio_gpu_resource_create_2d(g, cmd);
781 break;
782 case VIRTIO_GPU_CMD_RESOURCE_UNREF:
783 virtio_gpu_resource_unref(g, cmd);
784 break;
785 case VIRTIO_GPU_CMD_RESOURCE_FLUSH:
786 virtio_gpu_resource_flush(g, cmd);
787 break;
788 case VIRTIO_GPU_CMD_TRANSFER_TO_HOST_2D:
789 virtio_gpu_transfer_to_host_2d(g, cmd);
790 break;
791 case VIRTIO_GPU_CMD_SET_SCANOUT:
792 virtio_gpu_set_scanout(g, cmd);
793 break;
794 case VIRTIO_GPU_CMD_RESOURCE_ATTACH_BACKING:
795 virtio_gpu_resource_attach_backing(g, cmd);
796 break;
797 case VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING:
798 virtio_gpu_resource_detach_backing(g, cmd);
799 break;
800 default:
801 cmd->error = VIRTIO_GPU_RESP_ERR_UNSPEC;
802 break;
804 if (!cmd->finished) {
805 virtio_gpu_ctrl_response_nodata(g, cmd, cmd->error ? cmd->error :
806 VIRTIO_GPU_RESP_OK_NODATA);
810 static void virtio_gpu_handle_ctrl_cb(VirtIODevice *vdev, VirtQueue *vq)
812 VirtIOGPU *g = VIRTIO_GPU(vdev);
813 qemu_bh_schedule(g->ctrl_bh);
816 static void virtio_gpu_handle_cursor_cb(VirtIODevice *vdev, VirtQueue *vq)
818 VirtIOGPU *g = VIRTIO_GPU(vdev);
819 qemu_bh_schedule(g->cursor_bh);
822 void virtio_gpu_process_cmdq(VirtIOGPU *g)
824 struct virtio_gpu_ctrl_command *cmd;
826 if (g->processing_cmdq) {
827 return;
829 g->processing_cmdq = true;
830 while (!QTAILQ_EMPTY(&g->cmdq)) {
831 cmd = QTAILQ_FIRST(&g->cmdq);
833 if (g->parent_obj.renderer_blocked) {
834 break;
837 /* process command */
838 VIRGL(g, virtio_gpu_virgl_process_cmd, virtio_gpu_simple_process_cmd,
839 g, cmd);
841 QTAILQ_REMOVE(&g->cmdq, cmd, next);
842 if (virtio_gpu_stats_enabled(g->parent_obj.conf)) {
843 g->stats.requests++;
846 if (!cmd->finished) {
847 QTAILQ_INSERT_TAIL(&g->fenceq, cmd, next);
848 g->inflight++;
849 if (virtio_gpu_stats_enabled(g->parent_obj.conf)) {
850 if (g->stats.max_inflight < g->inflight) {
851 g->stats.max_inflight = g->inflight;
853 fprintf(stderr, "inflight: %3d (+)\r", g->inflight);
855 } else {
856 g_free(cmd);
859 g->processing_cmdq = false;
862 static void virtio_gpu_gl_flushed(VirtIOGPUBase *b)
864 VirtIOGPU *g = VIRTIO_GPU(b);
866 #ifdef CONFIG_VIRGL
867 if (g->renderer_reset) {
868 g->renderer_reset = false;
869 virtio_gpu_virgl_reset(g);
871 #endif
872 virtio_gpu_process_cmdq(g);
875 static void virtio_gpu_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
877 VirtIOGPU *g = VIRTIO_GPU(vdev);
878 struct virtio_gpu_ctrl_command *cmd;
880 if (!virtio_queue_ready(vq)) {
881 return;
884 #ifdef CONFIG_VIRGL
885 if (!g->renderer_inited && g->parent_obj.use_virgl_renderer) {
886 virtio_gpu_virgl_init(g);
887 g->renderer_inited = true;
889 #endif
891 cmd = virtqueue_pop(vq, sizeof(struct virtio_gpu_ctrl_command));
892 while (cmd) {
893 cmd->vq = vq;
894 cmd->error = 0;
895 cmd->finished = false;
896 QTAILQ_INSERT_TAIL(&g->cmdq, cmd, next);
897 cmd = virtqueue_pop(vq, sizeof(struct virtio_gpu_ctrl_command));
900 virtio_gpu_process_cmdq(g);
902 #ifdef CONFIG_VIRGL
903 if (g->parent_obj.use_virgl_renderer) {
904 virtio_gpu_virgl_fence_poll(g);
906 #endif
909 static void virtio_gpu_ctrl_bh(void *opaque)
911 VirtIOGPU *g = opaque;
912 virtio_gpu_handle_ctrl(&g->parent_obj.parent_obj, g->ctrl_vq);
915 static void virtio_gpu_handle_cursor(VirtIODevice *vdev, VirtQueue *vq)
917 VirtIOGPU *g = VIRTIO_GPU(vdev);
918 VirtQueueElement *elem;
919 size_t s;
920 struct virtio_gpu_update_cursor cursor_info;
922 if (!virtio_queue_ready(vq)) {
923 return;
925 for (;;) {
926 elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
927 if (!elem) {
928 break;
931 s = iov_to_buf(elem->out_sg, elem->out_num, 0,
932 &cursor_info, sizeof(cursor_info));
933 if (s != sizeof(cursor_info)) {
934 qemu_log_mask(LOG_GUEST_ERROR,
935 "%s: cursor size incorrect %zu vs %zu\n",
936 __func__, s, sizeof(cursor_info));
937 } else {
938 virtio_gpu_bswap_32(&cursor_info, sizeof(cursor_info));
939 update_cursor(g, &cursor_info);
941 virtqueue_push(vq, elem, 0);
942 virtio_notify(vdev, vq);
943 g_free(elem);
947 static void virtio_gpu_cursor_bh(void *opaque)
949 VirtIOGPU *g = opaque;
950 virtio_gpu_handle_cursor(&g->parent_obj.parent_obj, g->cursor_vq);
953 static const VMStateDescription vmstate_virtio_gpu_scanout = {
954 .name = "virtio-gpu-one-scanout",
955 .version_id = 1,
956 .fields = (VMStateField[]) {
957 VMSTATE_UINT32(resource_id, struct virtio_gpu_scanout),
958 VMSTATE_UINT32(width, struct virtio_gpu_scanout),
959 VMSTATE_UINT32(height, struct virtio_gpu_scanout),
960 VMSTATE_INT32(x, struct virtio_gpu_scanout),
961 VMSTATE_INT32(y, struct virtio_gpu_scanout),
962 VMSTATE_UINT32(cursor.resource_id, struct virtio_gpu_scanout),
963 VMSTATE_UINT32(cursor.hot_x, struct virtio_gpu_scanout),
964 VMSTATE_UINT32(cursor.hot_y, struct virtio_gpu_scanout),
965 VMSTATE_UINT32(cursor.pos.x, struct virtio_gpu_scanout),
966 VMSTATE_UINT32(cursor.pos.y, struct virtio_gpu_scanout),
967 VMSTATE_END_OF_LIST()
971 static const VMStateDescription vmstate_virtio_gpu_scanouts = {
972 .name = "virtio-gpu-scanouts",
973 .version_id = 1,
974 .fields = (VMStateField[]) {
975 VMSTATE_INT32(parent_obj.enable, struct VirtIOGPU),
976 VMSTATE_UINT32_EQUAL(parent_obj.conf.max_outputs,
977 struct VirtIOGPU, NULL),
978 VMSTATE_STRUCT_VARRAY_UINT32(parent_obj.scanout, struct VirtIOGPU,
979 parent_obj.conf.max_outputs, 1,
980 vmstate_virtio_gpu_scanout,
981 struct virtio_gpu_scanout),
982 VMSTATE_END_OF_LIST()
986 static int virtio_gpu_save(QEMUFile *f, void *opaque, size_t size,
987 const VMStateField *field, JSONWriter *vmdesc)
989 VirtIOGPU *g = opaque;
990 struct virtio_gpu_simple_resource *res;
991 int i;
993 /* in 2d mode we should never find unprocessed commands here */
994 assert(QTAILQ_EMPTY(&g->cmdq));
996 QTAILQ_FOREACH(res, &g->reslist, next) {
997 qemu_put_be32(f, res->resource_id);
998 qemu_put_be32(f, res->width);
999 qemu_put_be32(f, res->height);
1000 qemu_put_be32(f, res->format);
1001 qemu_put_be32(f, res->iov_cnt);
1002 for (i = 0; i < res->iov_cnt; i++) {
1003 qemu_put_be64(f, res->addrs[i]);
1004 qemu_put_be32(f, res->iov[i].iov_len);
1006 qemu_put_buffer(f, (void *)pixman_image_get_data(res->image),
1007 pixman_image_get_stride(res->image) * res->height);
1009 qemu_put_be32(f, 0); /* end of list */
1011 return vmstate_save_state(f, &vmstate_virtio_gpu_scanouts, g, NULL);
1014 static int virtio_gpu_load(QEMUFile *f, void *opaque, size_t size,
1015 const VMStateField *field)
1017 VirtIOGPU *g = opaque;
1018 struct virtio_gpu_simple_resource *res;
1019 struct virtio_gpu_scanout *scanout;
1020 uint32_t resource_id, pformat;
1021 int i;
1023 g->hostmem = 0;
1025 resource_id = qemu_get_be32(f);
1026 while (resource_id != 0) {
1027 res = virtio_gpu_find_resource(g, resource_id);
1028 if (res) {
1029 return -EINVAL;
1032 res = g_new0(struct virtio_gpu_simple_resource, 1);
1033 res->resource_id = resource_id;
1034 res->width = qemu_get_be32(f);
1035 res->height = qemu_get_be32(f);
1036 res->format = qemu_get_be32(f);
1037 res->iov_cnt = qemu_get_be32(f);
1039 /* allocate */
1040 pformat = virtio_gpu_get_pixman_format(res->format);
1041 if (!pformat) {
1042 g_free(res);
1043 return -EINVAL;
1045 res->image = pixman_image_create_bits(pformat,
1046 res->width, res->height,
1047 NULL, 0);
1048 if (!res->image) {
1049 g_free(res);
1050 return -EINVAL;
1053 res->hostmem = calc_image_hostmem(pformat, res->width, res->height);
1055 res->addrs = g_new(uint64_t, res->iov_cnt);
1056 res->iov = g_new(struct iovec, res->iov_cnt);
1058 /* read data */
1059 for (i = 0; i < res->iov_cnt; i++) {
1060 res->addrs[i] = qemu_get_be64(f);
1061 res->iov[i].iov_len = qemu_get_be32(f);
1063 qemu_get_buffer(f, (void *)pixman_image_get_data(res->image),
1064 pixman_image_get_stride(res->image) * res->height);
1066 /* restore mapping */
1067 for (i = 0; i < res->iov_cnt; i++) {
1068 hwaddr len = res->iov[i].iov_len;
1069 res->iov[i].iov_base =
1070 dma_memory_map(VIRTIO_DEVICE(g)->dma_as,
1071 res->addrs[i], &len, DMA_DIRECTION_TO_DEVICE);
1073 if (!res->iov[i].iov_base || len != res->iov[i].iov_len) {
1074 /* Clean up the half-a-mapping we just created... */
1075 if (res->iov[i].iov_base) {
1076 dma_memory_unmap(VIRTIO_DEVICE(g)->dma_as,
1077 res->iov[i].iov_base,
1078 len,
1079 DMA_DIRECTION_TO_DEVICE,
1082 /* ...and the mappings for previous loop iterations */
1083 res->iov_cnt = i;
1084 virtio_gpu_cleanup_mapping(g, res);
1085 pixman_image_unref(res->image);
1086 g_free(res);
1087 return -EINVAL;
1091 QTAILQ_INSERT_HEAD(&g->reslist, res, next);
1092 g->hostmem += res->hostmem;
1094 resource_id = qemu_get_be32(f);
1097 /* load & apply scanout state */
1098 vmstate_load_state(f, &vmstate_virtio_gpu_scanouts, g, 1);
1099 for (i = 0; i < g->parent_obj.conf.max_outputs; i++) {
1100 scanout = &g->parent_obj.scanout[i];
1101 if (!scanout->resource_id) {
1102 continue;
1104 res = virtio_gpu_find_resource(g, scanout->resource_id);
1105 if (!res) {
1106 return -EINVAL;
1108 scanout->ds = qemu_create_displaysurface_pixman(res->image);
1109 if (!scanout->ds) {
1110 return -EINVAL;
1113 dpy_gfx_replace_surface(scanout->con, scanout->ds);
1114 dpy_gfx_update_full(scanout->con);
1115 if (scanout->cursor.resource_id) {
1116 update_cursor(g, &scanout->cursor);
1118 res->scanout_bitmask |= (1 << i);
1121 return 0;
1124 void virtio_gpu_device_realize(DeviceState *qdev, Error **errp)
1126 VirtIODevice *vdev = VIRTIO_DEVICE(qdev);
1127 VirtIOGPU *g = VIRTIO_GPU(qdev);
1129 if (!virtio_gpu_base_device_realize(qdev,
1130 virtio_gpu_handle_ctrl_cb,
1131 virtio_gpu_handle_cursor_cb,
1132 errp)) {
1133 return;
1136 g->ctrl_vq = virtio_get_queue(vdev, 0);
1137 g->cursor_vq = virtio_get_queue(vdev, 1);
1138 g->ctrl_bh = qemu_bh_new(virtio_gpu_ctrl_bh, g);
1139 g->cursor_bh = qemu_bh_new(virtio_gpu_cursor_bh, g);
1140 QTAILQ_INIT(&g->reslist);
1141 QTAILQ_INIT(&g->cmdq);
1142 QTAILQ_INIT(&g->fenceq);
1145 static void virtio_gpu_reset(VirtIODevice *vdev)
1147 VirtIOGPU *g = VIRTIO_GPU(vdev);
1148 struct virtio_gpu_simple_resource *res, *tmp;
1149 struct virtio_gpu_ctrl_command *cmd;
1151 #ifdef CONFIG_VIRGL
1152 if (g->parent_obj.use_virgl_renderer) {
1153 virtio_gpu_virgl_reset(g);
1155 #endif
1157 QTAILQ_FOREACH_SAFE(res, &g->reslist, next, tmp) {
1158 virtio_gpu_resource_destroy(g, res);
1161 while (!QTAILQ_EMPTY(&g->cmdq)) {
1162 cmd = QTAILQ_FIRST(&g->cmdq);
1163 QTAILQ_REMOVE(&g->cmdq, cmd, next);
1164 g_free(cmd);
1167 while (!QTAILQ_EMPTY(&g->fenceq)) {
1168 cmd = QTAILQ_FIRST(&g->fenceq);
1169 QTAILQ_REMOVE(&g->fenceq, cmd, next);
1170 g->inflight--;
1171 g_free(cmd);
1174 #ifdef CONFIG_VIRGL
1175 if (g->parent_obj.use_virgl_renderer) {
1176 if (g->parent_obj.renderer_blocked) {
1177 g->renderer_reset = true;
1178 } else {
1179 virtio_gpu_virgl_reset(g);
1181 g->parent_obj.use_virgl_renderer = false;
1183 #endif
1185 virtio_gpu_base_reset(VIRTIO_GPU_BASE(vdev));
1188 static void
1189 virtio_gpu_get_config(VirtIODevice *vdev, uint8_t *config)
1191 VirtIOGPUBase *g = VIRTIO_GPU_BASE(vdev);
1193 memcpy(config, &g->virtio_config, sizeof(g->virtio_config));
1196 static void
1197 virtio_gpu_set_config(VirtIODevice *vdev, const uint8_t *config)
1199 VirtIOGPUBase *g = VIRTIO_GPU_BASE(vdev);
1200 const struct virtio_gpu_config *vgconfig =
1201 (const struct virtio_gpu_config *)config;
1203 if (vgconfig->events_clear) {
1204 g->virtio_config.events_read &= ~vgconfig->events_clear;
1209 * For historical reasons virtio_gpu does not adhere to virtio migration
1210 * scheme as described in doc/virtio-migration.txt, in a sense that no
1211 * save/load callback are provided to the core. Instead the device data
1212 * is saved/loaded after the core data.
1214 * Because of this we need a special vmsd.
1216 static const VMStateDescription vmstate_virtio_gpu = {
1217 .name = "virtio-gpu",
1218 .minimum_version_id = VIRTIO_GPU_VM_VERSION,
1219 .version_id = VIRTIO_GPU_VM_VERSION,
1220 .fields = (VMStateField[]) {
1221 VMSTATE_VIRTIO_DEVICE /* core */,
1223 .name = "virtio-gpu",
1224 .info = &(const VMStateInfo) {
1225 .name = "virtio-gpu",
1226 .get = virtio_gpu_load,
1227 .put = virtio_gpu_save,
1229 .flags = VMS_SINGLE,
1230 } /* device */,
1231 VMSTATE_END_OF_LIST()
1235 static Property virtio_gpu_properties[] = {
1236 VIRTIO_GPU_BASE_PROPERTIES(VirtIOGPU, parent_obj.conf),
1237 DEFINE_PROP_SIZE("max_hostmem", VirtIOGPU, conf_max_hostmem,
1238 256 * MiB),
1239 DEFINE_PROP_END_OF_LIST(),
1242 static void virtio_gpu_class_init(ObjectClass *klass, void *data)
1244 DeviceClass *dc = DEVICE_CLASS(klass);
1245 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
1246 VirtIOGPUBaseClass *vgc = VIRTIO_GPU_BASE_CLASS(klass);
1248 vgc->gl_flushed = virtio_gpu_gl_flushed;
1249 vdc->realize = virtio_gpu_device_realize;
1250 vdc->reset = virtio_gpu_reset;
1251 vdc->get_config = virtio_gpu_get_config;
1252 vdc->set_config = virtio_gpu_set_config;
1254 dc->vmsd = &vmstate_virtio_gpu;
1255 device_class_set_props(dc, virtio_gpu_properties);
1258 static const TypeInfo virtio_gpu_info = {
1259 .name = TYPE_VIRTIO_GPU,
1260 .parent = TYPE_VIRTIO_GPU_BASE,
1261 .instance_size = sizeof(VirtIOGPU),
1262 .class_init = virtio_gpu_class_init,
1265 static void virtio_register_types(void)
1267 type_register_static(&virtio_gpu_info);
1270 type_init(virtio_register_types)