mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
spapr: prepare for qdevification of irq
Restructure common properties for sPAPR devices so that IRQ definitions can be added in one place. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Cc: Alexander Graf <agraf@suse.de> Cc: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
277f9acf79
commit
77c7ea5ebb
4 changed files with 8 additions and 7 deletions
|
@ -60,6 +60,11 @@ typedef struct VIOsPAPRDevice {
|
|||
VIOsPAPR_CRQ crq;
|
||||
} VIOsPAPRDevice;
|
||||
|
||||
#define DEFINE_SPAPR_PROPERTIES(type, field, default_reg, default_dma_window) \
|
||||
DEFINE_PROP_UINT32("reg", type, field.reg, default_reg), \
|
||||
DEFINE_PROP_UINT32("dma-window", type, field.rtce_window_size, \
|
||||
default_dma_window)
|
||||
|
||||
typedef struct VIOsPAPRBus {
|
||||
BusState bus;
|
||||
int irq;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue