From patchwork Fri Feb 19 03:30:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Xu X-Patchwork-Id: 8355991 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A2B1F9F314 for ; Fri, 19 Feb 2016 03:36:47 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id ABF632028D for ; Fri, 19 Feb 2016 03:36:46 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 135AB2022D for ; Fri, 19 Feb 2016 03:36:41 +0000 (UTC) Received: from localhost ([::1]:48001 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWbs0-0003Xu-HP for patchwork-qemu-devel@patchwork.kernel.org; Thu, 18 Feb 2016 22:36:40 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51883) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWbnF-0003gc-RI for qemu-devel@nongnu.org; Thu, 18 Feb 2016 22:31:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWbnB-0000YP-Qd for qemu-devel@nongnu.org; Thu, 18 Feb 2016 22:31:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48387) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWbnB-0000YK-Ib for qemu-devel@nongnu.org; Thu, 18 Feb 2016 22:31:41 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 408A3C049D4F; Fri, 19 Feb 2016 03:31:41 +0000 (UTC) Received: from pxdev.xzpeter.org.com (vpn1-7-234.pek2.redhat.com [10.72.7.234]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u1J3UOjj028429; Thu, 18 Feb 2016 22:31:33 -0500 From: Peter Xu To: qemu-devel@nongnu.org Date: Fri, 19 Feb 2016 11:30:13 +0800 Message-Id: <1455852618-5224-9-git-send-email-peterx@redhat.com> In-Reply-To: <1455852618-5224-1-git-send-email-peterx@redhat.com> References: <1455852618-5224-1-git-send-email-peterx@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: ehabkost@redhat.com, mst@redhat.com, jasowang@redhat.com, peterx@redhat.com, pbonzini@redhat.com, imammedo@redhat.com, rth@twiddle.net Subject: [Qemu-devel] [PATCH 08/13] intel_iommu: define several structs for IOMMU IR X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Several data structs are defined to better support the rest of the patches: IRTE to parse remapping table entries, and IOAPIC/MSI related structure bits to parse interrupt entries to be filled in by guest kernel. Signed-off-by: Peter Xu --- include/hw/i386/intel_iommu.h | 60 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/include/hw/i386/intel_iommu.h b/include/hw/i386/intel_iommu.h index 0107488..89781b4 100644 --- a/include/hw/i386/intel_iommu.h +++ b/include/hw/i386/intel_iommu.h @@ -52,6 +52,9 @@ typedef struct IntelIOMMUState IntelIOMMUState; typedef struct VTDAddressSpace VTDAddressSpace; typedef struct VTDIOTLBEntry VTDIOTLBEntry; typedef struct VTDBus VTDBus; +typedef union VTD_IRTE VTD_IRTE; +typedef union VTD_IR_IOAPICEntry VTD_IR_IOAPICEntry; +typedef union VTD_IR_MSIAddress VTD_IR_MSIAddress; /* Context-Entry */ struct VTDContextEntry { @@ -90,6 +93,63 @@ struct VTDIOTLBEntry { bool write_flags; }; +/* Interrupt Remapping Table Entry Definition */ +union VTD_IRTE { + struct { + uint8_t present:1; /* Whether entry present/available */ + uint8_t fault_disable:1; /* Fault Processing Disable */ + uint8_t dest_mode:1; /* Destination Mode */ + uint8_t redir_hint:1; /* Redirection Hint */ + uint8_t trigger_mode:1; /* Trigger Mode */ + uint8_t delivery_mode:3; /* Delivery Mode */ + uint8_t __avail:4; /* Available spaces for software */ + uint8_t __reserved_0:3; /* Reserved 0 */ + uint8_t irte_mode:1; /* IRTE Mode */ + uint8_t vector:8; /* Interrupt Vector */ + uint8_t __reserved_1:8; /* Reserved 1 */ + uint32_t dest_id:32; /* Destination ID */ + uint16_t source_id:16; /* Source-ID */ + uint8_t sid_q:2; /* Source-ID Qualifier */ + uint8_t sid_vtype:2; /* Source-ID Validation Type */ + uint64_t __reserved_2:44; /* Reserved 2 */ + } QEMU_PACKED; + uint64_t data[2]; +}; + +/* Programming format for IOAPIC table entries */ +union VTD_IR_IOAPICEntry { + struct { + uint8_t vector:8; /* Vector */ + uint8_t __zeros:3; /* Reserved (all zero) */ + uint8_t index_h:1; /* Interrupt Index bit 15 */ + uint8_t status:1; /* Deliver Status */ + uint8_t polarity:1; /* Interrupt Polarity */ + uint8_t remote_irr:1; /* Remote IRR */ + uint8_t trigger_mode:1; /* Trigger Mode */ + uint8_t mask:1; /* Mask */ + uint32_t __reserved:31; /* Reserved (should all zero) */ + uint8_t int_mode:1; /* Interrupt Format */ + uint16_t index_l:15; /* Interrupt Index bits 14-0 */ + } QEMU_PACKED; + uint64_t data; +}; + +/* Programming format for MSI/MSI-X addresses */ +union VTD_IR_MSIAddress { + struct { + uint8_t __not_care:2; + uint8_t index_h:1; /* Interrupt index bit 15 */ + uint8_t sub_valid:1; /* SHV: Sub-Handle Valid bit */ + uint8_t int_mode:1; /* Interrupt format */ + uint16_t index_l:15; /* Interrupt index bit 14-0 */ + uint16_t __head:12; /* Should always be: 0x0fee */ + } QEMU_PACKED; + uint32_t data; +}; + +/* When IR is enabled, all MSI/MSI-X data bits should be zero */ +#define VTD_IR_MSI_DATA (0) + /* The iommu (DMAR) device state struct */ struct IntelIOMMUState { SysBusDevice busdev;