From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [PULL 00/19] virtio,acpi,pci: fixes, cleanups, tools.
Date: Wed, 24 Jun 2020 19:06:27 -0400 [thread overview]
Message-ID: <20200624230609.703104-1-mst@redhat.com> (raw)
The following changes since commit d4b78317b7cf8c0c635b70086503813f79ff21ec:
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200623' into staging (2020-06-23 18:57:05 +0100)
are available in the Git repository at:
git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
for you to fetch changes up to f6f746db6bae1ba74967fd7bea2bb5e169502948:
tests: disassemble-asm.sh: generate AML in readable format (2020-06-24 19:03:57 -0400)
----------------------------------------------------------------
virtio,acpi,pci: fixes, cleanups, tools.
Fixes, cleanups in ACPI, PCI, virtio.
A handy script for testing ACPI.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Ani Sinha (1):
Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
Eric Auger (3):
acpi: Some build_tpm2() code reshape
arm/acpi: Add the TPM2.0 device under the DSDT
docs/specs/tpm: ACPI boot now supported for TPM/ARM
Gerd Hoffmann (12):
qtest: allow DSDT acpi table changes
acpi: bios-tables-test: show more context on asl diffs
acpi: move aml builder code for floppy device
floppy: make isa_fdc_get_drive_max_chs static
floppy: move cmos_get_fd_drive_type() from pc
acpi: move aml builder code for i8042 (kbd+mouse) device
acpi: factor out fw_cfg_add_acpi_dsdt()
acpi: simplify build_isa_devices_aml()
acpi: drop serial/parallel enable bits from dsdt
acpi: drop build_piix4_pm()
acpi: q35: drop _SB.PCI0.ISA.LPCD opregion.
tests/acpi: update expected data files
Michael S. Tsirkin (1):
tests: disassemble-asm.sh: generate AML in readable format
Raphael Norwitz (1):
Stop vhost-user sending uninitialized mmap_offsets
Thomas Huth (1):
tests/qtest/bios-tables: Only run the TPM test with CONFIG_TPM enabled
hw/i386/fw_cfg.h | 1 +
include/hw/acpi/acpi-defs.h | 18 ---
include/hw/block/fdc.h | 3 +-
include/hw/i386/pc.h | 1 -
tests/qtest/bios-tables-test-allowed-diff.h | 18 +++
hw/acpi/aml-build.c | 51 ++++---
hw/acpi/piix4.c | 21 +--
hw/arm/virt-acpi-build.c | 34 +++++
hw/block/fdc.c | 111 ++++++++++++++-
hw/i386/acpi-build.c | 210 +---------------------------
hw/i386/fw_cfg.c | 28 ++++
hw/i386/pc.c | 25 ----
hw/input/pckbd.c | 31 ++++
hw/virtio/vhost-user.c | 12 +-
stubs/cmos.c | 7 +
tests/qtest/bios-tables-test.c | 8 +-
docs/specs/tpm.rst | 2 -
stubs/Makefile.objs | 1 +
tests/data/acpi/disassemle-aml.sh | 52 +++++++
tests/data/acpi/pc/DSDT | Bin 5014 -> 4934 bytes
tests/data/acpi/pc/DSDT.acpihmat | Bin 6338 -> 6258 bytes
tests/data/acpi/pc/DSDT.bridge | Bin 6873 -> 6793 bytes
tests/data/acpi/pc/DSDT.cphp | Bin 5477 -> 5397 bytes
tests/data/acpi/pc/DSDT.dimmpxm | Bin 6667 -> 6587 bytes
tests/data/acpi/pc/DSDT.ipmikcs | Bin 5086 -> 5006 bytes
tests/data/acpi/pc/DSDT.memhp | Bin 6373 -> 6293 bytes
tests/data/acpi/pc/DSDT.numamem | Bin 5020 -> 4940 bytes
tests/data/acpi/q35/DSDT | Bin 7752 -> 7678 bytes
tests/data/acpi/q35/DSDT.acpihmat | Bin 9076 -> 9002 bytes
tests/data/acpi/q35/DSDT.bridge | Bin 7769 -> 7695 bytes
tests/data/acpi/q35/DSDT.cphp | Bin 8215 -> 8141 bytes
tests/data/acpi/q35/DSDT.dimmpxm | Bin 9405 -> 9331 bytes
tests/data/acpi/q35/DSDT.ipmibt | Bin 7827 -> 7753 bytes
tests/data/acpi/q35/DSDT.memhp | Bin 9111 -> 9037 bytes
tests/data/acpi/q35/DSDT.mmio64 | Bin 8882 -> 8808 bytes
tests/data/acpi/q35/DSDT.numamem | Bin 7758 -> 7684 bytes
tests/data/acpi/q35/DSDT.tis | Bin 8357 -> 8283 bytes
37 files changed, 344 insertions(+), 290 deletions(-)
create mode 100644 stubs/cmos.c
create mode 100755 tests/data/acpi/disassemle-aml.sh
next reply other threads:[~2020-06-24 23:08 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-24 23:06 Michael S. Tsirkin [this message]
2020-06-24 23:06 ` [PULL 01/19] qtest: allow DSDT acpi table changes Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 02/19] acpi: bios-tables-test: show more context on asl diffs Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 03/19] acpi: move aml builder code for floppy device Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 04/19] floppy: make isa_fdc_get_drive_max_chs static Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 05/19] floppy: move cmos_get_fd_drive_type() from pc Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 06/19] acpi: move aml builder code for i8042 (kbd+mouse) device Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 07/19] acpi: factor out fw_cfg_add_acpi_dsdt() Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 08/19] acpi: simplify build_isa_devices_aml() Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 09/19] acpi: drop serial/parallel enable bits from dsdt Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 10/19] acpi: drop build_piix4_pm() Michael S. Tsirkin
2020-06-24 23:06 ` [PULL 11/19] acpi: q35: drop _SB.PCI0.ISA.LPCD opregion Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 12/19] tests/acpi: update expected data files Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 13/19] acpi: Some build_tpm2() code reshape Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 14/19] arm/acpi: Add the TPM2.0 device under the DSDT Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 15/19] docs/specs/tpm: ACPI boot now supported for TPM/ARM Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 16/19] Stop vhost-user sending uninitialized mmap_offsets Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 17/19] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 18/19] tests/qtest/bios-tables: Only run the TPM test with CONFIG_TPM enabled Michael S. Tsirkin
2020-06-24 23:07 ` [PULL 19/19] tests: disassemble-asm.sh: generate AML in readable format Michael S. Tsirkin
2020-06-25 5:47 ` [PULL 00/19] virtio,acpi,pci: fixes, cleanups, tools Thomas Huth
2020-06-25 6:49 ` Michael S. Tsirkin
2020-06-25 20:20 ` 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=20200624230609.703104-1-mst@redhat.com \
--to=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/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).