[Qemu-devel] [PULL 00/11] vfio updates for QEMU-2.12 soft freeze

Alex Williamson posted 11 patches 6 years, 1 month ago
Failed in applying to current master (apply log)
hw/display/vga-pci.c                      |   9 +
hw/ppc/spapr.c                            |   7 +
hw/vfio/Makefile.objs                     |   2 +-
hw/vfio/common.c                          |  77 +++++-
hw/vfio/display.c                         | 347 +++++++++++++++++++++++++
hw/vfio/pci.c                             |  32 +++
hw/vfio/pci.h                             |   5 +
include/hw/vfio/vfio-common.h             |  23 ++
include/standard-headers/drm/drm_fourcc.h | 411 ++++++++++++++++++++++++++++++
include/ui/console.h                      |   2 +
include/ui/qemu-pixman.h                  |   5 +
scripts/update-linux-headers.sh           |   5 +
ui/console.c                              |  79 +++++-
ui/qemu-pixman.c                          |  22 ++
ui/trace-events                           |   2 +
15 files changed, 1015 insertions(+), 13 deletions(-)
create mode 100644 hw/vfio/display.c
create mode 100644 include/standard-headers/drm/drm_fourcc.h
[Qemu-devel] [PULL 00/11] vfio updates for QEMU-2.12 soft freeze
Posted by Alex Williamson 6 years, 1 month ago
The following changes since commit 9f750794985d7386f088da941c76b73880b2b6c4:

  sev/i386: add sev_get_capabilities() (2018-03-13 17:36:06 +0100)

are available in the Git repository at:

  git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20180313.0

for you to fetch changes up to fcad0d2121976df4b422b4007a5eb7fcaac01134:

  ppc/spapr, vfio: Turn off MSIX emulation for VFIO devices (2018-03-13 11:17:31 -0600)

----------------------------------------------------------------
VFIO updates 2018-03-13

 - Display support for vGPUs (Gerd Hoffmann)

 - Enable new kernel support for mmaps overlapping MSI-X vector table,
   disable MSI-X emulation on POWER (Alexey Kardashevskiy)

----------------------------------------------------------------

NOTE: Above tag is based on Paolo's v2 KVM pull request[1] as both
      series here depend on v4.16 header updates.

[1] 1520959261-96820-1-git-send-email-pbonzini@redhat.com

Alexey Kardashevskiy (3):
      vfio/pci: Relax DMA map errors for MMIO regions
      vfio-pci: Allow mmap of MSIX BAR
      ppc/spapr, vfio: Turn off MSIX emulation for VFIO devices

Gerd Hoffmann (8):
      standard-headers: add drm/drm_fourcc.h
      ui/pixman: add qemu_drm_format_to_pixman()
      console: minimal hotplug suport
      secondary-vga: properly close QemuConsole on unplug
      vfio/common: cleanup in vfio_region_finalize
      vfio/display: core & wireup
      vfio/display: adding region support
      vfio/display: adding dmabuf support

 hw/display/vga-pci.c                      |   9 +
 hw/ppc/spapr.c                            |   7 +
 hw/vfio/Makefile.objs                     |   2 +-
 hw/vfio/common.c                          |  77 +++++-
 hw/vfio/display.c                         | 347 +++++++++++++++++++++++++
 hw/vfio/pci.c                             |  32 +++
 hw/vfio/pci.h                             |   5 +
 include/hw/vfio/vfio-common.h             |  23 ++
 include/standard-headers/drm/drm_fourcc.h | 411 ++++++++++++++++++++++++++++++
 include/ui/console.h                      |   2 +
 include/ui/qemu-pixman.h                  |   5 +
 scripts/update-linux-headers.sh           |   5 +
 ui/console.c                              |  79 +++++-
 ui/qemu-pixman.c                          |  22 ++
 ui/trace-events                           |   2 +
 15 files changed, 1015 insertions(+), 13 deletions(-)
 create mode 100644 hw/vfio/display.c
 create mode 100644 include/standard-headers/drm/drm_fourcc.h

Re: [Qemu-devel] [PULL 00/11] vfio updates for QEMU-2.12 soft freeze
Posted by Peter Maydell 6 years, 1 month ago
On 13 March 2018 at 20:17, Alex Williamson <alex.williamson@redhat.com> wrote:
> The following changes since commit 9f750794985d7386f088da941c76b73880b2b6c4:
>
>   sev/i386: add sev_get_capabilities() (2018-03-13 17:36:06 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20180313.0
>
> for you to fetch changes up to fcad0d2121976df4b422b4007a5eb7fcaac01134:
>
>   ppc/spapr, vfio: Turn off MSIX emulation for VFIO devices (2018-03-13 11:17:31 -0600)
>
> ----------------------------------------------------------------
> VFIO updates 2018-03-13
>
>  - Display support for vGPUs (Gerd Hoffmann)
>
>  - Enable new kernel support for mmaps overlapping MSI-X vector table,
>    disable MSI-X emulation on POWER (Alexey Kardashevskiy)
>
> ----------------------------------------------------------------
>
> NOTE: Above tag is based on Paolo's v2 KVM pull request[1] as both
>       series here depend on v4.16 header updates.
>
> [1] 1520959261-96820-1-git-send-email-pbonzini@redhat.com
>
> Alexey Kardashevskiy (3):
>       vfio/pci: Relax DMA map errors for MMIO regions
>       vfio-pci: Allow mmap of MSIX BAR
>       ppc/spapr, vfio: Turn off MSIX emulation for VFIO devices
>
> Gerd Hoffmann (8):
>       standard-headers: add drm/drm_fourcc.h
>       ui/pixman: add qemu_drm_format_to_pixman()
>       console: minimal hotplug suport
>       secondary-vga: properly close QemuConsole on unplug
>       vfio/common: cleanup in vfio_region_finalize
>       vfio/display: core & wireup
>       vfio/display: adding region support
>       vfio/display: adding dmabuf support

Applied, thanks.

-- PMM