From patchwork Mon Nov 10 06:26:41 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wu, Feng" X-Patchwork-Id: 5264241 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 48D519F3ED for ; Mon, 10 Nov 2014 06:40:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 61CD120166 for ; Mon, 10 Nov 2014 06:40:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 70F202015D for ; Mon, 10 Nov 2014 06:40:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752288AbaKJGk3 (ORCPT ); Mon, 10 Nov 2014 01:40:29 -0500 Received: from mga11.intel.com ([192.55.52.93]:54491 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750799AbaKJGgc (ORCPT ); Mon, 10 Nov 2014 01:36:32 -0500 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 09 Nov 2014 22:36:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,351,1413270000"; d="scan'208";a="629364115" Received: from unknown (HELO wf-hsw-desktop.bj.intel.com) ([10.238.154.53]) by fmsmga002.fm.intel.com with ESMTP; 09 Nov 2014 22:35:50 -0800 From: Feng Wu To: gleb@kernel.org, pbonzini@redhat.com, dwmw2@infradead.org, joro@8bytes.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, x86@kernel.org Cc: kvm@vger.kernel.org, iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org, Feng Wu Subject: [PATCH 02/13] KVM: Initialize VT-d Posted-Interrtups Descriptor Date: Mon, 10 Nov 2014 14:26:41 +0800 Message-Id: <1415600812-27773-3-git-send-email-feng.wu@intel.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1415600812-27773-1-git-send-email-feng.wu@intel.com> References: <1415600812-27773-1-git-send-email-feng.wu@intel.com> Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, 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 This patch initialize the VT-d Posted-interrupt Descritpor. Signed-off-by: Feng Wu --- arch/x86/include/asm/irq_remapping.h | 1 + arch/x86/kernel/apic/apic.c | 1 + arch/x86/kvm/vmx.c | 56 ++++++++++++++++++++++++++++++++- 3 files changed, 56 insertions(+), 2 deletions(-) diff --git a/arch/x86/include/asm/irq_remapping.h b/arch/x86/include/asm/irq_remapping.h index b7747c4..a3cc437 100644 --- a/arch/x86/include/asm/irq_remapping.h +++ b/arch/x86/include/asm/irq_remapping.h @@ -57,6 +57,7 @@ extern bool setup_remapped_irq(int irq, struct irq_chip *chip); void irq_remap_modify_chip_defaults(struct irq_chip *chip); +extern int irq_post_enabled; #else /* CONFIG_IRQ_REMAP */ diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index ba6cc04..987408d 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -162,6 +162,7 @@ __setup("apicpmtimer", setup_apicpmtimer); #endif int x2apic_mode; +EXPORT_SYMBOL_GPL(x2apic_mode); #ifdef CONFIG_X86_X2APIC /* x2apic enabled before OS handover */ int x2apic_preenabled; diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 3e556c6..a4670d3 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -45,6 +45,7 @@ #include #include #include +#include #include "trace.h" @@ -408,13 +409,32 @@ struct nested_vmx { }; #define POSTED_INTR_ON 0 +#define POSTED_INTR_SN 1 + /* Posted-Interrupt Descriptor */ struct pi_desc { u32 pir[8]; /* Posted interrupt requested */ - u32 control; /* bit 0 of control is outstanding notification bit */ - u32 rsvd[7]; + union { + struct { + u64 on : 1, + sn : 1, + rsvd_1 : 13, + ndm : 1, + nv : 8, + rsvd_2 : 8, + ndst : 32; + }; + u64 control; + }; + u32 rsvd[6]; } __aligned(64); +static void pi_clear_sn(struct pi_desc *pi_desc) +{ + return clear_bit(POSTED_INTR_SN, + (unsigned long *)&pi_desc->control); +} + static bool pi_test_and_set_on(struct pi_desc *pi_desc) { return test_and_set_bit(POSTED_INTR_ON, @@ -4396,6 +4416,33 @@ static void ept_set_mmio_spte_mask(void) kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull); } +static bool pi_desc_init(struct vcpu_vmx *vmx) +{ + unsigned int dest; + + if (irq_post_enabled == 0) + return true; + + /* + * Initialize Posted-Interrupt Descriptor + */ + + pi_clear_sn(&vmx->pi_desc); + vmx->pi_desc.nv = POSTED_INTR_VECTOR; + + /* Physical mode for Notificaiton Event */ + vmx->pi_desc.ndm = 0; + dest = cpu_physical_id(vmx->vcpu.cpu); + + if (x2apic_mode) + vmx->pi_desc.ndst = dest; + else + vmx->pi_desc.ndst = (dest << 8) & 0xFF00; + + return true; +} + + /* * Sets up the vmcs for emulated real mode. */ @@ -4439,6 +4486,11 @@ static int vmx_vcpu_setup(struct vcpu_vmx *vmx) vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); + + if (!pi_desc_init(vmx)) { + printk(KERN_ERR "Initialize PI descriptor error!\n"); + return 1; + } } if (ple_gap) {