From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAEzZ-0005YF-Js for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:11:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZAEzS-0004Pd-2L for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:11:45 -0400 Received: from mail-lb0-f180.google.com ([209.85.217.180]:35672) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAEzR-0004PL-QY for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:11:37 -0400 Received: by lbcpe5 with SMTP id pe5so9735191lbc.2 for ; Wed, 01 Jul 2015 03:11:37 -0700 (PDT) Date: Wed, 1 Jul 2015 12:11:39 +0200 From: Christoffer Dall Message-ID: <20150701101139.GB16763@cbox> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PATCH RFC 2/4] Set kernel_irqchip_type for other ARM boards which use GIC List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Pavel Fedin Cc: Shlomo Pongratz , qemu-devel@nongnu.org, Ashok Kumar , Eric Auger Missing commit text completely? On Fri, May 22, 2015 at 01:58:42PM +0300, Pavel Fedin wrote: > Signed-off-by: Pavel Fedin > --- > hw/arm/exynos4_boards.c | 1 + > hw/arm/realview.c | 1 + > hw/arm/vexpress.c | 1 + > 3 files changed, 3 insertions(+) > > diff --git a/hw/arm/exynos4_boards.c b/hw/arm/exynos4_boards.c > index d644db1..d4136bc 100644 > --- a/hw/arm/exynos4_boards.c > +++ b/hw/arm/exynos4_boards.c > @@ -104,6 +104,7 @@ static Exynos4210State *exynos4_boards_init_common(MachineState *machine, > exynos4_machines[board_type].max_cpus); > } > > + machine->kernel_irqchip_type = KVM_DEV_TYPE_ARM_VGIC_V2; > exynos4_board_binfo.ram_size = exynos4_board_ram_size[board_type]; > exynos4_board_binfo.board_id = exynos4_board_id[board_type]; > exynos4_board_binfo.smp_bootreg_addr = > diff --git a/hw/arm/realview.c b/hw/arm/realview.c > index ef2788d..f670d9f 100644 > --- a/hw/arm/realview.c > +++ b/hw/arm/realview.c > @@ -74,6 +74,7 @@ static void realview_init(MachineState *machine, > ram_addr_t ram_size = machine->ram_size; > hwaddr periphbase = 0; > > + machine->kernel_irqchip_type = KVM_DEV_TYPE_ARM_VGIC_V2; > switch (board_type) { > case BOARD_EB: > break; > diff --git a/hw/arm/vexpress.c b/hw/arm/vexpress.c > index 8f1a5ea..b0a29f1 100644 > --- a/hw/arm/vexpress.c > +++ b/hw/arm/vexpress.c > @@ -556,6 +556,7 @@ static void vexpress_common_init(MachineState *machine) > const hwaddr *map = daughterboard->motherboard_map; > int i; > > + machine->kernel_irqchip_type = KVM_DEV_TYPE_ARM_VGIC_V2; > daughterboard->init(vms, machine->ram_size, machine->cpu_model, pic); > > /* > -- > 1.9.5.msysgit.0 > >