Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * [origin: Linux kernel linux/arch/arm/mach-at91/clock.c] |
| 3 | * |
| 4 | * Copyright (C) 2005 David Brownell |
| 5 | * Copyright (C) 2005 Ivan Kokshaysky |
| 6 | * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include <config.h> |
| 15 | #include <asm/arch/hardware.h> |
| 16 | #include <asm/arch/at91_pmc.h> |
| 17 | #include <asm/arch/clk.h> |
| 18 | #include <asm/arch/io.h> |
| 19 | |
| 20 | static unsigned long cpu_clk_rate_hz; |
| 21 | static unsigned long main_clk_rate_hz; |
| 22 | static unsigned long mck_rate_hz; |
| 23 | static unsigned long plla_rate_hz; |
| 24 | static unsigned long pllb_rate_hz; |
| 25 | static u32 at91_pllb_usb_init; |
| 26 | |
| 27 | unsigned long get_cpu_clk_rate(void) |
| 28 | { |
| 29 | return cpu_clk_rate_hz; |
| 30 | } |
| 31 | |
| 32 | unsigned long get_main_clk_rate(void) |
| 33 | { |
| 34 | return main_clk_rate_hz; |
| 35 | } |
| 36 | |
| 37 | unsigned long get_mck_clk_rate(void) |
| 38 | { |
| 39 | return mck_rate_hz; |
| 40 | } |
| 41 | |
| 42 | unsigned long get_plla_clk_rate(void) |
| 43 | { |
| 44 | return plla_rate_hz; |
| 45 | } |
| 46 | |
| 47 | unsigned long get_pllb_clk_rate(void) |
| 48 | { |
| 49 | return pllb_rate_hz; |
| 50 | } |
| 51 | |
| 52 | u32 get_pllb_init(void) |
| 53 | { |
| 54 | return at91_pllb_usb_init; |
| 55 | } |
| 56 | |
| 57 | static unsigned long at91_css_to_rate(unsigned long css) |
| 58 | { |
| 59 | switch (css) { |
| 60 | case AT91_PMC_CSS_SLOW: |
| 61 | return AT91_SLOW_CLOCK; |
| 62 | case AT91_PMC_CSS_MAIN: |
| 63 | return main_clk_rate_hz; |
| 64 | case AT91_PMC_CSS_PLLA: |
| 65 | return plla_rate_hz; |
| 66 | case AT91_PMC_CSS_PLLB: |
| 67 | return pllb_rate_hz; |
| 68 | } |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | #ifdef CONFIG_USB_ATMEL |
| 74 | static unsigned at91_pll_calc(unsigned main_freq, unsigned out_freq) |
| 75 | { |
| 76 | unsigned i, div = 0, mul = 0, diff = 1 << 30; |
| 77 | unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00; |
| 78 | |
| 79 | /* PLL output max 240 MHz (or 180 MHz per errata) */ |
| 80 | if (out_freq > 240000000) |
| 81 | goto fail; |
| 82 | |
| 83 | for (i = 1; i < 256; i++) { |
| 84 | int diff1; |
| 85 | unsigned input, mul1; |
| 86 | |
| 87 | /* |
| 88 | * PLL input between 1MHz and 32MHz per spec, but lower |
| 89 | * frequences seem necessary in some cases so allow 100K. |
| 90 | * Warning: some newer products need 2MHz min. |
| 91 | */ |
| 92 | input = main_freq / i; |
| 93 | #if defined(CONFIG_AT91SAM9G20) |
| 94 | if (input < 2000000) |
| 95 | continue; |
| 96 | #endif |
| 97 | if (input < 100000) |
| 98 | continue; |
| 99 | if (input > 32000000) |
| 100 | continue; |
| 101 | |
| 102 | mul1 = out_freq / input; |
| 103 | #if defined(CONFIG_AT91SAM9G20) |
| 104 | if (mul > 63) |
| 105 | continue; |
| 106 | #endif |
| 107 | if (mul1 > 2048) |
| 108 | continue; |
| 109 | if (mul1 < 2) |
| 110 | goto fail; |
| 111 | |
| 112 | diff1 = out_freq - input * mul1; |
| 113 | if (diff1 < 0) |
| 114 | diff1 = -diff1; |
| 115 | if (diff > diff1) { |
| 116 | diff = diff1; |
| 117 | div = i; |
| 118 | mul = mul1; |
| 119 | if (diff == 0) |
| 120 | break; |
| 121 | } |
| 122 | } |
| 123 | if (i == 256 && diff > (out_freq >> 5)) |
| 124 | goto fail; |
| 125 | return ret | ((mul - 1) << 16) | div; |
| 126 | fail: |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static u32 at91_pll_rate(u32 freq, u32 reg) |
| 131 | { |
| 132 | unsigned mul, div; |
| 133 | |
| 134 | div = reg & 0xff; |
| 135 | mul = (reg >> 16) & 0x7ff; |
| 136 | if (div && mul) { |
| 137 | freq /= div; |
| 138 | freq *= mul + 1; |
| 139 | } else |
| 140 | freq = 0; |
| 141 | |
| 142 | return freq; |
| 143 | } |
| 144 | #endif |
| 145 | |
| 146 | int at91_clock_init(unsigned long main_clock) |
| 147 | { |
| 148 | unsigned freq, mckr; |
| 149 | #ifndef AT91_MAIN_CLOCK |
| 150 | unsigned tmp; |
| 151 | /* |
| 152 | * When the bootloader initialized the main oscillator correctly, |
| 153 | * there's no problem using the cycle counter. But if it didn't, |
| 154 | * or when using oscillator bypass mode, we must be told the speed |
| 155 | * of the main clock. |
| 156 | */ |
| 157 | if (!main_clock) { |
| 158 | do { |
| 159 | tmp = at91_sys_read(AT91_CKGR_MCFR); |
| 160 | } while (!(tmp & AT91_PMC_MAINRDY)); |
| 161 | main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16); |
| 162 | } |
| 163 | #endif |
| 164 | main_clk_rate_hz = main_clock; |
| 165 | |
| 166 | /* report if PLLA is more than mildly overclocked */ |
| 167 | plla_rate_hz = at91_pll_rate(main_clock, at91_sys_read(AT91_CKGR_PLLAR)); |
| 168 | |
| 169 | #ifdef CONFIG_USB_ATMEL |
| 170 | /* |
| 171 | * USB clock init: choose 48 MHz PLLB value, |
| 172 | * disable 48MHz clock during usb peripheral suspend. |
| 173 | * |
| 174 | * REVISIT: assumes MCK doesn't derive from PLLB! |
| 175 | */ |
| 176 | at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | |
| 177 | AT91_PMC_USB96M; |
| 178 | pllb_rate_hz = at91_pll_rate(main_clock, at91_pllb_usb_init); |
| 179 | #endif |
| 180 | |
| 181 | /* |
| 182 | * MCK and CPU derive from one of those primary clocks. |
| 183 | * For now, assume this parentage won't change. |
| 184 | */ |
| 185 | mckr = at91_sys_read(AT91_PMC_MCKR); |
| 186 | freq = mck_rate_hz = at91_css_to_rate(mckr & AT91_PMC_CSS); |
| 187 | freq /= (1 << ((mckr & AT91_PMC_PRES) >> 2)); /* prescale */ |
| 188 | #if defined(CONFIG_AT91RM9200) |
| 189 | mck_rate_hz = freq / (1 + ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */ |
| 190 | #elif defined(CONFIG_AT91SAM9G20) |
| 191 | mck_rate_hz = (mckr & AT91_PMC_MDIV) ? |
| 192 | freq / ((mckr & AT91_PMC_MDIV) >> 7) : freq; /* mdiv ; (x >> 7) = ((x >> 8) * 2) */ |
| 193 | if (mckr & AT91_PMC_PDIV) |
| 194 | freq /= 2; /* processor clock division */ |
| 195 | #else |
| 196 | mck_rate_hz = freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */ |
| 197 | #endif |
| 198 | cpu_clk_rate_hz = freq; |
| 199 | |
| 200 | return 0; |
| 201 | } |
| 202 | |