Skip to content

Commit

Permalink
hw/arm/xilinx_zynq: Wire FIQ between CPU <> GIC
Browse files Browse the repository at this point in the history
Similarly to commits dadbb58..5ae79fe for other ARM boards,
connect FIQ output of the GIC CPU interfaces to the CPU.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20240130152548.17855-1-philmd@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
philmd authored and pm215 committed Feb 15, 2024
1 parent 5767815 commit 68a5827
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hw/arm/xilinx_zynq.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,8 @@ static void zynq_init(MachineState *machine)
sysbus_mmio_map(busdev, 0, MPCORE_PERIPHBASE);
sysbus_connect_irq(busdev, 0,
qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ));
sysbus_connect_irq(busdev, 1,
qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_FIQ));

for (n = 0; n < 64; n++) {
pic[n] = qdev_get_gpio_in(dev, n);
Expand Down

0 comments on commit 68a5827

Please sign in to comment.