2 * display support for mdev based vgpu devices
4 * Copyright Red Hat, Inc. 2017
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include <linux/vfio.h>
15 #include <sys/ioctl.h>
17 #include "sysemu/sysemu.h"
18 #include "hw/display/edid.h"
19 #include "ui/console.h"
20 #include "qapi/error.h"
24 #ifndef DRM_PLANE_TYPE_PRIMARY
25 # define DRM_PLANE_TYPE_PRIMARY 1
26 # define DRM_PLANE_TYPE_CURSOR 2
29 #define pread_field(_fd, _reg, _ptr, _fld) \
30 (sizeof(_ptr->_fld) != \
31 pread(_fd, &(_ptr->_fld), sizeof(_ptr->_fld), \
32 _reg->offset + offsetof(typeof(*_ptr), _fld)))
34 #define pwrite_field(_fd, _reg, _ptr, _fld) \
35 (sizeof(_ptr->_fld) != \
36 pwrite(_fd, &(_ptr->_fld), sizeof(_ptr->_fld), \
37 _reg->offset + offsetof(typeof(*_ptr), _fld)))
40 static void vfio_display_edid_link_up(void *opaque
)
42 VFIOPCIDevice
*vdev
= opaque
;
43 VFIODisplay
*dpy
= vdev
->dpy
;
44 int fd
= vdev
->vbasedev
.fd
;
46 dpy
->edid_regs
->link_state
= VFIO_DEVICE_GFX_LINK_STATE_UP
;
47 if (pwrite_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, link_state
)) {
50 trace_vfio_display_edid_link_up();
54 trace_vfio_display_edid_write_error();
57 static void vfio_display_edid_update(VFIOPCIDevice
*vdev
, bool enabled
,
60 VFIODisplay
*dpy
= vdev
->dpy
;
61 int fd
= vdev
->vbasedev
.fd
;
62 qemu_edid_info edid
= {
63 .maxx
= dpy
->edid_regs
->max_xres
,
64 .maxy
= dpy
->edid_regs
->max_yres
,
65 .prefx
= prefx
?: vdev
->display_xres
,
66 .prefy
= prefy
?: vdev
->display_yres
,
69 timer_del(dpy
->edid_link_timer
);
70 dpy
->edid_regs
->link_state
= VFIO_DEVICE_GFX_LINK_STATE_DOWN
;
71 if (pwrite_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, link_state
)) {
74 trace_vfio_display_edid_link_down();
80 if (edid
.maxx
&& edid
.prefx
> edid
.maxx
) {
81 edid
.prefx
= edid
.maxx
;
83 if (edid
.maxy
&& edid
.prefy
> edid
.maxy
) {
84 edid
.prefy
= edid
.maxy
;
86 qemu_edid_generate(dpy
->edid_blob
,
87 dpy
->edid_regs
->edid_max_size
,
89 trace_vfio_display_edid_update(edid
.prefx
, edid
.prefy
);
91 dpy
->edid_regs
->edid_size
= qemu_edid_size(dpy
->edid_blob
);
92 if (pwrite_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, edid_size
)) {
95 if (pwrite(fd
, dpy
->edid_blob
, dpy
->edid_regs
->edid_size
,
96 dpy
->edid_info
->offset
+ dpy
->edid_regs
->edid_offset
)
97 != dpy
->edid_regs
->edid_size
) {
101 timer_mod(dpy
->edid_link_timer
,
102 qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 100);
106 trace_vfio_display_edid_write_error();
110 static int vfio_display_edid_ui_info(void *opaque
, uint32_t idx
,
113 VFIOPCIDevice
*vdev
= opaque
;
114 VFIODisplay
*dpy
= vdev
->dpy
;
116 if (!dpy
->edid_regs
) {
120 if (info
->width
&& info
->height
) {
121 vfio_display_edid_update(vdev
, true, info
->width
, info
->height
);
123 vfio_display_edid_update(vdev
, false, 0, 0);
129 static void vfio_display_edid_init(VFIOPCIDevice
*vdev
)
131 VFIODisplay
*dpy
= vdev
->dpy
;
132 int fd
= vdev
->vbasedev
.fd
;
135 ret
= vfio_get_dev_region_info(&vdev
->vbasedev
,
136 VFIO_REGION_TYPE_GFX
,
137 VFIO_REGION_SUBTYPE_GFX_EDID
,
143 trace_vfio_display_edid_available();
144 dpy
->edid_regs
= g_new0(struct vfio_region_gfx_edid
, 1);
145 if (pread_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, edid_offset
)) {
148 if (pread_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, edid_max_size
)) {
151 if (pread_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, max_xres
)) {
154 if (pread_field(fd
, dpy
->edid_info
, dpy
->edid_regs
, max_yres
)) {
158 dpy
->edid_blob
= g_malloc0(dpy
->edid_regs
->edid_max_size
);
160 /* if xres + yres properties are unset use the maximum resolution */
161 if (!vdev
->display_xres
) {
162 vdev
->display_xres
= dpy
->edid_regs
->max_xres
;
164 if (!vdev
->display_yres
) {
165 vdev
->display_yres
= dpy
->edid_regs
->max_yres
;
168 dpy
->edid_link_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
169 vfio_display_edid_link_up
, vdev
);
171 vfio_display_edid_update(vdev
, true, 0, 0);
175 trace_vfio_display_edid_write_error();
176 g_free(dpy
->edid_regs
);
177 dpy
->edid_regs
= NULL
;
181 static void vfio_display_edid_exit(VFIODisplay
*dpy
)
183 if (!dpy
->edid_regs
) {
187 g_free(dpy
->edid_regs
);
188 g_free(dpy
->edid_blob
);
189 timer_free(dpy
->edid_link_timer
);
192 static void vfio_display_update_cursor(VFIODMABuf
*dmabuf
,
193 struct vfio_device_gfx_plane_info
*plane
)
195 if (dmabuf
->pos_x
!= plane
->x_pos
|| dmabuf
->pos_y
!= plane
->y_pos
) {
196 dmabuf
->pos_x
= plane
->x_pos
;
197 dmabuf
->pos_y
= plane
->y_pos
;
198 dmabuf
->pos_updates
++;
200 if (dmabuf
->hot_x
!= plane
->x_hot
|| dmabuf
->hot_y
!= plane
->y_hot
) {
201 dmabuf
->hot_x
= plane
->x_hot
;
202 dmabuf
->hot_y
= plane
->y_hot
;
203 dmabuf
->hot_updates
++;
207 static VFIODMABuf
*vfio_display_get_dmabuf(VFIOPCIDevice
*vdev
,
210 VFIODisplay
*dpy
= vdev
->dpy
;
211 struct vfio_device_gfx_plane_info plane
;
215 memset(&plane
, 0, sizeof(plane
));
216 plane
.argsz
= sizeof(plane
);
217 plane
.flags
= VFIO_GFX_PLANE_TYPE_DMABUF
;
218 plane
.drm_plane_type
= plane_type
;
219 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_QUERY_GFX_PLANE
, &plane
);
223 if (!plane
.drm_format
|| !plane
.size
) {
227 QTAILQ_FOREACH(dmabuf
, &dpy
->dmabuf
.bufs
, next
) {
228 if (dmabuf
->dmabuf_id
== plane
.dmabuf_id
) {
229 /* found in list, move to head, return it */
230 QTAILQ_REMOVE(&dpy
->dmabuf
.bufs
, dmabuf
, next
);
231 QTAILQ_INSERT_HEAD(&dpy
->dmabuf
.bufs
, dmabuf
, next
);
232 if (plane_type
== DRM_PLANE_TYPE_CURSOR
) {
233 vfio_display_update_cursor(dmabuf
, &plane
);
239 fd
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_GFX_DMABUF
, &plane
.dmabuf_id
);
244 dmabuf
= g_new0(VFIODMABuf
, 1);
245 dmabuf
->dmabuf_id
= plane
.dmabuf_id
;
246 dmabuf
->buf
.width
= plane
.width
;
247 dmabuf
->buf
.height
= plane
.height
;
248 dmabuf
->buf
.stride
= plane
.stride
;
249 dmabuf
->buf
.fourcc
= plane
.drm_format
;
250 dmabuf
->buf
.modifier
= plane
.drm_format_mod
;
252 if (plane_type
== DRM_PLANE_TYPE_CURSOR
) {
253 vfio_display_update_cursor(dmabuf
, &plane
);
256 QTAILQ_INSERT_HEAD(&dpy
->dmabuf
.bufs
, dmabuf
, next
);
260 static void vfio_display_free_one_dmabuf(VFIODisplay
*dpy
, VFIODMABuf
*dmabuf
)
262 QTAILQ_REMOVE(&dpy
->dmabuf
.bufs
, dmabuf
, next
);
263 dpy_gl_release_dmabuf(dpy
->con
, &dmabuf
->buf
);
264 close(dmabuf
->buf
.fd
);
268 static void vfio_display_free_dmabufs(VFIOPCIDevice
*vdev
)
270 VFIODisplay
*dpy
= vdev
->dpy
;
271 VFIODMABuf
*dmabuf
, *tmp
;
274 QTAILQ_FOREACH_SAFE(dmabuf
, &dpy
->dmabuf
.bufs
, next
, tmp
) {
279 assert(dmabuf
!= dpy
->dmabuf
.primary
);
280 vfio_display_free_one_dmabuf(dpy
, dmabuf
);
284 static void vfio_display_dmabuf_update(void *opaque
)
286 VFIOPCIDevice
*vdev
= opaque
;
287 VFIODisplay
*dpy
= vdev
->dpy
;
288 VFIODMABuf
*primary
, *cursor
;
289 bool free_bufs
= false, new_cursor
= false;
291 primary
= vfio_display_get_dmabuf(vdev
, DRM_PLANE_TYPE_PRIMARY
);
292 if (primary
== NULL
) {
294 ramfb_display_update(dpy
->con
, dpy
->ramfb
);
299 if (dpy
->dmabuf
.primary
!= primary
) {
300 dpy
->dmabuf
.primary
= primary
;
301 qemu_console_resize(dpy
->con
,
302 primary
->buf
.width
, primary
->buf
.height
);
303 dpy_gl_scanout_dmabuf(dpy
->con
, &primary
->buf
);
307 cursor
= vfio_display_get_dmabuf(vdev
, DRM_PLANE_TYPE_CURSOR
);
308 if (dpy
->dmabuf
.cursor
!= cursor
) {
309 dpy
->dmabuf
.cursor
= cursor
;
314 if (cursor
&& (new_cursor
|| cursor
->hot_updates
)) {
315 bool have_hot
= (cursor
->hot_x
!= 0xffffffff &&
316 cursor
->hot_y
!= 0xffffffff);
317 dpy_gl_cursor_dmabuf(dpy
->con
, &cursor
->buf
, have_hot
,
318 cursor
->hot_x
, cursor
->hot_y
);
319 cursor
->hot_updates
= 0;
320 } else if (!cursor
&& new_cursor
) {
321 dpy_gl_cursor_dmabuf(dpy
->con
, NULL
, false, 0, 0);
324 if (cursor
&& cursor
->pos_updates
) {
325 dpy_gl_cursor_position(dpy
->con
,
328 cursor
->pos_updates
= 0;
331 dpy_gl_update(dpy
->con
, 0, 0, primary
->buf
.width
, primary
->buf
.height
);
334 vfio_display_free_dmabufs(vdev
);
338 static int vfio_display_get_flags(void *opaque
)
340 return GRAPHIC_FLAGS_GL
| GRAPHIC_FLAGS_DMABUF
;
343 static const GraphicHwOps vfio_display_dmabuf_ops
= {
344 .get_flags
= vfio_display_get_flags
,
345 .gfx_update
= vfio_display_dmabuf_update
,
346 .ui_info
= vfio_display_edid_ui_info
,
349 static int vfio_display_dmabuf_init(VFIOPCIDevice
*vdev
, Error
**errp
)
351 if (!display_opengl
) {
352 error_setg(errp
, "vfio-display-dmabuf: opengl not available");
356 vdev
->dpy
= g_new0(VFIODisplay
, 1);
357 vdev
->dpy
->con
= graphic_console_init(DEVICE(vdev
), 0,
358 &vfio_display_dmabuf_ops
,
360 if (vdev
->enable_ramfb
) {
361 vdev
->dpy
->ramfb
= ramfb_setup(errp
);
363 vfio_display_edid_init(vdev
);
367 static void vfio_display_dmabuf_exit(VFIODisplay
*dpy
)
371 if (QTAILQ_EMPTY(&dpy
->dmabuf
.bufs
)) {
375 while ((dmabuf
= QTAILQ_FIRST(&dpy
->dmabuf
.bufs
)) != NULL
) {
376 vfio_display_free_one_dmabuf(dpy
, dmabuf
);
380 /* ---------------------------------------------------------------------- */
381 void vfio_display_reset(VFIOPCIDevice
*vdev
)
383 if (!vdev
|| !vdev
->dpy
|| !vdev
->dpy
->con
||
384 !vdev
->dpy
->dmabuf
.primary
) {
388 dpy_gl_scanout_disable(vdev
->dpy
->con
);
389 vfio_display_dmabuf_exit(vdev
->dpy
);
390 dpy_gfx_update_full(vdev
->dpy
->con
);
393 static void vfio_display_region_update(void *opaque
)
395 VFIOPCIDevice
*vdev
= opaque
;
396 VFIODisplay
*dpy
= vdev
->dpy
;
397 struct vfio_device_gfx_plane_info plane
= {
398 .argsz
= sizeof(plane
),
399 .flags
= VFIO_GFX_PLANE_TYPE_REGION
401 pixman_format_code_t format
;
404 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_QUERY_GFX_PLANE
, &plane
);
406 error_report("ioctl VFIO_DEVICE_QUERY_GFX_PLANE: %s",
410 if (!plane
.drm_format
|| !plane
.size
) {
412 ramfb_display_update(dpy
->con
, dpy
->ramfb
);
413 dpy
->region
.surface
= NULL
;
417 format
= qemu_drm_format_to_pixman(plane
.drm_format
);
422 if (dpy
->region
.buffer
.size
&&
423 dpy
->region
.buffer
.nr
!= plane
.region_index
) {
425 vfio_region_exit(&dpy
->region
.buffer
);
426 vfio_region_finalize(&dpy
->region
.buffer
);
427 dpy
->region
.surface
= NULL
;
430 if (dpy
->region
.surface
&&
431 (surface_width(dpy
->region
.surface
) != plane
.width
||
432 surface_height(dpy
->region
.surface
) != plane
.height
||
433 surface_format(dpy
->region
.surface
) != format
)) {
435 dpy
->region
.surface
= NULL
;
438 if (!dpy
->region
.buffer
.size
) {
440 ret
= vfio_region_setup(OBJECT(vdev
), &vdev
->vbasedev
,
445 error_report("%s: vfio_region_setup(%d): %s",
446 __func__
, plane
.region_index
, strerror(-ret
));
449 ret
= vfio_region_mmap(&dpy
->region
.buffer
);
451 error_report("%s: vfio_region_mmap(%d): %s", __func__
,
452 plane
.region_index
, strerror(-ret
));
455 assert(dpy
->region
.buffer
.mmaps
[0].mmap
!= NULL
);
458 if (dpy
->region
.surface
== NULL
) {
460 dpy
->region
.surface
= qemu_create_displaysurface_from
461 (plane
.width
, plane
.height
, format
,
462 plane
.stride
, dpy
->region
.buffer
.mmaps
[0].mmap
);
463 dpy_gfx_replace_surface(dpy
->con
, dpy
->region
.surface
);
466 /* full screen update */
467 dpy_gfx_update(dpy
->con
, 0, 0,
468 surface_width(dpy
->region
.surface
),
469 surface_height(dpy
->region
.surface
));
473 vfio_region_exit(&dpy
->region
.buffer
);
474 vfio_region_finalize(&dpy
->region
.buffer
);
477 static const GraphicHwOps vfio_display_region_ops
= {
478 .gfx_update
= vfio_display_region_update
,
481 static int vfio_display_region_init(VFIOPCIDevice
*vdev
, Error
**errp
)
483 vdev
->dpy
= g_new0(VFIODisplay
, 1);
484 vdev
->dpy
->con
= graphic_console_init(DEVICE(vdev
), 0,
485 &vfio_display_region_ops
,
487 if (vdev
->enable_ramfb
) {
488 vdev
->dpy
->ramfb
= ramfb_setup(errp
);
493 static void vfio_display_region_exit(VFIODisplay
*dpy
)
495 if (!dpy
->region
.buffer
.size
) {
499 vfio_region_exit(&dpy
->region
.buffer
);
500 vfio_region_finalize(&dpy
->region
.buffer
);
503 /* ---------------------------------------------------------------------- */
505 int vfio_display_probe(VFIOPCIDevice
*vdev
, Error
**errp
)
507 struct vfio_device_gfx_plane_info probe
;
510 memset(&probe
, 0, sizeof(probe
));
511 probe
.argsz
= sizeof(probe
);
512 probe
.flags
= VFIO_GFX_PLANE_TYPE_PROBE
| VFIO_GFX_PLANE_TYPE_DMABUF
;
513 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_QUERY_GFX_PLANE
, &probe
);
515 return vfio_display_dmabuf_init(vdev
, errp
);
518 memset(&probe
, 0, sizeof(probe
));
519 probe
.argsz
= sizeof(probe
);
520 probe
.flags
= VFIO_GFX_PLANE_TYPE_PROBE
| VFIO_GFX_PLANE_TYPE_REGION
;
521 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_QUERY_GFX_PLANE
, &probe
);
523 return vfio_display_region_init(vdev
, errp
);
526 if (vdev
->display
== ON_OFF_AUTO_AUTO
) {
527 /* not an error in automatic mode */
531 error_setg(errp
, "vfio: device doesn't support any (known) display method");
535 void vfio_display_finalize(VFIOPCIDevice
*vdev
)
541 graphic_console_close(vdev
->dpy
->con
);
542 vfio_display_dmabuf_exit(vdev
->dpy
);
543 vfio_display_region_exit(vdev
->dpy
);
544 vfio_display_edid_exit(vdev
->dpy
);