summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/armv7/omap-common
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2013-08-26 08:54:50 -0500
committerMarek Vasut <marex@denx.de>2013-10-20 23:42:39 +0200
commitd861a333da84dd7ab70e975171159c37f7d06939 (patch)
tree32b1f7efee223c98f73aa78d6d6a9003af32545c /arch/arm/cpu/armv7/omap-common
parent1bd435bc70a03f150900be4ac70a7bc8bfa4b438 (diff)
downloadu-boot-imx-d861a333da84dd7ab70e975171159c37f7d06939.zip
u-boot-imx-d861a333da84dd7ab70e975171159c37f7d06939.tar.gz
u-boot-imx-d861a333da84dd7ab70e975171159c37f7d06939.tar.bz2
ARM: OMAP5: Add registers and defines for USBOTG SS
Add the prcm registers and the bit definitions to enable the USB SS port of the OMAP5 device. Signed-off-by: Dan Murphy <dmurphy@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common')
-rw-r--r--arch/arm/cpu/armv7/omap-common/clocks-common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/clocks-common.c b/arch/arm/cpu/armv7/omap-common/clocks-common.c
index ab0c568..bb77b5c 100644
--- a/arch/arm/cpu/armv7/omap-common/clocks-common.c
+++ b/arch/arm/cpu/armv7/omap-common/clocks-common.c
@@ -339,7 +339,7 @@ void configure_mpu_dpll(void)
debug("MPU DPLL locked\n");
}
-#ifdef CONFIG_USB_EHCI_OMAP
+#if defined(CONFIG_USB_EHCI_OMAP) || defined(CONFIG_USB_XHCI_OMAP)
static void setup_usb_dpll(void)
{
const struct dpll_params *params;
@@ -404,7 +404,7 @@ static void setup_dplls(void)
/* MPU dpll */
configure_mpu_dpll();
-#ifdef CONFIG_USB_EHCI_OMAP
+#if defined(CONFIG_USB_EHCI_OMAP) || defined(CONFIG_USB_XHCI_OMAP)
setup_usb_dpll();
#endif
params = get_ddr_dpll_params(*dplls_data);