Message ID | 20240403101611.3204086-11-ruanjinjie@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/arm: Implement FEAT_NMI and FEAT_GICv3_NMI | expand |
On Wed, 3 Apr 2024 at 11:18, Jinjie Ruan <ruanjinjie@huawei.com> wrote: > > Wire the new NMI and VINMI interrupt line from the GIC to each CPU. > > Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com> > Reviewed-by: Richard Henderson <richard.henderson@linaro.org> > --- > v9: > - Rename ARM_CPU_VNMI to ARM_CPU_VINMI. > - Update the commit message. > v4: > - Add Reviewed-by. > v3: > - Also add VNMI wire. > --- > hw/arm/virt.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/hw/arm/virt.c b/hw/arm/virt.c > index a9a913aead..ef2e6c2c4d 100644 > --- a/hw/arm/virt.c > +++ b/hw/arm/virt.c > @@ -821,7 +821,8 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) > > /* Wire the outputs from each CPU's generic timer and the GICv3 > * maintenance interrupt signal to the appropriate GIC PPI inputs, > - * and the GIC's IRQ/FIQ/VIRQ/VFIQ interrupt outputs to the CPU's inputs. > + * and the GIC's IRQ/FIQ/VIRQ/VFIQ/NMI/VINMI interrupt outputs to the > + * CPU's inputs. > */ > for (i = 0; i < smp_cpus; i++) { > DeviceState *cpudev = DEVICE(qemu_get_cpu(i)); > @@ -865,6 +866,10 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) > qdev_get_gpio_in(cpudev, ARM_CPU_VIRQ)); > sysbus_connect_irq(gicbusdev, i + 3 * smp_cpus, > qdev_get_gpio_in(cpudev, ARM_CPU_VFIQ)); > + sysbus_connect_irq(gicbusdev, i + 4 * smp_cpus, > + qdev_get_gpio_in(cpudev, ARM_CPU_NMI)); > + sysbus_connect_irq(gicbusdev, i + 5 * smp_cpus, > + qdev_get_gpio_in(cpudev, ARM_CPU_VINMI)); > } This patch needs to go after patch 11. Otherwise at this point in the patchseries we are trying to wire up GPIOs on the GIC which don't exist, and QEMU will assert: $ ./build/x86/qemu-system-aarch64 -M virt,gic-version=3 Unexpected error in object_property_find_err() at ../../qom/object.c:1366: qemu-system-aarch64: Property 'arm-gicv3.sysbus-irq[4]' not found Aborted (core dumped) We also need to only connect these up if vms->gic_version is not VIRT_GIC_VERSION_2. This is because these GPIOs don't exist on the GICv2, and otherwise we again assert if you try to wire them up but you're using GICv2: $ ./build/x86/qemu-system-aarch64 -M virt,gic-version=2 Unexpected error in object_property_find_err() at ../../qom/object.c:1366: qemu-system-aarch64: Property 'arm_gic.sysbus-irq[4]' not found Aborted (core dumped) thanks -- PMM
On 2024/4/4 22:47, Peter Maydell wrote: > On Wed, 3 Apr 2024 at 11:18, Jinjie Ruan <ruanjinjie@huawei.com> wrote: >> >> Wire the new NMI and VINMI interrupt line from the GIC to each CPU. >> >> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com> >> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> >> --- >> v9: >> - Rename ARM_CPU_VNMI to ARM_CPU_VINMI. >> - Update the commit message. >> v4: >> - Add Reviewed-by. >> v3: >> - Also add VNMI wire. >> --- >> hw/arm/virt.c | 7 ++++++- >> 1 file changed, 6 insertions(+), 1 deletion(-) >> >> diff --git a/hw/arm/virt.c b/hw/arm/virt.c >> index a9a913aead..ef2e6c2c4d 100644 >> --- a/hw/arm/virt.c >> +++ b/hw/arm/virt.c >> @@ -821,7 +821,8 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) >> >> /* Wire the outputs from each CPU's generic timer and the GICv3 >> * maintenance interrupt signal to the appropriate GIC PPI inputs, >> - * and the GIC's IRQ/FIQ/VIRQ/VFIQ interrupt outputs to the CPU's inputs. >> + * and the GIC's IRQ/FIQ/VIRQ/VFIQ/NMI/VINMI interrupt outputs to the >> + * CPU's inputs. >> */ >> for (i = 0; i < smp_cpus; i++) { >> DeviceState *cpudev = DEVICE(qemu_get_cpu(i)); >> @@ -865,6 +866,10 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) >> qdev_get_gpio_in(cpudev, ARM_CPU_VIRQ)); >> sysbus_connect_irq(gicbusdev, i + 3 * smp_cpus, >> qdev_get_gpio_in(cpudev, ARM_CPU_VFIQ)); >> + sysbus_connect_irq(gicbusdev, i + 4 * smp_cpus, >> + qdev_get_gpio_in(cpudev, ARM_CPU_NMI)); >> + sysbus_connect_irq(gicbusdev, i + 5 * smp_cpus, >> + qdev_get_gpio_in(cpudev, ARM_CPU_VINMI)); >> } > > This patch needs to go after patch 11. Otherwise at this point > in the patchseries we are trying to wire up GPIOs on the GIC > which don't exist, and QEMU will assert: > > $ ./build/x86/qemu-system-aarch64 -M virt,gic-version=3 > Unexpected error in object_property_find_err() at ../../qom/object.c:1366: > qemu-system-aarch64: Property 'arm-gicv3.sysbus-irq[4]' not found > Aborted (core dumped) > > We also need to only connect these up if vms->gic_version > is not VIRT_GIC_VERSION_2. This is because these GPIOs don't > exist on the GICv2, and otherwise we again assert if you > try to wire them up but you're using GICv2: > > $ ./build/x86/qemu-system-aarch64 -M virt,gic-version=2 > Unexpected error in object_property_find_err() at ../../qom/object.c:1366: > qemu-system-aarch64: Property 'arm_gic.sysbus-irq[4]' not found > Aborted (core dumped) Thank you! I'll fix them. > > thanks > -- PMM
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index a9a913aead..ef2e6c2c4d 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -821,7 +821,8 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) /* Wire the outputs from each CPU's generic timer and the GICv3 * maintenance interrupt signal to the appropriate GIC PPI inputs, - * and the GIC's IRQ/FIQ/VIRQ/VFIQ interrupt outputs to the CPU's inputs. + * and the GIC's IRQ/FIQ/VIRQ/VFIQ/NMI/VINMI interrupt outputs to the + * CPU's inputs. */ for (i = 0; i < smp_cpus; i++) { DeviceState *cpudev = DEVICE(qemu_get_cpu(i)); @@ -865,6 +866,10 @@ static void create_gic(VirtMachineState *vms, MemoryRegion *mem) qdev_get_gpio_in(cpudev, ARM_CPU_VIRQ)); sysbus_connect_irq(gicbusdev, i + 3 * smp_cpus, qdev_get_gpio_in(cpudev, ARM_CPU_VFIQ)); + sysbus_connect_irq(gicbusdev, i + 4 * smp_cpus, + qdev_get_gpio_in(cpudev, ARM_CPU_NMI)); + sysbus_connect_irq(gicbusdev, i + 5 * smp_cpus, + qdev_get_gpio_in(cpudev, ARM_CPU_VINMI)); } fdt_add_gic_node(vms);