Those set the affinity of a SPI interrupt. Signed-off-by: Andre Przywara <andre.przywara@xxxxxxx> Changelog RFC..v1: - fold in and simplify vgic_v3_irq_change_affinity --- virt/kvm/arm/vgic/vgic_mmio.c | 73 ++++++++++++++++++++++++++++++++----------- 1 file changed, 54 insertions(+), 19 deletions(-) diff --git a/virt/kvm/arm/vgic/vgic_mmio.c b/virt/kvm/arm/vgic/vgic_mmio.c index dafa235..3f03101 100644 --- a/virt/kvm/arm/vgic/vgic_mmio.c +++ b/virt/kvm/arm/vgic/vgic_mmio.c @@ -74,24 +74,6 @@ int vgic_mmio_write_wi(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, return 0; } -static int vgic_mmio_read_nyi(struct kvm_vcpu *vcpu, - struct kvm_io_device *dev, - gpa_t addr, int len, void *val) -{ - pr_warn("KVM: handling unimplemented VGIC MMIO read: VCPU %d, address: 0x%llx\n", - vcpu->vcpu_id, (unsigned long long)addr); - return 0; -} - -static int vgic_mmio_write_nyi(struct kvm_vcpu *vcpu, - struct kvm_io_device *dev, - gpa_t addr, int len, const void *val) -{ - pr_warn("KVM: handling unimplemented VGIC MMIO write: VCPU %d, address: 0x%llx\n", - vcpu->vcpu_id, (unsigned long long)addr); - return 0; -} - static int vgic_mmio_read_v2_misc(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, gpa_t addr, int len, void *val) @@ -755,6 +737,59 @@ static u32 compress_mpidr(unsigned long mpidr) return ret; } +static unsigned long decompress_mpidr(u32 value) +{ + unsigned long mpidr; + + mpidr = ((value >> 0) & 0xFF) << MPIDR_LEVEL_SHIFT(0); + mpidr |= ((value >> 8) & 0xFF) << MPIDR_LEVEL_SHIFT(1); + mpidr |= ((value >> 16) & 0xFF) << MPIDR_LEVEL_SHIFT(2); + mpidr |= (u64)((value >> 24) & 0xFF) << MPIDR_LEVEL_SHIFT(3); + + return mpidr; +} + +static int vgic_mmio_read_irouter(struct kvm_vcpu *vcpu, + struct kvm_io_device *dev, + gpa_t addr, int len, void *val) +{ + int intid = (addr & 0x1fff) / 8; + struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, NULL, intid); + + if (!irq) { + memset(val, 0, len); + return 0; + } + + write_mask64(decompress_mpidr(irq->mpidr), addr & 7, len, val); + + return 0; +} + +static int vgic_mmio_write_irouter(struct kvm_vcpu *vcpu, + struct kvm_io_device *dev, + gpa_t addr, int len, const void *val) +{ + int intid = (addr & 0x1fff) / 8; + struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, NULL, intid); + u64 mpidr; + + if (!irq) + return 0; + + mpidr = decompress_mpidr(irq->mpidr); + mpidr = mask64(mpidr, addr & 7, len, val); + + spin_lock(&irq->irq_lock); + + irq->mpidr = compress_mpidr(mpidr); + irq->target_vcpu = kvm_mpidr_to_vcpu(vcpu->kvm, mpidr); + + spin_unlock(&irq->irq_lock); + + return 0; +} + static int vgic_mmio_read_v3r_typer(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, gpa_t addr, int len, void *val) @@ -875,7 +910,7 @@ struct vgic_register_region vgic_v3_dist_registers[] = { REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IGRPMODR, vgic_mmio_read_raz, vgic_mmio_write_wi, 1), REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IROUTER, - vgic_mmio_read_nyi, vgic_mmio_write_nyi, 64), + vgic_mmio_read_irouter, vgic_mmio_write_irouter, 64), REGISTER_DESC_WITH_LENGTH(GICD_IDREGS, vgic_mmio_read_v3_idregs, vgic_mmio_write_wi, 48), }; -- 2.7.3 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html