4 * Copyright Red Hat, Inc. 2013-2014
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"
17 #include "hw/virtio/virtio.h"
18 #include "hw/virtio/virtio-gpu.h"
20 #include <virglrenderer.h>
22 static struct virgl_renderer_callbacks virtio_gpu_3d_cbs
;
24 static void virgl_cmd_create_resource_2d(VirtIOGPU
*g
,
25 struct virtio_gpu_ctrl_command
*cmd
)
27 struct virtio_gpu_resource_create_2d c2d
;
28 struct virgl_renderer_resource_create_args args
;
30 VIRTIO_GPU_FILL_CMD(c2d
);
31 trace_virtio_gpu_cmd_res_create_2d(c2d
.resource_id
, c2d
.format
,
32 c2d
.width
, c2d
.height
);
34 args
.handle
= c2d
.resource_id
;
36 args
.format
= c2d
.format
;
38 args
.width
= c2d
.width
;
39 args
.height
= c2d
.height
;
44 args
.flags
= VIRTIO_GPU_RESOURCE_FLAG_Y_0_TOP
;
45 virgl_renderer_resource_create(&args
, NULL
, 0);
48 static void virgl_cmd_create_resource_3d(VirtIOGPU
*g
,
49 struct virtio_gpu_ctrl_command
*cmd
)
51 struct virtio_gpu_resource_create_3d c3d
;
52 struct virgl_renderer_resource_create_args args
;
54 VIRTIO_GPU_FILL_CMD(c3d
);
55 trace_virtio_gpu_cmd_res_create_3d(c3d
.resource_id
, c3d
.format
,
56 c3d
.width
, c3d
.height
, c3d
.depth
);
58 args
.handle
= c3d
.resource_id
;
59 args
.target
= c3d
.target
;
60 args
.format
= c3d
.format
;
62 args
.width
= c3d
.width
;
63 args
.height
= c3d
.height
;
64 args
.depth
= c3d
.depth
;
65 args
.array_size
= c3d
.array_size
;
66 args
.last_level
= c3d
.last_level
;
67 args
.nr_samples
= c3d
.nr_samples
;
68 args
.flags
= c3d
.flags
;
69 virgl_renderer_resource_create(&args
, NULL
, 0);
72 static void virgl_cmd_resource_unref(VirtIOGPU
*g
,
73 struct virtio_gpu_ctrl_command
*cmd
)
75 struct virtio_gpu_resource_unref unref
;
76 struct iovec
*res_iovs
= NULL
;
79 VIRTIO_GPU_FILL_CMD(unref
);
80 trace_virtio_gpu_cmd_res_unref(unref
.resource_id
);
82 virgl_renderer_resource_detach_iov(unref
.resource_id
,
85 if (res_iovs
!= NULL
&& num_iovs
!= 0) {
86 virtio_gpu_cleanup_mapping_iov(g
, res_iovs
, num_iovs
);
88 virgl_renderer_resource_unref(unref
.resource_id
);
91 static void virgl_cmd_context_create(VirtIOGPU
*g
,
92 struct virtio_gpu_ctrl_command
*cmd
)
94 struct virtio_gpu_ctx_create cc
;
96 VIRTIO_GPU_FILL_CMD(cc
);
97 trace_virtio_gpu_cmd_ctx_create(cc
.hdr
.ctx_id
,
100 virgl_renderer_context_create(cc
.hdr
.ctx_id
, cc
.nlen
,
104 static void virgl_cmd_context_destroy(VirtIOGPU
*g
,
105 struct virtio_gpu_ctrl_command
*cmd
)
107 struct virtio_gpu_ctx_destroy cd
;
109 VIRTIO_GPU_FILL_CMD(cd
);
110 trace_virtio_gpu_cmd_ctx_destroy(cd
.hdr
.ctx_id
);
112 virgl_renderer_context_destroy(cd
.hdr
.ctx_id
);
115 static void virtio_gpu_rect_update(VirtIOGPU
*g
, int idx
, int x
, int y
,
116 int width
, int height
)
118 if (!g
->parent_obj
.scanout
[idx
].con
) {
122 dpy_gl_update(g
->parent_obj
.scanout
[idx
].con
, x
, y
, width
, height
);
125 static void virgl_cmd_resource_flush(VirtIOGPU
*g
,
126 struct virtio_gpu_ctrl_command
*cmd
)
128 struct virtio_gpu_resource_flush rf
;
131 VIRTIO_GPU_FILL_CMD(rf
);
132 trace_virtio_gpu_cmd_res_flush(rf
.resource_id
,
133 rf
.r
.width
, rf
.r
.height
, rf
.r
.x
, rf
.r
.y
);
135 for (i
= 0; i
< g
->parent_obj
.conf
.max_outputs
; i
++) {
136 if (g
->parent_obj
.scanout
[i
].resource_id
!= rf
.resource_id
) {
139 virtio_gpu_rect_update(g
, i
, rf
.r
.x
, rf
.r
.y
, rf
.r
.width
, rf
.r
.height
);
143 static void virgl_cmd_set_scanout(VirtIOGPU
*g
,
144 struct virtio_gpu_ctrl_command
*cmd
)
146 struct virtio_gpu_set_scanout ss
;
147 struct virgl_renderer_resource_info info
;
150 VIRTIO_GPU_FILL_CMD(ss
);
151 trace_virtio_gpu_cmd_set_scanout(ss
.scanout_id
, ss
.resource_id
,
152 ss
.r
.width
, ss
.r
.height
, ss
.r
.x
, ss
.r
.y
);
154 if (ss
.scanout_id
>= g
->parent_obj
.conf
.max_outputs
) {
155 qemu_log_mask(LOG_GUEST_ERROR
, "%s: illegal scanout id specified %d",
156 __func__
, ss
.scanout_id
);
157 cmd
->error
= VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID
;
160 g
->parent_obj
.enable
= 1;
162 memset(&info
, 0, sizeof(info
));
164 if (ss
.resource_id
&& ss
.r
.width
&& ss
.r
.height
) {
165 ret
= virgl_renderer_resource_get_info(ss
.resource_id
, &info
);
167 qemu_log_mask(LOG_GUEST_ERROR
,
168 "%s: illegal resource specified %d\n",
169 __func__
, ss
.resource_id
);
170 cmd
->error
= VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID
;
173 qemu_console_resize(g
->parent_obj
.scanout
[ss
.scanout_id
].con
,
174 ss
.r
.width
, ss
.r
.height
);
175 virgl_renderer_force_ctx_0();
176 dpy_gl_scanout_texture(
177 g
->parent_obj
.scanout
[ss
.scanout_id
].con
, info
.tex_id
,
178 info
.flags
& 1 /* FIXME: Y_0_TOP */,
179 info
.width
, info
.height
,
180 ss
.r
.x
, ss
.r
.y
, ss
.r
.width
, ss
.r
.height
);
182 dpy_gfx_replace_surface(
183 g
->parent_obj
.scanout
[ss
.scanout_id
].con
, NULL
);
184 dpy_gl_scanout_disable(g
->parent_obj
.scanout
[ss
.scanout_id
].con
);
186 g
->parent_obj
.scanout
[ss
.scanout_id
].resource_id
= ss
.resource_id
;
189 static void virgl_cmd_submit_3d(VirtIOGPU
*g
,
190 struct virtio_gpu_ctrl_command
*cmd
)
192 struct virtio_gpu_cmd_submit cs
;
196 VIRTIO_GPU_FILL_CMD(cs
);
197 trace_virtio_gpu_cmd_ctx_submit(cs
.hdr
.ctx_id
, cs
.size
);
199 buf
= g_malloc(cs
.size
);
200 s
= iov_to_buf(cmd
->elem
.out_sg
, cmd
->elem
.out_num
,
201 sizeof(cs
), buf
, cs
.size
);
203 qemu_log_mask(LOG_GUEST_ERROR
, "%s: size mismatch (%zd/%d)",
204 __func__
, s
, cs
.size
);
205 cmd
->error
= VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER
;
209 if (virtio_gpu_stats_enabled(g
->parent_obj
.conf
)) {
211 g
->stats
.bytes_3d
+= cs
.size
;
214 virgl_renderer_submit_cmd(buf
, cs
.hdr
.ctx_id
, cs
.size
/ 4);
220 static void virgl_cmd_transfer_to_host_2d(VirtIOGPU
*g
,
221 struct virtio_gpu_ctrl_command
*cmd
)
223 struct virtio_gpu_transfer_to_host_2d t2d
;
224 struct virtio_gpu_box box
;
226 VIRTIO_GPU_FILL_CMD(t2d
);
227 trace_virtio_gpu_cmd_res_xfer_toh_2d(t2d
.resource_id
);
233 box
.h
= t2d
.r
.height
;
236 virgl_renderer_transfer_write_iov(t2d
.resource_id
,
241 (struct virgl_box
*)&box
,
242 t2d
.offset
, NULL
, 0);
245 static void virgl_cmd_transfer_to_host_3d(VirtIOGPU
*g
,
246 struct virtio_gpu_ctrl_command
*cmd
)
248 struct virtio_gpu_transfer_host_3d t3d
;
250 VIRTIO_GPU_FILL_CMD(t3d
);
251 trace_virtio_gpu_cmd_res_xfer_toh_3d(t3d
.resource_id
);
253 virgl_renderer_transfer_write_iov(t3d
.resource_id
,
258 (struct virgl_box
*)&t3d
.box
,
259 t3d
.offset
, NULL
, 0);
263 virgl_cmd_transfer_from_host_3d(VirtIOGPU
*g
,
264 struct virtio_gpu_ctrl_command
*cmd
)
266 struct virtio_gpu_transfer_host_3d tf3d
;
268 VIRTIO_GPU_FILL_CMD(tf3d
);
269 trace_virtio_gpu_cmd_res_xfer_fromh_3d(tf3d
.resource_id
);
271 virgl_renderer_transfer_read_iov(tf3d
.resource_id
,
276 (struct virgl_box
*)&tf3d
.box
,
277 tf3d
.offset
, NULL
, 0);
281 static void virgl_resource_attach_backing(VirtIOGPU
*g
,
282 struct virtio_gpu_ctrl_command
*cmd
)
284 struct virtio_gpu_resource_attach_backing att_rb
;
285 struct iovec
*res_iovs
;
289 VIRTIO_GPU_FILL_CMD(att_rb
);
290 trace_virtio_gpu_cmd_res_back_attach(att_rb
.resource_id
);
292 ret
= virtio_gpu_create_mapping_iov(g
, &att_rb
, cmd
, NULL
, &res_iovs
, &res_niov
);
294 cmd
->error
= VIRTIO_GPU_RESP_ERR_UNSPEC
;
298 ret
= virgl_renderer_resource_attach_iov(att_rb
.resource_id
,
302 virtio_gpu_cleanup_mapping_iov(g
, res_iovs
, res_niov
);
305 static void virgl_resource_detach_backing(VirtIOGPU
*g
,
306 struct virtio_gpu_ctrl_command
*cmd
)
308 struct virtio_gpu_resource_detach_backing detach_rb
;
309 struct iovec
*res_iovs
= NULL
;
312 VIRTIO_GPU_FILL_CMD(detach_rb
);
313 trace_virtio_gpu_cmd_res_back_detach(detach_rb
.resource_id
);
315 virgl_renderer_resource_detach_iov(detach_rb
.resource_id
,
318 if (res_iovs
== NULL
|| num_iovs
== 0) {
321 virtio_gpu_cleanup_mapping_iov(g
, res_iovs
, num_iovs
);
325 static void virgl_cmd_ctx_attach_resource(VirtIOGPU
*g
,
326 struct virtio_gpu_ctrl_command
*cmd
)
328 struct virtio_gpu_ctx_resource att_res
;
330 VIRTIO_GPU_FILL_CMD(att_res
);
331 trace_virtio_gpu_cmd_ctx_res_attach(att_res
.hdr
.ctx_id
,
332 att_res
.resource_id
);
334 virgl_renderer_ctx_attach_resource(att_res
.hdr
.ctx_id
, att_res
.resource_id
);
337 static void virgl_cmd_ctx_detach_resource(VirtIOGPU
*g
,
338 struct virtio_gpu_ctrl_command
*cmd
)
340 struct virtio_gpu_ctx_resource det_res
;
342 VIRTIO_GPU_FILL_CMD(det_res
);
343 trace_virtio_gpu_cmd_ctx_res_detach(det_res
.hdr
.ctx_id
,
344 det_res
.resource_id
);
346 virgl_renderer_ctx_detach_resource(det_res
.hdr
.ctx_id
, det_res
.resource_id
);
349 static void virgl_cmd_get_capset_info(VirtIOGPU
*g
,
350 struct virtio_gpu_ctrl_command
*cmd
)
352 struct virtio_gpu_get_capset_info info
;
353 struct virtio_gpu_resp_capset_info resp
;
355 VIRTIO_GPU_FILL_CMD(info
);
357 memset(&resp
, 0, sizeof(resp
));
358 if (info
.capset_index
== 0) {
359 resp
.capset_id
= VIRTIO_GPU_CAPSET_VIRGL
;
360 virgl_renderer_get_cap_set(resp
.capset_id
,
361 &resp
.capset_max_version
,
362 &resp
.capset_max_size
);
363 } else if (info
.capset_index
== 1) {
364 resp
.capset_id
= VIRTIO_GPU_CAPSET_VIRGL2
;
365 virgl_renderer_get_cap_set(resp
.capset_id
,
366 &resp
.capset_max_version
,
367 &resp
.capset_max_size
);
369 resp
.capset_max_version
= 0;
370 resp
.capset_max_size
= 0;
372 resp
.hdr
.type
= VIRTIO_GPU_RESP_OK_CAPSET_INFO
;
373 virtio_gpu_ctrl_response(g
, cmd
, &resp
.hdr
, sizeof(resp
));
376 static void virgl_cmd_get_capset(VirtIOGPU
*g
,
377 struct virtio_gpu_ctrl_command
*cmd
)
379 struct virtio_gpu_get_capset gc
;
380 struct virtio_gpu_resp_capset
*resp
;
381 uint32_t max_ver
, max_size
;
382 VIRTIO_GPU_FILL_CMD(gc
);
384 virgl_renderer_get_cap_set(gc
.capset_id
, &max_ver
,
387 cmd
->error
= VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER
;
391 resp
= g_malloc0(sizeof(*resp
) + max_size
);
392 resp
->hdr
.type
= VIRTIO_GPU_RESP_OK_CAPSET
;
393 virgl_renderer_fill_caps(gc
.capset_id
,
395 (void *)resp
->capset_data
);
396 virtio_gpu_ctrl_response(g
, cmd
, &resp
->hdr
, sizeof(*resp
) + max_size
);
400 void virtio_gpu_virgl_process_cmd(VirtIOGPU
*g
,
401 struct virtio_gpu_ctrl_command
*cmd
)
403 VIRTIO_GPU_FILL_CMD(cmd
->cmd_hdr
);
405 virgl_renderer_force_ctx_0();
406 switch (cmd
->cmd_hdr
.type
) {
407 case VIRTIO_GPU_CMD_CTX_CREATE
:
408 virgl_cmd_context_create(g
, cmd
);
410 case VIRTIO_GPU_CMD_CTX_DESTROY
:
411 virgl_cmd_context_destroy(g
, cmd
);
413 case VIRTIO_GPU_CMD_RESOURCE_CREATE_2D
:
414 virgl_cmd_create_resource_2d(g
, cmd
);
416 case VIRTIO_GPU_CMD_RESOURCE_CREATE_3D
:
417 virgl_cmd_create_resource_3d(g
, cmd
);
419 case VIRTIO_GPU_CMD_SUBMIT_3D
:
420 virgl_cmd_submit_3d(g
, cmd
);
422 case VIRTIO_GPU_CMD_TRANSFER_TO_HOST_2D
:
423 virgl_cmd_transfer_to_host_2d(g
, cmd
);
425 case VIRTIO_GPU_CMD_TRANSFER_TO_HOST_3D
:
426 virgl_cmd_transfer_to_host_3d(g
, cmd
);
428 case VIRTIO_GPU_CMD_TRANSFER_FROM_HOST_3D
:
429 virgl_cmd_transfer_from_host_3d(g
, cmd
);
431 case VIRTIO_GPU_CMD_RESOURCE_ATTACH_BACKING
:
432 virgl_resource_attach_backing(g
, cmd
);
434 case VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING
:
435 virgl_resource_detach_backing(g
, cmd
);
437 case VIRTIO_GPU_CMD_SET_SCANOUT
:
438 virgl_cmd_set_scanout(g
, cmd
);
440 case VIRTIO_GPU_CMD_RESOURCE_FLUSH
:
441 virgl_cmd_resource_flush(g
, cmd
);
443 case VIRTIO_GPU_CMD_RESOURCE_UNREF
:
444 virgl_cmd_resource_unref(g
, cmd
);
446 case VIRTIO_GPU_CMD_CTX_ATTACH_RESOURCE
:
447 /* TODO add security */
448 virgl_cmd_ctx_attach_resource(g
, cmd
);
450 case VIRTIO_GPU_CMD_CTX_DETACH_RESOURCE
:
451 /* TODO add security */
452 virgl_cmd_ctx_detach_resource(g
, cmd
);
454 case VIRTIO_GPU_CMD_GET_CAPSET_INFO
:
455 virgl_cmd_get_capset_info(g
, cmd
);
457 case VIRTIO_GPU_CMD_GET_CAPSET
:
458 virgl_cmd_get_capset(g
, cmd
);
460 case VIRTIO_GPU_CMD_GET_DISPLAY_INFO
:
461 virtio_gpu_get_display_info(g
, cmd
);
463 case VIRTIO_GPU_CMD_GET_EDID
:
464 virtio_gpu_get_edid(g
, cmd
);
467 cmd
->error
= VIRTIO_GPU_RESP_ERR_UNSPEC
;
475 fprintf(stderr
, "%s: ctrl 0x%x, error 0x%x\n", __func__
,
476 cmd
->cmd_hdr
.type
, cmd
->error
);
477 virtio_gpu_ctrl_response_nodata(g
, cmd
, cmd
->error
);
480 if (!(cmd
->cmd_hdr
.flags
& VIRTIO_GPU_FLAG_FENCE
)) {
481 virtio_gpu_ctrl_response_nodata(g
, cmd
, VIRTIO_GPU_RESP_OK_NODATA
);
485 trace_virtio_gpu_fence_ctrl(cmd
->cmd_hdr
.fence_id
, cmd
->cmd_hdr
.type
);
486 virgl_renderer_create_fence(cmd
->cmd_hdr
.fence_id
, cmd
->cmd_hdr
.type
);
489 static void virgl_write_fence(void *opaque
, uint32_t fence
)
491 VirtIOGPU
*g
= opaque
;
492 struct virtio_gpu_ctrl_command
*cmd
, *tmp
;
494 QTAILQ_FOREACH_SAFE(cmd
, &g
->fenceq
, next
, tmp
) {
496 * the guest can end up emitting fences out of order
497 * so we should check all fenced cmds not just the first one.
499 if (cmd
->cmd_hdr
.fence_id
> fence
) {
502 trace_virtio_gpu_fence_resp(cmd
->cmd_hdr
.fence_id
);
503 virtio_gpu_ctrl_response_nodata(g
, cmd
, VIRTIO_GPU_RESP_OK_NODATA
);
504 QTAILQ_REMOVE(&g
->fenceq
, cmd
, next
);
507 if (virtio_gpu_stats_enabled(g
->parent_obj
.conf
)) {
508 fprintf(stderr
, "inflight: %3d (-)\r", g
->inflight
);
513 static virgl_renderer_gl_context
514 virgl_create_context(void *opaque
, int scanout_idx
,
515 struct virgl_renderer_gl_ctx_param
*params
)
517 VirtIOGPU
*g
= opaque
;
519 QEMUGLParams qparams
;
521 qparams
.major_ver
= params
->major_ver
;
522 qparams
.minor_ver
= params
->minor_ver
;
524 ctx
= dpy_gl_ctx_create(g
->parent_obj
.scanout
[scanout_idx
].con
, &qparams
);
525 return (virgl_renderer_gl_context
)ctx
;
528 static void virgl_destroy_context(void *opaque
, virgl_renderer_gl_context ctx
)
530 VirtIOGPU
*g
= opaque
;
531 QEMUGLContext qctx
= (QEMUGLContext
)ctx
;
533 dpy_gl_ctx_destroy(g
->parent_obj
.scanout
[0].con
, qctx
);
536 static int virgl_make_context_current(void *opaque
, int scanout_idx
,
537 virgl_renderer_gl_context ctx
)
539 VirtIOGPU
*g
= opaque
;
540 QEMUGLContext qctx
= (QEMUGLContext
)ctx
;
542 return dpy_gl_ctx_make_current(g
->parent_obj
.scanout
[scanout_idx
].con
,
546 static struct virgl_renderer_callbacks virtio_gpu_3d_cbs
= {
548 .write_fence
= virgl_write_fence
,
549 .create_gl_context
= virgl_create_context
,
550 .destroy_gl_context
= virgl_destroy_context
,
551 .make_current
= virgl_make_context_current
,
554 static void virtio_gpu_print_stats(void *opaque
)
556 VirtIOGPU
*g
= opaque
;
558 if (g
->stats
.requests
) {
559 fprintf(stderr
, "stats: vq req %4d, %3d -- 3D %4d (%5d)\n",
561 g
->stats
.max_inflight
,
564 g
->stats
.requests
= 0;
565 g
->stats
.max_inflight
= 0;
567 g
->stats
.bytes_3d
= 0;
569 fprintf(stderr
, "stats: idle\r");
571 timer_mod(g
->print_stats
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + 1000);
574 static void virtio_gpu_fence_poll(void *opaque
)
576 VirtIOGPU
*g
= opaque
;
578 virgl_renderer_poll();
579 virtio_gpu_process_cmdq(g
);
580 if (!QTAILQ_EMPTY(&g
->cmdq
) || !QTAILQ_EMPTY(&g
->fenceq
)) {
581 timer_mod(g
->fence_poll
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + 10);
585 void virtio_gpu_virgl_fence_poll(VirtIOGPU
*g
)
587 virtio_gpu_fence_poll(g
);
590 void virtio_gpu_virgl_reset(VirtIOGPU
*g
)
594 virgl_renderer_reset();
595 for (i
= 0; i
< g
->parent_obj
.conf
.max_outputs
; i
++) {
596 dpy_gfx_replace_surface(g
->parent_obj
.scanout
[i
].con
, NULL
);
597 dpy_gl_scanout_disable(g
->parent_obj
.scanout
[i
].con
);
601 int virtio_gpu_virgl_init(VirtIOGPU
*g
)
605 ret
= virgl_renderer_init(g
, 0, &virtio_gpu_3d_cbs
);
610 g
->fence_poll
= timer_new_ms(QEMU_CLOCK_VIRTUAL
,
611 virtio_gpu_fence_poll
, g
);
613 if (virtio_gpu_stats_enabled(g
->parent_obj
.conf
)) {
614 g
->print_stats
= timer_new_ms(QEMU_CLOCK_VIRTUAL
,
615 virtio_gpu_print_stats
, g
);
616 timer_mod(g
->print_stats
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + 1000);
621 int virtio_gpu_virgl_get_num_capsets(VirtIOGPU
*g
)
623 uint32_t capset2_max_ver
, capset2_max_size
;
624 virgl_renderer_get_cap_set(VIRTIO_GPU_CAPSET_VIRGL2
,
628 return capset2_max_ver
? 2 : 1;