mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 12:23:53 -06:00

The different components of pvpanic duplicate the list of supported events. Move it to the shared header file to minimize changes when new events are added. MST: tweak: keep header included in pvpanic.c to avoid header dependency, rebase. Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de> Message-Id: <20240527-pvpanic-shutdown-v8-3-5a28ec02558b@t-8ch.de> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
41 lines
881 B
C
41 lines
881 B
C
/*
|
|
* QEMU simulated pvpanic device.
|
|
*
|
|
* Copyright Fujitsu, Corp. 2013
|
|
*
|
|
* Authors:
|
|
* Wen Congyang <wency@cn.fujitsu.com>
|
|
* Hu Tao <hutao@cn.fujitsu.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef HW_MISC_PVPANIC_H
|
|
#define HW_MISC_PVPANIC_H
|
|
|
|
#include "exec/memory.h"
|
|
#include "qom/object.h"
|
|
|
|
#include "standard-headers/misc/pvpanic.h"
|
|
|
|
#define PVPANIC_EVENTS (PVPANIC_PANICKED | PVPANIC_CRASH_LOADED)
|
|
|
|
#define TYPE_PVPANIC_ISA_DEVICE "pvpanic"
|
|
#define TYPE_PVPANIC_PCI_DEVICE "pvpanic-pci"
|
|
|
|
#define PVPANIC_IOPORT_PROP "ioport"
|
|
|
|
/*
|
|
* PVPanicState for any device type
|
|
*/
|
|
typedef struct PVPanicState PVPanicState;
|
|
struct PVPanicState {
|
|
MemoryRegion mr;
|
|
uint8_t events;
|
|
};
|
|
|
|
void pvpanic_setup_io(PVPanicState *s, DeviceState *dev, unsigned size);
|
|
|
|
#endif
|