summaryrefslogtreecommitdiff
path: root/drivers/usb/host/ehci-marvell.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2015-07-22 16:26:13 (GMT)
committerLuka Perkov <luka.perkov@sartura.hr>2015-08-17 16:49:07 (GMT)
commitdee40d26d395e6f589d3c11af20c31a154d98d41 (patch)
tree55b32a67e331be3e3aae2a1b18fee7970650abc0 /drivers/usb/host/ehci-marvell.c
parent2a0b7dc3b6ce4e4994ef71dcd6fbb31000c2ae47 (diff)
downloadu-boot-dee40d26d395e6f589d3c11af20c31a154d98d41.tar.xz
arm: mvebu: Enable USB EHCI support on Armada XP
This patch enables the USB EHCI support for the Marvell Armada XP (AXP) SoCs. In compatism to the Armada 38x (A38x), the AXP needs to configure the USB PLL and the USB PHY's specifically in U-Boot. The A38x has done this already in the bin_hdr (SPL U-Boot). Without this, accessing the controller registers in U-Boot or Linux will hang the CPU. Additionally, the AXP uses a different USB EHCI base address. This patch also takes care of this by runtime SoC detection in the Marvell EHCI driver. Signed-off-by: Stefan Roese <sr@denx.de> Signed-off-by: Anton Schubert <anton.schubert@gmx.de> Cc: Marek Vasut <marex@denx.de> Cc: Luka Perkov <luka.perkov@sartura.hr>
Diffstat (limited to 'drivers/usb/host/ehci-marvell.c')
-rw-r--r--drivers/usb/host/ehci-marvell.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-marvell.c b/drivers/usb/host/ehci-marvell.c
index 3a9f60f..fda812e 100644
--- a/drivers/usb/host/ehci-marvell.c
+++ b/drivers/usb/host/ehci-marvell.c
@@ -30,7 +30,14 @@ DECLARE_GLOBAL_DATA_PTR;
*/
#ifdef CONFIG_ARMADA_XP
-#define MVUSB0_BASE MVEBU_USB20_BASE
+/*
+ * Armada XP and Armada 38x have different base addresses for
+ * the USB 2.0 EHCI host controller. So we need to provide
+ * a mechnism to support both here.
+ */
+#define MVUSB0_BASE \
+ (mvebu_soc_family() == MVEBU_SOC_A38X ? \
+ MVEBU_USB20_BASE : MVEBU_AXP_USB_BASE)
/*
* Once all the older Marvell SoC's (Orion, Kirkwood) are converted