qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4 00/10] cpu: add device_add foo-x86_64-cpu support
@ 2015-02-13 10:25 Zhu Guihua
  2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 01/10] cpu/apic: drop icc bus/bridge/ Zhu Guihua
                   ` (11 more replies)
  0 siblings, 12 replies; 26+ messages in thread
From: Zhu Guihua @ 2015-02-13 10:25 UTC (permalink / raw)
  To: qemu-devel
  Cc: Zhu Guihua, tangchen, guz.fnst, isimatu.yasuaki, anshul.makkar,
	chen.fan.fnst, imammedo, afaerber

This series is based on the previous patchset from Chen Fan:
https://lists.nongnu.org/archive/html/qemu-devel/2014-05/msg02360.html

We try to make cpu hotplug with device_add, and make
"-device foo-x86_64-cpu" available, also we can set apic-id
property with command line, if without setting apic-id property,
we offer the first unoccupied apic id as the default new apic id.
When hotplug cpu with device_add, additional check of APIC ID will be
done after cpu object initialization which was different from
'cpu_add' command that check 'ids' at the beginning.

The is the first half of the previous series:
[RFC V2 00/10] cpu: add device_add foo-x86_64-cpu and i386 cpu hot remove support
https://lists.nongnu.org/archive/html/qemu-devel/2014-08/msg04779.html

---
Changelog since v3:
 -fix cross version migration issue
 -drop ICC bus impl
 -do a generic for apic to send gpe event
 -do not use migration code for CONFIG_USER_ONLY target

Changelog since v2:
 -rebase on latest upstream.
 -add cpu instance finalize.

Changelog since v1:
 -rebased on latest upstream.
 -introduce a help function to hide the access to icc_bus.
 -use a macro ACPI_ID_NOT_SET to replace the magic number(0xFFFFFFFF).

Changelog since RFC:
 -split out APIC vmstate/QMP-monitor changes into separate patches.
 -add the handle of the startup cpus(-device foo).
 -remove duplicated checking about env->cpuid_apic_id.
 -do actual APIC ID allocation at realize time if it is not set before.
 -remove the unneeded x86_cpu_cpudef_instance_init().
 -split off device_del support out here.
---

Chen Fan (4):
  cpu/apic: drop icc bus/bridge/
  icc_bus: remove icc related files
  cpu: introduce CpuTopoInfo structure for argument simplification
  cpu: add device_add foo-x86_64-cpu support

Gu Zheng (4):
  qom/cpu: move register_vmstate to common CPUClass.realizefn
  qom/cpu: move apic vmstate register into x86_cpu_apic_realize
  monitor: use cc->get_arch_id as the cpu index
  i386/cpu: add instance finalize callback

Zhu Guihua (2):
  cpu: introduce get_compat_arch_id() method and override it for X86CPU
  acpi: introduce acpi_send_gpe_event()

 MAINTAINERS                        |   6 --
 cpus.c                             |   4 +-
 default-configs/i386-softmmu.mak   |   1 -
 default-configs/x86_64-softmmu.mak |   1 -
 exec.c                             |  25 +++++---
 hw/acpi/core.c                     |   7 +++
 hw/acpi/cpu_hotplug.c              |   6 +-
 hw/cpu/Makefile.objs               |   2 -
 hw/cpu/icc_bus.c                   | 118 -------------------------------------
 hw/i386/kvm/apic.c                 |  10 +++-
 hw/i386/pc.c                       |  27 ++-------
 hw/i386/pc_piix.c                  |   9 +--
 hw/i386/pc_q35.c                   |   9 +--
 hw/intc/apic.c                     |  16 +++--
 hw/intc/apic_common.c              |  17 +++---
 include/hw/acpi/acpi.h             |   3 +
 include/hw/cpu/icc_bus.h           |  82 --------------------------
 include/hw/i386/apic_internal.h    |   9 +--
 include/hw/i386/pc.h               |   3 +-
 include/qom/cpu.h                  |   6 ++
 monitor.c                          |   4 +-
 qom/cpu.c                          |  10 ++++
 target-i386/cpu.c                  |  95 ++++++++++++++++++++++-------
 target-i386/cpu.h                  |   3 +-
 target-i386/topology.h             |  66 ++++++++++++++++-----
 25 files changed, 223 insertions(+), 316 deletions(-)
 delete mode 100644 hw/cpu/icc_bus.c
 delete mode 100644 include/hw/cpu/icc_bus.h

-- 
1.9.3

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

end of thread, other threads:[~2015-03-13  6:19 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-13 10:25 [Qemu-devel] [PATCH v4 00/10] cpu: add device_add foo-x86_64-cpu support Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 01/10] cpu/apic: drop icc bus/bridge/ Zhu Guihua
2015-03-05 18:17   ` Eduardo Habkost
2015-03-06  3:10     ` Chen Fan
2015-03-06  9:35   ` Igor Mammedov
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 02/10] icc_bus: remove icc related files Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 03/10] cpu: introduce CpuTopoInfo structure for argument simplification Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 04/10] cpu: introduce get_compat_arch_id() method and override it for X86CPU Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 05/10] qom/cpu: move register_vmstate to common CPUClass.realizefn Zhu Guihua
2015-03-05 18:32   ` Eduardo Habkost
2015-03-06  8:53   ` Igor Mammedov
2015-03-06  9:31     ` Chen Fan
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 06/10] qom/cpu: move apic vmstate register into x86_cpu_apic_realize Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 07/10] monitor: use cc->get_arch_id as the cpu index Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 08/10] acpi: introduce acpi_send_gpe_event() Zhu Guihua
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 09/10] cpu: add device_add foo-x86_64-cpu support Zhu Guihua
2015-03-05 18:43   ` Eduardo Habkost
2015-02-13 10:25 ` [Qemu-devel] [PATCH v4 10/10] i386/cpu: add instance finalize callback Zhu Guihua
2015-02-24  1:25 ` [Qemu-devel] [PATCH v4 00/10] cpu: add device_add foo-x86_64-cpu support Gu Zheng
2015-02-24 16:56   ` Andreas Färber
2015-02-25  9:58     ` Chen Fan
2015-02-26  9:35       ` Andreas Färber
2015-02-26 10:02         ` Chen Fan
2015-02-26  4:42     ` Bharata B Rao
2015-02-26  9:08       ` Andreas Färber
2015-03-13  6:17 ` Zhu Guihua

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).