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: 14292 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 1062E23E2E for ; Sat, 26 Jan 2013 13:26:37 +0000 (UTC) Received: from mail-ve0-f174.google.com (mail-ve0-f174.google.com [209.85.128.174]) by fiordland.canonical.com (Postfix) with ESMTP id B9F8FA19009 for ; Sat, 26 Jan 2013 13:26:36 +0000 (UTC) Received: by mail-ve0-f174.google.com with SMTP id c13so608092vea.5 for ; Sat, 26 Jan 2013 05:26:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=fHx6B36N7P0pIKMqj0niGUSaPArFoBBxFcb64/At80w=; b=Bo4nTtr4r3B56o8E8+WT21bAKltzAlSRlPbaQ76PUvM5/RnZWM1uw4Nz3yR/dZk7R6 JZfUebOIoIhWEQ05u4pTUPt7fAGwa3KudGEqCPa8WkIGOuNGqFFtVDtjbq1GejblyX84 a+wu1NrI7VjqKAAq/ORu/fOsY2sHE6DaViqVUNm0Ow3ELw2Bq7+NkIAJ/Cp+SwMLYpnF 8d/7W+A6O8vp2ortFdLLEV15T9H5kJIwTCmO7X6kWWt8rgYw11SQCoprTSn3k+l/WNBR vtfKNHypK18opKsXzv9WGzzXc3VtOXCBm25hinJ4QDDT7q1t94WM5bODsqPCu69SQmeJ Wf3A== X-Received: by 10.52.88.168 with SMTP id bh8mr8086537vdb.51.1359206796189; Sat, 26 Jan 2013 05:26:36 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.145.101 with SMTP id st5csp10874veb; Sat, 26 Jan 2013 05:26:35 -0800 (PST) X-Received: by 10.194.172.228 with SMTP id bf4mr13531771wjc.38.1359206794848; Sat, 26 Jan 2013 05:26:34 -0800 (PST) Received: from mnementh.archaic.org.uk (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]) by mx.google.com with ESMTPS id r4si623674wia.1.2013.01.26.05.26.32 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 26 Jan 2013 05:26:34 -0800 (PST) Received-SPF: neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) client-ip=2001:8b0:1d0::1; Authentication-Results: mx.google.com; spf=neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) smtp.mail=pm215@archaic.org.uk 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 Cc: patches@linaro.org, Christoffer Dall Subject: [PATCH] hw/vexpress: Use correct HBI (board model number) for vexpress-a15 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-Gm-Message-State: ALoCoQnWWe6J6OdxGCmWvyjtSbjvcpzD6LE6rMStcKiRgSLA9W9Yn2rN3L7TDlzLZWoixq+qPjzD 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;