diff options
author | Liu Jinsong <jinsong.liu@intel.com> | 2013-01-25 15:43:34 +0800 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-02-19 22:02:29 -0500 |
commit | 39adc483d378f79711f291539f20e3797337892d (patch) | |
tree | 7f045e2f284864f5f16cb3b072d2cb25e6e16801 /include/xen/acpi.h | |
parent | 40a58637a4fa10a2faea71f0f30ff0b3d74c6e00 (diff) | |
download | op-kernel-dev-39adc483d378f79711f291539f20e3797337892d.zip op-kernel-dev-39adc483d378f79711f291539f20e3797337892d.tar.gz |
xen/acpi: ACPI cpu hotplug
This patch implement real Xen ACPI cpu hotplug driver as module.
When loaded, it replaces Xen stub driver.
For booting existed cpus, the driver enumerates them.
For hotadded cpus, which added at runtime and notify OS via
device or container event, the driver is invoked to add them,
parsing cpu information, hypercalling to Xen hypervisor to add
them, and finally setting up new /sys interface for them.
Signed-off-by: Liu Jinsong <jinsong.liu@intel.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'include/xen/acpi.h')
-rw-r--r-- | include/xen/acpi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/xen/acpi.h b/include/xen/acpi.h index dc69c91..c962d5f 100644 --- a/include/xen/acpi.h +++ b/include/xen/acpi.h @@ -54,6 +54,9 @@ void xen_stub_memory_device_exit(void); int xen_stub_processor_init(void); void xen_stub_processor_exit(void); +void xen_pcpu_hotplug_sync(void); +int xen_pcpu_id(uint32_t acpi_id); + int xen_acpi_notify_hypervisor_state(u8 sleep_state, u32 pm1a_cnt, u32 pm1b_cnd); |