From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4244FC5DF60 for ; Fri, 8 Nov 2019 17:50:05 +0000 (UTC) Received: from mm01.cs.columbia.edu (mm01.cs.columbia.edu [128.59.11.253]) by mail.kernel.org (Postfix) with ESMTP id 0723E21D82 for ; Fri, 8 Nov 2019 17:50:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0723E21D82 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvmarm-bounces@lists.cs.columbia.edu Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id A39074AECB; Fri, 8 Nov 2019 12:50:04 -0500 (EST) X-Virus-Scanned: at lists.cs.columbia.edu Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JZhT5tkoZTTP; Fri, 8 Nov 2019 12:50:03 -0500 (EST) Received: from mm01.cs.columbia.edu (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id F15884AED9; Fri, 8 Nov 2019 12:50:02 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id AD01F4AED1 for ; Fri, 8 Nov 2019 12:50:02 -0500 (EST) X-Virus-Scanned: at lists.cs.columbia.edu Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i+up3CU8gZLo for ; Fri, 8 Nov 2019 12:50:01 -0500 (EST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 158F94AEC7 for ; Fri, 8 Nov 2019 12:50:01 -0500 (EST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id A5C3B7A7; Fri, 8 Nov 2019 09:50:00 -0800 (PST) Received: from donnerap.arm.com (donnerap.cambridge.arm.com [10.1.197.44]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 55FD23F719; Fri, 8 Nov 2019 09:49:59 -0800 (PST) From: Andre Przywara To: Marc Zyngier Subject: [PATCH 1/3] kvm: arm: VGIC: Prepare for handling two interrupt groups Date: Fri, 8 Nov 2019 17:49:50 +0000 Message-Id: <20191108174952.740-2-andre.przywara@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191108174952.740-1-andre.przywara@arm.com> References: <20191108174952.740-1-andre.przywara@arm.com> Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org, kvm@vger.kernel.org X-BeenThere: kvmarm@lists.cs.columbia.edu X-Mailman-Version: 2.1.14 Precedence: list List-Id: Where KVM/ARM decisions are made List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: kvmarm-bounces@lists.cs.columbia.edu Sender: kvmarm-bounces@lists.cs.columbia.edu The GIC specification describes support for two distinct interrupt groups, which can be enabled independently from each other. At the moment our VGIC emulation does not really honour this, so using Group0 interrupts with the GICv3 emulation does not work as expected at the moment. Prepare the code for dealing with the *two* interrupt groups: Allow to handle the two enable bits in the distributor, by providing accessors. At the moment this still only honours group1, because we need more code to properly differentiate the group enables. Also provide a stub function to later implement the re-scanning of all IRQs, should the group enable bit for a group change. This patch does not change the current behaviour yet, but just provides the infrastructure bits separately, mostly for review purposes. Signed-off-by: Andre Przywara --- include/kvm/arm_vgic.h | 7 ++- virt/kvm/arm/vgic/vgic-debug.c | 2 +- virt/kvm/arm/vgic/vgic-mmio-v2.c | 23 ++++++---- virt/kvm/arm/vgic/vgic-mmio-v3.c | 22 +++++---- virt/kvm/arm/vgic/vgic.c | 76 +++++++++++++++++++++++++++++++- virt/kvm/arm/vgic/vgic.h | 3 ++ 6 files changed, 110 insertions(+), 23 deletions(-) diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h index 9d53f545a3d5..0f845430c732 100644 --- a/include/kvm/arm_vgic.h +++ b/include/kvm/arm_vgic.h @@ -29,6 +29,9 @@ #define VGIC_MIN_LPI 8192 #define KVM_IRQCHIP_NUM_PINS (1020 - 32) +#define GIC_GROUP0 0 +#define GIC_GROUP1 1 + #define irq_is_ppi(irq) ((irq) >= VGIC_NR_SGIS && (irq) < VGIC_NR_PRIVATE_IRQS) #define irq_is_spi(irq) ((irq) >= VGIC_NR_PRIVATE_IRQS && \ (irq) <= VGIC_MAX_SPI) @@ -227,8 +230,8 @@ struct vgic_dist { struct list_head rd_regions; }; - /* distributor enabled */ - bool enabled; + /* group0 and/or group1 IRQs enabled on the distributor level */ + u8 groups_enable; struct vgic_irq *spis; diff --git a/virt/kvm/arm/vgic/vgic-debug.c b/virt/kvm/arm/vgic/vgic-debug.c index cc12fe9b2df3..ab64e908024e 100644 --- a/virt/kvm/arm/vgic/vgic-debug.c +++ b/virt/kvm/arm/vgic/vgic-debug.c @@ -150,7 +150,7 @@ static void print_dist_state(struct seq_file *s, struct vgic_dist *dist) seq_printf(s, "nr_spis:\t%d\n", dist->nr_spis); if (v3) seq_printf(s, "nr_lpis:\t%d\n", dist->lpi_list_count); - seq_printf(s, "enabled:\t%d\n", dist->enabled); + seq_printf(s, "groups enabled:\t%d\n", dist->groups_enable); seq_printf(s, "\n"); seq_printf(s, "P=pending_latch, L=line_level, A=active\n"); diff --git a/virt/kvm/arm/vgic/vgic-mmio-v2.c b/virt/kvm/arm/vgic/vgic-mmio-v2.c index 5945f062d749..fe8528bd5b55 100644 --- a/virt/kvm/arm/vgic/vgic-mmio-v2.c +++ b/virt/kvm/arm/vgic/vgic-mmio-v2.c @@ -26,11 +26,14 @@ static unsigned long vgic_mmio_read_v2_misc(struct kvm_vcpu *vcpu, gpa_t addr, unsigned int len) { struct vgic_dist *vgic = &vcpu->kvm->arch.vgic; - u32 value; + u32 value = 0; switch (addr & 0x0c) { case GIC_DIST_CTRL: - value = vgic->enabled ? GICD_ENABLE : 0; + if (vgic_dist_group_enabled(vcpu->kvm, GIC_GROUP0)) + value |= GICD_ENABLE; + if (vgic_dist_group_enabled(vcpu->kvm, GIC_GROUP1)) + value |= BIT(1); break; case GIC_DIST_CTR: value = vgic->nr_spis + VGIC_NR_PRIVATE_IRQS; @@ -42,8 +45,6 @@ static unsigned long vgic_mmio_read_v2_misc(struct kvm_vcpu *vcpu, (vgic->implementation_rev << GICD_IIDR_REVISION_SHIFT) | (IMPLEMENTER_ARM << GICD_IIDR_IMPLEMENTER_SHIFT); break; - default: - return 0; } return value; @@ -53,14 +54,18 @@ static void vgic_mmio_write_v2_misc(struct kvm_vcpu *vcpu, gpa_t addr, unsigned int len, unsigned long val) { - struct vgic_dist *dist = &vcpu->kvm->arch.vgic; - bool was_enabled = dist->enabled; + struct kvm *kvm = vcpu->kvm; + int grp0_changed, grp1_changed; switch (addr & 0x0c) { case GIC_DIST_CTRL: - dist->enabled = val & GICD_ENABLE; - if (!was_enabled && dist->enabled) - vgic_kick_vcpus(vcpu->kvm); + grp0_changed = vgic_dist_enable_group(kvm, GIC_GROUP0, + val & GICD_ENABLE); + grp1_changed = vgic_dist_enable_group(kvm, GIC_GROUP1, + val & BIT(1)); + if (grp0_changed || grp1_changed) + vgic_rescan_pending_irqs(kvm, grp0_changed > 0 || + grp1_changed > 0); break; case GIC_DIST_CTR: case GIC_DIST_IIDR: diff --git a/virt/kvm/arm/vgic/vgic-mmio-v3.c b/virt/kvm/arm/vgic/vgic-mmio-v3.c index 7dfd15dbb308..73e3410af332 100644 --- a/virt/kvm/arm/vgic/vgic-mmio-v3.c +++ b/virt/kvm/arm/vgic/vgic-mmio-v3.c @@ -66,7 +66,9 @@ static unsigned long vgic_mmio_read_v3_misc(struct kvm_vcpu *vcpu, switch (addr & 0x0c) { case GICD_CTLR: - if (vgic->enabled) + if (vgic_dist_group_enabled(vcpu->kvm, GIC_GROUP0)) + value |= GICD_CTLR_ENABLE_SS_G0; + if (vgic_dist_group_enabled(vcpu->kvm, GIC_GROUP1)) value |= GICD_CTLR_ENABLE_SS_G1; value |= GICD_CTLR_ARE_NS | GICD_CTLR_DS; break; @@ -85,8 +87,6 @@ static unsigned long vgic_mmio_read_v3_misc(struct kvm_vcpu *vcpu, (vgic->implementation_rev << GICD_IIDR_REVISION_SHIFT) | (IMPLEMENTER_ARM << GICD_IIDR_IMPLEMENTER_SHIFT); break; - default: - return 0; } return value; @@ -96,15 +96,19 @@ static void vgic_mmio_write_v3_misc(struct kvm_vcpu *vcpu, gpa_t addr, unsigned int len, unsigned long val) { - struct vgic_dist *dist = &vcpu->kvm->arch.vgic; - bool was_enabled = dist->enabled; + struct kvm *kvm = vcpu->kvm; + int grp0_changed, grp1_changed; switch (addr & 0x0c) { case GICD_CTLR: - dist->enabled = val & GICD_CTLR_ENABLE_SS_G1; - - if (!was_enabled && dist->enabled) - vgic_kick_vcpus(vcpu->kvm); + grp0_changed = vgic_dist_enable_group(kvm, GIC_GROUP0, + val & GICD_CTLR_ENABLE_SS_G0); + grp1_changed = vgic_dist_enable_group(kvm, GIC_GROUP1, + val & GICD_CTLR_ENABLE_SS_G1); + + if (grp0_changed || grp1_changed) + vgic_rescan_pending_irqs(kvm, grp0_changed > 0 || + grp1_changed > 0); break; case GICD_TYPER: case GICD_IIDR: diff --git a/virt/kvm/arm/vgic/vgic.c b/virt/kvm/arm/vgic/vgic.c index 99b02ca730a8..3b88e14d239f 100644 --- a/virt/kvm/arm/vgic/vgic.c +++ b/virt/kvm/arm/vgic/vgic.c @@ -201,6 +201,12 @@ void vgic_irq_set_phys_active(struct vgic_irq *irq, bool active) active)); } +static bool vgic_irq_is_grp_enabled(struct kvm *kvm, struct vgic_irq *irq) +{ + /* Placeholder implementation until we properly support Group0. */ + return kvm->arch.vgic.groups_enable; +} + /** * kvm_vgic_target_oracle - compute the target vcpu for an irq * @@ -228,7 +234,8 @@ static struct kvm_vcpu *vgic_target_oracle(struct vgic_irq *irq) */ if (irq->enabled && irq_is_pending(irq)) { if (unlikely(irq->target_vcpu && - !irq->target_vcpu->kvm->arch.vgic.enabled)) + !vgic_irq_is_grp_enabled(irq->target_vcpu->kvm, + irq))) return NULL; return irq->target_vcpu; @@ -303,6 +310,71 @@ static void vgic_sort_ap_list(struct kvm_vcpu *vcpu) list_sort(NULL, &vgic_cpu->ap_list_head, vgic_irq_cmp); } +int vgic_dist_enable_group(struct kvm *kvm, int group, bool status) +{ + struct vgic_dist *dist = &kvm->arch.vgic; + u32 group_mask = 1U << group; + u32 new_bit = (unsigned)status << group; + u8 was_enabled = dist->groups_enable & group_mask; + + if (new_bit == was_enabled) + return 0; + + /* Group 0 on GICv3 and Group 1 on GICv2 are ignored for now. */ + if (kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) { + if (group == GIC_GROUP0) + return 0; + } else { + if (group == GIC_GROUP1) + return 0; + } + + dist->groups_enable &= ~group_mask; + dist->groups_enable |= new_bit; + if (new_bit > was_enabled) + return 1; + else + return -1; + + return 0; +} + +/* + * The group enable status of at least one of the groups has changed. + * If enabled is true, at least one of the groups got enabled. + * Adjust the forwarding state of every IRQ (on ap_list or not) accordingly. + */ +void vgic_rescan_pending_irqs(struct kvm *kvm, bool enabled) +{ + /* + * TODO: actually scan *all* IRQs of the VM for pending IRQs. + * If a pending IRQ's group is now enabled, add it to its ap_list. + * If a pending IRQ's group is now disabled, kick the VCPU to + * let it remove this IRQ from its ap_list. We have to let the + * VCPU do it itself, because we can't know the exact state of an + * IRQ pending on a running VCPU. + */ + + /* For now just kick all VCPUs, as the old code did. */ + vgic_kick_vcpus(kvm); +} + +bool vgic_dist_group_enabled(struct kvm *kvm, int group) +{ + struct vgic_dist *dist = &kvm->arch.vgic; + + /* Group 0 on GICv3 and Group 1 on GICv2 are ignored for now. */ + if (kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) { + if (group == GIC_GROUP0) + return false; + } else { + if (group == GIC_GROUP1) + return false; + } + + return dist->groups_enable & (1U << group); +} + /* * Only valid injection if changing level for level-triggered IRQs or for a * rising edge, and in-kernel connected IRQ lines can only be controlled by @@ -949,7 +1021,7 @@ int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu) unsigned long flags; struct vgic_vmcr vmcr; - if (!vcpu->kvm->arch.vgic.enabled) + if (!vcpu->kvm->arch.vgic.groups_enable) return false; if (vcpu->arch.vgic_cpu.vgic_v3.its_vpe.pending_last) diff --git a/virt/kvm/arm/vgic/vgic.h b/virt/kvm/arm/vgic/vgic.h index c7fefd6b1c80..219eb23d580d 100644 --- a/virt/kvm/arm/vgic/vgic.h +++ b/virt/kvm/arm/vgic/vgic.h @@ -168,7 +168,10 @@ void vgic_irq_set_phys_pending(struct vgic_irq *irq, bool pending); void vgic_irq_set_phys_active(struct vgic_irq *irq, bool active); bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq, unsigned long flags); +bool vgic_dist_group_enabled(struct kvm *kvm, int group); +int vgic_dist_enable_group(struct kvm *kvm, int group, bool status); void vgic_kick_vcpus(struct kvm *kvm); +void vgic_rescan_pending_irqs(struct kvm *kvm, bool enabled); int vgic_check_ioaddr(struct kvm *kvm, phys_addr_t *ioaddr, phys_addr_t addr, phys_addr_t alignment); -- 2.17.1 _______________________________________________ kvmarm mailing list kvmarm@lists.cs.columbia.edu https://lists.cs.columbia.edu/mailman/listinfo/kvmarm