]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/arm926ejs/at91/clock.c
at91rm9200.h: fix ATMEL_PMX_AA_TXD2
[people/ms/u-boot.git] / arch / arm / 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
5dca710a 14#include <common.h>
86592f60 15#include <asm/io.h>
dc39ae95
JCPV
16#include <asm/arch/hardware.h>
17#include <asm/arch/at91_pmc.h>
18#include <asm/arch/clk.h>
dc39ae95 19
5dca710a
RM
20#if !defined(CONFIG_AT91FAMILY)
21# error You need to define CONFIG_AT91FAMILY in your board config!
22#endif
23
24DECLARE_GLOBAL_DATA_PTR;
dc39ae95
JCPV
25
26unsigned long get_cpu_clk_rate(void)
27{
5dca710a 28 return gd->cpu_clk_rate_hz;
dc39ae95
JCPV
29}
30
31unsigned long get_main_clk_rate(void)
32{
5dca710a 33 return gd->main_clk_rate_hz;
dc39ae95
JCPV
34}
35
36unsigned long get_mck_clk_rate(void)
37{
5dca710a 38 return gd->mck_rate_hz;
dc39ae95
JCPV
39}
40
41unsigned long get_plla_clk_rate(void)
42{
5dca710a 43 return gd->plla_rate_hz;
dc39ae95
JCPV
44}
45
46unsigned long get_pllb_clk_rate(void)
47{
5dca710a 48 return gd->pllb_rate_hz;
dc39ae95
JCPV
49}
50
51u32 get_pllb_init(void)
52{
5dca710a 53 return gd->at91_pllb_usb_init;
dc39ae95
JCPV
54}
55
56static unsigned long at91_css_to_rate(unsigned long css)
57{
58 switch (css) {
0cf0b931 59 case AT91_PMC_MCKR_CSS_SLOW:
9f3fe90f 60 return CONFIG_SYS_AT91_SLOW_CLOCK;
0cf0b931 61 case AT91_PMC_MCKR_CSS_MAIN:
5dca710a 62 return gd->main_clk_rate_hz;
0cf0b931 63 case AT91_PMC_MCKR_CSS_PLLA:
5dca710a 64 return gd->plla_rate_hz;
0cf0b931 65 case AT91_PMC_MCKR_CSS_PLLB:
5dca710a 66 return gd->pllb_rate_hz;
dc39ae95
JCPV
67 }
68
69 return 0;
70}
71
72#ifdef CONFIG_USB_ATMEL
73static unsigned at91_pll_calc(unsigned main_freq, unsigned out_freq)
74{
75 unsigned i, div = 0, mul = 0, diff = 1 << 30;
76 unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00;
77
78 /* PLL output max 240 MHz (or 180 MHz per errata) */
79 if (out_freq > 240000000)
80 goto fail;
81
82 for (i = 1; i < 256; i++) {
83 int diff1;
84 unsigned input, mul1;
85
86 /*
87 * PLL input between 1MHz and 32MHz per spec, but lower
88 * frequences seem necessary in some cases so allow 100K.
89 * Warning: some newer products need 2MHz min.
90 */
91 input = main_freq / i;
92#if defined(CONFIG_AT91SAM9G20)
93 if (input < 2000000)
94 continue;
95#endif
96 if (input < 100000)
97 continue;
98 if (input > 32000000)
99 continue;
100
101 mul1 = out_freq / input;
102#if defined(CONFIG_AT91SAM9G20)
103 if (mul > 63)
104 continue;
105#endif
106 if (mul1 > 2048)
107 continue;
108 if (mul1 < 2)
109 goto fail;
110
111 diff1 = out_freq - input * mul1;
112 if (diff1 < 0)
113 diff1 = -diff1;
114 if (diff > diff1) {
115 diff = diff1;
116 div = i;
117 mul = mul1;
118 if (diff == 0)
119 break;
120 }
121 }
122 if (i == 256 && diff > (out_freq >> 5))
123 goto fail;
124 return ret | ((mul - 1) << 16) | div;
125fail:
126 return 0;
127}
a1e5f931 128#endif
dc39ae95
JCPV
129
130static 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}
dc39ae95
JCPV
144
145int at91_clock_init(unsigned long main_clock)
146{
147 unsigned freq, mckr;
9f3fe90f 148 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
7c966a8b 149#ifndef CONFIG_SYS_AT91_MAIN_CLOCK
dc39ae95
JCPV
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 {
7cedb298
JS
159 tmp = readl(&pmc->mcfr);
160 } while (!(tmp & AT91_PMC_MCFR_MAINRDY));
161 tmp &= AT91_PMC_MCFR_MAINF_MASK;
9f3fe90f 162 main_clock = tmp * (CONFIG_SYS_AT91_SLOW_CLOCK / 16);
dc39ae95
JCPV
163 }
164#endif
5dca710a 165 gd->main_clk_rate_hz = main_clock;
dc39ae95
JCPV
166
167 /* report if PLLA is more than mildly overclocked */
5dca710a 168 gd->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 */
5dca710a 177 gd->at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) |
0cf0b931 178 AT91_PMC_PLLBR_USBDIV_2;
5dca710a 179 gd->pllb_rate_hz = at91_pll_rate(main_clock, gd->at91_pllb_usb_init);
dc39ae95
JCPV
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 */
5dca710a 189 gd->plla_rate_hz /= (1 << ((mckr & 1 << 12) >> 12));
22ee6473 190#endif
5dca710a
RM
191 gd->mck_rate_hz = at91_css_to_rate(mckr & AT91_PMC_MCKR_CSS_MASK);
192 freq = gd->mck_rate_hz;
22ee6473 193
0cf0b931 194 freq /= (1 << ((mckr & AT91_PMC_MCKR_PRES_MASK) >> 2)); /* prescale */
dc39ae95 195#if defined(CONFIG_AT91RM9200)
0cf0b931 196 /* mdiv */
5dca710a 197 gd->mck_rate_hz = freq / (1 + ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95 198#elif defined(CONFIG_AT91SAM9G20)
0cf0b931 199 /* mdiv ; (x >> 7) = ((x >> 8) * 2) */
5dca710a 200 gd->mck_rate_hz = (mckr & AT91_PMC_MCKR_MDIV_MASK) ?
0cf0b931
JS
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)
5dca710a 205 gd->mck_rate_hz = (mckr & AT91_PMC_MCKR_MDIV_MASK) ==
e99056e3 206 (AT91_PMC_MCKR_MDIV_2 | AT91_PMC_MCKR_MDIV_4)
0cf0b931
JS
207 ? freq / 3
208 : freq / (1 << ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95 209#else
5dca710a 210 gd->mck_rate_hz = freq / (1 << ((mckr & AT91_PMC_MCKR_MDIV_MASK) >> 8));
dc39ae95 211#endif
5dca710a 212 gd->cpu_clk_rate_hz = freq;
dc39ae95 213
0cf0b931 214 return 0;
dc39ae95 215}