summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorBo Shen <voice.shen@atmel.com>2013-04-15 11:24:35 +0800
committerBo Shen <voice.shen@atmel.com>2013-04-18 11:07:44 +0800
commit28d7a5783674c638ba7b4494c848fab34883c215 (patch)
tree786e6160db858dbce65b640d11d1005703bdc9a7 /arch
parent712ec1d124960c4ea1f9a58e66f3a8ca3ee64079 (diff)
ARM: at91: using micro to calculate divisor
Using micro to calculate divisor Add AT91_PMC_USBS_USB_PLLB definition Signed-off-by: Bo Shen <voice.shen@atmel.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/include/asm/arch-at91/at91_pmc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/arch-at91/at91_pmc.h b/arch/arm/include/asm/arch-at91/at91_pmc.h
index ca529778b75..1bc022529bb 100644
--- a/arch/arm/include/asm/arch-at91/at91_pmc.h
+++ b/arch/arm/include/asm/arch-at91/at91_pmc.h
@@ -223,8 +223,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_USBDIV_8 (0x7 << 8) /* USB Clock divided by 8 */
-#define AT91_PMC_USBDIV_10 (0x9 << 8) /* USB Clock divided by 10 */
+#define AT91_PMC_USBS_USB_PLLB (0x1) /* USB Clock Input is PLLB [AT91SAM9N12 only] */
+#define AT91_PMC_USBDIV_(x) (((x - 1) & 0xf) << 8)
#ifdef CONFIG_AT91_LEGACY
#define AT91_PMC_PCKR(n) (AT91_PMC + 0x40 + ((n) * 4)) /* Programmable Clock 0-3 Registers */