All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/11] pc: CPU hotplug support for Q35
@ 2013-12-13 16:22 Igor Mammedov
  2013-12-13 16:22 ` [Qemu-devel] [PATCH 01/11] acpi: piix4: remove not needed GPE0 mask Igor Mammedov
                   ` (10 more replies)
  0 siblings, 11 replies; 40+ messages in thread
From: Igor Mammedov @ 2013-12-13 16:22 UTC (permalink / raw)
  To: qemu-devel
  Cc: stefanha, mst, hutao, jjherne, brogers, kraxel, aliguori,
	kaneshige.kenji, chen.fan.fnst, pbonzini, lersek

Tested with RHEL6 & WS2012R2

git tree for testing:
  https://github.com/imammedo/qemu/commits/q35_cpu_hp_v1

Igor Mammedov (11):
  acpi: piix4: remove not needed GPE0 mask
  acpi: factor out common pm_update_sci() into acpi core
  acpi: factor out common cpu hotplug code for PIIX4/Q35
  acpi/piix4: add readonly "cpu-hotplug-io-base" property
  acpi: ich9: allow guest to clear SCI rised by GPE
  acpi/ich9: add CPU hotplug handling to Q35 machine
  ACPI: Q35 DSDT: fix CPU hotplug GPE0.2 handler
  ACPI/DSDT-CPU: cleanup bogus comment
  ACPI: move PRST OperationRegion into SSDT
  ACPI: set CPU hotplug io base dynamically
  ACPI: update ssdt-misc.hex.generated acpi-dsdt.hex.generated
    q35-acpi-dsdt.hex.generated

 hw/acpi/Makefile.objs               |   2 +-
 hw/acpi/core.c                      |  18 +++
 hw/acpi/hotplug.c                   |  65 +++++++++
 hw/acpi/ich9.c                      |  49 ++++---
 hw/acpi/piix4.c                     | 114 +++-------------
 hw/i386/acpi-build.c                |   6 +
 hw/i386/acpi-dsdt-cpu-hotplug.dsl   |  40 +-----
 hw/i386/acpi-dsdt.dsl               |   2 +-
 hw/i386/acpi-dsdt.hex.generated     | 152 ++-------------------
 hw/i386/q35-acpi-dsdt.dsl           |   6 +-
 hw/i386/q35-acpi-dsdt.hex.generated | 168 +++--------------------
 hw/i386/ssdt-misc.dsl               |  66 +++++++++
 hw/i386/ssdt-misc.hex.generated     | 262 +++++++++++++++++++++++++++++++++++-
 include/hw/acpi/acpi.h              |   8 ++
 include/hw/acpi/hotplug.h           |  32 +++++
 include/hw/acpi/ich9.h              |   4 +
 16 files changed, 545 insertions(+), 449 deletions(-)
 create mode 100644 hw/acpi/hotplug.c
 create mode 100644 include/hw/acpi/hotplug.h

-- 
1.8.3.1

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

end of thread, other threads:[~2013-12-28  0:40 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-13 16:22 [Qemu-devel] [PATCH 00/11] pc: CPU hotplug support for Q35 Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 01/11] acpi: piix4: remove not needed GPE0 mask Igor Mammedov
2013-12-19 14:16   ` Michael S. Tsirkin
2013-12-13 16:22 ` [Qemu-devel] [PATCH 02/11] acpi: factor out common pm_update_sci() into acpi core Igor Mammedov
2013-12-19 14:16   ` Michael S. Tsirkin
2013-12-13 16:22 ` [Qemu-devel] [PATCH 03/11] acpi: factor out common cpu hotplug code for PIIX4/Q35 Igor Mammedov
2013-12-19 14:14   ` Michael S. Tsirkin
2013-12-19 15:13     ` Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 04/11] acpi/piix4: add readonly "cpu-hotplug-io-base" property Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 05/11] acpi: ich9: allow guest to clear SCI rised by GPE Igor Mammedov
2013-12-19 14:16   ` Michael S. Tsirkin
2013-12-13 16:22 ` [Qemu-devel] [PATCH 06/11] acpi/ich9: add CPU hotplug handling to Q35 machine Igor Mammedov
2013-12-19 14:18   ` Michael S. Tsirkin
2013-12-19 15:17     ` Igor Mammedov
2013-12-19 15:33       ` Michael S. Tsirkin
2013-12-13 16:22 ` [Qemu-devel] [PATCH 07/11] ACPI: Q35 DSDT: fix CPU hotplug GPE0.2 handler Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 08/11] ACPI/DSDT-CPU: cleanup bogus comment Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 09/11] ACPI: move PRST OperationRegion into SSDT Igor Mammedov
2013-12-16 19:30   ` Michael S. Tsirkin
2013-12-16 20:38     ` Igor Mammedov
2013-12-16 21:13       ` Laszlo Ersek
2013-12-16 21:22         ` Laszlo Ersek
2013-12-16 21:53         ` Igor Mammedov
2013-12-17 10:39           ` Michael S. Tsirkin
2013-12-16 21:44       ` Laszlo Ersek
2013-12-16 21:59         ` Igor Mammedov
2013-12-16 22:22           ` Laszlo Ersek
2013-12-16 23:13             ` Igor Mammedov
2013-12-16 19:53   ` Michael S. Tsirkin
2013-12-16 22:15     ` Igor Mammedov
2013-12-22 14:51     ` Igor Mammedov
2013-12-23 11:26       ` Michael S. Tsirkin
2013-12-23 13:06         ` Igor Mammedov
2013-12-23 14:48           ` Michael S. Tsirkin
2013-12-23 16:24             ` Igor Mammedov
2013-12-23 16:52               ` Laszlo Ersek
2013-12-28  0:39                 ` Igor Mammedov
2013-12-23 16:55               ` Michael S. Tsirkin
2013-12-13 16:22 ` [Qemu-devel] [PATCH 10/11] ACPI: set CPU hotplug io base dynamically Igor Mammedov
2013-12-13 16:22 ` [Qemu-devel] [PATCH 11/11] ACPI: update ssdt-misc.hex.generated acpi-dsdt.hex.generated q35-acpi-dsdt.hex.generated Igor Mammedov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.