mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
mediatek: fix PCIe #PERST de-asserted too early
The driver for MediaTek gen3 PCIe hosts de-asserts all reset signals at the same time using a single register write operation. Delay the de-assertion of the #PERST signal by 100ms as some PCIe devices fail to come up otherwise. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
88450c61a3
commit
a03505e141
@ -0,0 +1,17 @@
|
|||||||
|
--- a/drivers/pci/controller/pcie-mediatek-gen3.c
|
||||||
|
+++ b/drivers/pci/controller/pcie-mediatek-gen3.c
|
||||||
|
@@ -319,7 +319,13 @@ static int mtk_pcie_startup_port(struct
|
||||||
|
msleep(100);
|
||||||
|
|
||||||
|
/* De-assert reset signals */
|
||||||
|
- val &= ~(PCIE_MAC_RSTB | PCIE_PHY_RSTB | PCIE_BRG_RSTB | PCIE_PE_RSTB);
|
||||||
|
+ val &= ~(PCIE_MAC_RSTB | PCIE_PHY_RSTB | PCIE_BRG_RSTB);
|
||||||
|
+ writel_relaxed(val, port->base + PCIE_RST_CTRL_REG);
|
||||||
|
+
|
||||||
|
+ msleep(100);
|
||||||
|
+
|
||||||
|
+ /* De-assert PERST# signals */
|
||||||
|
+ val &= ~(PCIE_PE_RSTB);
|
||||||
|
writel_relaxed(val, port->base + PCIE_RST_CTRL_REG);
|
||||||
|
|
||||||
|
/* Check if the link is up or not */
|
@ -9,7 +9,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
--- a/drivers/pci/controller/pcie-mediatek-gen3.c
|
--- a/drivers/pci/controller/pcie-mediatek-gen3.c
|
||||||
+++ b/drivers/pci/controller/pcie-mediatek-gen3.c
|
+++ b/drivers/pci/controller/pcie-mediatek-gen3.c
|
||||||
@@ -1025,7 +1025,7 @@ static struct platform_driver mtk_pcie_d
|
@@ -1031,7 +1031,7 @@ static struct platform_driver mtk_pcie_d
|
||||||
.probe = mtk_pcie_probe,
|
.probe = mtk_pcie_probe,
|
||||||
.remove = mtk_pcie_remove,
|
.remove = mtk_pcie_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
|
Loading…
Reference in New Issue
Block a user