From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/25] pc, pci, virtio: new features, cleanups, fixes
Date: Sun, 5 Jun 2016 16:20:52 +0300 [thread overview]
Message-ID: <1465132825-14242-1-git-send-email-mst@redhat.com> (raw)
The following changes since commit 6b3532b20b787cbd697a68b383232f5c3b39bd1e:
Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160603-1' into staging (2016-06-03 12:03:36 +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 cc973937f47a33ab5e8bb06381e33b2a7a87dab3:
virtio: move bi-endian target support to a single location (2016-06-05 16:06:23 +0300)
----------------------------------------------------------------
pc, pci, virtio: new features, cleanups, fixes
This includes some infrastructure for ipmi smbios tables.
Beginning of acpi hotplug rework by Igor for supporting >255 CPUs.
Misc cleanups and fixes.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Corey Minyard (2):
ipmi: rework the fwinfo to be fetched from the interface
pc: Postpone SMBIOS table installation to post machine init
Greg Kurz (1):
virtio: move bi-endian target support to a single location
Igor Mammedov (20):
tests: acpi: report names of expected files in verbose mode
acpi: add aml_debug()
acpi: add aml_refof()
pc: acpi: remove AML for empty/not used GPE handlers
pc: acpi: consolidate CPU hotplug AML
pc: acpi: consolidate \GPE._E02 with the rest of CPU hotplug AML
pc: acpi: cpu-hotplug: make AML CPU_foo defines local to cpu_hotplug_acpi_table.c
pc: acpi: mark current CPU hotplug functions as legacy
pc: acpi: consolidate legacy CPU hotplug in one file
pc: acpi: simplify build_legacy_cpu_hotplug_aml() signature
pc: acpi: cpuhp-legacy: switch ProcessorID to possible_cpus idx
tests: acpi: update tables with consolidated legacy cpu-hotplug AML
acpi: extend ACPI interface to provide send_event hook
pc: use AcpiDeviceIfClass.send_event to issue GPE events
acpi: convert linker from GArray to BIOSLinker structure
acpi: simplify bios_linker API by removing redundant 'table' argument
acpi: cleanup bios_linker_loader_cleanup()
tpm: apci: cleanup TCPA table initialization
acpi: make bios_linker_loader_add_pointer() API offset based
acpi: make bios_linker_loader_add_checksum() API offset based
Xiao Guangrong (2):
pc-dimm: get memory region from ->get_memory_region()
pc-dimm: introduce realize callback
include/hw/acpi/acpi.h | 10 +-
include/hw/acpi/acpi_dev_interface.h | 11 ++
include/hw/acpi/aml-build.h | 9 +-
include/hw/acpi/bios-linker-loader.h | 28 ++--
include/hw/acpi/cpu_hotplug.h | 19 +--
include/hw/acpi/ich9.h | 9 +-
include/hw/acpi/memory_hotplug.h | 4 +-
include/hw/acpi/pcihp.h | 5 +-
include/hw/ipmi/ipmi.h | 74 ++++++-----
include/hw/mem/nvdimm.h | 3 +-
include/hw/mem/pc-dimm.h | 6 +-
include/hw/virtio/virtio-access.h | 6 +-
target-arm/cpu.h | 2 -
target-ppc/cpu.h | 2 -
hw/acpi/acpi_interface.c | 9 ++
hw/acpi/aml-build.c | 50 ++++---
hw/acpi/bios-linker-loader.c | 179 +++++++++++++++----------
hw/acpi/core.c | 2 +-
hw/acpi/cpu_hotplug.c | 246 ++++++++++++++++++++++++++++++++++-
hw/acpi/cpu_hotplug_acpi_table.c | 136 -------------------
hw/acpi/ich9.c | 36 +++--
hw/acpi/memory_hotplug.c | 12 +-
hw/acpi/nvdimm.c | 22 ++--
hw/acpi/pcihp.c | 10 +-
hw/acpi/piix4.c | 23 ++--
hw/arm/virt-acpi-build.c | 56 ++++----
hw/i386/acpi-build.c | 229 +++++++-------------------------
hw/i386/pc.c | 5 +-
hw/ipmi/ipmi.c | 34 +----
hw/ipmi/isa_ipmi_bt.c | 57 ++++----
hw/ipmi/isa_ipmi_kcs.c | 56 ++++----
hw/isa/lpc_ich9.c | 38 ++----
hw/mem/pc-dimm.c | 8 +-
hw/virtio/vhost.c | 4 -
tests/bios-tables-test.c | 18 ++-
hw/acpi/Makefile.objs | 2 +-
tests/acpi-test-data/pc/DSDT | Bin 5587 -> 5503 bytes
tests/acpi-test-data/pc/DSDT.bridge | Bin 7446 -> 7362 bytes
tests/acpi-test-data/q35/DSDT | Bin 8357 -> 8265 bytes
tests/acpi-test-data/q35/DSDT.bridge | Bin 8374 -> 8282 bytes
40 files changed, 735 insertions(+), 685 deletions(-)
delete mode 100644 hw/acpi/cpu_hotplug_acpi_table.c
next reply other threads:[~2016-06-05 13:21 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-05 13:20 Michael S. Tsirkin [this message]
2016-06-05 13:20 ` [Qemu-devel] [PULL 01/25] tests: acpi: report names of expected files in verbose mode Michael S. Tsirkin
2016-06-05 13:20 ` [Qemu-devel] [PULL 02/25] acpi: add aml_debug() Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 03/25] acpi: add aml_refof() Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 04/25] pc: acpi: remove AML for empty/not used GPE handlers Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 05/25] pc: acpi: consolidate CPU hotplug AML Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 06/25] pc: acpi: consolidate \GPE._E02 with the rest of " Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 07/25] pc: acpi: cpu-hotplug: make AML CPU_foo defines local to cpu_hotplug_acpi_table.c Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 08/25] pc: acpi: mark current CPU hotplug functions as legacy Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 09/25] pc: acpi: consolidate legacy CPU hotplug in one file Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 10/25] pc: acpi: simplify build_legacy_cpu_hotplug_aml() signature Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 11/25] pc: acpi: cpuhp-legacy: switch ProcessorID to possible_cpus idx Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 12/25] tests: acpi: update tables with consolidated legacy cpu-hotplug AML Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 13/25] ipmi: rework the fwinfo to be fetched from the interface Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 14/25] pc: Postpone SMBIOS table installation to post machine init Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 15/25] acpi: extend ACPI interface to provide send_event hook Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 16/25] pc: use AcpiDeviceIfClass.send_event to issue GPE events Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 17/25] acpi: convert linker from GArray to BIOSLinker structure Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 18/25] acpi: simplify bios_linker API by removing redundant 'table' argument Michael S. Tsirkin
2016-06-06 13:18 ` [Qemu-devel] [PATCH 18/25] fixup! " Igor Mammedov
2016-06-05 13:21 ` [Qemu-devel] [PULL 19/25] acpi: cleanup bios_linker_loader_cleanup() Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 20/25] tpm: apci: cleanup TCPA table initialization Michael S. Tsirkin
2016-06-05 13:21 ` [Qemu-devel] [PULL 21/25] acpi: make bios_linker_loader_add_pointer() API offset based Michael S. Tsirkin
2016-06-06 13:20 ` [Qemu-devel] [PATCH 21/25] fixup! " Igor Mammedov
2016-06-05 13:22 ` [Qemu-devel] [PULL 22/25] acpi: make bios_linker_loader_add_checksum() " Michael S. Tsirkin
2016-06-05 13:22 ` [Qemu-devel] [PULL 23/25] pc-dimm: get memory region from ->get_memory_region() Michael S. Tsirkin
2016-06-05 13:22 ` [Qemu-devel] [PULL 24/25] pc-dimm: introduce realize callback Michael S. Tsirkin
2016-06-05 13:22 ` [Qemu-devel] [PULL 25/25] virtio: move bi-endian target support to a single location Michael S. Tsirkin
2016-06-06 10:14 ` [Qemu-devel] [PULL 00/25] pc, pci, virtio: new features, cleanups, fixes 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=1465132825-14242-1-git-send-email-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).