usb: dwc3: core: update LC timer as per USB Spec V3.2

This fix addresses STAR 9001285599, which only affects DWC_usb3 version
3.20a. The timer value for PM_LC_TIMER in DWC_usb3 3.20a for the Link
ECN changes is incorrect. If the PM TIMER ECN is enabled via GUCTL2[19],
the link compliance test (TD7.21) may fail. If the ECN is not enabled
(GUCTL2[19] = 0), the controller will use the old timer value (5us),
which is still acceptable for the link compliance test. Therefore, clear
GUCTL2[19] to pass the USB link compliance test: TD 7.21.

Cc: stable@vger.kernel.org
Signed-off-by: Faisal Hassan <quic_faisalh@quicinc.com>
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Link: https://lore.kernel.org/r/20240829094502.26502-1-quic_faisalh@quicinc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by Faisal Hassan and committed by Greg Kroah-Hartman 9149c9b0 00dcf2fa

+17
+15
drivers/usb/dwc3/core.c
··· 1387 1387 } 1388 1388 1389 1389 /* 1390 + * STAR 9001285599: This issue affects DWC_usb3 version 3.20a 1391 + * only. If the PM TIMER ECM is enabled through GUCTL2[19], the 1392 + * link compliance test (TD7.21) may fail. If the ECN is not 1393 + * enabled (GUCTL2[19] = 0), the controller will use the old timer 1394 + * value (5us), which is still acceptable for the link compliance 1395 + * test. Therefore, do not enable PM TIMER ECM in 3.20a by 1396 + * setting GUCTL2[19] by default; instead, use GUCTL2[19] = 0. 1397 + */ 1398 + if (DWC3_VER_IS(DWC3, 320A)) { 1399 + reg = dwc3_readl(dwc->regs, DWC3_GUCTL2); 1400 + reg &= ~DWC3_GUCTL2_LC_TIMER; 1401 + dwc3_writel(dwc->regs, DWC3_GUCTL2, reg); 1402 + } 1403 + 1404 + /* 1390 1405 * When configured in HOST mode, after issuing U3/L2 exit controller 1391 1406 * fails to send proper CRC checksum in CRC5 feild. Because of this 1392 1407 * behaviour Transaction Error is generated, resulting in reset and
+2
drivers/usb/dwc3/core.h
··· 421 421 422 422 /* Global User Control Register 2 */ 423 423 #define DWC3_GUCTL2_RST_ACTBITLATER BIT(14) 424 + #define DWC3_GUCTL2_LC_TIMER BIT(19) 424 425 425 426 /* Global User Control Register 3 */ 426 427 #define DWC3_GUCTL3_SPLITDISABLE BIT(14) ··· 1270 1269 #define DWC3_REVISION_290A 0x5533290a 1271 1270 #define DWC3_REVISION_300A 0x5533300a 1272 1271 #define DWC3_REVISION_310A 0x5533310a 1272 + #define DWC3_REVISION_320A 0x5533320a 1273 1273 #define DWC3_REVISION_330A 0x5533330a 1274 1274 1275 1275 #define DWC31_REVISION_ANY 0x0