]> git.ipfire.org Git - people/ms/u-boot.git/blame - cpu/arm926ejs/at91/clock.c
arm: kirkwood: suen3: fixed build warning
[people/ms/u-boot.git] / cpu / arm926ejs / at91 / clock.c
CommitLineData
dc39ae95
JCPV
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>
0cf0b931 16#include <asm/arch/io.h>
dc39ae95
JCPV
17#include <asm/arch/at91_pmc.h>
18#include <asm/arch/clk.h>
dc39ae95
JCPV
19
20static unsigned long cpu_clk_rate_hz;
21static unsigned long main_clk_rate_hz;
22static unsigned long mck_rate_hz;
23static unsigned long plla_rate_hz;
24static unsigned long pllb_rate_hz;
25static u32 at91_pllb_usb_init;
26
27unsigned long get_cpu_clk_rate(void)
28{
29 return cpu_clk_rate_hz;
30}
31
32unsigned long get_main_clk_rate(void)
33{
34 return main_clk_rate_hz;
35}
36
37unsigned long get_mck_clk_rate(void)
38{
39 return mck_rate_hz;
40}
41
42unsigned long get_plla_clk_rate(void)
43{
44 return plla_rate_hz;
45}
46
47unsigned long get_pllb_clk_rate(void)
48{
49 return pllb_rate_hz;
50}
51
52u32 get_pllb_init(void)
53{
54 return at91_pllb_usb_init;
55}
56
57static unsigned long at91_css_to_rate(unsigned long css)
58{
59 switch (css) {
0cf0b931
JS
60 case AT91_PMC_MCKR_CSS_SLOW:
61 return AT91_SLOW_CLOCK;
62 case AT91_PMC_MCKR_CSS_MAIN:
63 return main_clk_rate_hz;
64 case AT91_PMC_MCKR_CSS_PLLA:
65 return plla_rate_hz;
66 case AT91_PMC_MCKR_CSS_PLLB:
67 return pllb_rate_hz;
dc39ae95
JCPV
68 }
69
70 return 0;
71}
72
73#ifdef CONFIG_USB_ATMEL
74static 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;
126fail:
127 return 0;
128}
a1e5f931 129#endif
dc39ae95
JCPV
130
131static u32 at91_pll_rate(u32 freq, u32 reg)
132{
133 unsigned mul, div;
134
135 div = reg & 0xff;
136 mul = (reg >> 16) & 0x7ff;
137 if (div && mul) {
138 freq /= div;
139 freq *= mul + 1;
140 } else
141 freq = 0;
142
143 return freq;
144}
dc39ae95
JCPV
145
146int at91_clock_init(unsigned long main_clock)
147{
148 unsigned freq, mckr;
0cf0b931 149 at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
7c966a8b 150#ifndef CONFIG_SYS_AT91_MAIN_CLOCK
dc39ae95
JCPV
151 unsigned tmp;
152 /*
153 * When the bootloader initialized the main oscillator correctly,
154 * there's no problem using the cycle counter. But if it didn't,
155 * or when using oscillator bypass mode, we must be told the speed
156 * of the main clock.
157 */
158 if (!main_clock) {
159 do {
160 tmp = at91_sys_read(AT91_CKGR_MCFR);
161 } while (!(tmp & AT91_PMC_MAINRDY));
162 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
163 }
164#endif
165 main_clk_rate_hz = main_clock;
166
167 /* report if PLLA is more than mildly overclocked */
0cf0b931 168 plla_rate_hz = at91_pll_rate(main_clock, readl(&pmc->pllar));
dc39ae95
JCPV
169
170#ifdef CONFIG_USB_ATMEL
171 /*
172 * USB clock init: choose 48 MHz PLLB value,
173 * disable 48MHz clock during usb peripheral suspend.
174 *
175 * REVISIT: assumes MCK doesn't derive from PLLB!
176 */
177 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) |
0cf0b931 178 AT91_PMC_PLLBR_USBDIV_2;
dc39ae95
JCPV
179 pllb_rate_hz = at91_pll_rate(main_clock, at91_pllb_usb_init);
180#endif
181
182 /*
183 * MCK and CPU derive from one of those primary clocks.
184 * For now, assume this parentage won't change.
185 */
0cf0b931 186 mckr = readl(&pmc->mckr);
22ee6473
SG
187#if defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45)
188 /* plla divisor by 2 */
189 plla_rate_hz /= (1 << ((mckr & 1 << 12) >> 12));
190#endif
0cf0b931
JS
191 mck_rate_hz = at91_css_to_rate(mckr & AT91_PMC_MCKR_CSS_MASK);
192 freq = mck_rate_hz;
22ee6473 193
0cf0b931 194 freq /= (1 << ((mckr & AT91_PMC_MCKR_PRES_MASK) >> 2)); /* prescale */
dc39ae95 195#if defined(CONFIG_AT91RM9200)
0cf0b931
JS
196 /* mdiv */
197 mck_rate_hz = freq / (1 + ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95 198#elif defined(CONFIG_AT91SAM9G20)
0cf0b931
JS
199 /* mdiv ; (x >> 7) = ((x >> 8) * 2) */
200 mck_rate_hz = (mckr & AT91_PMC_MCKR_MDIV_MASK) ?
201 freq / ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 7) : freq;
202 if (mckr & AT91_PMC_MCKR_MDIV_MASK)
203 freq /= 2; /* processor clock division */
22ee6473 204#elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45)
0cf0b931
JS
205 mck_rate_hz = (mckr & AT91_PMC_MCKR_MDIV_MASK) == AT91SAM9_PMC_MDIV_3
206 ? freq / 3
207 : freq / (1 << ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95 208#else
0cf0b931 209 mck_rate_hz = freq / (1 << ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95
JCPV
210#endif
211 cpu_clk_rate_hz = freq;
212
0cf0b931 213 return 0;
dc39ae95 214}