mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
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>
This commit is contained in:
parent
6497c66704
commit
158947d276
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue