2018-03-13 20:17:29 +03:00
|
|
|
/*
|
|
|
|
* display support for mdev based vgpu devices
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2017
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Gerd Hoffmann
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include <linux/vfio.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#include "ui/console.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "pci.h"
|
|
|
|
|
2018-03-13 20:17:30 +03:00
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void vfio_display_region_update(void *opaque)
|
|
|
|
{
|
|
|
|
VFIOPCIDevice *vdev = opaque;
|
|
|
|
VFIODisplay *dpy = vdev->dpy;
|
|
|
|
struct vfio_device_gfx_plane_info plane = {
|
|
|
|
.argsz = sizeof(plane),
|
|
|
|
.flags = VFIO_GFX_PLANE_TYPE_REGION
|
|
|
|
};
|
|
|
|
pixman_format_code_t format;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_QUERY_GFX_PLANE, &plane);
|
|
|
|
if (ret < 0) {
|
|
|
|
error_report("ioctl VFIO_DEVICE_QUERY_GFX_PLANE: %s",
|
|
|
|
strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!plane.drm_format || !plane.size) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
format = qemu_drm_format_to_pixman(plane.drm_format);
|
|
|
|
if (!format) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpy->region.buffer.size &&
|
|
|
|
dpy->region.buffer.nr != plane.region_index) {
|
|
|
|
/* region changed */
|
|
|
|
vfio_region_exit(&dpy->region.buffer);
|
|
|
|
vfio_region_finalize(&dpy->region.buffer);
|
|
|
|
dpy->region.surface = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpy->region.surface &&
|
|
|
|
(surface_width(dpy->region.surface) != plane.width ||
|
|
|
|
surface_height(dpy->region.surface) != plane.height ||
|
|
|
|
surface_format(dpy->region.surface) != format)) {
|
|
|
|
/* size changed */
|
|
|
|
dpy->region.surface = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dpy->region.buffer.size) {
|
|
|
|
/* mmap region */
|
|
|
|
ret = vfio_region_setup(OBJECT(vdev), &vdev->vbasedev,
|
|
|
|
&dpy->region.buffer,
|
|
|
|
plane.region_index,
|
|
|
|
"display");
|
|
|
|
if (ret != 0) {
|
|
|
|
error_report("%s: vfio_region_setup(%d): %s",
|
|
|
|
__func__, plane.region_index, strerror(-ret));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ret = vfio_region_mmap(&dpy->region.buffer);
|
|
|
|
if (ret != 0) {
|
|
|
|
error_report("%s: vfio_region_mmap(%d): %s", __func__,
|
|
|
|
plane.region_index, strerror(-ret));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
assert(dpy->region.buffer.mmaps[0].mmap != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpy->region.surface == NULL) {
|
|
|
|
/* create surface */
|
|
|
|
dpy->region.surface = qemu_create_displaysurface_from
|
|
|
|
(plane.width, plane.height, format,
|
|
|
|
plane.stride, dpy->region.buffer.mmaps[0].mmap);
|
|
|
|
dpy_gfx_replace_surface(dpy->con, dpy->region.surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* full screen update */
|
|
|
|
dpy_gfx_update(dpy->con, 0, 0,
|
|
|
|
surface_width(dpy->region.surface),
|
|
|
|
surface_height(dpy->region.surface));
|
|
|
|
return;
|
|
|
|
|
|
|
|
err:
|
|
|
|
vfio_region_exit(&dpy->region.buffer);
|
|
|
|
vfio_region_finalize(&dpy->region.buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GraphicHwOps vfio_display_region_ops = {
|
|
|
|
.gfx_update = vfio_display_region_update,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int vfio_display_region_init(VFIOPCIDevice *vdev, Error **errp)
|
|
|
|
{
|
|
|
|
vdev->dpy = g_new0(VFIODisplay, 1);
|
|
|
|
vdev->dpy->con = graphic_console_init(DEVICE(vdev), 0,
|
|
|
|
&vfio_display_region_ops,
|
|
|
|
vdev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vfio_display_region_exit(VFIODisplay *dpy)
|
|
|
|
{
|
|
|
|
if (!dpy->region.buffer.size) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vfio_region_exit(&dpy->region.buffer);
|
|
|
|
vfio_region_finalize(&dpy->region.buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
2018-03-13 20:17:29 +03:00
|
|
|
int vfio_display_probe(VFIOPCIDevice *vdev, Error **errp)
|
|
|
|
{
|
|
|
|
struct vfio_device_gfx_plane_info probe;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
memset(&probe, 0, sizeof(probe));
|
|
|
|
probe.argsz = sizeof(probe);
|
|
|
|
probe.flags = VFIO_GFX_PLANE_TYPE_PROBE | VFIO_GFX_PLANE_TYPE_DMABUF;
|
|
|
|
ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_QUERY_GFX_PLANE, &probe);
|
|
|
|
if (ret == 0) {
|
|
|
|
error_setg(errp, "vfio-display: dmabuf support not implemented yet");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&probe, 0, sizeof(probe));
|
|
|
|
probe.argsz = sizeof(probe);
|
|
|
|
probe.flags = VFIO_GFX_PLANE_TYPE_PROBE | VFIO_GFX_PLANE_TYPE_REGION;
|
|
|
|
ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_QUERY_GFX_PLANE, &probe);
|
|
|
|
if (ret == 0) {
|
2018-03-13 20:17:30 +03:00
|
|
|
return vfio_display_region_init(vdev, errp);
|
2018-03-13 20:17:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vdev->display == ON_OFF_AUTO_AUTO) {
|
|
|
|
/* not an error in automatic mode */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_setg(errp, "vfio: device doesn't support any (known) display method");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vfio_display_finalize(VFIOPCIDevice *vdev)
|
|
|
|
{
|
2018-03-13 20:17:30 +03:00
|
|
|
if (!vdev->dpy) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
graphic_console_close(vdev->dpy->con);
|
|
|
|
vfio_display_region_exit(vdev->dpy);
|
|
|
|
g_free(vdev->dpy);
|
2018-03-13 20:17:29 +03:00
|
|
|
}
|