mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
ARM PBX-A9 board support
Implement ARM RealView PBX-A9 board support. Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
parent
100555620f
commit
f7c703250c
9 changed files with 209 additions and 110 deletions
|
@ -607,7 +607,7 @@ static void gic_cpu_write(gic_state *s, int cpu, int offset, uint32_t value)
|
|||
switch (offset) {
|
||||
case 0x00: /* Control */
|
||||
s->cpu_enabled[cpu] = (value & 1);
|
||||
DPRINTF("CPU %sabled\n", s->cpu_enabled ? "En" : "Dis");
|
||||
DPRINTF("CPU %d %sabled\n", cpu, s->cpu_enabled ? "En" : "Dis");
|
||||
break;
|
||||
case 0x04: /* Priority mask */
|
||||
s->priority_mask[cpu] = (value & 0xff);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue