summaryrefslogtreecommitdiff
path: root/hw/pci.h
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-12-14 17:06:00 +0200
committerAvi Kivity <avi@redhat.com>2009-12-14 17:06:00 +0200
commit79a56b9982b5adc6c4abf305d51109cb7ed0c789 (patch)
treed09c7dd1fa5815f530c30640178ec48ad792f639 /hw/pci.h
parentMerge commit 'eea4acfa5c1ef26439a718375475fe468b7f2fba' into stable-0.12-merge (diff)
parentpci: interrupt disable bit support (diff)
downloadqemu-kvm-79a56b9982b5adc6c4abf305d51109cb7ed0c789.tar.gz
qemu-kvm-79a56b9982b5adc6c4abf305d51109cb7ed0c789.tar.bz2
qemu-kvm-79a56b9982b5adc6c4abf305d51109cb7ed0c789.zip
Merge commit '0ea5709a32085f7d14901a09d12bd35f9b267607' into stable-0.12-merge
* commit '0ea5709a32085f7d14901a09d12bd35f9b267607': pci: interrupt disable bit support pci: interrupt status bit implementation Conflicts: hw/pci.c Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r--hw/pci.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/pci.h b/hw/pci.h
index d311d05c8..737a2e6e8 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -112,7 +112,9 @@ typedef struct PCIIORegion {
#define PCI_COMMAND_IO 0x1 /* Enable response in I/O space */
#define PCI_COMMAND_MEMORY 0x2 /* Enable response in Memory space */
#define PCI_COMMAND_MASTER 0x4 /* Enable bus master */
+#define PCI_COMMAND_INTX_DISABLE 0x400 /* INTx Emulation Disable */
#define PCI_STATUS 0x06 /* 16 bits */
+#define PCI_STATUS_INTERRUPT 0x08
#define PCI_REVISION_ID 0x08 /* 8 bits */
#define PCI_CLASS_PROG 0x09 /* Reg. Level Programming Interface */
#define PCI_CLASS_DEVICE 0x0a /* Device class */