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>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 10:12:57 +02:00
|
|
|
#ifndef HW_VIRTIO_GPU_H
|
|
|
|
#define HW_VIRTIO_GPU_H
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
#include "qemu/queue.h"
|
|
|
|
#include "ui/qemu-pixman.h"
|
|
|
|
#include "ui/console.h"
|
|
|
|
#include "hw/virtio/virtio.h"
|
2016-08-08 11:31:40 +02:00
|
|
|
#include "qemu/log.h"
|
2019-05-24 15:09:46 +02:00
|
|
|
#include "sysemu/vhost-user-backend.h"
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
#include "standard-headers/linux/virtio_gpu.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2018-05-25 15:27:50 +02:00
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
#define TYPE_VIRTIO_GPU_BASE "virtio-gpu-base"
|
2020-08-31 23:07:37 +02:00
|
|
|
OBJECT_DECLARE_TYPE(VirtIOGPUBase, VirtIOGPUBaseClass,
|
|
|
|
virtio_gpu_base, VIRTIO_GPU_BASE)
|
2019-05-24 15:09:44 +02:00
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
#define TYPE_VIRTIO_GPU "virtio-gpu-device"
|
2020-09-03 22:43:22 +02:00
|
|
|
typedef struct VirtIOGPU VirtIOGPU;
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(VirtIOGPU, VIRTIO_GPU,
|
|
|
|
TYPE_VIRTIO_GPU)
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2019-05-24 15:09:46 +02:00
|
|
|
#define TYPE_VHOST_USER_GPU "vhost-user-gpu"
|
2020-09-03 22:43:22 +02:00
|
|
|
typedef struct VhostUserGPU VhostUserGPU;
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(VhostUserGPU, VHOST_USER_GPU,
|
|
|
|
TYPE_VHOST_USER_GPU)
|
2019-05-24 15:09:46 +02:00
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
#define VIRTIO_ID_GPU 16
|
|
|
|
|
|
|
|
struct virtio_gpu_simple_resource {
|
|
|
|
uint32_t resource_id;
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
uint32_t format;
|
2016-05-23 15:22:07 +02:00
|
|
|
uint64_t *addrs;
|
2014-09-10 14:12:28 +02:00
|
|
|
struct iovec *iov;
|
|
|
|
unsigned int iov_cnt;
|
|
|
|
uint32_t scanout_bitmask;
|
|
|
|
pixman_image_t *image;
|
2016-11-29 13:42:36 +01:00
|
|
|
uint64_t hostmem;
|
2014-09-10 14:12:28 +02:00
|
|
|
QTAILQ_ENTRY(virtio_gpu_simple_resource) next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct virtio_gpu_scanout {
|
|
|
|
QemuConsole *con;
|
|
|
|
DisplaySurface *ds;
|
|
|
|
uint32_t width, height;
|
|
|
|
int x, y;
|
|
|
|
int invalidate;
|
|
|
|
uint32_t resource_id;
|
2016-05-23 15:22:07 +02:00
|
|
|
struct virtio_gpu_update_cursor cursor;
|
2014-09-10 14:12:28 +02:00
|
|
|
QEMUCursor *current_cursor;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct virtio_gpu_requested_state {
|
|
|
|
uint32_t width, height;
|
|
|
|
int x, y;
|
|
|
|
};
|
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
enum virtio_gpu_base_conf_flags {
|
2014-07-11 12:51:43 +02:00
|
|
|
VIRTIO_GPU_FLAG_VIRGL_ENABLED = 1,
|
|
|
|
VIRTIO_GPU_FLAG_STATS_ENABLED,
|
2019-02-21 09:10:54 +01:00
|
|
|
VIRTIO_GPU_FLAG_EDID_ENABLED,
|
2014-07-11 12:51:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define virtio_gpu_virgl_enabled(_cfg) \
|
|
|
|
(_cfg.flags & (1 << VIRTIO_GPU_FLAG_VIRGL_ENABLED))
|
|
|
|
#define virtio_gpu_stats_enabled(_cfg) \
|
|
|
|
(_cfg.flags & (1 << VIRTIO_GPU_FLAG_STATS_ENABLED))
|
2019-02-21 09:10:54 +01:00
|
|
|
#define virtio_gpu_edid_enabled(_cfg) \
|
|
|
|
(_cfg.flags & (1 << VIRTIO_GPU_FLAG_EDID_ENABLED))
|
2014-07-11 12:51:43 +02:00
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
struct virtio_gpu_base_conf {
|
2014-09-10 14:12:28 +02:00
|
|
|
uint32_t max_outputs;
|
2014-07-11 12:51:43 +02:00
|
|
|
uint32_t flags;
|
2017-04-21 11:22:14 +02:00
|
|
|
uint32_t xres;
|
|
|
|
uint32_t yres;
|
2014-09-10 14:12:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct virtio_gpu_ctrl_command {
|
|
|
|
VirtQueueElement elem;
|
|
|
|
VirtQueue *vq;
|
|
|
|
struct virtio_gpu_ctrl_hdr cmd_hdr;
|
|
|
|
uint32_t error;
|
|
|
|
bool finished;
|
|
|
|
QTAILQ_ENTRY(virtio_gpu_ctrl_command) next;
|
|
|
|
};
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VirtIOGPUBase {
|
2014-09-10 14:12:28 +02:00
|
|
|
VirtIODevice parent_obj;
|
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
Error *migration_blocker;
|
|
|
|
|
|
|
|
struct virtio_gpu_base_conf conf;
|
|
|
|
struct virtio_gpu_config virtio_config;
|
2020-09-14 15:42:23 +02:00
|
|
|
const GraphicHwOps *hw_ops;
|
2019-05-24 15:09:44 +02:00
|
|
|
|
|
|
|
bool use_virgl_renderer;
|
|
|
|
int renderer_blocked;
|
|
|
|
int enable;
|
|
|
|
|
|
|
|
struct virtio_gpu_scanout scanout[VIRTIO_GPU_MAX_SCANOUTS];
|
|
|
|
|
|
|
|
int enabled_output_bitmask;
|
|
|
|
struct virtio_gpu_requested_state req_state[VIRTIO_GPU_MAX_SCANOUTS];
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2019-05-24 15:09:44 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VirtIOGPUBaseClass {
|
2019-05-24 15:09:44 +02:00
|
|
|
VirtioDeviceClass parent;
|
|
|
|
|
|
|
|
void (*gl_unblock)(VirtIOGPUBase *g);
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2019-05-24 15:09:44 +02:00
|
|
|
|
|
|
|
#define VIRTIO_GPU_BASE_PROPERTIES(_state, _conf) \
|
|
|
|
DEFINE_PROP_UINT32("max_outputs", _state, _conf.max_outputs, 1), \
|
|
|
|
DEFINE_PROP_BIT("edid", _state, _conf.flags, \
|
2019-06-07 10:34:44 +02:00
|
|
|
VIRTIO_GPU_FLAG_EDID_ENABLED, true), \
|
2019-05-24 15:09:44 +02:00
|
|
|
DEFINE_PROP_UINT32("xres", _state, _conf.xres, 1024), \
|
|
|
|
DEFINE_PROP_UINT32("yres", _state, _conf.yres, 768)
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VirtIOGPU {
|
2019-05-24 15:09:44 +02:00
|
|
|
VirtIOGPUBase parent_obj;
|
|
|
|
|
|
|
|
uint64_t conf_max_hostmem;
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
VirtQueue *ctrl_vq;
|
|
|
|
VirtQueue *cursor_vq;
|
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
QEMUBH *ctrl_bh;
|
|
|
|
QEMUBH *cursor_bh;
|
2014-09-10 14:12:28 +02:00
|
|
|
|
|
|
|
QTAILQ_HEAD(, virtio_gpu_simple_resource) reslist;
|
2015-12-01 12:05:14 +01:00
|
|
|
QTAILQ_HEAD(, virtio_gpu_ctrl_command) cmdq;
|
2014-09-10 14:12:28 +02:00
|
|
|
QTAILQ_HEAD(, virtio_gpu_ctrl_command) fenceq;
|
|
|
|
|
2016-11-29 13:42:36 +01:00
|
|
|
uint64_t hostmem;
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
bool renderer_inited;
|
2019-03-14 12:53:57 +01:00
|
|
|
bool renderer_reset;
|
2014-09-10 14:12:28 +02:00
|
|
|
QEMUTimer *fence_poll;
|
|
|
|
QEMUTimer *print_stats;
|
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
uint32_t inflight;
|
2014-09-10 14:12:28 +02:00
|
|
|
struct {
|
|
|
|
uint32_t max_inflight;
|
|
|
|
uint32_t requests;
|
|
|
|
uint32_t req_3d;
|
|
|
|
uint32_t bytes_3d;
|
|
|
|
} stats;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VhostUserGPU {
|
2019-05-24 15:09:46 +02:00
|
|
|
VirtIOGPUBase parent_obj;
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2019-05-24 15:09:46 +02:00
|
|
|
VhostUserBackend *vhost;
|
|
|
|
int vhost_gpu_fd; /* closed by the chardev */
|
|
|
|
CharBackend vhost_chr;
|
|
|
|
QemuDmaBuf dmabuf[VIRTIO_GPU_MAX_SCANOUTS];
|
|
|
|
bool backend_blocked;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2019-05-24 15:09:46 +02:00
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
#define VIRTIO_GPU_FILL_CMD(out) do { \
|
|
|
|
size_t s; \
|
|
|
|
s = iov_to_buf(cmd->elem.out_sg, cmd->elem.out_num, 0, \
|
|
|
|
&out, sizeof(out)); \
|
|
|
|
if (s != sizeof(out)) { \
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR, \
|
|
|
|
"%s: command size incorrect %zu vs %zu\n", \
|
|
|
|
__func__, s, sizeof(out)); \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2019-05-24 15:09:44 +02:00
|
|
|
/* virtio-gpu-base.c */
|
|
|
|
bool virtio_gpu_base_device_realize(DeviceState *qdev,
|
|
|
|
VirtIOHandleOutput ctrl_cb,
|
|
|
|
VirtIOHandleOutput cursor_cb,
|
|
|
|
Error **errp);
|
|
|
|
void virtio_gpu_base_reset(VirtIOGPUBase *g);
|
|
|
|
void virtio_gpu_base_fill_display_info(VirtIOGPUBase *g,
|
|
|
|
struct virtio_gpu_resp_display_info *dpy_info);
|
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
/* virtio-gpu.c */
|
|
|
|
void virtio_gpu_ctrl_response(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd,
|
|
|
|
struct virtio_gpu_ctrl_hdr *resp,
|
|
|
|
size_t resp_len);
|
|
|
|
void virtio_gpu_ctrl_response_nodata(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd,
|
|
|
|
enum virtio_gpu_ctrl_type type);
|
|
|
|
void virtio_gpu_get_display_info(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd);
|
2019-02-21 09:10:54 +01:00
|
|
|
void virtio_gpu_get_edid(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd);
|
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);
|
2018-08-29 14:21:00 +02:00
|
|
|
void virtio_gpu_cleanup_mapping_iov(VirtIOGPU *g,
|
|
|
|
struct iovec *iov, uint32_t count);
|
2015-12-01 13:18:38 +01:00
|
|
|
void virtio_gpu_process_cmdq(VirtIOGPU *g);
|
2014-09-10 14:12:28 +02:00
|
|
|
|
2014-07-11 12:51:43 +02:00
|
|
|
/* virtio-gpu-3d.c */
|
|
|
|
void virtio_gpu_virgl_process_cmd(VirtIOGPU *g,
|
|
|
|
struct virtio_gpu_ctrl_command *cmd);
|
|
|
|
void virtio_gpu_virgl_fence_poll(VirtIOGPU *g);
|
|
|
|
void virtio_gpu_virgl_reset(VirtIOGPU *g);
|
|
|
|
int virtio_gpu_virgl_init(VirtIOGPU *g);
|
2018-02-23 03:38:14 +01:00
|
|
|
int virtio_gpu_virgl_get_num_capsets(VirtIOGPU *g);
|
2019-05-24 15:09:44 +02:00
|
|
|
|
2014-09-10 14:12:28 +02:00
|
|
|
#endif
|