qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/17] Microvm 20201021 patches
@ 2020-10-21 14:48 Gerd Hoffmann
  2020-10-21 14:48 ` [PULL 01/17] tests/acpi: allow changes for microvm/APIC.pcie Gerd Hoffmann
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Gerd Hoffmann @ 2020-10-21 14:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: Eduardo Habkost, Sergio Lopez, Michael S. Tsirkin, Gerd Hoffmann,
	Paolo Bonzini, Igor Mammedov, Richard Henderson

The following changes since commit 4c41341af76cfc85b5a6c0f87de4838672ab9f89:

  Merge remote-tracking branch 'remotes/aperard/tags/pull-xen-20201020' into staging (2020-10-20 11:20:36 +0100)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/microvm-20201021-pull-request

for you to fetch changes up to 66907f3d3b8bfc2de77b82d89253b7b3a8b728ec:

  tests/acpi: update expected data files (2020-10-21 11:36:19 +0200)

----------------------------------------------------------------
microvm: fix PCIe IRQs in APIC table.
microvm: add usb support.

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

Gerd Hoffmann (17):
  tests/acpi: allow changes for microvm/APIC.pcie
  tests/acpi: add empty microvm/APIC.pcie
  x86: make pci irqs runtime configurable
  microvm: set pci_irq_mask
  apci: drop has_pci arg for acpi_build_madt
  tests/acpi: update expected data files
  tests/acpi: disallow changes for microvm/APIC.pcie
  acpi: add aml builder stubs
  usb/xhci: add include/hw/usb/xhci.h header file
  usb/xhci: add xhci_sysbus_build_aml() helper
  usb/xhci: fixup xhci kconfig deps
  microvm: add usb support
  tests/acpi: allow updates for expected data files
  tests/acpi: add empty tests/data/acpi/microvm/DSDT.{usb, rtc} files
  tests/acpi: add microvm usb test
  tests/acpi: add microvm rtc test
  tests/acpi: update expected data files

 hw/i386/acpi-common.h             |   3 +--
 hw/usb/hcd-xhci-sysbus.h          |   1 -
 hw/usb/hcd-xhci.h                 |  22 ++++++-------------
 include/hw/i386/microvm.h         |   5 ++++-
 include/hw/i386/x86.h             |   2 ++
 include/hw/usb/xhci.h             |  21 ++++++++++++++++++
 hw/acpi/aml-build-stub.c          |  14 ++++++++++++
 hw/i386/acpi-build.c              |   2 +-
 hw/i386/acpi-common.c             |  26 ++++++++++-------------
 hw/i386/acpi-microvm.c            |  11 +++++++++-
 hw/i386/microvm.c                 |  19 +++++++++++++++++
 hw/i386/x86.c                     |   1 +
 hw/usb/hcd-xhci-nec.c             |   4 ++--
 hw/usb/hcd-xhci-pci.c             |   4 ++--
 hw/usb/hcd-xhci-sysbus.c          |  19 +++++++++++++++--
 hw/usb/hcd-xhci.c                 |  34 ++++++++++++++----------------
 tests/qtest/bios-tables-test.c    |  24 +++++++++++++++++++++
 hw/i386/Kconfig                   |   1 +
 hw/usb/Kconfig                    |   6 ++----
 tests/data/acpi/microvm/APIC.pcie | Bin 0 -> 110 bytes
 tests/data/acpi/microvm/DSDT.rtc  | Bin 0 -> 404 bytes
 tests/data/acpi/microvm/DSDT.usb  | Bin 0 -> 414 bytes
 22 files changed, 154 insertions(+), 65 deletions(-)
 create mode 100644 include/hw/usb/xhci.h
 create mode 100644 tests/data/acpi/microvm/APIC.pcie
 create mode 100644 tests/data/acpi/microvm/DSDT.rtc
 create mode 100644 tests/data/acpi/microvm/DSDT.usb

-- 
2.27.0




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

end of thread, other threads:[~2020-10-22 10:14 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-21 14:48 [PULL 00/17] Microvm 20201021 patches Gerd Hoffmann
2020-10-21 14:48 ` [PULL 01/17] tests/acpi: allow changes for microvm/APIC.pcie Gerd Hoffmann
2020-10-21 14:48 ` [PULL 02/17] tests/acpi: add empty microvm/APIC.pcie Gerd Hoffmann
2020-10-21 14:48 ` [PULL 03/17] x86: make pci irqs runtime configurable Gerd Hoffmann
2020-10-21 14:48 ` [PULL 04/17] microvm: set pci_irq_mask Gerd Hoffmann
2020-10-21 14:48 ` [PULL 05/17] apci: drop has_pci arg for acpi_build_madt Gerd Hoffmann
2020-10-21 14:48 ` [PULL 06/17] tests/acpi: update expected data files Gerd Hoffmann
2020-10-21 14:48 ` [PULL 07/17] tests/acpi: disallow changes for microvm/APIC.pcie Gerd Hoffmann
2020-10-21 14:48 ` [PULL 08/17] acpi: add aml builder stubs Gerd Hoffmann
2020-10-21 14:48 ` [PULL 09/17] usb/xhci: add include/hw/usb/xhci.h header file Gerd Hoffmann
2020-10-21 14:48 ` [PULL 10/17] usb/xhci: add xhci_sysbus_build_aml() helper Gerd Hoffmann
2020-10-21 14:48 ` [PULL 11/17] usb/xhci: fixup xhci kconfig deps Gerd Hoffmann
2020-10-21 14:48 ` [PULL 12/17] microvm: add usb support Gerd Hoffmann
2020-10-21 14:48 ` [PULL 13/17] tests/acpi: allow updates for expected data files Gerd Hoffmann
2020-10-21 14:48 ` [PULL 14/17] tests/acpi: add empty tests/data/acpi/microvm/DSDT.{usb, rtc} files Gerd Hoffmann
2020-10-21 14:48 ` [PULL 15/17] tests/acpi: add microvm usb test Gerd Hoffmann
2020-10-21 14:48 ` [PULL 16/17] tests/acpi: add microvm rtc test Gerd Hoffmann
2020-10-21 14:48 ` [PULL 17/17] tests/acpi: update expected data files Gerd Hoffmann
2020-10-22 10:12 ` [PULL 00/17] Microvm 20201021 patches Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).