From patchwork Thu Dec 10 18:10:09 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 40855 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A5526B6EF5 for ; Fri, 11 Dec 2009 05:23:40 +1100 (EST) Received: from localhost ([127.0.0.1]:43503 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NInfs-0007IZ-Uq for incoming@patchwork.ozlabs.org; Thu, 10 Dec 2009 13:23:37 -0500 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 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nBAICrWi025182 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 10 Dec 2009 13:12:53 -0500 Received: from redhat.com (vpn-6-118.tlv.redhat.com [10.35.6.118]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id nBAICp3L027989; Thu, 10 Dec 2009 13:12:52 -0500 Date: Thu, 10 Dec 2009 20:10:09 +0200 From: "Michael S. Tsirkin" To: Anthony Liguori , qemu-devel@nongnu.org Message-ID: <20091210181009.GF25707@redhat.com> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 05/17] pci: add more status bits X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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 | \