mirror of https://github.com/xemu-project/xemu.git
hw/arm/virt-acpi-build: Fix GSIV values of the {GERR, Sync} interrupts
The GSIV values in SMMUv3 IORT node are not correct as they don't match
the SMMUIrq enumeration, which describes the IRQ<->PIN mapping used by
our emulated vSMMU.
Fixes: a703b4f6c1
("hw/arm/virt-acpi-build: Add smmuv3 node in IORT table")
Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
Acked-by: Eric Auger <eric.auger@redhat.com>
Message-id: 20210402084731.93-1-yuzenghui@huawei.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
555249a59e
commit
0c38f60783
|
@ -292,8 +292,8 @@ build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
|
|||
smmu->flags = cpu_to_le32(ACPI_IORT_SMMU_V3_COHACC_OVERRIDE);
|
||||
smmu->event_gsiv = cpu_to_le32(irq);
|
||||
smmu->pri_gsiv = cpu_to_le32(irq + 1);
|
||||
smmu->gerr_gsiv = cpu_to_le32(irq + 2);
|
||||
smmu->sync_gsiv = cpu_to_le32(irq + 3);
|
||||
smmu->sync_gsiv = cpu_to_le32(irq + 2);
|
||||
smmu->gerr_gsiv = cpu_to_le32(irq + 3);
|
||||
|
||||
/* Identity RID mapping covering the whole input RID range */
|
||||
idmap = &smmu->id_mapping_array[0];
|
||||
|
|
Loading…
Reference in New Issue