Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / include / hw / misc / pvpanic.h
blobfab94165d03d2f85bf80d0334a5c6baa61efd244
1 /*
2 * QEMU simulated pvpanic device.
4 * Copyright Fujitsu, Corp. 2013
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 * Hu Tao <hutao@cn.fujitsu.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #ifndef HW_MISC_PVPANIC_H
16 #define HW_MISC_PVPANIC_H
18 #include "exec/memory.h"
19 #include "qom/object.h"
21 #define TYPE_PVPANIC_ISA_DEVICE "pvpanic"
22 #define TYPE_PVPANIC_PCI_DEVICE "pvpanic-pci"
24 #define PVPANIC_IOPORT_PROP "ioport"
27 * PVPanicState for any device type
29 typedef struct PVPanicState PVPanicState;
30 struct PVPanicState {
31 MemoryRegion mr;
32 uint8_t events;
35 void pvpanic_setup_io(PVPanicState *s, DeviceState *dev, unsigned size);
37 #endif