From mboxrd@z Thu Jan 1 00:00:00 1970 From: will.deacon@arm.com (Will Deacon) Date: Tue, 2 Oct 2012 10:24:13 +0100 Subject: [PATCH v2 08/10] ARM: KVM: VGIC initialisation code In-Reply-To: <20121001091426.49503.94722.stgit@ubuntu> References: <20121001091244.49503.96318.stgit@ubuntu> <20121001091426.49503.94722.stgit@ubuntu> Message-ID: <20121002092412.GB8847@mudshark.cambridge.arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Oct 01, 2012 at 10:14:26AM +0100, Christoffer Dall wrote: > From: Marc Zyngier > > Add the init code for the hypervisor, the virtual machine, and > the virtual CPUs. > > An interrupt handler is also wired to allow the VGIC maintenance > interrupts, used to deal with level triggered interrupts and LR > underflows. > > Signed-off-by: Marc Zyngier > Signed-off-by: Christoffer Dall > --- [...] > diff --git a/arch/arm/kvm/vgic.c b/arch/arm/kvm/vgic.c > index b52d4c2..fc2a138 100644 > --- a/arch/arm/kvm/vgic.c > +++ b/arch/arm/kvm/vgic.c > @@ -20,7 +20,14 @@ > #include > #include > #include > +#include > +#include > +#include > + > #include > +#include > +#include > +#include > > /* > * How the whole thing works (courtesy of Christoffer Dall): > @@ -61,6 +68,13 @@ > /* Temporary hacks, need to be provided by userspace emulation */ > #define VGIC_DIST_BASE 0x2c001000 > #define VGIC_DIST_SIZE 0x1000 > +#define VGIC_CPU_BASE 0x2c002000 > +#define VGIC_CPU_SIZE 0x2000 We really don't want the physical memory map for the guest hardwired in the kernel. Please find a way to parameterise this from userspace. Will