]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
PCI: dwc: Fix inner MSI IRQ domain registration
authorMarc Zyngier <maz@kernel.org>
Fri, 1 May 2020 11:39:21 +0000 (12:39 +0100)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Fri, 22 May 2020 14:05:23 +0000 (15:05 +0100)
On a system that uses the internal DWC MSI widget, I get this
warning from debugfs when CONFIG_GENERIC_IRQ_DEBUGFS is selected:

  debugfs: File ':soc:pcie@fc000000' in directory 'domains' already present!

This is due to the fact that the DWC MSI code tries to register two
IRQ domains for the same firmware node, without telling the low
level code how to distinguish them (by setting a bus token). This
further confuses debugfs which tries to create corresponding
files for each domain.

Fix it by tagging the inner domain as DOMAIN_BUS_NEXUS, which is
the closest thing we have as to "generic MSI".

Link: https://lore.kernel.org/r/20200501113921.366597-1-maz@kernel.org
Signed-off-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Jingoo Han <jingoohan1@gmail.com>
drivers/pci/controller/dwc/pcie-designware-host.c

index 395feb8ca051274b0d4191741e577761a77d7241..3c43311bb95c6a9e18d35ae645312d062f5618dd 100644 (file)
@@ -264,6 +264,8 @@ int dw_pcie_allocate_domains(struct pcie_port *pp)
                return -ENOMEM;
        }
 
+       irq_domain_update_bus_token(pp->irq_domain, DOMAIN_BUS_NEXUS);
+
        pp->msi_domain = pci_msi_create_irq_domain(fwnode,
                                                   &dw_pcie_msi_domain_info,
                                                   pp->irq_domain);