]> git.itanic.dy.fi Git - linux-stable/commitdiff
PCI: mt7621: Delay phy ports initialization
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Sat, 31 Dec 2022 07:40:41 +0000 (08:40 +0100)
committerLorenzo Pieralisi <lpieralisi@kernel.org>
Fri, 3 Feb 2023 09:16:40 +0000 (10:16 +0100)
Some devices like ZBT WE1326 and ZBT WF3526-P and some Netgear models need
to delay phy port initialization after calling the mt7621_pcie_init_port()
driver function to get into reliable boots for both warm and hard resets.

The delay required to detect the ports seems to be in the range [75-100]
milliseconds.

If the ports are not detected the controller is not functional.

There is no datasheet or something similar to really understand why this
extra delay is needed only for these devices and it is not for most of
the boards that are built on mt7621 SoC.

This issue has been reported by openWRT community and the complete
discussion is in [0]. The 100 milliseconds delay has been tested in all
devices to validate it.

Add the extra 100 milliseconds delay to fix the issue.

[0]: https://github.com/openwrt/openwrt/pull/11220

Link: https://lore.kernel.org/r/20221231074041.264738-1-sergio.paracuellos@gmail.com
Fixes: 2bdd5238e756 ("PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver")
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Lorenzo Pieralisi <lpieralisi@kernel.org>
drivers/pci/controller/pcie-mt7621.c

index ee7aad09d6277ef121ec806a4674e7f83fdef135..63a5f4463a9f6964e453598eee56f61f6950344a 100644 (file)
@@ -60,6 +60,7 @@
 #define PCIE_PORT_LINKUP               BIT(0)
 #define PCIE_PORT_CNT                  3
 
+#define INIT_PORTS_DELAY_MS            100
 #define PERST_DELAY_MS                 100
 
 /**
@@ -369,6 +370,7 @@ static int mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
                }
        }
 
+       msleep(INIT_PORTS_DELAY_MS);
        mt7621_pcie_reset_ep_deassert(pcie);
 
        tmp = NULL;