diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-01-30 15:39:02 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-01-30 15:39:02 +0000 |
commit | f61850bffbd0bb8b15aa55ebc3470bf1f8ce8664 (patch) | |
tree | 73336cfa3625e1810d5a48d0492449753a802415 /hw/vexpress.c | |
parent | 706872a56630a206897742b70c69ff99727672d3 (diff) |
hw/vexpress: Use correct HBI (board model number) for vexpress-a15
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 <peter.maydell@linaro.org>
Diffstat (limited to 'hw/vexpress.c')
-rw-r--r-- | hw/vexpress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vexpress.c b/hw/vexpress.c index 7f0897c773..741b044f1d 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; |