diff options
author | Bo Shen <voice.shen@atmel.com> | 2013-10-21 16:13:59 +0800 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-11-04 20:32:35 +0100 |
commit | d9bef0ad2daa2f6f0b635be12518da755ddcbdc1 (patch) | |
tree | 4b19de31dd7964da2c8b9328e7e7892a814a94ae /arch/arm | |
parent | 32e4f6bf2e35e99e1742c005e1ede4e0cf5f066c (diff) | |
download | u-boot-imx-d9bef0ad2daa2f6f0b635be12518da755ddcbdc1.zip u-boot-imx-d9bef0ad2daa2f6f0b635be12518da755ddcbdc1.tar.gz u-boot-imx-d9bef0ad2daa2f6f0b635be12518da755ddcbdc1.tar.bz2 |
arm: atmel: at91sam9n12ek: add usb host support
Add usb host support for at91sam9n12ek board.
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/arch-at91/at91_pmc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-at91/at91_pmc.h b/arch/arm/include/asm/arch-at91/at91_pmc.h index 003920c..7b36f74 100644 --- a/arch/arm/include/asm/arch-at91/at91_pmc.h +++ b/arch/arm/include/asm/arch-at91/at91_pmc.h @@ -233,6 +233,8 @@ typedef struct at91_pmc { #endif #define AT91_PMC_USBS_USB_PLLA (0x0) /* USB Clock Input is PLLA */ #define AT91_PMC_USBS_USB_UPLL (0x1) /* USB Clock Input is UPLL */ +#define AT91_PMC_USBS_USB_PLLB (0x1) /* USB Clock Input is PLLB, AT91SAM9N12 only */ +#define AT91_PMC_USB_DIV_2 (0x1 << 8) /* USB Clock divided by 2 */ #define AT91_PMC_USBDIV_8 (0x7 << 8) /* USB Clock divided by 8 */ #define AT91_PMC_USBDIV_10 (0x9 << 8) /* USB Clock divided by 10 */ |