qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Eduardo Habkost <ehabkost@redhat.com>,
	Sergio Lopez <slp@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Igor Mammedov <imammedo@redhat.com>,
	Richard Henderson <rth@twiddle.net>
Subject: [PULL 00/17] Microvm 20201021 patches
Date: Wed, 21 Oct 2020 16:48:35 +0200	[thread overview]
Message-ID: <20201021144852.16665-1-kraxel@redhat.com> (raw)

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




             reply	other threads:[~2020-10-21 14:51 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-21 14:48 Gerd Hoffmann [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201021144852.16665-1-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=slp@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).