blob: b87772cd3d322d6dc70e56c4fb8649437e72782f [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * linux/arch/arm/mach-at91/clock.c
SAN People73a59c12006-01-09 17:05:41 +00003 *
4 * Copyright (C) 2005 David Brownell
5 * Copyright (C) 2005 Ivan Kokshaysky
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/fs.h>
17#include <linux/debugfs.h>
18#include <linux/seq_file.h>
19#include <linux/list.h>
20#include <linux/errno.h>
21#include <linux/err.h>
22#include <linux/spinlock.h>
23#include <linux/delay.h>
24#include <linux/clk.h>
25
SAN People73a59c12006-01-09 17:05:41 +000026#include <asm/io.h>
27#include <asm/mach-types.h>
28
Russell Kingea75ee92006-06-20 19:53:16 +010029#include <asm/hardware.h>
Andrew Victor55d8bae2006-11-30 17:16:43 +010030#include <asm/arch/at91_pmc.h>
Andrew Victord481f862006-12-01 11:27:31 +010031#include <asm/arch/cpu.h>
SAN People73a59c12006-01-09 17:05:41 +000032
Andrew Victor2eeaaa22006-09-27 10:50:59 +010033#include "clock.h"
SAN People73a59c12006-01-09 17:05:41 +000034
Andrew Victor55c20c02006-06-20 19:31:39 +010035
SAN People73a59c12006-01-09 17:05:41 +000036/*
37 * There's a lot more which can be done with clocks, including cpufreq
38 * integration, slow clock mode support (for system suspend), letting
39 * PLLB be used at other rates (on boards that don't need USB), etc.
40 */
41
Andrew Victor2eeaaa22006-09-27 10:50:59 +010042#define clk_is_primary(x) ((x)->type & CLK_TYPE_PRIMARY)
43#define clk_is_programmable(x) ((x)->type & CLK_TYPE_PROGRAMMABLE)
44#define clk_is_peripheral(x) ((x)->type & CLK_TYPE_PERIPHERAL)
Andrew Victord481f862006-12-01 11:27:31 +010045#define clk_is_sys(x) ((x)->type & CLK_TYPE_SYSTEM)
SAN People73a59c12006-01-09 17:05:41 +000046
Andrew Victor2eeaaa22006-09-27 10:50:59 +010047
48static LIST_HEAD(clocks);
49static DEFINE_SPINLOCK(clk_lock);
50
51static u32 at91_pllb_usb_init;
SAN People73a59c12006-01-09 17:05:41 +000052
53/*
54 * Four primary clock sources: two crystal oscillators (32K, main), and
55 * two PLLs. PLLA usually runs the master clock; and PLLB must run at
56 * 48 MHz (unless no USB function clocks are needed). The main clock and
57 * both PLLs are turned off to run in "slow clock mode" (system suspend).
58 */
59static struct clk clk32k = {
60 .name = "clk32k",
61 .rate_hz = AT91_SLOW_CLOCK,
62 .users = 1, /* always on */
63 .id = 0,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010064 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +000065};
66static struct clk main_clk = {
67 .name = "main",
Andrew Victor91f8ed82006-06-19 13:20:23 +010068 .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +000069 .id = 1,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010070 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +000071};
72static struct clk plla = {
73 .name = "plla",
74 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +010075 .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +000076 .id = 2,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010077 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +000078};
79
80static void pllb_mode(struct clk *clk, int is_on)
81{
82 u32 value;
83
84 if (is_on) {
85 is_on = AT91_PMC_LOCKB;
86 value = at91_pllb_usb_init;
87 } else
88 value = 0;
89
Andrew Victor2eeaaa22006-09-27 10:50:59 +010090 // REVISIT: Add work-around for AT91RM9200 Errata #26 ?
SAN People73a59c12006-01-09 17:05:41 +000091 at91_sys_write(AT91_CKGR_PLLBR, value);
92
93 do {
94 cpu_relax();
95 } while ((at91_sys_read(AT91_PMC_SR) & AT91_PMC_LOCKB) != is_on);
96}
97
98static struct clk pllb = {
99 .name = "pllb",
100 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100101 .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000102 .mode = pllb_mode,
103 .id = 3,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100104 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000105};
106
107static void pmc_sys_mode(struct clk *clk, int is_on)
108{
109 if (is_on)
110 at91_sys_write(AT91_PMC_SCER, clk->pmc_mask);
111 else
112 at91_sys_write(AT91_PMC_SCDR, clk->pmc_mask);
113}
114
Stelian Pop53d71682008-04-05 21:14:03 +0100115static void pmc_uckr_mode(struct clk *clk, int is_on)
116{
117 unsigned int uckr = at91_sys_read(AT91_CKGR_UCKR);
118
119 if (is_on) {
120 is_on = AT91_PMC_LOCKU;
121 at91_sys_write(AT91_CKGR_UCKR, uckr | clk->pmc_mask);
122 } else
123 at91_sys_write(AT91_CKGR_UCKR, uckr & ~(clk->pmc_mask));
124
125 do {
126 cpu_relax();
127 } while ((at91_sys_read(AT91_PMC_SR) & AT91_PMC_LOCKU) != is_on);
128}
129
SAN People73a59c12006-01-09 17:05:41 +0000130/* USB function clocks (PLLB must be 48 MHz) */
131static struct clk udpck = {
132 .name = "udpck",
133 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000134 .mode = pmc_sys_mode,
135};
Stelian Pop53d71682008-04-05 21:14:03 +0100136static struct clk utmi_clk = {
137 .name = "utmi_clk",
138 .parent = &main_clk,
139 .pmc_mask = AT91_PMC_UPLLEN, /* in CKGR_UCKR */
140 .mode = pmc_uckr_mode,
141 .type = CLK_TYPE_PLL,
142};
SAN People73a59c12006-01-09 17:05:41 +0000143static struct clk uhpck = {
144 .name = "uhpck",
145 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000146 .mode = pmc_sys_mode,
147};
148
SAN People73a59c12006-01-09 17:05:41 +0000149
150/*
151 * The master clock is divided from the CPU clock (by 1-4). It's used for
152 * memory, interfaces to on-chip peripherals, the AIC, and sometimes more
153 * (e.g baud rate generation). It's sourced from one of the primary clocks.
154 */
155static struct clk mck = {
156 .name = "mck",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100157 .pmc_mask = AT91_PMC_MCKRDY, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000158};
159
160static void pmc_periph_mode(struct clk *clk, int is_on)
161{
162 if (is_on)
163 at91_sys_write(AT91_PMC_PCER, clk->pmc_mask);
164 else
165 at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask);
166}
167
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100168static struct clk __init *at91_css_to_clk(unsigned long css)
169{
170 switch (css) {
171 case AT91_PMC_CSS_SLOW:
172 return &clk32k;
173 case AT91_PMC_CSS_MAIN:
174 return &main_clk;
175 case AT91_PMC_CSS_PLLA:
176 return &plla;
177 case AT91_PMC_CSS_PLLB:
178 return &pllb;
179 }
SAN People73a59c12006-01-09 17:05:41 +0000180
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100181 return NULL;
182}
SAN People73a59c12006-01-09 17:05:41 +0000183
Andrew Victor91f8ed82006-06-19 13:20:23 +0100184/*
185 * Associate a particular clock with a function (eg, "uart") and device.
186 * The drivers can then request the same 'function' with several different
187 * devices and not care about which clock name to use.
188 */
189void __init at91_clock_associate(const char *id, struct device *dev, const char *func)
190{
191 struct clk *clk = clk_get(NULL, id);
192
193 if (!dev || !clk || !IS_ERR(clk_get(dev, func)))
194 return;
195
196 clk->function = func;
197 clk->dev = dev;
198}
199
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100200/* clocks cannot be de-registered no refcounting necessary */
SAN People73a59c12006-01-09 17:05:41 +0000201struct clk *clk_get(struct device *dev, const char *id)
202{
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100203 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000204
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100205 list_for_each_entry(clk, &clocks, node) {
Andrew Victor91f8ed82006-06-19 13:20:23 +0100206 if (strcmp(id, clk->name) == 0)
207 return clk;
208 if (clk->function && (dev == clk->dev) && strcmp(id, clk->function) == 0)
209 return clk;
SAN People73a59c12006-01-09 17:05:41 +0000210 }
211
212 return ERR_PTR(-ENOENT);
213}
214EXPORT_SYMBOL(clk_get);
215
216void clk_put(struct clk *clk)
217{
218}
219EXPORT_SYMBOL(clk_put);
220
221static void __clk_enable(struct clk *clk)
222{
223 if (clk->parent)
224 __clk_enable(clk->parent);
225 if (clk->users++ == 0 && clk->mode)
226 clk->mode(clk, 1);
227}
228
229int clk_enable(struct clk *clk)
230{
231 unsigned long flags;
232
233 spin_lock_irqsave(&clk_lock, flags);
234 __clk_enable(clk);
235 spin_unlock_irqrestore(&clk_lock, flags);
236 return 0;
237}
238EXPORT_SYMBOL(clk_enable);
239
240static void __clk_disable(struct clk *clk)
241{
242 BUG_ON(clk->users == 0);
243 if (--clk->users == 0 && clk->mode)
244 clk->mode(clk, 0);
245 if (clk->parent)
246 __clk_disable(clk->parent);
247}
248
249void clk_disable(struct clk *clk)
250{
251 unsigned long flags;
252
253 spin_lock_irqsave(&clk_lock, flags);
254 __clk_disable(clk);
255 spin_unlock_irqrestore(&clk_lock, flags);
256}
257EXPORT_SYMBOL(clk_disable);
258
259unsigned long clk_get_rate(struct clk *clk)
260{
261 unsigned long flags;
262 unsigned long rate;
263
264 spin_lock_irqsave(&clk_lock, flags);
265 for (;;) {
266 rate = clk->rate_hz;
267 if (rate || !clk->parent)
268 break;
269 clk = clk->parent;
270 }
271 spin_unlock_irqrestore(&clk_lock, flags);
272 return rate;
273}
274EXPORT_SYMBOL(clk_get_rate);
275
276/*------------------------------------------------------------------------*/
277
278#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
279
280/*
281 * For now, only the programmable clocks support reparenting (MCK could
282 * do this too, with care) or rate changing (the PLLs could do this too,
283 * ditto MCK but that's more for cpufreq). Drivers may reparent to get
284 * a better rate match; we don't.
285 */
286
287long clk_round_rate(struct clk *clk, unsigned long rate)
288{
289 unsigned long flags;
290 unsigned prescale;
291 unsigned long actual;
292
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100293 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000294 return -EINVAL;
295 spin_lock_irqsave(&clk_lock, flags);
296
297 actual = clk->parent->rate_hz;
298 for (prescale = 0; prescale < 7; prescale++) {
299 if (actual && actual <= rate)
300 break;
301 actual >>= 1;
302 }
303
304 spin_unlock_irqrestore(&clk_lock, flags);
305 return (prescale < 7) ? actual : -ENOENT;
306}
307EXPORT_SYMBOL(clk_round_rate);
308
309int clk_set_rate(struct clk *clk, unsigned long rate)
310{
311 unsigned long flags;
312 unsigned prescale;
313 unsigned long actual;
314
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100315 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000316 return -EINVAL;
317 if (clk->users)
318 return -EBUSY;
319 spin_lock_irqsave(&clk_lock, flags);
320
321 actual = clk->parent->rate_hz;
322 for (prescale = 0; prescale < 7; prescale++) {
323 if (actual && actual <= rate) {
324 u32 pckr;
325
326 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
Andrew Victor69b648a2006-03-22 20:14:14 +0000327 pckr &= AT91_PMC_CSS_PLLB; /* clock selection */
SAN People73a59c12006-01-09 17:05:41 +0000328 pckr |= prescale << 2;
329 at91_sys_write(AT91_PMC_PCKR(clk->id), pckr);
330 clk->rate_hz = actual;
331 break;
332 }
333 actual >>= 1;
334 }
335
336 spin_unlock_irqrestore(&clk_lock, flags);
337 return (prescale < 7) ? actual : -ENOENT;
338}
339EXPORT_SYMBOL(clk_set_rate);
340
341struct clk *clk_get_parent(struct clk *clk)
342{
343 return clk->parent;
344}
345EXPORT_SYMBOL(clk_get_parent);
346
347int clk_set_parent(struct clk *clk, struct clk *parent)
348{
349 unsigned long flags;
350
351 if (clk->users)
352 return -EBUSY;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100353 if (!clk_is_primary(parent) || !clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000354 return -EINVAL;
355 spin_lock_irqsave(&clk_lock, flags);
356
357 clk->rate_hz = parent->rate_hz;
358 clk->parent = parent;
359 at91_sys_write(AT91_PMC_PCKR(clk->id), parent->id);
360
361 spin_unlock_irqrestore(&clk_lock, flags);
362 return 0;
363}
364EXPORT_SYMBOL(clk_set_parent);
365
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100366/* establish PCK0..PCK3 parentage and rate */
David Brownell72e7ae82008-02-06 22:03:42 +0100367static void __init init_programmable_clock(struct clk *clk)
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100368{
369 struct clk *parent;
370 u32 pckr;
371
372 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
373 parent = at91_css_to_clk(pckr & AT91_PMC_CSS);
374 clk->parent = parent;
Andrew Victora95c7292007-11-19 11:52:09 +0100375 clk->rate_hz = parent->rate_hz / (1 << ((pckr & AT91_PMC_PRES) >> 2));
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100376}
377
SAN People73a59c12006-01-09 17:05:41 +0000378#endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */
379
380/*------------------------------------------------------------------------*/
381
382#ifdef CONFIG_DEBUG_FS
383
384static int at91_clk_show(struct seq_file *s, void *unused)
385{
Stelian Pop53d71682008-04-05 21:14:03 +0100386 u32 scsr, pcsr, uckr = 0, sr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100387 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000388
389 seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR));
390 seq_printf(s, "PCSR = %8x\n", pcsr = at91_sys_read(AT91_PMC_PCSR));
SAN People73a59c12006-01-09 17:05:41 +0000391 seq_printf(s, "MOR = %8x\n", at91_sys_read(AT91_CKGR_MOR));
392 seq_printf(s, "MCFR = %8x\n", at91_sys_read(AT91_CKGR_MCFR));
393 seq_printf(s, "PLLA = %8x\n", at91_sys_read(AT91_CKGR_PLLAR));
394 seq_printf(s, "PLLB = %8x\n", at91_sys_read(AT91_CKGR_PLLBR));
Stelian Pop53d71682008-04-05 21:14:03 +0100395 if (cpu_is_at91cap9())
396 seq_printf(s, "UCKR = %8x\n", uckr = at91_sys_read(AT91_CKGR_UCKR));
SAN People73a59c12006-01-09 17:05:41 +0000397 seq_printf(s, "MCKR = %8x\n", at91_sys_read(AT91_PMC_MCKR));
SAN People73a59c12006-01-09 17:05:41 +0000398 seq_printf(s, "SR = %8x\n", sr = at91_sys_read(AT91_PMC_SR));
399
400 seq_printf(s, "\n");
401
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100402 list_for_each_entry(clk, &clocks, node) {
403 char *state;
SAN People73a59c12006-01-09 17:05:41 +0000404
405 if (clk->mode == pmc_sys_mode)
406 state = (scsr & clk->pmc_mask) ? "on" : "off";
407 else if (clk->mode == pmc_periph_mode)
408 state = (pcsr & clk->pmc_mask) ? "on" : "off";
Stelian Pop53d71682008-04-05 21:14:03 +0100409 else if (clk->mode == pmc_uckr_mode)
410 state = (uckr & clk->pmc_mask) ? "on" : "off";
SAN People73a59c12006-01-09 17:05:41 +0000411 else if (clk->pmc_mask)
412 state = (sr & clk->pmc_mask) ? "on" : "off";
413 else if (clk == &clk32k || clk == &main_clk)
414 state = "on";
415 else
416 state = "";
417
Andrew Victor69b648a2006-03-22 20:14:14 +0000418 seq_printf(s, "%-10s users=%2d %-3s %9ld Hz %s\n",
SAN People73a59c12006-01-09 17:05:41 +0000419 clk->name, clk->users, state, clk_get_rate(clk),
420 clk->parent ? clk->parent->name : "");
421 }
422 return 0;
423}
424
425static int at91_clk_open(struct inode *inode, struct file *file)
426{
427 return single_open(file, at91_clk_show, NULL);
428}
429
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800430static const struct file_operations at91_clk_operations = {
SAN People73a59c12006-01-09 17:05:41 +0000431 .open = at91_clk_open,
432 .read = seq_read,
433 .llseek = seq_lseek,
434 .release = single_release,
435};
436
437static int __init at91_clk_debugfs_init(void)
438{
439 /* /sys/kernel/debug/at91_clk */
440 (void) debugfs_create_file("at91_clk", S_IFREG | S_IRUGO, NULL, NULL, &at91_clk_operations);
441
442 return 0;
443}
444postcore_initcall(at91_clk_debugfs_init);
445
446#endif
447
448/*------------------------------------------------------------------------*/
449
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100450/* Register a new clock */
451int __init clk_register(struct clk *clk)
452{
453 if (clk_is_peripheral(clk)) {
454 clk->parent = &mck;
455 clk->mode = pmc_periph_mode;
456 list_add_tail(&clk->node, &clocks);
457 }
Andrew Victord481f862006-12-01 11:27:31 +0100458 else if (clk_is_sys(clk)) {
459 clk->parent = &mck;
460 clk->mode = pmc_sys_mode;
461
462 list_add_tail(&clk->node, &clocks);
463 }
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100464#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
465 else if (clk_is_programmable(clk)) {
466 clk->mode = pmc_sys_mode;
467 init_programmable_clock(clk);
468 list_add_tail(&clk->node, &clocks);
469 }
470#endif
471
472 return 0;
473}
474
475
476/*------------------------------------------------------------------------*/
477
SAN People73a59c12006-01-09 17:05:41 +0000478static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg)
479{
480 unsigned mul, div;
481
482 div = reg & 0xff;
483 mul = (reg >> 16) & 0x7ff;
484 if (div && mul) {
485 freq /= div;
486 freq *= mul + 1;
487 } else
488 freq = 0;
Andrew Victor69b648a2006-03-22 20:14:14 +0000489
SAN People73a59c12006-01-09 17:05:41 +0000490 return freq;
491}
492
Andrew Victor69b648a2006-03-22 20:14:14 +0000493static u32 __init at91_usb_rate(struct clk *pll, u32 freq, u32 reg)
494{
495 if (pll == &pllb && (reg & AT91_PMC_USB96M))
496 return freq / 2;
497 else
498 return freq;
499}
500
SAN People73a59c12006-01-09 17:05:41 +0000501static unsigned __init at91_pll_calc(unsigned main_freq, unsigned out_freq)
502{
503 unsigned i, div = 0, mul = 0, diff = 1 << 30;
504 unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00;
505
506 /* PLL output max 240 MHz (or 180 MHz per errata) */
507 if (out_freq > 240000000)
508 goto fail;
509
510 for (i = 1; i < 256; i++) {
511 int diff1;
512 unsigned input, mul1;
513
514 /*
515 * PLL input between 1MHz and 32MHz per spec, but lower
516 * frequences seem necessary in some cases so allow 100K.
517 */
518 input = main_freq / i;
519 if (input < 100000)
520 continue;
521 if (input > 32000000)
522 continue;
523
524 mul1 = out_freq / input;
525 if (mul1 > 2048)
526 continue;
527 if (mul1 < 2)
528 goto fail;
529
530 diff1 = out_freq - input * mul1;
531 if (diff1 < 0)
532 diff1 = -diff1;
533 if (diff > diff1) {
534 diff = diff1;
535 div = i;
536 mul = mul1;
537 if (diff == 0)
538 break;
539 }
540 }
541 if (i == 256 && diff > (out_freq >> 5))
542 goto fail;
543 return ret | ((mul - 1) << 16) | div;
544fail:
545 return 0;
546}
547
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100548static struct clk *const standard_pmc_clocks[] __initdata = {
549 /* four primary clocks */
550 &clk32k,
551 &main_clk,
552 &plla,
553 &pllb,
554
555 /* PLLB children (USB) */
556 &udpck,
557 &uhpck,
558
559 /* MCK */
560 &mck
561};
562
SAN People73a59c12006-01-09 17:05:41 +0000563int __init at91_clock_init(unsigned long main_clock)
564{
565 unsigned tmp, freq, mckr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100566 int i;
SAN People73a59c12006-01-09 17:05:41 +0000567
568 /*
569 * When the bootloader initialized the main oscillator correctly,
570 * there's no problem using the cycle counter. But if it didn't,
571 * or when using oscillator bypass mode, we must be told the speed
572 * of the main clock.
573 */
574 if (!main_clock) {
575 do {
576 tmp = at91_sys_read(AT91_CKGR_MCFR);
Andrew Victor69b648a2006-03-22 20:14:14 +0000577 } while (!(tmp & AT91_PMC_MAINRDY));
578 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
SAN People73a59c12006-01-09 17:05:41 +0000579 }
580 main_clk.rate_hz = main_clock;
581
582 /* report if PLLA is more than mildly overclocked */
583 plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_sys_read(AT91_CKGR_PLLAR));
584 if (plla.rate_hz > 209000000)
585 pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000);
586
587 /*
Andrew Victorc9b75d12007-02-08 17:36:34 +0100588 * USB clock init: choose 48 MHz PLLB value,
SAN People73a59c12006-01-09 17:05:41 +0000589 * disable 48MHz clock during usb peripheral suspend.
590 *
591 * REVISIT: assumes MCK doesn't derive from PLLB!
592 */
Andrew Victor69b648a2006-03-22 20:14:14 +0000593 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | AT91_PMC_USB96M;
SAN People73a59c12006-01-09 17:05:41 +0000594 pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init);
Andrew Victord481f862006-12-01 11:27:31 +0100595 if (cpu_is_at91rm9200()) {
596 uhpck.pmc_mask = AT91RM9200_PMC_UHP;
597 udpck.pmc_mask = AT91RM9200_PMC_UDP;
Andrew Victord481f862006-12-01 11:27:31 +0100598 at91_sys_write(AT91_PMC_SCER, AT91RM9200_PMC_MCKUDP);
Andrew Victorc9b75d12007-02-08 17:36:34 +0100599 } else if (cpu_is_at91sam9260() || cpu_is_at91sam9261() || cpu_is_at91sam9263()) {
Andrew Victord481f862006-12-01 11:27:31 +0100600 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
601 udpck.pmc_mask = AT91SAM926x_PMC_UDP;
Andrew Victor2b3b3512008-01-24 15:10:39 +0100602 } else if (cpu_is_at91cap9()) {
603 uhpck.pmc_mask = AT91CAP9_PMC_UHP;
Andrew Victord481f862006-12-01 11:27:31 +0100604 }
SAN People73a59c12006-01-09 17:05:41 +0000605 at91_sys_write(AT91_CKGR_PLLBR, 0);
SAN People73a59c12006-01-09 17:05:41 +0000606
Andrew Victor69b648a2006-03-22 20:14:14 +0000607 udpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
608 uhpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
609
SAN People73a59c12006-01-09 17:05:41 +0000610 /*
Stelian Pop53d71682008-04-05 21:14:03 +0100611 * USB HS clock init
612 */
613 if (cpu_is_at91cap9()) {
614 /*
615 * multiplier is hard-wired to 40
616 * (obtain the USB High Speed 480 MHz when input is 12 MHz)
617 */
618 utmi_clk.rate_hz = 40 * utmi_clk.parent->rate_hz;
619 }
620
621 /*
SAN People73a59c12006-01-09 17:05:41 +0000622 * MCK and CPU derive from one of those primary clocks.
623 * For now, assume this parentage won't change.
624 */
625 mckr = at91_sys_read(AT91_PMC_MCKR);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100626 mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS);
SAN People73a59c12006-01-09 17:05:41 +0000627 freq = mck.parent->rate_hz;
Andrew Victora95c7292007-11-19 11:52:09 +0100628 freq /= (1 << ((mckr & AT91_PMC_PRES) >> 2)); /* prescale */
629 if (cpu_is_at91rm9200())
630 mck.rate_hz = freq / (1 + ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
631 else
632 mck.rate_hz = freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
SAN People73a59c12006-01-09 17:05:41 +0000633
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100634 /* Register the PMC's standard clocks */
635 for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++)
636 list_add_tail(&standard_pmc_clocks[i]->node, &clocks);
637
Stelian Pop53d71682008-04-05 21:14:03 +0100638 if (cpu_is_at91cap9())
639 list_add_tail(&utmi_clk.node, &clocks);
640
Andrew Victor91f8ed82006-06-19 13:20:23 +0100641 /* MCK and CPU clock are "always on" */
642 clk_enable(&mck);
643
SAN People73a59c12006-01-09 17:05:41 +0000644 printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n",
645 freq / 1000000, (unsigned) mck.rate_hz / 1000000,
646 (unsigned) main_clock / 1000000,
647 ((unsigned) main_clock % 1000000) / 1000);
648
Andrew Victorc9b75d12007-02-08 17:36:34 +0100649 return 0;
650}
Andrew Victor91f8ed82006-06-19 13:20:23 +0100651
Andrew Victorc9b75d12007-02-08 17:36:34 +0100652/*
653 * Several unused clocks may be active. Turn them off.
654 */
655static int __init at91_clock_reset(void)
656{
657 unsigned long pcdr = 0;
658 unsigned long scdr = 0;
659 struct clk *clk;
660
661 list_for_each_entry(clk, &clocks, node) {
662 if (clk->users > 0)
663 continue;
664
665 if (clk->mode == pmc_periph_mode)
666 pcdr |= clk->pmc_mask;
667
668 if (clk->mode == pmc_sys_mode)
669 scdr |= clk->pmc_mask;
670
671 pr_debug("Clocks: disable unused %s\n", clk->name);
672 }
673
674 at91_sys_write(AT91_PMC_PCDR, pcdr);
675 at91_sys_write(AT91_PMC_SCDR, scdr);
SAN People73a59c12006-01-09 17:05:41 +0000676
677 return 0;
678}
Andrew Victorc9b75d12007-02-08 17:36:34 +0100679late_initcall(at91_clock_reset);