irqdomain/msi: Provide DOMAIN_BUS_VMD_MSI
authorThomas Gleixner <tglx@linutronix.de>
Wed, 26 Aug 2020 11:16:51 +0000 (13:16 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 16 Sep 2020 14:52:36 +0000 (16:52 +0200)
PCI devices behind a VMD bus are not subject to interrupt remapping, but
the irq domain for VMD MSI cannot be distinguished from a regular PCI/MSI
irq domain.

Add a new domain bus token and allow it in the bus token check in
msi_check_reservation_mode() to keep the functionality the same once VMD
uses this token.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Marc Zyngier <maz@kernel.org>
Acked-by: Jon Derrick <jonathan.derrick@intel.com>
Link: https://lore.kernel.org/r/20200826112332.954409970@linutronix.de
include/linux/irqdomain.h
kernel/irq/msi.c

index b37350c..44445d9 100644 (file)
@@ -84,6 +84,7 @@ enum irq_domain_bus_token {
        DOMAIN_BUS_FSL_MC_MSI,
        DOMAIN_BUS_TI_SCI_INTA_MSI,
        DOMAIN_BUS_WAKEUP,
+       DOMAIN_BUS_VMD_MSI,
 };
 
 /**
index 640668e..616b958 100644 (file)
@@ -364,8 +364,13 @@ static bool msi_check_reservation_mode(struct irq_domain *domain,
 {
        struct msi_desc *desc;
 
-       if (domain->bus_token != DOMAIN_BUS_PCI_MSI)
+       switch(domain->bus_token) {
+       case DOMAIN_BUS_PCI_MSI:
+       case DOMAIN_BUS_VMD_MSI:
+               break;
+       default:
                return false;
+       }
 
        if (!(info->flags & MSI_FLAG_MUST_REACTIVATE))
                return false;