From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ceIpE-0000LF-2U for qemu-devel@nongnu.org; Thu, 16 Feb 2017 04:58:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ceIpD-0005x7-9H for qemu-devel@nongnu.org; Thu, 16 Feb 2017 04:58:08 -0500 MIME-Version: 1.0 In-Reply-To: References: <1485879782-6075-1-git-send-email-vijay.kilari@gmail.com> <1485879782-6075-5-git-send-email-vijay.kilari@gmail.com> From: Vijay Kilari Date: Thu, 16 Feb 2017 15:28:02 +0530 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH v7 RESEND 4/5] target-arm: Add GICv3CPUState in CPUARMState struct List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-arm , Christoffer Dall , Eric Auger , Pavel Fedin , Marc Zyngier , QEMU Developers , Vijaya Kumar K On Tue, Feb 7, 2017 at 8:12 PM, Peter Maydell wrote: > On 31 January 2017 at 16:23, wrote: >> From: Vijaya Kumar K >> >> Add gicv3state void pointer to CPUARMState struct >> to store GICv3CPUState. >> >> In case of usecase like CPU reset, we need to reset >> GICv3CPUState of the CPU. In such scenario, this pointer >> becomes handy. >> >> This patch take care of only GICv3. >> >> Signed-off-by: Vijaya Kumar K >> --- >> hw/intc/arm_gicv3_kvm.c | 8 ++++++++ >> target-arm/cpu.h | 2 ++ >> 2 files changed, 10 insertions(+) >> >> diff --git a/hw/intc/arm_gicv3_kvm.c b/hw/intc/arm_gicv3_kvm.c >> index 77af32d..f91e0ac 100644 >> --- a/hw/intc/arm_gicv3_kvm.c >> +++ b/hw/intc/arm_gicv3_kvm.c >> @@ -644,6 +644,14 @@ static void kvm_arm_gicv3_realize(DeviceState *dev, Error **errp) >> >> gicv3_init_irqs_and_mmio(s, kvm_arm_gicv3_set_irq, NULL); >> >> + for (i = 0; i < s->num_cpu; i++) { >> + ARMCPU *cpu = ARM_CPU(qemu_get_cpu(i)); >> + CPUARMState *env = &cpu->env; >> + >> + /* Store GICv3CPUState in CPUARMState gicv3state pointer */ >> + env->gicv3state = (void *)&s->cpu[i]; >> + } >> + >> /* Try to create the device via the device control API */ >> s->dev_fd = kvm_create_device(kvm_state, KVM_DEV_TYPE_ARM_VGIC_V3, false); >> if (s->dev_fd < 0) { > > Please set the CPU's pointer to the GICv3 in arm_gicv3_common_realize(), > because that's where we set the GICv3's pointer to the CPU. > (We don't want the pointer to be specific to the KVM GICv3 > anyway.) Adding this arch specific to arm_gicv3_common_realize() lands in compilation errors as arm_gicv3_common.c is common file. So, I would like to add this to arm_gicv3_cpuif.c and export it as a function and call from arm_gicv3_common_realize(). > > thanks > -- PMM