mirror of https://github.com/xqemu/xqemu.git
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 "qemu-common.h"
|
||||||
#include "pci.h"
|
#include "pci.h"
|
||||||
|
|
||||||
|
struct MSIMessage {
|
||||||
|
uint64_t address;
|
||||||
|
uint32_t data;
|
||||||
|
};
|
||||||
|
|
||||||
extern bool msi_supported;
|
extern bool msi_supported;
|
||||||
|
|
||||||
bool msi_enabled(const PCIDevice *dev);
|
bool msi_enabled(const PCIDevice *dev);
|
||||||
|
|
|
@ -248,6 +248,7 @@ typedef struct PCIEAERLog PCIEAERLog;
|
||||||
typedef struct PCIEAERErr PCIEAERErr;
|
typedef struct PCIEAERErr PCIEAERErr;
|
||||||
typedef struct PCIEPort PCIEPort;
|
typedef struct PCIEPort PCIEPort;
|
||||||
typedef struct PCIESlot PCIESlot;
|
typedef struct PCIESlot PCIESlot;
|
||||||
|
typedef struct MSIMessage MSIMessage;
|
||||||
typedef struct SerialState SerialState;
|
typedef struct SerialState SerialState;
|
||||||
typedef struct IRQState *qemu_irq;
|
typedef struct IRQState *qemu_irq;
|
||||||
typedef struct PCMCIACardState PCMCIACardState;
|
typedef struct PCMCIACardState PCMCIACardState;
|
||||||
|
|
Loading…
Reference in New Issue