mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
virtio-gpu: add 3d mode and virgl rendering support.
Add virglrenderer library detection. Add 3d mode to virtio-gpu, wire up virglrenderer library. When in 3d mode render using the new context management and texture scanout callbacks. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
@@ -331,6 +331,7 @@ gtkabi=""
|
||||
gnutls=""
|
||||
gnutls_hash=""
|
||||
vte=""
|
||||
virglrenderer=""
|
||||
tpm="yes"
|
||||
libssh2=""
|
||||
vhdx=""
|
||||
@@ -1122,6 +1123,10 @@ for opt do
|
||||
;;
|
||||
--enable-vte) vte="yes"
|
||||
;;
|
||||
--disable-virglrenderer) virglrenderer="no"
|
||||
;;
|
||||
--enable-virglrenderer) virglrenderer="yes"
|
||||
;;
|
||||
--disable-tpm) tpm="no"
|
||||
;;
|
||||
--enable-tpm) tpm="yes"
|
||||
@@ -3966,6 +3971,27 @@ EOF
|
||||
fi
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# virgl renderer probe
|
||||
|
||||
if test "$virglrenderer" != "no" ; then
|
||||
cat > $TMPC << EOF
|
||||
#include <virglrenderer.h>
|
||||
int main(void) { virgl_renderer_poll(); return 0; }
|
||||
EOF
|
||||
virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
|
||||
virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
|
||||
if $pkg_config virglrenderer >/dev/null 2>&1 && \
|
||||
compile_prog "$virgl_cflags" "$virgl_libs" ; then
|
||||
virglrenderer="yes"
|
||||
else
|
||||
if test "$virglrenderer" = "yes" ; then
|
||||
feature_not_found "virglrenderer"
|
||||
fi
|
||||
virglrenderer="no"
|
||||
fi
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# check if we have fdatasync
|
||||
|
||||
@@ -4583,6 +4609,7 @@ echo "GNUTLS nettle $gnutls_nettle ${gnutls_nettle+($nettle_version)}"
|
||||
echo "libtasn1 $tasn1"
|
||||
echo "VTE support $vte"
|
||||
echo "curses support $curses"
|
||||
echo "virgl support $virglrenderer"
|
||||
echo "curl support $curl"
|
||||
echo "mingw32 support $mingw32"
|
||||
echo "Audio drivers $audio_drv_list"
|
||||
@@ -4955,6 +4982,11 @@ if test "$vte" = "yes" ; then
|
||||
echo "CONFIG_VTE=y" >> $config_host_mak
|
||||
echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
|
||||
fi
|
||||
if test "$virglrenderer" = "yes" ; then
|
||||
echo "CONFIG_VIRGL=y" >> $config_host_mak
|
||||
echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
|
||||
echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
|
||||
fi
|
||||
if test "$xen" = "yes" ; then
|
||||
echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
|
||||
echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
|
||||
|
||||
@@ -35,6 +35,10 @@ obj-$(CONFIG_VGA) += vga.o
|
||||
|
||||
common-obj-$(CONFIG_QXL) += qxl.o qxl-logger.o qxl-render.o
|
||||
|
||||
obj-$(CONFIG_VIRTIO) += virtio-gpu.o
|
||||
obj-$(CONFIG_VIRTIO) += virtio-gpu.o virtio-gpu-3d.o
|
||||
obj-$(CONFIG_VIRTIO_PCI) += virtio-gpu-pci.o
|
||||
obj-$(CONFIG_VIRTIO_VGA) += virtio-vga.o
|
||||
virtio-gpu.o-cflags := $(VIRGL_CFLAGS)
|
||||
virtio-gpu.o-libs += $(VIRGL_LIBS)
|
||||
virtio-gpu-3d.o-cflags := $(VIRGL_CFLAGS)
|
||||
virtio-gpu-3d.o-libs += $(VIRGL_LIBS)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
+128
-9
@@ -22,6 +22,23 @@
|
||||
static struct virtio_gpu_simple_resource*
|
||||
virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id);
|
||||
|
||||
#ifdef CONFIG_VIRGL
|
||||
#include "virglrenderer.h"
|
||||
#define VIRGL(_g, _virgl, _simple, ...) \
|
||||
do { \
|
||||
if (_g->use_virgl_renderer) { \
|
||||
_virgl(__VA_ARGS__); \
|
||||
} else { \
|
||||
_simple(__VA_ARGS__); \
|
||||
} \
|
||||
} while (0)
|
||||
#else
|
||||
#define VIRGL(_g, _virgl, _simple, ...) \
|
||||
do { \
|
||||
_simple(__VA_ARGS__); \
|
||||
} while (0)
|
||||
#endif
|
||||
|
||||
static void update_cursor_data_simple(VirtIOGPU *g,
|
||||
struct virtio_gpu_scanout *s,
|
||||
uint32_t resource_id)
|
||||
@@ -45,6 +62,32 @@ static void update_cursor_data_simple(VirtIOGPU *g,
|
||||
pixels * sizeof(uint32_t));
|
||||
}
|
||||
|
||||
#ifdef CONFIG_VIRGL
|
||||
|
||||
static void update_cursor_data_virgl(VirtIOGPU *g,
|
||||
struct virtio_gpu_scanout *s,
|
||||
uint32_t resource_id)
|
||||
{
|
||||
uint32_t width, height;
|
||||
uint32_t pixels, *data;
|
||||
|
||||
data = virgl_renderer_get_cursor_data(resource_id, &width, &height);
|
||||
if (!data) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (width != s->current_cursor->width ||
|
||||
height != s->current_cursor->height) {
|
||||
return;
|
||||
}
|
||||
|
||||
pixels = s->current_cursor->width * s->current_cursor->height;
|
||||
memcpy(s->current_cursor->data, data, pixels * sizeof(uint32_t));
|
||||
free(data);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
static void update_cursor(VirtIOGPU *g, struct virtio_gpu_update_cursor *cursor)
|
||||
{
|
||||
struct virtio_gpu_scanout *s;
|
||||
@@ -63,7 +106,8 @@ static void update_cursor(VirtIOGPU *g, struct virtio_gpu_update_cursor *cursor)
|
||||
s->current_cursor->hot_y = cursor->hot_y;
|
||||
|
||||
if (cursor->resource_id > 0) {
|
||||
update_cursor_data_simple(g, s, cursor->resource_id);
|
||||
VIRGL(g, update_cursor_data_virgl, update_cursor_data_simple,
|
||||
g, s, cursor->resource_id);
|
||||
}
|
||||
dpy_cursor_define(s->con, s->current_cursor);
|
||||
}
|
||||
@@ -92,9 +136,23 @@ static void virtio_gpu_set_config(VirtIODevice *vdev, const uint8_t *config)
|
||||
static uint64_t virtio_gpu_get_features(VirtIODevice *vdev, uint64_t features,
|
||||
Error **errp)
|
||||
{
|
||||
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
||||
|
||||
if (virtio_gpu_virgl_enabled(g->conf)) {
|
||||
features |= (1 << VIRTIO_GPU_FEATURE_VIRGL);
|
||||
}
|
||||
return features;
|
||||
}
|
||||
|
||||
static void virtio_gpu_set_features(VirtIODevice *vdev, uint64_t features)
|
||||
{
|
||||
static const uint32_t virgl = (1 << VIRTIO_GPU_FEATURE_VIRGL);
|
||||
VirtIOGPU *g = VIRTIO_GPU(vdev);
|
||||
|
||||
g->use_virgl_renderer = ((features & virgl) == virgl);
|
||||
trace_virtio_gpu_features(g->use_virgl_renderer);
|
||||
}
|
||||
|
||||
static void virtio_gpu_notify_event(VirtIOGPU *g, uint32_t event_type)
|
||||
{
|
||||
g->virtio_config.events_read |= event_type;
|
||||
@@ -698,25 +756,43 @@ static void virtio_gpu_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_VIRGL
|
||||
if (!g->renderer_inited && g->use_virgl_renderer) {
|
||||
virtio_gpu_virgl_init(g);
|
||||
g->renderer_inited = true;
|
||||
}
|
||||
#endif
|
||||
|
||||
cmd = g_new(struct virtio_gpu_ctrl_command, 1);
|
||||
while (virtqueue_pop(vq, &cmd->elem)) {
|
||||
cmd->vq = vq;
|
||||
cmd->error = 0;
|
||||
cmd->finished = false;
|
||||
g->stats.requests++;
|
||||
if (virtio_gpu_stats_enabled(g->conf)) {
|
||||
g->stats.requests++;
|
||||
}
|
||||
|
||||
virtio_gpu_simple_process_cmd(g, cmd);
|
||||
VIRGL(g, virtio_gpu_virgl_process_cmd, virtio_gpu_simple_process_cmd,
|
||||
g, cmd);
|
||||
if (!cmd->finished) {
|
||||
QTAILQ_INSERT_TAIL(&g->fenceq, cmd, next);
|
||||
g->stats.inflight++;
|
||||
if (g->stats.max_inflight < g->stats.inflight) {
|
||||
g->stats.max_inflight = g->stats.inflight;
|
||||
g->inflight++;
|
||||
if (virtio_gpu_stats_enabled(g->conf)) {
|
||||
if (g->stats.max_inflight < g->inflight) {
|
||||
g->stats.max_inflight = g->inflight;
|
||||
}
|
||||
fprintf(stderr, "inflight: %3d (+)\r", g->inflight);
|
||||
}
|
||||
fprintf(stderr, "inflight: %3d (+)\r", g->stats.inflight);
|
||||
cmd = g_new(struct virtio_gpu_ctrl_command, 1);
|
||||
}
|
||||
}
|
||||
g_free(cmd);
|
||||
|
||||
#ifdef CONFIG_VIRGL
|
||||
if (g->use_virgl_renderer) {
|
||||
virtio_gpu_virgl_fence_poll(g);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void virtio_gpu_ctrl_bh(void *opaque)
|
||||
@@ -803,6 +879,7 @@ static void virtio_gpu_device_realize(DeviceState *qdev, Error **errp)
|
||||
{
|
||||
VirtIODevice *vdev = VIRTIO_DEVICE(qdev);
|
||||
VirtIOGPU *g = VIRTIO_GPU(qdev);
|
||||
bool have_virgl;
|
||||
int i;
|
||||
|
||||
g->config_size = sizeof(struct virtio_gpu_config);
|
||||
@@ -813,8 +890,25 @@ static void virtio_gpu_device_realize(DeviceState *qdev, Error **errp)
|
||||
g->req_state[0].width = 1024;
|
||||
g->req_state[0].height = 768;
|
||||
|
||||
g->ctrl_vq = virtio_add_queue(vdev, 64, virtio_gpu_handle_ctrl_cb);
|
||||
g->cursor_vq = virtio_add_queue(vdev, 16, virtio_gpu_handle_cursor_cb);
|
||||
g->use_virgl_renderer = false;
|
||||
#if !defined(CONFIG_VIRGL) || defined(HOST_WORDS_BIGENDIAN)
|
||||
have_virgl = false;
|
||||
#else
|
||||
have_virgl = display_opengl;
|
||||
#endif
|
||||
if (!have_virgl) {
|
||||
g->conf.flags &= ~(1 << VIRTIO_GPU_FLAG_VIRGL_ENABLED);
|
||||
}
|
||||
|
||||
if (virtio_gpu_virgl_enabled(g->conf)) {
|
||||
/* use larger control queue in 3d mode */
|
||||
g->ctrl_vq = virtio_add_queue(vdev, 256, virtio_gpu_handle_ctrl_cb);
|
||||
g->cursor_vq = virtio_add_queue(vdev, 16, virtio_gpu_handle_cursor_cb);
|
||||
g->virtio_config.num_capsets = 1;
|
||||
} else {
|
||||
g->ctrl_vq = virtio_add_queue(vdev, 64, virtio_gpu_handle_ctrl_cb);
|
||||
g->cursor_vq = virtio_add_queue(vdev, 16, virtio_gpu_handle_cursor_cb);
|
||||
}
|
||||
|
||||
g->ctrl_bh = qemu_bh_new(virtio_gpu_ctrl_bh, g);
|
||||
g->cursor_bh = qemu_bh_new(virtio_gpu_cursor_bh, g);
|
||||
@@ -868,10 +962,23 @@ static void virtio_gpu_reset(VirtIODevice *vdev)
|
||||
g->scanout[i].ds = NULL;
|
||||
}
|
||||
g->enabled_output_bitmask = 1;
|
||||
|
||||
#ifdef CONFIG_VIRGL
|
||||
if (g->use_virgl_renderer) {
|
||||
virtio_gpu_virgl_reset(g);
|
||||
g->use_virgl_renderer = 0;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static Property virtio_gpu_properties[] = {
|
||||
DEFINE_PROP_UINT32("max_outputs", VirtIOGPU, conf.max_outputs, 1),
|
||||
#ifdef CONFIG_VIRGL
|
||||
DEFINE_PROP_BIT("virgl", VirtIOGPU, conf.flags,
|
||||
VIRTIO_GPU_FLAG_VIRGL_ENABLED, true),
|
||||
DEFINE_PROP_BIT("stats", VirtIOGPU, conf.flags,
|
||||
VIRTIO_GPU_FLAG_STATS_ENABLED, false),
|
||||
#endif
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
@@ -884,6 +991,7 @@ static void virtio_gpu_class_init(ObjectClass *klass, void *data)
|
||||
vdc->get_config = virtio_gpu_get_config;
|
||||
vdc->set_config = virtio_gpu_set_config;
|
||||
vdc->get_features = virtio_gpu_get_features;
|
||||
vdc->set_features = virtio_gpu_set_features;
|
||||
|
||||
vdc->reset = virtio_gpu_reset;
|
||||
|
||||
@@ -916,3 +1024,14 @@ QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_mem_entry) != 16);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_attach_backing) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_detach_backing) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_display_info) != 408);
|
||||
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_transfer_host_3d) != 72);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resource_create_3d) != 72);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_create) != 96);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_destroy) != 24);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_ctx_resource) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_cmd_submit) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_get_capset_info) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_capset_info) != 40);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_get_capset) != 32);
|
||||
QEMU_BUILD_BUG_ON(sizeof(struct virtio_gpu_resp_capset) != 24);
|
||||
|
||||
@@ -56,8 +56,19 @@ struct virtio_gpu_requested_state {
|
||||
int x, y;
|
||||
};
|
||||
|
||||
enum virtio_gpu_conf_flags {
|
||||
VIRTIO_GPU_FLAG_VIRGL_ENABLED = 1,
|
||||
VIRTIO_GPU_FLAG_STATS_ENABLED,
|
||||
};
|
||||
|
||||
#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))
|
||||
|
||||
struct virtio_gpu_conf {
|
||||
uint32_t max_outputs;
|
||||
uint32_t flags;
|
||||
};
|
||||
|
||||
struct virtio_gpu_ctrl_command {
|
||||
@@ -92,11 +103,13 @@ typedef struct VirtIOGPU {
|
||||
int enabled_output_bitmask;
|
||||
struct virtio_gpu_config virtio_config;
|
||||
|
||||
bool use_virgl_renderer;
|
||||
bool renderer_inited;
|
||||
QEMUTimer *fence_poll;
|
||||
QEMUTimer *print_stats;
|
||||
|
||||
uint32_t inflight;
|
||||
struct {
|
||||
uint32_t inflight;
|
||||
uint32_t max_inflight;
|
||||
uint32_t requests;
|
||||
uint32_t req_3d;
|
||||
@@ -139,4 +152,11 @@ int virtio_gpu_create_mapping_iov(struct virtio_gpu_resource_attach_backing *ab,
|
||||
struct iovec **iov);
|
||||
void virtio_gpu_cleanup_mapping_iov(struct iovec *iov, uint32_t count);
|
||||
|
||||
/* 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);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1181,6 +1181,7 @@ vmware_scratch_write(uint32_t index, uint32_t value) "index %d, value 0x%x"
|
||||
vmware_setmode(uint32_t w, uint32_t h, uint32_t bpp) "%dx%d @ %d bpp"
|
||||
|
||||
# hw/display/virtio-gpu.c
|
||||
virtio_gpu_features(bool virgl) "virgl %d"
|
||||
virtio_gpu_cmd_get_display_info(void) ""
|
||||
virtio_gpu_cmd_get_caps(void) ""
|
||||
virtio_gpu_cmd_set_scanout(uint32_t id, uint32_t res, uint32_t w, uint32_t h, uint32_t x, uint32_t y) "id %d, res 0x%x, w %d, h %d, x %d, y %d"
|
||||
@@ -1190,7 +1191,14 @@ virtio_gpu_cmd_res_unref(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_back_attach(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_back_detach(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_xfer_toh_2d(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_xfer_toh_3d(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_xfer_fromh_3d(uint32_t res) "res 0x%x"
|
||||
virtio_gpu_cmd_res_flush(uint32_t res, uint32_t w, uint32_t h, uint32_t x, uint32_t y) "res 0x%x, w %d, h %d, x %d, y %d"
|
||||
virtio_gpu_cmd_ctx_create(uint32_t ctx, const char *name) "ctx 0x%x, name %s"
|
||||
virtio_gpu_cmd_ctx_destroy(uint32_t ctx) "ctx 0x%x"
|
||||
virtio_gpu_cmd_ctx_res_attach(uint32_t ctx, uint32_t res) "ctx 0x%x, res 0x%x"
|
||||
virtio_gpu_cmd_ctx_res_detach(uint32_t ctx, uint32_t res) "ctx 0x%x, res 0x%x"
|
||||
virtio_gpu_cmd_ctx_submit(uint32_t ctx, uint32_t size) "ctx 0x%x, size %d"
|
||||
virtio_gpu_fence_ctrl(uint64_t fence, uint32_t type) "fence 0x%" PRIx64 ", type 0x%x"
|
||||
virtio_gpu_fence_resp(uint64_t fence) "fence 0x%" PRIx64
|
||||
|
||||
|
||||
Reference in New Issue
Block a user