summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBo Shen <voice.shen@atmel.com>2013-04-17 00:09:51 +0000
committerMarek Vasut <marex@denx.de>2013-05-05 23:54:22 +0200
commit158947d276c96a49e0a99a97a61605be1bb5eb7a (patch)
tree29e89498636255db5ec445d13b4e50ab07aa455b /drivers
parent6497c66704d03956e7ea49b54fcaa38740736416 (diff)
downloadtalos-obmc-uboot-158947d276c96a49e0a99a97a61605be1bb5eb7a.tar.gz
talos-obmc-uboot-158947d276c96a49e0a99a97a61605be1bb5eb7a.zip
USB: ohci-at91: make OHCI work on at91sam9g10 SoC
The at91sam9g10 need to configure HCK0 to make OHCI work Signed-off-by: Bo Shen <voice.shen@atmel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/host/ohci-at91.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
index efd711d489..aa5cf57aed 100644
--- a/drivers/usb/host/ohci-at91.c
+++ b/drivers/usb/host/ohci-at91.c
@@ -55,7 +55,7 @@ int usb_cpu_init(void)
/* Enable USB host clock. */
writel(1 << ATMEL_ID_UHP, &pmc->pcer);
-#ifdef CONFIG_AT91SAM9261
+#if defined(CONFIG_AT91SAM9261) || defined(CONFIG_AT91SAM9G10)
writel(ATMEL_PMC_UHP | AT91_PMC_HCK0, &pmc->scer);
#else
writel(ATMEL_PMC_UHP, &pmc->scer);
@@ -70,7 +70,7 @@ int usb_cpu_stop(void)
/* Disable USB host clock. */
writel(1 << ATMEL_ID_UHP, &pmc->pcdr);
-#ifdef CONFIG_AT91SAM9261
+#if defined(CONFIG_AT91SAM9261) || defined(CONFIG_AT91SAM9G10)
writel(ATMEL_PMC_UHP | AT91_PMC_HCK0, &pmc->scdr);
#else
writel(ATMEL_PMC_UHP, &pmc->scdr);
OpenPOWER on IntegriCloud