net: cadence_gem: Make phy respond to broadcast
[qemu.git] / include / hw / acpi / cpu_hotplug.h
blob4576400fd7da72563e05799a0d23a75e7eb84252
1 /*
2 * QEMU ACPI hotplug utilities
4 * Copyright (C) 2013 Red Hat Inc
6 * Authors:
7 * Igor Mammedov <imammedo@redhat.com>
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.
12 #ifndef ACPI_HOTPLUG_H
13 #define ACPI_HOTPLUG_H
15 #include "hw/acpi/acpi.h"
16 #include "hw/acpi/cpu_hotplug_defs.h"
18 typedef struct AcpiCpuHotplug {
19 MemoryRegion io;
20 uint8_t sts[ACPI_GPE_PROC_LEN];
21 } AcpiCpuHotplug;
23 void AcpiCpuHotplug_add(ACPIGPE *gpe, AcpiCpuHotplug *g, CPUState *cpu);
25 void AcpiCpuHotplug_init(MemoryRegion *parent, Object *owner,
26 AcpiCpuHotplug *gpe_cpu, uint16_t base);
27 #endif