RE: legacy PCI device behind a bridge not getting a valid IRQ on imx host controller

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> -----Original Message-----
> From: Bjorn Helgaas <helgaas@xxxxxxxxxx>
> Sent: 2024年8月30日 5:23
> To: tharvey@xxxxxxxxxxxxx; Hongxing Zhu <hongxing.zhu@xxxxxxx>; Lucas
> Stach <l.stach@xxxxxxxxxxxxxx>
> Cc: linux-pci@xxxxxxxxxxxxxxx
> Subject: Re: legacy PCI device behind a bridge not getting a valid IRQ on imx
> host controller
> 
> [+cc Richard, Lucas, maintainers of IMX6 PCI]
> 
> On Wed, Aug 28, 2024 at 02:40:33PM -0700, Tim Harvey wrote:
> > Greetings,
> >
> > I have a user that is using an IMX8MM SoC (dwc controller) with a
> > miniPCIe card that has a PEX8112 PCI-to-PCIe bridge to a legacy PCI
> > device and the device is not getting a valid interrupt.
> 
> Does pci-imx6.c support INTx at all?
> 
i.MX PCIe RC supports INTx.
Add pci=nomsi into kernel command line, can verify it when one endpoint
 device is connected.
Based i.MX8MM EVK board and on NVME, MSI or INTx are enabled.
logs of MSI:
root@imx8_all:~# lspci
00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01)
01:00.0 Non-Volatile memory controller: Device 1e49:0021 (rev 01)
root@imx8_all:~# cat /proc/interrupts | grep MSI
221:          0          0          0          0   PCI-MSI   0 Edge      PCIe PME
222:         14          0          0          0   PCI-MSI 524288 Edge      nvme0q0
223:        382          0          0          0   PCI-MSI 524289 Edge      nvme0q1
224:        115          0          0          0   PCI-MSI 524290 Edge      nvme0q2
225:        521          0          0          0   PCI-MSI 524291 Edge      nvme0q3
226:         53          0          0          0   PCI-MSI 524292 Edge      nvme0q4

Logs of INTx after pci=nomsi is added into kernel command line:
root@imx8_all:~# lspci
00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01)
01:00.0 Non-Volatile memory controller: Device 1e49:0021 (rev 01)
root@imx8_all:~#  cat /proc/interrupts | grep nvme
219:       1225          0          0          0     GICv3 157 Level     PCIe PME, nvme0q0, nvme0q1

Best Regards
Richard Zhu
> I see that drivers/pci/controller/dwc/pci-imx6.c supports both host and
> endpoint modes, but the only mention of "intx" is for an IMX device in
> endpoint mode to raise an INTx interrupt.
> 
> A few DWC-based drivers look like they support INTx:
> 
>   dra7xx_pcie_init_irq_domain
>   ks_pcie_config_intx_irq
>   rockchip_pcie_init_irq_domain (the dwc/pcie-dw-rockchip.c one)
>   uniphier_pcie_config_intx_irq
> 
> but most (including pci-imx6.c) don't have anything that looks like those.
> 
> > The PCI bus looks like this:
> > 00.00.0: 16c3:abcd (rev 01)
> > 01:00.0: 10b5:8112
> > ^^^ PEX8112 x1 Lane PCI bridge
> > 02:00.0: 4ddc:1a00
> > 02:01.0: 4ddc:1a00
> > ^^^ PCI devices
> >
> > lspci -vvv -s 02:00.0:
> > 02:00.0 Communication controller: ILC Data Device Corp Device 1a00 (rev
> 10)
> >         Subsystem: ILC Data Device Corp Device 1a00
> >         Control: I/O- Mem- BusMaster- SpecCycle- MemWINV-
> VGASnoop-
> > ParErr- Stepping- SERR- FastB2B- DisINTx-
> >         Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium
> > >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> >         Interrupt: pin A routed to IRQ 0
> >         Region 0: Memory at 18100000 (32-bit, non-prefetchable)
> > [disabled] [size=256K]
> >         Region 1: Memory at 18180000 (32-bit, non-prefetchable)
> > [disabled] [size=4K] ^^^ 'Interrupt: pin A routed to IRQ 0' is wrong
> >
> > I found an old thread from 2019 on an NVidia forum [1] where the same
> > thing occurred and Nvidia's solution was a patch to the dwc driver to
> > call pci_fixup_irqs():
> > diff --git a/drivers/pci/dwc/pcie-designware-host.c
> > b/drivers/pci/dwc/pcie-designware-host.c
> > index ec2e4a61aa4e..a72ba177a5fd 100644
> > --- a/drivers/pci/dwc/pcie-designware-host.c
> > +++ b/drivers/pci/dwc/pcie-designware-host.c
> > @@ -477,6 +477,8 @@ int dw_pcie_host_init(struct pcie_port *pp)
> >         if (pp->ops->scan_bus)
> >                 pp->ops->scan_bus(pp);
> >
> > +       pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
> > +
> >         pci_bus_size_bridges(bus);
> >         pci_bus_assign_resources(bus);
> >
> > Since that time the pci/dwc drivers have changed quite a bit;
> > pci_fixup_irqs() was changed to pci_assign_irq() called now from
> > pcie_device_probe() and dw_pcie_host_init() calls commit init
> > functions.
> >
> > While I don't have the particular card in hand described above yet to
> > test with, I did manage to reproduce this on an imx6dl soc (same dwc
> > controller and driver) connected to a TI XIO2001 with an Intel I210
> > behind it and see the exact same issue.
> >
> > Does anyone understand why legacy PCI interrupt mapping behind a
> > bridge isn't working here?
> >
> > Best regards,
> >
> > Tim
> > [1]
> > https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fforu
> > ms.developer.nvidia.com%2Ft%2Fxavier-not-routing-pci-interrupts-across
> >
> -pex8112-bridge%2F78556&data=05%7C02%7Chongxing.zhu%40nxp.com%7
> Cfa1d98
> >
> fbdea045fb72f108dcc870b5b8%7C686ea1d3bc2b4c6fa92cd99c5c301635%7
> C0%7C0%
> >
> 7C638605633626084761%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjA
> wMDAiLCJQI
> >
> joiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=ik
> 3qvBuPw
> > lj29q1BUUte%2F42SwSpxYnKGW9PvmFLFuaE%3D&reserved=0




[Index of Archives]     [DMA Engine]     [Linux Coverity]     [Linux USB]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Greybus]

  Powered by Linux