xref: /qemu/include/hw/acpi/pc-hotplug.h (revision 81cea5e7f2aa61c6c5d33d28bceb81276603d3c9)
1*81cea5e7SIgor Mammedov /*
2*81cea5e7SIgor Mammedov  * QEMU ACPI hotplug utilities shared defines
3*81cea5e7SIgor Mammedov  *
4*81cea5e7SIgor Mammedov  * Copyright (C) 2013 Red Hat Inc
5*81cea5e7SIgor Mammedov  *
6*81cea5e7SIgor Mammedov  * Authors:
7*81cea5e7SIgor Mammedov  *   Igor Mammedov <imammedo@redhat.com>
8*81cea5e7SIgor Mammedov  *
9*81cea5e7SIgor Mammedov  * This work is licensed under the terms of the GNU GPL, version 2 or later.
10*81cea5e7SIgor Mammedov  * See the COPYING file in the top-level directory.
11*81cea5e7SIgor Mammedov  */
12*81cea5e7SIgor Mammedov #ifndef ACPI_HOTPLUG_DEFS_H
13*81cea5e7SIgor Mammedov #define ACPI_HOTPLUG_DEFS_H
14*81cea5e7SIgor Mammedov 
15*81cea5e7SIgor Mammedov /*
16*81cea5e7SIgor Mammedov  * ONLY DEFINEs are permited in this file since it's shared
17*81cea5e7SIgor Mammedov  * between C and ASL code.
18*81cea5e7SIgor Mammedov  */
19*81cea5e7SIgor Mammedov #define ACPI_CPU_HOTPLUG_STATUS 4
20*81cea5e7SIgor Mammedov #define ACPI_GPE_PROC_LEN 32
21*81cea5e7SIgor Mammedov 
22*81cea5e7SIgor Mammedov #endif
23