[PATCH v3 35/55] KVM: arm/arm64: vgic-new: Add GICv3 IDREGS register handler
From: andre.przywara@arm.com (Andre Przywara)
Date: 2016-05-12 12:37:10
Also in:
kvm, kvmarm
From: andre.przywara@arm.com (Andre Przywara)
Date: 2016-05-12 12:37:10
Also in:
kvm, kvmarm
Hi, On 12/05/16 13:12, Christoffer Dall wrote:
On Fri, May 06, 2016 at 11:45:48AM +0100, Andre Przywara wrote:quoted
We implement the only one ID register that is required by the architecture, also this is the one that Linux actually checks. Signed-off-by: Andre Przywara <andre.przywara@arm.com> --- Changelog v1 .. v2: - adapt to new MMIO framework virt/kvm/arm/vgic/vgic-mmio-v3.c | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-)diff --git a/virt/kvm/arm/vgic/vgic-mmio-v3.c b/virt/kvm/arm/vgic/vgic-mmio-v3.c index d137242..48fba9c 100644 --- a/virt/kvm/arm/vgic/vgic-mmio-v3.c +++ b/virt/kvm/arm/vgic/vgic-mmio-v3.c@@ -110,6 +110,22 @@ static unsigned long vgic_mmio_read_v3r_iidr(struct kvm_vcpu *vcpu, return extract_bytes(value, addr & 3, len); } +static unsigned long vgic_mmio_read_v3_idregs(struct kvm_vcpu *vcpu, + gpa_t addr, unsigned int len) +{ + u32 regnr = (addr & 0x3f) - (GICD_IDREGS & 0x3f);this regnr thing is confusing, because it's not an index, it's an address offset. why can't you do: switch (addr & 0xffff) { case GICD_PIDR2: }
Makes sense. This was a leftover from the time I had subtraction instead of masking for the IRQ number determination. Will fix it. Thanks, Andre.