From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NInVZ-0003nz-Eu for qemu-devel@nongnu.org; Thu, 10 Dec 2009 13:12:57 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NInVX-0003lw-IY for qemu-devel@nongnu.org; Thu, 10 Dec 2009 13:12:56 -0500 Received: from [199.232.76.173] (port=58668 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NInVX-0003ld-CP for qemu-devel@nongnu.org; Thu, 10 Dec 2009 13:12:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:12952) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NInVX-0003bF-Tq for qemu-devel@nongnu.org; Thu, 10 Dec 2009 13:12:56 -0500 Date: Thu, 10 Dec 2009 20:10:09 +0200 From: "Michael S. Tsirkin" Message-ID: <20091210181009.GF25707@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 05/17] pci: add more status bits List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori , qemu-devel@nongnu.org will be used by eepro100. Signed-off-by: Michael S. Tsirkin --- hw/pci.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/pci.h b/hw/pci.h index dd61fa1..738506c 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -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 | \ -- 1.6.6.rc1.43.gf55cc