From: Stefan Roese <sr@denx.de>
To: u-boot@lists.denx.de
Subject: [PATCH v4 1/8] usb: xhci: xhci-dwc3.c: Use dev_remap_addr() instead of dev_get_addr()
Date: Mon, 24 Aug 2020 13:04:36 +0200 [thread overview]
Message-ID: <20200824110443.71860-2-sr@denx.de> (raw)
In-Reply-To: <20200824110443.71860-1-sr@denx.de>
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>
---
(no changes since v3)
Changes in v3:
- Add Reviewed-by tag from Bin
drivers/usb/host/xhci-dwc3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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)));
--
2.28.0
next prev parent reply other threads:[~2020-08-24 11:04 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-24 11:04 [PATCH v4 0/8] mips/usb: Add Octeon xHCI USB support Stefan Roese
2020-08-24 11:04 ` Stefan Roese [this message]
2020-08-24 11:04 ` [PATCH v4 2/8] usb: xhci: xhci_bulk_tx: Don't "BUG" when comparing addresses Stefan Roese
2020-08-24 11:04 ` [PATCH v4 3/8] usb: xhci: octeon: Add DWC3 glue layer for Octeon Stefan Roese
2020-08-24 11:04 ` [PATCH v4 4/8] mips: octeon: cpu.c: Add table for selective swapping Stefan Roese
2020-08-24 11:04 ` [PATCH v4 5/8] mips: octeon: Add mangle-port.h Stefan Roese
2020-08-24 11:04 ` [PATCH v4 6/8] mips: octeon: cache.c: Flush all pending writes in flush_dcache_range() Stefan Roese
2020-08-24 11:04 ` [PATCH v4 7/8] mips: octeon: Add USB DT nodes Stefan Roese
2020-08-24 11:04 ` [PATCH v4 8/8] mips: octeon: octeon_ebb7304_defconfig: Enable USB support Stefan Roese
2020-09-19 20:03 ` [PATCH v4 0/8] mips/usb: Add Octeon xHCI " Daniel Schwierzeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200824110443.71860-2-sr@denx.de \
--to=sr@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox