[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [V5 5/6] hw/acpi: report IOAPIC on IVRS
From: |
David Kiarie |
Subject: |
[Qemu-devel] [V5 5/6] hw/acpi: report IOAPIC on IVRS |
Date: |
Tue, 20 Sep 2016 20:40:45 +0300 |
Report IOAPIC via IVRS which effectively allows linux AMD-Vi
driver to enable interrupt remapping
Signed-off-by: David Kiarie <address@hidden>
---
hw/i386/acpi-build.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index c20bc71..c9bee8f 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -2615,6 +2615,8 @@ build_amd_iommu(GArray *table_data, BIOSLinker *linker)
* Refer to Spec - Table 95:IVHD Device Entry Type Codes(4-byte)
*/
build_append_int_noprefix(table_data, 0x0000001, 4);
+ /* IOAPIC represented as an 8-byte entry. Spec v2.62 Tables 97 */
+ build_append_int_noprefix(table_data, 0x0100a000cf000048, 8);
build_header(linker, table_data, (void *)(table_data->data + iommu_start),
"IVRS", table_data->len - iommu_start, 1, NULL, NULL);
--
2.1.4
- [Qemu-devel] [V5 0/6] AMD IOMMU interrupt remapping, David Kiarie, 2016/09/20
- [Qemu-devel] [V5 1/6] hw/msi: Allow platform devices to use explicit SID, David Kiarie, 2016/09/20
- [Qemu-devel] [V5 2/6] hw/i386: enforce SID verification, David Kiarie, 2016/09/20
- [Qemu-devel] [V5 3/6] hw/iommu: Prepare for AMD IOMMU interrupt remapping, David Kiarie, 2016/09/20
- [Qemu-devel] [V5 4/6] hw/iommu: AMD IOMMU interrupt remapping, David Kiarie, 2016/09/20
- [Qemu-devel] [V5 5/6] hw/acpi: report IOAPIC on IVRS,
David Kiarie <=
- [Qemu-devel] [V5 6/6] hw/iommu: share common code between IOMMUs, David Kiarie, 2016/09/20
- Re: [Qemu-devel] [V5 0/6] AMD IOMMU interrupt remapping, David Kiarie, 2016/09/30