xref: /qemu/include/hw/acpi/cpu_hotplug.h (revision 1be6b511a6a6f0d87b57725cf8d5caefcff3cc9a)
1 /*
2  * QEMU ACPI hotplug utilities
3  *
4  * Copyright (C) 2013 Red Hat Inc
5  *
6  * Authors:
7  *   Igor Mammedov <imammedo@redhat.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or later.
10  * See the COPYING file in the top-level directory.
11  */
12 #ifndef ACPI_HOTPLUG_H
13 #define ACPI_HOTPLUG_H
14 
15 #include "hw/acpi/acpi.h"
16 #include "hw/acpi/pc-hotplug.h"
17 
18 typedef struct AcpiCpuHotplug {
19     MemoryRegion io;
20     uint8_t sts[ACPI_GPE_PROC_LEN];
21 } AcpiCpuHotplug;
22 
23 void acpi_cpu_plug_cb(ACPIREGS *ar, qemu_irq irq,
24                       AcpiCpuHotplug *g, DeviceState *dev, Error **errp);
25 
26 void AcpiCpuHotplug_add(ACPIGPE *gpe, AcpiCpuHotplug *g, CPUState *cpu);
27 
28 void AcpiCpuHotplug_init(MemoryRegion *parent, Object *owner,
29                          AcpiCpuHotplug *gpe_cpu, uint16_t base);
30 #endif
31