Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 930f9fd0 authored by Hemant Kumar's avatar Hemant Kumar
Browse files

usb: dwc3: Increase the inter packet gap for USB 2.0



Default 0 value for IP_GAP_ADD_ON field of DWC3_GUCTL1
register is causing failure of EL_23 test. This value
corresponds to inter-packet gap of 182.163 ns. Increase
the value to 1 which corresponds to 199.794 ns. This
improves margin required to pass the test.

Change-Id: Iabc71a746ac90251eaec25597d8506df416796a5
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent f1fb1191
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1062,6 +1062,13 @@ int dwc3_core_init(struct dwc3 *dwc)

	dwc3_notify_event(dwc, DWC3_CONTROLLER_POST_RESET_EVENT, 0);

	/* set inter-packet gap 199.794ns to improve EL_23 margin */
	if (dwc->revision >= DWC3_USB31_REVISION_170A) {
		reg = dwc3_readl(dwc->regs, DWC3_GUCTL1);
		reg |= DWC3_GUCTL1_IP_GAP_ADD_ON(1);
		dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
	}

	return 0;

err3:
+1 −0
Original line number Diff line number Diff line
@@ -257,6 +257,7 @@
/* Global User Control 1 Register */
#define DWC3_GUCTL1_TX_IPGAP_LINECHECK_DIS	BIT(28)
#define DWC3_GUCTL1_DEV_L1_EXIT_BY_HW	BIT(24)
#define DWC3_GUCTL1_IP_GAP_ADD_ON(n)	(n << 21)

/* Global Status Register */
#define DWC3_GSTS_OTG_IP	BIT(10)