All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 00/14] virtio-gpu: Add support for Blob resources feature
@ 2021-05-26 23:14 Vivek Kasireddy
  2021-05-26 23:14 ` [PATCH v7 01/14] ui: Get the fd associated with udmabuf driver Vivek Kasireddy
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Vivek Kasireddy @ 2021-05-26 23:14 UTC (permalink / raw)
  To: qemu-devel; +Cc: Vivek Kasireddy, Gerd Hoffmann

Enabling this feature would eliminate data copies from the resource
object in the Guest to the shadow resource in Qemu. This patch series
however adds support only for Blobs of type
VIRTIO_GPU_BLOB_MEM_GUEST with property VIRTIO_GPU_BLOB_FLAG_USE_SHAREABLE.

Most of the patches in this series are a rebased, refactored and bugfixed 
versions of Gerd Hoffmann's patches located here:
https://gitlab.freedesktop.org/virgl/qemu/-/commits/virtio-gpu-next

v2:
- Moved dpy_gl_update from set_scanout to resource_flush
- Dropped the modifier
- Rebase and other minor refactoring

v3:
- Rebased on top of Gerd's virgl device split series
- Split the udmabuf helpers patch from the previous 
  version into two (Gerd)
- Added explicit flush feature (last 7 patches)

v4 (Gerd):
- Dropped explicit flush feature patches from the series
- Slightly refactored udmabuf helpers patch (#3) to introduce
  and use blob and blob_size fields
- Fixed indentation issues and made other small changes in
  set_scanout_blob patch (#12)

v5:
- Rebase (only #6 - Refactor virtio_gpu_create_mapping_iov)

v6:
- Fixed compilation error seen in patch #5 with !linux config
- Fixed uninitialized variable usage warning in patch #10

v7:
- Added a file in stubs for udmabuf helpers
- Included the header qemu/memfd.h so that F_GET_SEALS gets
  a definition if it is not defined in standard headers

Cc: Gerd Hoffmann <kraxel@redhat.com>

Vivek Kasireddy (14):
  ui: Get the fd associated with udmabuf driver
  headers: Add udmabuf.h
  virtio-gpu: Add udmabuf helpers
  stubs: Add stubs for udmabuf helpers
  virtio-gpu: Add virtio_gpu_find_check_resource
  virtio-gpu: Refactor virtio_gpu_set_scanout
  virtio-gpu: Refactor virtio_gpu_create_mapping_iov
  virtio-gpu: Add initial definitions for blob resources
  virtio-gpu: Add virtio_gpu_resource_create_blob
  ui/pixman: Add qemu_pixman_to_drm_format()
  virtio-gpu: Add helpers to create and destroy dmabuf objects
  virtio-gpu: Factor out update scanout
  virtio-gpu: Add virtio_gpu_set_scanout_blob
  virtio-gpu: Update cursor data using blob

 hw/display/meson.build                   |   1 +
 hw/display/trace-events                  |   2 +
 hw/display/virtio-gpu-base.c             |   3 +
 hw/display/virtio-gpu-udmabuf.c          | 223 ++++++++++++
 hw/display/virtio-gpu-virgl.c            |   3 +-
 hw/display/virtio-gpu.c                  | 431 ++++++++++++++++++-----
 include/hw/virtio/virtio-gpu-bswap.h     |  16 +
 include/hw/virtio/virtio-gpu.h           |  39 +-
 include/standard-headers/linux/udmabuf.h |  32 ++
 include/ui/console.h                     |   3 +
 include/ui/qemu-pixman.h                 |   1 +
 meson.build                              |   2 +-
 scripts/update-linux-headers.sh          |   3 +
 stubs/meson.build                        |   1 +
 stubs/virtio-gpu-udmabuf.c               |  27 ++
 ui/meson.build                           |   1 +
 ui/qemu-pixman.c                         |  35 +-
 ui/udmabuf.c                             |  40 +++
 18 files changed, 753 insertions(+), 110 deletions(-)
 create mode 100644 hw/display/virtio-gpu-udmabuf.c
 create mode 100644 include/standard-headers/linux/udmabuf.h
 create mode 100644 stubs/virtio-gpu-udmabuf.c
 create mode 100644 ui/udmabuf.c

-- 
2.30.2



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2021-05-26 23:47 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26 23:14 [PATCH v7 00/14] virtio-gpu: Add support for Blob resources feature Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 01/14] ui: Get the fd associated with udmabuf driver Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 02/14] headers: Add udmabuf.h Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 03/14] virtio-gpu: Add udmabuf helpers Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 04/14] stubs: Add stubs for " Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 05/14] virtio-gpu: Add virtio_gpu_find_check_resource Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 06/14] virtio-gpu: Refactor virtio_gpu_set_scanout Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 07/14] virtio-gpu: Refactor virtio_gpu_create_mapping_iov Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 08/14] virtio-gpu: Add initial definitions for blob resources Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 09/14] virtio-gpu: Add virtio_gpu_resource_create_blob Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 10/14] ui/pixman: Add qemu_pixman_to_drm_format() Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 11/14] virtio-gpu: Add helpers to create and destroy dmabuf objects Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 12/14] virtio-gpu: Factor out update scanout Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 13/14] virtio-gpu: Add virtio_gpu_set_scanout_blob Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 14/14] virtio-gpu: Update cursor data using blob Vivek Kasireddy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.