summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2020-08-24 13:04:36 +0200
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2020-10-07 20:25:57 +0200
commit72a53ac59b9897d86471f5d44d2d4cbf82209d8e (patch)
tree236948ae71bc199dc07ac38611aaf3e6054c6ac7
parent63051d62b894b47e6aa3f59756be46513a450742 (diff)
downloadu-boot-72a53ac59b9897d86471f5d44d2d4cbf82209d8e.tar.gz
usb: xhci: xhci-dwc3.c: Use dev_remap_addr() instead of dev_get_addr()
On MIPS platforms, mapping of the base address is needed. This patch switches from dev_get_addr() to dev_remap_addr() to get the mapped base address of the xHCI controller. Signed-off-by: Stefan Roese <sr@denx.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Marek Vasut <marex@denx.de>
-rw-r--r--drivers/usb/host/xhci-dwc3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-dwc3.c b/drivers/usb/host/xhci-dwc3.c
index 27f84102db..045de2ffde 100644
--- a/drivers/usb/host/xhci-dwc3.c
+++ b/drivers/usb/host/xhci-dwc3.c
@@ -122,7 +122,7 @@ static int xhci_dwc3_probe(struct udevice *dev)
u32 reg;
int ret;
- hccr = (struct xhci_hccr *)((uintptr_t)dev_read_addr(dev));
+ hccr = (struct xhci_hccr *)((uintptr_t)dev_remap_addr(dev));
hcor = (struct xhci_hcor *)((uintptr_t)hccr +
HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));