From: Ashok Reddy Soma Date: Tue, 10 May 2022 13:12:34 +0000 (-0600) Subject: phy: zynqmp: Increase timeout value to 10ms X-Git-Tag: v2025.01-rc5-pxa1908~1395^2~12 X-Git-Url: http://git.dujemihanovic.xyz/projects?a=commitdiff_plain;h=e9869f474c35b81577066441dce6960c03089023;p=u-boot.git phy: zynqmp: Increase timeout value to 10ms Observing psgtr pll timeouts with some usb hubs and devices behind it. Increase timeout to 10ms to take care of it. Signed-off-by: Ashok Reddy Soma Link: https://lore.kernel.org/r/20220510131234.2650-1-ashok.reddy.soma@xilinx.com Signed-off-by: Michal Simek --- diff --git a/drivers/phy/phy-zynqmp.c b/drivers/phy/phy-zynqmp.c index 08c1b6efcf..d1288bb17f 100644 --- a/drivers/phy/phy-zynqmp.c +++ b/drivers/phy/phy-zynqmp.c @@ -168,7 +168,7 @@ enum { }; /* Timeout values */ -#define TIMEOUT_US 1000 +#define TIMEOUT_US 10000 #define IOU_SLCR_GEM_CLK_CTRL 0x308 #define GEM_CTRL_GEM_SGMII_MODE BIT(2)