From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54278) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGYs-00069o-KB for qemu-devel@nongnu.org; Tue, 07 Jun 2016 08:56:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAGYp-0002fh-DE for qemu-devel@nongnu.org; Tue, 07 Jun 2016 08:56:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37227) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGYp-0002fN-5O for qemu-devel@nongnu.org; Tue, 07 Jun 2016 08:56:47 -0400 Date: Tue, 7 Jun 2016 15:56:44 +0300 From: "Michael S. Tsirkin" Message-ID: <20160607155644-mutt-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PULL v2 00/25] pc, pci, virtio: new features, cleanups, fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell changes from v1: fixes for old systems + ppc hosts The following changes since commit 76462405809d29bab65a3699686998ba124ab942: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160606-1' into staging (2016-06-06 17:02:42 +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 c02d7030c3c538312c7f464cb79b72c29a20df74: virtio: move bi-endian target support to a single location (2016-06-07 15:39:28 +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 ---------------------------------------------------------------- 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 | 52 +++++--- hw/acpi/bios-linker-loader.c | 180 +++++++++++++++---------- 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, 737 insertions(+), 686 deletions(-) delete mode 100644 hw/acpi/cpu_hotplug_acpi_table.c