diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-05-12 11:57:19 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-05-12 11:57:19 +0100 |
commit | 5ae79fe825bedc89db8b6bde9d0ed0bb5d59558c (patch) | |
tree | 9a7a773e344aa200cdc85a0edd41baaf73ce770b /hw | |
parent | 27192e390d064489dcb23d5fcceb21cabf86d789 (diff) | |
download | hqemu-5ae79fe825bedc89db8b6bde9d0ed0bb5d59558c.zip hqemu-5ae79fe825bedc89db8b6bde9d0ed0bb5d59558c.tar.gz |
hw/arm/highbank.c: Wire FIQ between CPU <> GIC
Connect FIQ output of the GIC CPU interfaces to the CPUs.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1430502643-25909-18-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw')
-rw-r--r-- | hw/arm/highbank.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/arm/highbank.c b/hw/arm/highbank.c index b2d048b..f8353a7 100644 --- a/hw/arm/highbank.c +++ b/hw/arm/highbank.c @@ -217,6 +217,7 @@ static void calxeda_init(MachineState *machine, enum cxmachines machine_id) qemu_irq pic[128]; int n; qemu_irq cpu_irq[4]; + qemu_irq cpu_fiq[4]; MemoryRegion *sysram; MemoryRegion *dram; MemoryRegion *sysmem; @@ -269,6 +270,7 @@ static void calxeda_init(MachineState *machine, enum cxmachines machine_id) exit(1); } cpu_irq[n] = qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ); + cpu_fiq[n] = qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_FIQ); } sysmem = get_system_memory(); @@ -313,6 +315,7 @@ static void calxeda_init(MachineState *machine, enum cxmachines machine_id) sysbus_mmio_map(busdev, 0, MPCORE_PERIPHBASE); for (n = 0; n < smp_cpus; n++) { sysbus_connect_irq(busdev, n, cpu_irq[n]); + sysbus_connect_irq(busdev, n + smp_cpus, cpu_fiq[n]); } for (n = 0; n < 128; n++) { |