From: Jan Beulich Date: Mon, 8 Apr 2019 11:03:07 +0000 (+0200) Subject: x86/ACPI: also parse AMD IOMMU tables early X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9fa94e1058543759a7d45237f06c80cde3008d41;p=people%2Froyger%2Fxen.git x86/ACPI: also parse AMD IOMMU tables early In order to be able to initialize x2APIC mode we need to parse respective ACPI tables early. Split amd_iov_detect() into two parts for this purpose, and call the initial part earlier on. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper Acked-by: Brian Woods --- diff --git a/xen/arch/x86/acpi/boot.c b/xen/arch/x86/acpi/boot.c index e6ab9fa398..1382b4dcd0 100644 --- a/xen/arch/x86/acpi/boot.c +++ b/xen/arch/x86/acpi/boot.c @@ -733,7 +733,7 @@ int __init acpi_boot_init(void) acpi_mmcfg_init(); - acpi_dmar_init(); + acpi_iommu_init(); erst_init(); diff --git a/xen/drivers/passthrough/amd/pci_amd_iommu.c b/xen/drivers/passthrough/amd/pci_amd_iommu.c index f6c17ba87a..7dba478720 100644 --- a/xen/drivers/passthrough/amd/pci_amd_iommu.c +++ b/xen/drivers/passthrough/amd/pci_amd_iommu.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include "../ats.h" @@ -147,7 +148,7 @@ static void amd_iommu_setup_domain_device( } } -int __init amd_iov_detect(void) +int __init acpi_ivrs_init(void) { INIT_LIST_HEAD(&amd_iommu_head); @@ -161,6 +162,14 @@ int __init amd_iov_detect(void) return -ENODEV; } + return 0; +} + +int __init amd_iov_detect(void) +{ + if ( !iommu_enable && !iommu_intremap ) + return 0; + iommu_ops = amd_iommu_ops; if ( amd_iommu_init() != 0 ) diff --git a/xen/include/asm-x86/acpi.h b/xen/include/asm-x86/acpi.h index 3950b470e5..a105d1186c 100644 --- a/xen/include/asm-x86/acpi.h +++ b/xen/include/asm-x86/acpi.h @@ -26,6 +26,7 @@ #include #include #include +#include #define COMPILER_DEPENDENT_INT64 long long #define COMPILER_DEPENDENT_UINT64 unsigned long long @@ -145,6 +146,15 @@ extern u32 pmtmr_ioport; extern unsigned int pmtmr_width; int acpi_dmar_init(void); +int acpi_ivrs_init(void); + +static inline int acpi_iommu_init(void) +{ + int ret = acpi_dmar_init(); + + return ret == -ENODEV ? acpi_ivrs_init() : ret; +} + void acpi_mmcfg_init(void); /* Incremented whenever we transition through S3. Value is 1 during boot. */