From patchwork Sat Jan 26 13:26:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 215908 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D18562C0094 for ; Sun, 27 Jan 2013 00:26:53 +1100 (EST) Received: from localhost ([::1]:48757 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz5mU-0004gh-UV for incoming@patchwork.ozlabs.org; Sat, 26 Jan 2013 08:26:50 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz5mM-0004gN-3f for qemu-devel@nongnu.org; Sat, 26 Jan 2013 08:26:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tz5mJ-0001em-Q2 for qemu-devel@nongnu.org; Sat, 26 Jan 2013 08:26:42 -0500 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:60159 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz5mJ-0001dc-J7 for qemu-devel@nongnu.org; Sat, 26 Jan 2013 08:26:39 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1Tz5mB-0003gI-Kz; Sat, 26 Jan 2013 13:26:31 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Sat, 26 Jan 2013 13:26:31 +0000 Message-Id: <1359206791-14127-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:8b0:1d0::1 Cc: Christoffer Dall , patches@linaro.org Subject: [Qemu-devel] [PATCH] hw/vexpress: Use correct HBI (board model number) for vexpress-a15 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The vexpress-a15 QEMU model is supposed to be a V2P-CA15; the HBI (a kind of board model number) for this coretile is 237, not 217. Signed-off-by: Peter Maydell --- The only effect of this bug I know of is that kernels using a device tree will yell at you if the HBI doesn't match the one in the dtb... hw/vexpress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/vexpress.c b/hw/vexpress.c index 7f0897c..741b044 100644 --- a/hw/vexpress.c +++ b/hw/vexpress.c @@ -271,7 +271,7 @@ static void a15_daughterboard_init(const VEDBoardInfo *daughterboard, cpu_model = "cortex-a15"; } - *proc_id = 0x14000217; + *proc_id = 0x14000237; for (n = 0; n < smp_cpus; n++) { ARMCPU *cpu;