diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-12-10 17:42:19 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-23 16:35:00 +0200 |
commit | d577679e5757e9ce6abc3288c3e97d691b0efe48 (patch) | |
tree | 2198c5dbc26fa7d8ae1874ea77f2ab8fcf69af9d /hw/pci.h | |
parent | 97526229dab93249a4b7308b6554247a2bf3aa5f (diff) |
pci: add more status bits
will be used by eepro100.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Juan Quintela <quintela@redhat.com>
Acked-by: Glauber Costa <glommer@gmail.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r-- | hw/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -167,6 +167,8 @@ typedef struct PCIIORegion { #define PCI_STATUS_FAST_BACK 0x080 #define PCI_STATUS_DEVSEL_MEDIUM 0x200 #define PCI_STATUS_DEVSEL 0x600 +#define PCI_STATUS_SIG_TARGET_ABORT 0x800 /* Set on target abort */ +#define PCI_STATUS_REC_MASTER_ABORT 0x2000 /* Set on master abort */ #define PCI_STATUS_RESERVED_MASK_LO (PCI_STATUS_RESERVED1 | \ PCI_STATUS_INT_STATUS | PCI_STATUS_CAPABILITIES | \ |