mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00

In addition to the ISA and PCI variants of pvpanic, let's add an MMIO platform device that we can use in embedded arm environments. Signed-off-by: Alexander Graf <graf@amazon.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Phil Dennis-Jordan <phil@philjordan.eu> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Tested-by: Akihiko Odaki <akihiko.odaki@daynix.com> Message-ID: <20241223221645.29911-8-phil@philjordan.eu> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
44 lines
1,000 B
C
44 lines
1,000 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 | \
|
|
PVPANIC_SHUTDOWN)
|
|
|
|
#define TYPE_PVPANIC_ISA_DEVICE "pvpanic"
|
|
#define TYPE_PVPANIC_PCI_DEVICE "pvpanic-pci"
|
|
#define TYPE_PVPANIC_MMIO_DEVICE "pvpanic-mmio"
|
|
|
|
#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
|