mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
Introduce MSIMessage structure
Will be used for generating and distributing MSI messages, both in emulation mode and under KVM. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
4e2e4e6355
commit
14de9bab9e
5
hw/msi.h
5
hw/msi.h
@ -24,6 +24,11 @@
|
||||
#include "qemu-common.h"
|
||||
#include "pci.h"
|
||||
|
||||
struct MSIMessage {
|
||||
uint64_t address;
|
||||
uint32_t data;
|
||||
};
|
||||
|
||||
extern bool msi_supported;
|
||||
|
||||
bool msi_enabled(const PCIDevice *dev);
|
||||
|
@ -248,6 +248,7 @@ typedef struct PCIEAERLog PCIEAERLog;
|
||||
typedef struct PCIEAERErr PCIEAERErr;
|
||||
typedef struct PCIEPort PCIEPort;
|
||||
typedef struct PCIESlot PCIESlot;
|
||||
typedef struct MSIMessage MSIMessage;
|
||||
typedef struct SerialState SerialState;
|
||||
typedef struct IRQState *qemu_irq;
|
||||
typedef struct PCMCIACardState PCMCIACardState;
|
||||
|
Loading…
Reference in New Issue
Block a user