[PATCH 0/4] GICv3: add 32bit compatibility
Andre Przywara
andre.przywara at arm.com
Fri Dec 12 08:39:35 PST 2014
Hi Jean-Philippe,
On 11/12/14 14:23, Jean-Philippe Brucker wrote:
> This series adds 32bit compatibility to Marc's GICv3 driver. Only SGIs,
> PPIs and SPIs support is present. No ITS nor virtualisation.
>
> It is based on 3.18.
>
> Jean-Philippe Brucker (4):
> arm64: GICv3: refactor the AArch64 specific parts
> arm64: GICv3: change unsigned types for AArch32 compatibility
> arm64: GICv3: Specialize readq and writeq accesses
> ARM: add 32bit support to GICv3
>
> arch/arm/include/asm/arch_gicv3.h | 182 ++++++++++++++++++++++++++++++++++++
> arch/arm64/include/asm/arch_gicv3.h | 141 ++++++++++++++++++++++++++++
> drivers/irqchip/irq-gic-v3.c | 69 ++++----------
> include/linux/irqchip/arm-gic-v3.h | 95 +++----------------
> 4 files changed, 356 insertions(+), 131 deletions(-)
> create mode 100644 arch/arm/include/asm/arch_gicv3.h
> create mode 100644 arch/arm64/include/asm/arch_gicv3.h
so if I compile this with CONFIG_KVM_ARM_VGIC on, I get a compilation error:
LD init/built-in.o
arch/arm/kvm/built-in.o: In function `svc_die_str':
arch_timer.c:(.rodata+0xf7c): undefined reference to `vgic_v3_probe'
make[2]: *** [vmlinux] Error 1
The svc_die_str reference is probably bogus, but if I protect the
vgic_v3_probe reference in virt/kvm/arm/vgic.c with "#ifdef ARM64" it
compiles fine. Disabling CONFIG_KVM_ARM_VGIC in the .config also fixes
this also.
I leave it up to you whether you want to take your "no virtualisation"
statement above serious and fix Kconfig accordingly or use the ifdef
solution.
After fixing that, adding CONFIG_ARM_GIC_V3 as Marc suggested (and
adding AArch32 support for the ICC_SGI1R trap in my patches ;-) I could
run a 32-bit GICv3 guest with your patches on a GICv3 64-bit host.
Cheers,
Andre.
More information about the linux-arm-kernel
mailing list