mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-04-29 12:28:27 +02:00
PCI: rcar-gen4: Add missing 1ms delay after PWR reset assertion
[ Upstream commit8795b70581] R-Car V4H Reference Manual R19UH0186EJ0130 Rev.1.30 Apr. 21, 2025 page 585 Figure 9.3.2 Software Reset flow (B) indicates that for peripherals in HSC domain, after reset has been asserted by writing a matching reset bit into register SRCR, it is mandatory to wait 1ms. Because it is the controller driver which can determine whether or not the controller is in HSC domain based on its compatible string, add the missing delay in the controller driver. This 1ms delay is documented on R-Car V4H and V4M; it is currently unclear whether S4 is affected as well. This patch does apply the extra delay on R-Car S4 as well. Fixes:0d0c551011("PCI: rcar-gen4: Add R-Car Gen4 PCIe controller support for host mode") Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> [mani: added the missing r-b tag from Krzysztof] Signed-off-by: Manivannan Sadhasivam <mani@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Link: https://patch.msgid.link/20250919134644.208098-1-marek.vasut+renesas@mailbox.org Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
94a84eacca
commit
efa275174a
@@ -182,8 +182,17 @@ static int rcar_gen4_pcie_common_init(struct rcar_gen4_pcie *rcar)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (!reset_control_status(dw->core_rsts[DW_PCIE_PWR_RST].rstc))
|
||||
if (!reset_control_status(dw->core_rsts[DW_PCIE_PWR_RST].rstc)) {
|
||||
reset_control_assert(dw->core_rsts[DW_PCIE_PWR_RST].rstc);
|
||||
/*
|
||||
* R-Car V4H Reference Manual R19UH0186EJ0130 Rev.1.30 Apr.
|
||||
* 21, 2025 page 585 Figure 9.3.2 Software Reset flow (B)
|
||||
* indicates that for peripherals in HSC domain, after
|
||||
* reset has been asserted by writing a matching reset bit
|
||||
* into register SRCR, it is mandatory to wait 1ms.
|
||||
*/
|
||||
fsleep(1000);
|
||||
}
|
||||
|
||||
val = readl(rcar->base + PCIEMSR0);
|
||||
if (rcar->drvdata->mode == DW_PCIE_RC_TYPE) {
|
||||
|
||||
Reference in New Issue
Block a user