The pci_subdevice_msi_create_irq_domain() should fail if the underlying
platform is not able to support IMS (Interrupt Message Storage). Otherwise,
the isolation of interrupt is not guaranteed.

For x86, IMS is only supported on bare metal for now. We could enable it
in the virtualization environments in the future if interrupt HYPERCALL
domain is supported or the hardware has the capability of interrupt
isolation for subdevices.

Cc: David Woodhouse <d...@amazon.co.uk>
Cc: Leon Romanovsky <l...@kernel.org>
Cc: Kevin Tian <kevin.t...@intel.com>
Suggested-by: Thomas Gleixner <t...@linutronix.de>
Link: https://lore.kernel.org/linux-pci/87pn4nk7nn....@nanos.tec.linutronix.de/
Link: https://lore.kernel.org/linux-pci/877dqrnzr3....@nanos.tec.linutronix.de/
Link: https://lore.kernel.org/linux-pci/877dqqmc2h....@nanos.tec.linutronix.de/
Signed-off-by: Lu Baolu <baolu...@linux.intel.com>
---
 arch/x86/pci/common.c       | 71 +++++++++++++++++++++++++++++++++++++
 drivers/base/platform-msi.c |  8 +++++
 include/linux/msi.h         |  1 +
 3 files changed, 80 insertions(+)

diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c
index 3507f456fcd0..9deb826fb242 100644
--- a/arch/x86/pci/common.c
+++ b/arch/x86/pci/common.c
@@ -12,6 +12,7 @@
 #include <linux/init.h>
 #include <linux/dmi.h>
 #include <linux/slab.h>
+#include <linux/iommu.h>
 
 #include <asm/acpi.h>
 #include <asm/segment.h>
@@ -724,3 +725,73 @@ struct pci_dev *pci_real_dma_dev(struct pci_dev *dev)
        return dev;
 }
 #endif
+
+/*
+ * We want to figure out which context we are running in. But the hardware
+ * does not introduce a reliable way (instruction, CPUID leaf, MSR, whatever)
+ * which can be manipulated by the VMM to let the OS figure out where it runs.
+ * So we go with the below probably on_bare_metal() function as a replacement
+ * for definitely on_bare_metal() to go forward only for the very simple reason
+ * that this is the only option we have.
+ */
+static const char * const vmm_vendor_name[] = {
+       "QEMU", "Bochs", "KVM", "Xen", "VMware", "VMW", "VMware Inc.",
+       "innotek GmbH", "Oracle Corporation", "Parallels", "BHYVE"
+};
+
+static void read_type0_virtual_machine(const struct dmi_header *dm, void *p)
+{
+       u8 *data = (u8 *)dm + 0x13;
+
+       /* BIOS Information (Type 0) */
+       if (dm->type != 0 || dm->length < 0x14)
+               return;
+
+       /* Bit 4 of BIOS Characteristics Extension Byte 2*/
+       if (*data & BIT(4))
+               *((bool *)p) = true;
+}
+
+static bool smbios_virtual_machine(void)
+{
+       bool bit_present = false;
+
+       dmi_walk(read_type0_virtual_machine, &bit_present);
+
+       return bit_present;
+}
+
+static bool on_bare_metal(struct device *dev)
+{
+       int i;
+
+       if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
+               return false;
+
+       if (smbios_virtual_machine())
+               return false;
+
+       if (iommu_capable(dev->bus, IOMMU_CAP_VIOMMU))
+               return false;
+
+       for (i = 0; i < ARRAY_SIZE(vmm_vendor_name); i++)
+               if (dmi_match(DMI_SYS_VENDOR, vmm_vendor_name[i]))
+                       return false;
+
+       pr_info("System running on bare metal, report to bugzilla.kernel.org if 
not the case.");
+
+       return true;
+}
+
+bool arch_support_pci_device_ims(struct pci_dev *pdev)
+{
+       /*
+        * When we are running in a VMM context, the device IMS could only be
+        * enabled when the underlying hardware supports interrupt isolation
+        * of the subdevice, or any mechanism (trap, hypercall) is added so
+        * that changes in the interrupt message store could be managed by the
+        * VMM. For now, we only support the device IMS when we are running on
+        * the bare metal.
+        */
+       return on_bare_metal(&pdev->dev);
+}
diff --git a/drivers/base/platform-msi.c b/drivers/base/platform-msi.c
index 8432a1bf4e28..88e5fe4dae67 100644
--- a/drivers/base/platform-msi.c
+++ b/drivers/base/platform-msi.c
@@ -512,6 +512,11 @@ struct irq_domain *device_msi_create_irq_domain(struct 
fwnode_handle *fn,
 #ifdef CONFIG_PCI
 #include <linux/pci.h>
 
+bool __weak arch_support_pci_device_ims(struct pci_dev *pdev)
+{
+       return false;
+}
+
 /**
  * pci_subdevice_msi_create_irq_domain - Create an irq domain for subdevices
  * @pdev:      Pointer to PCI device for which the subdevice domain is created
@@ -523,6 +528,9 @@ struct irq_domain 
*pci_subdevice_msi_create_irq_domain(struct pci_dev *pdev,
        struct irq_domain *domain, *pdev_msi;
        struct fwnode_handle *fn;
 
+       if (!arch_support_pci_device_ims(pdev))
+               return NULL;
+
        /*
         * Retrieve the MSI domain of the underlying PCI device's MSI
         * domain. The PCI device domain's parent domain is also the parent
diff --git a/include/linux/msi.h b/include/linux/msi.h
index f319d7c6a4ef..6fda81c4b859 100644
--- a/include/linux/msi.h
+++ b/include/linux/msi.h
@@ -478,6 +478,7 @@ struct irq_domain *device_msi_create_irq_domain(struct 
fwnode_handle *fn,
                                                struct irq_domain *parent);
 
 # ifdef CONFIG_PCI
+bool arch_support_pci_device_ims(struct pci_dev *pdev);
 struct irq_domain *pci_subdevice_msi_create_irq_domain(struct pci_dev *pdev,
                                                       struct msi_domain_info 
*info);
 # endif
-- 
2.25.1

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

Reply via email to