mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 21:54:37 +08:00
usb: ehci: Add 64-bit controller support
On EHCI controller with 64-bit address space support, we must initialize properly the high word for the PCI bus master accesses. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7c38e90aff
commit
2982837e36
@ -870,6 +870,9 @@ int usb_lowlevel_init(int index, void **controller)
|
||||
if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
|
||||
return -1;
|
||||
#endif
|
||||
/* Set the high address word (aka segment) for 64-bit controller */
|
||||
if (ehci_readl(&ehcic[index].hccr->cr_hccparams) & 1)
|
||||
ehci_writel(ehcic[index].hcor->or_ctrldssegment, 0);
|
||||
|
||||
qh_list = &ehcic[index].qh_list;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user