mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/XhciPei:1ms delay before access MMIO reg during reset
Some XHCI host controllers require to have extra 1ms delay before accessing any MMIO register during HC reset. As this delay is not defined by XHCI spec, we use this workaround to fix the issue. Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Feng Tian <feng.tian@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
dbe10619bc
commit
1f87985ab7
|
@ -407,6 +407,12 @@ XhcPeiResetHC (
|
|||
}
|
||||
|
||||
XhcPeiSetOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_RESET);
|
||||
//
|
||||
// Some XHCI host controllers require to have extra 1ms delay before accessing any MMIO register during reset.
|
||||
// Otherwise there may have the timeout case happened.
|
||||
// The below is a workaround to solve such problem.
|
||||
//
|
||||
MicroSecondDelay (1000);
|
||||
Status = XhcPeiWaitOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_RESET, FALSE, Timeout);
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiResetHC: %r\n", Status));
|
||||
|
|
Loading…
Reference in New Issue