blob: f5c2847161f582906f21bd686e03da07ed9bff0c [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>
SAN People73a59c12006-01-09 17:05:41 +000027
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/hardware.h>
29#include <mach/at91_pmc.h>
30#include <mach/cpu.h>
SAN People73a59c12006-01-09 17:05:41 +000031
Andrew Victor2eeaaa22006-09-27 10:50:59 +010032#include "clock.h"
SAN People73a59c12006-01-09 17:05:41 +000033
Andrew Victor55c20c02006-06-20 19:31:39 +010034
SAN People73a59c12006-01-09 17:05:41 +000035/*
36 * There's a lot more which can be done with clocks, including cpufreq
37 * integration, slow clock mode support (for system suspend), letting
38 * PLLB be used at other rates (on boards that don't need USB), etc.
39 */
40
Andrew Victor2eeaaa22006-09-27 10:50:59 +010041#define clk_is_primary(x) ((x)->type & CLK_TYPE_PRIMARY)
42#define clk_is_programmable(x) ((x)->type & CLK_TYPE_PROGRAMMABLE)
43#define clk_is_peripheral(x) ((x)->type & CLK_TYPE_PERIPHERAL)
Andrew Victord481f862006-12-01 11:27:31 +010044#define clk_is_sys(x) ((x)->type & CLK_TYPE_SYSTEM)
SAN People73a59c12006-01-09 17:05:41 +000045
Andrew Victor2eeaaa22006-09-27 10:50:59 +010046
47static LIST_HEAD(clocks);
48static DEFINE_SPINLOCK(clk_lock);
49
50static u32 at91_pllb_usb_init;
SAN People73a59c12006-01-09 17:05:41 +000051
52/*
53 * Four primary clock sources: two crystal oscillators (32K, main), and
54 * two PLLs. PLLA usually runs the master clock; and PLLB must run at
55 * 48 MHz (unless no USB function clocks are needed). The main clock and
56 * both PLLs are turned off to run in "slow clock mode" (system suspend).
57 */
58static struct clk clk32k = {
59 .name = "clk32k",
60 .rate_hz = AT91_SLOW_CLOCK,
61 .users = 1, /* always on */
62 .id = 0,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010063 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +000064};
65static struct clk main_clk = {
66 .name = "main",
Andrew Victor91f8ed82006-06-19 13:20:23 +010067 .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +000068 .id = 1,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010069 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +000070};
71static struct clk plla = {
72 .name = "plla",
73 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +010074 .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +000075 .id = 2,
Andrew Victor2eeaaa22006-09-27 10:50:59 +010076 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +000077};
78
79static void pllb_mode(struct clk *clk, int is_on)
80{
81 u32 value;
82
83 if (is_on) {
84 is_on = AT91_PMC_LOCKB;
85 value = at91_pllb_usb_init;
86 } else
87 value = 0;
88
Andrew Victor2eeaaa22006-09-27 10:50:59 +010089 // REVISIT: Add work-around for AT91RM9200 Errata #26 ?
SAN People73a59c12006-01-09 17:05:41 +000090 at91_sys_write(AT91_CKGR_PLLBR, value);
91
92 do {
93 cpu_relax();
94 } while ((at91_sys_read(AT91_PMC_SR) & AT91_PMC_LOCKB) != is_on);
95}
96
97static struct clk pllb = {
98 .name = "pllb",
99 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100100 .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000101 .mode = pllb_mode,
102 .id = 3,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100103 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000104};
105
106static void pmc_sys_mode(struct clk *clk, int is_on)
107{
108 if (is_on)
109 at91_sys_write(AT91_PMC_SCER, clk->pmc_mask);
110 else
111 at91_sys_write(AT91_PMC_SCDR, clk->pmc_mask);
112}
113
Stelian Pop53d71682008-04-05 21:14:03 +0100114static void pmc_uckr_mode(struct clk *clk, int is_on)
115{
116 unsigned int uckr = at91_sys_read(AT91_CKGR_UCKR);
117
118 if (is_on) {
119 is_on = AT91_PMC_LOCKU;
120 at91_sys_write(AT91_CKGR_UCKR, uckr | clk->pmc_mask);
121 } else
122 at91_sys_write(AT91_CKGR_UCKR, uckr & ~(clk->pmc_mask));
123
124 do {
125 cpu_relax();
126 } while ((at91_sys_read(AT91_PMC_SR) & AT91_PMC_LOCKU) != is_on);
127}
128
SAN People73a59c12006-01-09 17:05:41 +0000129/* USB function clocks (PLLB must be 48 MHz) */
130static struct clk udpck = {
131 .name = "udpck",
132 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000133 .mode = pmc_sys_mode,
134};
Stelian Pop53d71682008-04-05 21:14:03 +0100135static struct clk utmi_clk = {
136 .name = "utmi_clk",
137 .parent = &main_clk,
138 .pmc_mask = AT91_PMC_UPLLEN, /* in CKGR_UCKR */
139 .mode = pmc_uckr_mode,
140 .type = CLK_TYPE_PLL,
141};
SAN People73a59c12006-01-09 17:05:41 +0000142static struct clk uhpck = {
143 .name = "uhpck",
144 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000145 .mode = pmc_sys_mode,
146};
147
SAN People73a59c12006-01-09 17:05:41 +0000148
149/*
150 * The master clock is divided from the CPU clock (by 1-4). It's used for
151 * memory, interfaces to on-chip peripherals, the AIC, and sometimes more
152 * (e.g baud rate generation). It's sourced from one of the primary clocks.
153 */
154static struct clk mck = {
155 .name = "mck",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100156 .pmc_mask = AT91_PMC_MCKRDY, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000157};
158
159static void pmc_periph_mode(struct clk *clk, int is_on)
160{
161 if (is_on)
162 at91_sys_write(AT91_PMC_PCER, clk->pmc_mask);
163 else
164 at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask);
165}
166
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100167static struct clk __init *at91_css_to_clk(unsigned long css)
168{
169 switch (css) {
170 case AT91_PMC_CSS_SLOW:
171 return &clk32k;
172 case AT91_PMC_CSS_MAIN:
173 return &main_clk;
174 case AT91_PMC_CSS_PLLA:
175 return &plla;
176 case AT91_PMC_CSS_PLLB:
177 return &pllb;
178 }
SAN People73a59c12006-01-09 17:05:41 +0000179
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100180 return NULL;
181}
SAN People73a59c12006-01-09 17:05:41 +0000182
Andrew Victor91f8ed82006-06-19 13:20:23 +0100183/*
184 * Associate a particular clock with a function (eg, "uart") and device.
185 * The drivers can then request the same 'function' with several different
186 * devices and not care about which clock name to use.
187 */
188void __init at91_clock_associate(const char *id, struct device *dev, const char *func)
189{
190 struct clk *clk = clk_get(NULL, id);
191
192 if (!dev || !clk || !IS_ERR(clk_get(dev, func)))
193 return;
194
195 clk->function = func;
196 clk->dev = dev;
197}
198
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100199/* clocks cannot be de-registered no refcounting necessary */
SAN People73a59c12006-01-09 17:05:41 +0000200struct clk *clk_get(struct device *dev, const char *id)
201{
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100202 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000203
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100204 list_for_each_entry(clk, &clocks, node) {
Andrew Victor91f8ed82006-06-19 13:20:23 +0100205 if (strcmp(id, clk->name) == 0)
206 return clk;
207 if (clk->function && (dev == clk->dev) && strcmp(id, clk->function) == 0)
208 return clk;
SAN People73a59c12006-01-09 17:05:41 +0000209 }
210
211 return ERR_PTR(-ENOENT);
212}
213EXPORT_SYMBOL(clk_get);
214
215void clk_put(struct clk *clk)
216{
217}
218EXPORT_SYMBOL(clk_put);
219
220static void __clk_enable(struct clk *clk)
221{
222 if (clk->parent)
223 __clk_enable(clk->parent);
224 if (clk->users++ == 0 && clk->mode)
225 clk->mode(clk, 1);
226}
227
228int clk_enable(struct clk *clk)
229{
230 unsigned long flags;
231
232 spin_lock_irqsave(&clk_lock, flags);
233 __clk_enable(clk);
234 spin_unlock_irqrestore(&clk_lock, flags);
235 return 0;
236}
237EXPORT_SYMBOL(clk_enable);
238
239static void __clk_disable(struct clk *clk)
240{
241 BUG_ON(clk->users == 0);
242 if (--clk->users == 0 && clk->mode)
243 clk->mode(clk, 0);
244 if (clk->parent)
245 __clk_disable(clk->parent);
246}
247
248void clk_disable(struct clk *clk)
249{
250 unsigned long flags;
251
252 spin_lock_irqsave(&clk_lock, flags);
253 __clk_disable(clk);
254 spin_unlock_irqrestore(&clk_lock, flags);
255}
256EXPORT_SYMBOL(clk_disable);
257
258unsigned long clk_get_rate(struct clk *clk)
259{
260 unsigned long flags;
261 unsigned long rate;
262
263 spin_lock_irqsave(&clk_lock, flags);
264 for (;;) {
265 rate = clk->rate_hz;
266 if (rate || !clk->parent)
267 break;
268 clk = clk->parent;
269 }
270 spin_unlock_irqrestore(&clk_lock, flags);
271 return rate;
272}
273EXPORT_SYMBOL(clk_get_rate);
274
275/*------------------------------------------------------------------------*/
276
277#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
278
279/*
280 * For now, only the programmable clocks support reparenting (MCK could
281 * do this too, with care) or rate changing (the PLLs could do this too,
282 * ditto MCK but that's more for cpufreq). Drivers may reparent to get
283 * a better rate match; we don't.
284 */
285
286long clk_round_rate(struct clk *clk, unsigned long rate)
287{
288 unsigned long flags;
289 unsigned prescale;
290 unsigned long actual;
291
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100292 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000293 return -EINVAL;
294 spin_lock_irqsave(&clk_lock, flags);
295
296 actual = clk->parent->rate_hz;
297 for (prescale = 0; prescale < 7; prescale++) {
298 if (actual && actual <= rate)
299 break;
300 actual >>= 1;
301 }
302
303 spin_unlock_irqrestore(&clk_lock, flags);
304 return (prescale < 7) ? actual : -ENOENT;
305}
306EXPORT_SYMBOL(clk_round_rate);
307
308int clk_set_rate(struct clk *clk, unsigned long rate)
309{
310 unsigned long flags;
311 unsigned prescale;
312 unsigned long actual;
313
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100314 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000315 return -EINVAL;
316 if (clk->users)
317 return -EBUSY;
318 spin_lock_irqsave(&clk_lock, flags);
319
320 actual = clk->parent->rate_hz;
321 for (prescale = 0; prescale < 7; prescale++) {
322 if (actual && actual <= rate) {
323 u32 pckr;
324
325 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
Andrew Victor69b648a2006-03-22 20:14:14 +0000326 pckr &= AT91_PMC_CSS_PLLB; /* clock selection */
SAN People73a59c12006-01-09 17:05:41 +0000327 pckr |= prescale << 2;
328 at91_sys_write(AT91_PMC_PCKR(clk->id), pckr);
329 clk->rate_hz = actual;
330 break;
331 }
332 actual >>= 1;
333 }
334
335 spin_unlock_irqrestore(&clk_lock, flags);
336 return (prescale < 7) ? actual : -ENOENT;
337}
338EXPORT_SYMBOL(clk_set_rate);
339
340struct clk *clk_get_parent(struct clk *clk)
341{
342 return clk->parent;
343}
344EXPORT_SYMBOL(clk_get_parent);
345
346int clk_set_parent(struct clk *clk, struct clk *parent)
347{
348 unsigned long flags;
349
350 if (clk->users)
351 return -EBUSY;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100352 if (!clk_is_primary(parent) || !clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000353 return -EINVAL;
354 spin_lock_irqsave(&clk_lock, flags);
355
356 clk->rate_hz = parent->rate_hz;
357 clk->parent = parent;
358 at91_sys_write(AT91_PMC_PCKR(clk->id), parent->id);
359
360 spin_unlock_irqrestore(&clk_lock, flags);
361 return 0;
362}
363EXPORT_SYMBOL(clk_set_parent);
364
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100365/* establish PCK0..PCK3 parentage and rate */
David Brownell72e7ae82008-02-06 22:03:42 +0100366static void __init init_programmable_clock(struct clk *clk)
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100367{
368 struct clk *parent;
369 u32 pckr;
370
371 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
372 parent = at91_css_to_clk(pckr & AT91_PMC_CSS);
373 clk->parent = parent;
Andrew Victora95c7292007-11-19 11:52:09 +0100374 clk->rate_hz = parent->rate_hz / (1 << ((pckr & AT91_PMC_PRES) >> 2));
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100375}
376
SAN People73a59c12006-01-09 17:05:41 +0000377#endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */
378
379/*------------------------------------------------------------------------*/
380
381#ifdef CONFIG_DEBUG_FS
382
383static int at91_clk_show(struct seq_file *s, void *unused)
384{
Stelian Pop53d71682008-04-05 21:14:03 +0100385 u32 scsr, pcsr, uckr = 0, sr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100386 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000387
388 seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR));
389 seq_printf(s, "PCSR = %8x\n", pcsr = at91_sys_read(AT91_PMC_PCSR));
SAN People73a59c12006-01-09 17:05:41 +0000390 seq_printf(s, "MOR = %8x\n", at91_sys_read(AT91_CKGR_MOR));
391 seq_printf(s, "MCFR = %8x\n", at91_sys_read(AT91_CKGR_MCFR));
392 seq_printf(s, "PLLA = %8x\n", at91_sys_read(AT91_CKGR_PLLAR));
Nicolas Ferreba45ca42008-04-08 13:59:18 +0100393 if (!cpu_is_at91sam9rl())
394 seq_printf(s, "PLLB = %8x\n", at91_sys_read(AT91_CKGR_PLLBR));
395 if (cpu_is_at91cap9() || cpu_is_at91sam9rl())
Stelian Pop53d71682008-04-05 21:14:03 +0100396 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.
sedji gaouaou61352662008-07-10 10:15:35 +0100517 * Warning: some newer products need 2MHz min.
SAN People73a59c12006-01-09 17:05:41 +0000518 */
519 input = main_freq / i;
sedji gaouaou61352662008-07-10 10:15:35 +0100520 if (cpu_is_at91sam9g20() && input < 2000000)
521 continue;
SAN People73a59c12006-01-09 17:05:41 +0000522 if (input < 100000)
523 continue;
524 if (input > 32000000)
525 continue;
526
527 mul1 = out_freq / input;
sedji gaouaou61352662008-07-10 10:15:35 +0100528 if (cpu_is_at91sam9g20() && mul > 63)
529 continue;
SAN People73a59c12006-01-09 17:05:41 +0000530 if (mul1 > 2048)
531 continue;
532 if (mul1 < 2)
533 goto fail;
534
535 diff1 = out_freq - input * mul1;
536 if (diff1 < 0)
537 diff1 = -diff1;
538 if (diff > diff1) {
539 diff = diff1;
540 div = i;
541 mul = mul1;
542 if (diff == 0)
543 break;
544 }
545 }
546 if (i == 256 && diff > (out_freq >> 5))
547 goto fail;
548 return ret | ((mul - 1) << 16) | div;
549fail:
550 return 0;
551}
552
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100553static struct clk *const standard_pmc_clocks[] __initdata = {
554 /* four primary clocks */
555 &clk32k,
556 &main_clk,
557 &plla,
558 &pllb,
559
560 /* PLLB children (USB) */
561 &udpck,
562 &uhpck,
563
564 /* MCK */
565 &mck
566};
567
SAN People73a59c12006-01-09 17:05:41 +0000568int __init at91_clock_init(unsigned long main_clock)
569{
570 unsigned tmp, freq, mckr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100571 int i;
SAN People73a59c12006-01-09 17:05:41 +0000572
573 /*
574 * When the bootloader initialized the main oscillator correctly,
575 * there's no problem using the cycle counter. But if it didn't,
576 * or when using oscillator bypass mode, we must be told the speed
577 * of the main clock.
578 */
579 if (!main_clock) {
580 do {
581 tmp = at91_sys_read(AT91_CKGR_MCFR);
Andrew Victor69b648a2006-03-22 20:14:14 +0000582 } while (!(tmp & AT91_PMC_MAINRDY));
583 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
SAN People73a59c12006-01-09 17:05:41 +0000584 }
585 main_clk.rate_hz = main_clock;
586
587 /* report if PLLA is more than mildly overclocked */
588 plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_sys_read(AT91_CKGR_PLLAR));
sedji gaouaou61352662008-07-10 10:15:35 +0100589 if ((!cpu_is_at91sam9g20() && plla.rate_hz > 209000000)
590 || (cpu_is_at91sam9g20() && plla.rate_hz > 800000000))
SAN People73a59c12006-01-09 17:05:41 +0000591 pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000);
592
593 /*
Andrew Victorc9b75d12007-02-08 17:36:34 +0100594 * USB clock init: choose 48 MHz PLLB value,
SAN People73a59c12006-01-09 17:05:41 +0000595 * disable 48MHz clock during usb peripheral suspend.
596 *
597 * REVISIT: assumes MCK doesn't derive from PLLB!
598 */
Andrew Victor69b648a2006-03-22 20:14:14 +0000599 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | AT91_PMC_USB96M;
SAN People73a59c12006-01-09 17:05:41 +0000600 pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init);
Andrew Victord481f862006-12-01 11:27:31 +0100601 if (cpu_is_at91rm9200()) {
602 uhpck.pmc_mask = AT91RM9200_PMC_UHP;
603 udpck.pmc_mask = AT91RM9200_PMC_UDP;
Andrew Victord481f862006-12-01 11:27:31 +0100604 at91_sys_write(AT91_PMC_SCER, AT91RM9200_PMC_MCKUDP);
sedji gaouaou61352662008-07-10 10:15:35 +0100605 } else if (cpu_is_at91sam9260() || cpu_is_at91sam9261() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victord481f862006-12-01 11:27:31 +0100606 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
607 udpck.pmc_mask = AT91SAM926x_PMC_UDP;
Andrew Victor2b3b3512008-01-24 15:10:39 +0100608 } else if (cpu_is_at91cap9()) {
609 uhpck.pmc_mask = AT91CAP9_PMC_UHP;
Andrew Victord481f862006-12-01 11:27:31 +0100610 }
SAN People73a59c12006-01-09 17:05:41 +0000611 at91_sys_write(AT91_CKGR_PLLBR, 0);
SAN People73a59c12006-01-09 17:05:41 +0000612
Andrew Victor69b648a2006-03-22 20:14:14 +0000613 udpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
614 uhpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
615
SAN People73a59c12006-01-09 17:05:41 +0000616 /*
Stelian Pop53d71682008-04-05 21:14:03 +0100617 * USB HS clock init
618 */
Nicolas Ferreba45ca42008-04-08 13:59:18 +0100619 if (cpu_is_at91cap9() || cpu_is_at91sam9rl()) {
Stelian Pop53d71682008-04-05 21:14:03 +0100620 /*
621 * multiplier is hard-wired to 40
622 * (obtain the USB High Speed 480 MHz when input is 12 MHz)
623 */
624 utmi_clk.rate_hz = 40 * utmi_clk.parent->rate_hz;
625 }
626
627 /*
SAN People73a59c12006-01-09 17:05:41 +0000628 * MCK and CPU derive from one of those primary clocks.
629 * For now, assume this parentage won't change.
630 */
631 mckr = at91_sys_read(AT91_PMC_MCKR);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100632 mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS);
SAN People73a59c12006-01-09 17:05:41 +0000633 freq = mck.parent->rate_hz;
Andrew Victora95c7292007-11-19 11:52:09 +0100634 freq /= (1 << ((mckr & AT91_PMC_PRES) >> 2)); /* prescale */
635 if (cpu_is_at91rm9200())
636 mck.rate_hz = freq / (1 + ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
sedji gaouaou61352662008-07-10 10:15:35 +0100637 else if (cpu_is_at91sam9g20()) {
638 mck.rate_hz = (mckr & AT91_PMC_MDIV) ?
639 freq / ((mckr & AT91_PMC_MDIV) >> 7) : freq; /* mdiv ; (x >> 7) = ((x >> 8) * 2) */
640 if (mckr & AT91_PMC_PDIV)
641 freq /= 2; /* processor clock division */
642 } else
643 mck.rate_hz = freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
SAN People73a59c12006-01-09 17:05:41 +0000644
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100645 /* Register the PMC's standard clocks */
646 for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++)
647 list_add_tail(&standard_pmc_clocks[i]->node, &clocks);
648
Nicolas Ferreba45ca42008-04-08 13:59:18 +0100649 if (cpu_is_at91cap9() || cpu_is_at91sam9rl())
Stelian Pop53d71682008-04-05 21:14:03 +0100650 list_add_tail(&utmi_clk.node, &clocks);
651
Andrew Victor91f8ed82006-06-19 13:20:23 +0100652 /* MCK and CPU clock are "always on" */
653 clk_enable(&mck);
654
SAN People73a59c12006-01-09 17:05:41 +0000655 printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n",
656 freq / 1000000, (unsigned) mck.rate_hz / 1000000,
657 (unsigned) main_clock / 1000000,
658 ((unsigned) main_clock % 1000000) / 1000);
659
Andrew Victorc9b75d12007-02-08 17:36:34 +0100660 return 0;
661}
Andrew Victor91f8ed82006-06-19 13:20:23 +0100662
Andrew Victorc9b75d12007-02-08 17:36:34 +0100663/*
664 * Several unused clocks may be active. Turn them off.
665 */
666static int __init at91_clock_reset(void)
667{
668 unsigned long pcdr = 0;
669 unsigned long scdr = 0;
670 struct clk *clk;
671
672 list_for_each_entry(clk, &clocks, node) {
673 if (clk->users > 0)
674 continue;
675
676 if (clk->mode == pmc_periph_mode)
677 pcdr |= clk->pmc_mask;
678
679 if (clk->mode == pmc_sys_mode)
680 scdr |= clk->pmc_mask;
681
682 pr_debug("Clocks: disable unused %s\n", clk->name);
683 }
684
685 at91_sys_write(AT91_PMC_PCDR, pcdr);
686 at91_sys_write(AT91_PMC_SCDR, scdr);
SAN People73a59c12006-01-09 17:05:41 +0000687
688 return 0;
689}
Andrew Victorc9b75d12007-02-08 17:36:34 +0100690late_initcall(at91_clock_reset);