From patchwork Fri Oct 31 17:26:53 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Przywara X-Patchwork-Id: 5206061 Return-Path: X-Original-To: patchwork-linux-arm@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 3C4AC9F30B for ; Fri, 31 Oct 2014 17:40:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 211EB20219 for ; Fri, 31 Oct 2014 17:40:53 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6DF75201DD for ; Fri, 31 Oct 2014 17:40:51 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XkG9J-0006T1-B4; Fri, 31 Oct 2014 17:38:09 +0000 Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XkG7g-0005WE-3H for linux-arm-kernel@lists.infradead.org; Fri, 31 Oct 2014 17:36:29 +0000 Received: from e106785-lin.cambridge.arm.com ([10.1.203.149]) by cam-admin0.cambridge.arm.com (8.12.6/8.12.6) with ESMTP id s9VHQsx8025574; Fri, 31 Oct 2014 17:26:57 GMT From: Andre Przywara To: christoffer.dall@linaro.org, marc.zyngier@arm.com Subject: [PATCH v3 18/19] arm/arm64: KVM: enable kernel side of GICv3 emulation Date: Fri, 31 Oct 2014 17:26:53 +0000 Message-Id: <1414776414-13426-19-git-send-email-andre.przywara@arm.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1414776414-13426-1-git-send-email-andre.przywara@arm.com> References: <1414776414-13426-1-git-send-email-andre.przywara@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20141031_103628_570322_657E251C X-CRM114-Status: GOOD ( 18.77 ) X-Spam-Score: -5.6 (-----) Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, 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 With all the necessary GICv3 emulation code in place, we can now connect the code to the GICv3 backend in the kernel. The LR register handling is different depending on the emulated GIC model, so provide different implementations for each. Also allow non-v2-compatible GICv3 implementations (which don't provide MMIO regions for the virtual CPU interface in the DT), but restrict those hosts to use GICv3 guests only. Signed-off-by: Andre Przywara --- virt/kvm/arm/vgic-v3.c | 168 ++++++++++++++++++++++++++++++++++++------------ virt/kvm/arm/vgic.c | 4 ++ 2 files changed, 130 insertions(+), 42 deletions(-) diff --git a/virt/kvm/arm/vgic-v3.c b/virt/kvm/arm/vgic-v3.c index ce50918..c0e901c 100644 --- a/virt/kvm/arm/vgic-v3.c +++ b/virt/kvm/arm/vgic-v3.c @@ -34,6 +34,7 @@ #define GICH_LR_VIRTUALID (0x3ffUL << 0) #define GICH_LR_PHYSID_CPUID_SHIFT (10) #define GICH_LR_PHYSID_CPUID (7UL << GICH_LR_PHYSID_CPUID_SHIFT) +#define ICH_LR_VIRTUALID_MASK (BIT_ULL(32) - 1) /* * LRs are stored in reverse order in memory. make sure we index them @@ -43,7 +44,35 @@ static u32 ich_vtr_el2; -static struct vgic_lr vgic_v3_get_lr(const struct kvm_vcpu *vcpu, int lr) +static u64 sync_lr_val(u8 state) +{ + u64 lr_val = 0; + + if (state & LR_STATE_PENDING) + lr_val |= ICH_LR_PENDING_BIT; + if (state & LR_STATE_ACTIVE) + lr_val |= ICH_LR_ACTIVE_BIT; + if (state & LR_EOI_INT) + lr_val |= ICH_LR_EOI; + + return lr_val; +} + +static u8 sync_lr_state(u64 lr_val) +{ + u8 state = 0; + + if (lr_val & ICH_LR_PENDING_BIT) + state |= LR_STATE_PENDING; + if (lr_val & ICH_LR_ACTIVE_BIT) + state |= LR_STATE_ACTIVE; + if (lr_val & ICH_LR_EOI) + state |= LR_EOI_INT; + + return state; +} + +static struct vgic_lr vgic_v2_on_v3_get_lr(const struct kvm_vcpu *vcpu, int lr) { struct vgic_lr lr_desc; u64 val = vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[LR_INDEX(lr)]; @@ -53,30 +82,53 @@ static struct vgic_lr vgic_v3_get_lr(const struct kvm_vcpu *vcpu, int lr) lr_desc.source = (val >> GICH_LR_PHYSID_CPUID_SHIFT) & 0x7; else lr_desc.source = 0; - lr_desc.state = 0; + lr_desc.state = sync_lr_state(val); - if (val & ICH_LR_PENDING_BIT) - lr_desc.state |= LR_STATE_PENDING; - if (val & ICH_LR_ACTIVE_BIT) - lr_desc.state |= LR_STATE_ACTIVE; - if (val & ICH_LR_EOI) - lr_desc.state |= LR_EOI_INT; + return lr_desc; +} + +static struct vgic_lr vgic_v3_on_v3_get_lr(const struct kvm_vcpu *vcpu, int lr) +{ + struct vgic_lr lr_desc; + u64 val = vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[LR_INDEX(lr)]; + + lr_desc.irq = val & ICH_LR_VIRTUALID_MASK; + lr_desc.source = 0; + lr_desc.state = sync_lr_state(val); return lr_desc; } -static void vgic_v3_set_lr(struct kvm_vcpu *vcpu, int lr, - struct vgic_lr lr_desc) +static void vgic_v3_on_v3_set_lr(struct kvm_vcpu *vcpu, int lr, + struct vgic_lr lr_desc) { - u64 lr_val = (((u32)lr_desc.source << GICH_LR_PHYSID_CPUID_SHIFT) | - lr_desc.irq); + u64 lr_val; - if (lr_desc.state & LR_STATE_PENDING) - lr_val |= ICH_LR_PENDING_BIT; - if (lr_desc.state & LR_STATE_ACTIVE) - lr_val |= ICH_LR_ACTIVE_BIT; - if (lr_desc.state & LR_EOI_INT) - lr_val |= ICH_LR_EOI; + lr_val = lr_desc.irq; + + /* + * currently all guest IRQs are Group1, as Group0 would result + * in a FIQ in the guest, which it wouldn't expect. + * Eventually we want to make this configurable, so we may revisit + * this in the future. + */ + lr_val |= ICH_LR_GROUP; + + lr_val |= sync_lr_val(lr_desc.state); + + vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[LR_INDEX(lr)] = lr_val; +} + +static void vgic_v2_on_v3_set_lr(struct kvm_vcpu *vcpu, int lr, + struct vgic_lr lr_desc) +{ + u64 lr_val; + + lr_val = lr_desc.irq; + + lr_val |= (u32)lr_desc.source << GICH_LR_PHYSID_CPUID_SHIFT; + + lr_val |= sync_lr_val(lr_desc.state); vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[LR_INDEX(lr)] = lr_val; } @@ -145,9 +197,8 @@ static void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp) static void vgic_v3_enable(struct kvm_vcpu *vcpu) { - struct vgic_v3_cpu_if *vgic_v3; + struct vgic_v3_cpu_if *vgic_v3 = &vcpu->arch.vgic_cpu.vgic_v3; - vgic_v3 = &vcpu->arch.vgic_cpu.vgic_v3; /* * By forcing VMCR to zero, the GIC will restore the binary * points to their reset values. Anything else resets to zero @@ -155,7 +206,14 @@ static void vgic_v3_enable(struct kvm_vcpu *vcpu) */ vgic_v3->vgic_vmcr = 0; - vgic_v3->vgic_sre = 0; + /* + * Set the SRE_EL1 value depending on the configured + * emulated vGIC model. + */ + if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) + vgic_v3->vgic_sre = ICC_SRE_EL1_SRE; + else + vgic_v3->vgic_sre = 0; /* Get the show on the road... */ vgic_v3->vgic_hcr = ICH_HCR_EN; @@ -173,6 +231,15 @@ static const struct vgic_ops vgic_v3_ops = { .enable = vgic_v3_enable, }; +static void init_vgic_v3_emul(struct kvm *kvm) +{ + struct vgic_vm_ops *vm_ops = &kvm->arch.vgic.vm_ops; + + vm_ops->get_lr = vgic_v3_on_v3_get_lr; + vm_ops->set_lr = vgic_v3_on_v3_set_lr; + kvm->arch.max_vcpus = KVM_MAX_VCPUS; +} + static bool vgic_v3_init_emul_compat(struct kvm *kvm, int type) { struct vgic_vm_ops *vm_ops = &kvm->arch.vgic.vm_ops; @@ -186,14 +253,28 @@ static bool vgic_v3_init_emul_compat(struct kvm *kvm, int type) return false; } - vm_ops->get_lr = vgic_v3_get_lr; - vm_ops->set_lr = vgic_v3_set_lr; + vm_ops->get_lr = vgic_v2_on_v3_get_lr; + vm_ops->set_lr = vgic_v2_on_v3_set_lr; kvm->arch.max_vcpus = 8; return true; + case KVM_DEV_TYPE_ARM_VGIC_V3: + init_vgic_v3_emul(kvm); + return true; } return false; } +static bool vgic_v3_init_emul(struct kvm *kvm, int type) +{ + switch (type) { + case KVM_DEV_TYPE_ARM_VGIC_V3: + init_vgic_v3_emul(kvm); + return true; + } + + return false; +} + static struct vgic_params vgic_v3_params; /** @@ -235,29 +316,32 @@ int vgic_v3_probe(struct device_node *vgic_node, gicv_idx += 3; /* Also skip GICD, GICC, GICH */ if (of_address_to_resource(vgic_node, gicv_idx, &vcpu_res)) { - kvm_err("Cannot obtain GICV region\n"); - ret = -ENXIO; - goto out; - } + kvm_info("GICv3: GICv2 emulation not available\n"); + vgic->vcpu_base = 0; + vgic->init_emul = vgic_v3_init_emul; + } else { + if (!PAGE_ALIGNED(vcpu_res.start)) { + kvm_err("GICV physical address 0x%llx not page aligned\n", + (unsigned long long)vcpu_res.start); + ret = -ENXIO; + goto out; + } - if (!PAGE_ALIGNED(vcpu_res.start)) { - kvm_err("GICV physical address 0x%llx not page aligned\n", - (unsigned long long)vcpu_res.start); - ret = -ENXIO; - goto out; - } + if (!PAGE_ALIGNED(resource_size(&vcpu_res))) { + kvm_err("GICV size 0x%llx not a multiple of page size 0x%lx\n", + (unsigned long long)resource_size(&vcpu_res), + PAGE_SIZE); + ret = -ENXIO; + goto out; + } - if (!PAGE_ALIGNED(resource_size(&vcpu_res))) { - kvm_err("GICV size 0x%llx not a multiple of page size 0x%lx\n", - (unsigned long long)resource_size(&vcpu_res), - PAGE_SIZE); - ret = -ENXIO; - goto out; + vgic->vcpu_base = vcpu_res.start; + vgic->init_emul = vgic_v3_init_emul_compat; + kvm_register_device_ops(&kvm_arm_vgic_v2_ops, + KVM_DEV_TYPE_ARM_VGIC_V2); } - kvm_register_device_ops(&kvm_arm_vgic_v2_ops, KVM_DEV_TYPE_ARM_VGIC_V2); + kvm_register_device_ops(&kvm_arm_vgic_v3_ops, KVM_DEV_TYPE_ARM_VGIC_V3); - vgic->init_emul = vgic_v3_init_emul_compat; - vgic->vcpu_base = vcpu_res.start; vgic->vctrl_base = NULL; vgic->type = VGIC_V3; diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c index 2867269d..16d7c9d 100644 --- a/virt/kvm/arm/vgic.c +++ b/virt/kvm/arm/vgic.c @@ -1542,6 +1542,10 @@ static bool init_emulation_ops(struct kvm *kvm, int type) switch (type) { case KVM_DEV_TYPE_ARM_VGIC_V2: return vgic_v2_init_emulation_ops(kvm, type); +#ifdef CONFIG_ARM_GIC_V3 + case KVM_DEV_TYPE_ARM_VGIC_V3: + return vgic_v3_init_emulation_ops(kvm, type); +#endif } return false; }