blob: 1e0000ceb343f33c5aecc792ae2608c804301a98 [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
2 * linux/arch/arm/mach-at91rm9200/clock.c
3 *
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
26#include <asm/semaphore.h>
27#include <asm/io.h>
28#include <asm/mach-types.h>
29
Russell Kingea75ee92006-06-20 19:53:16 +010030#include <asm/hardware.h>
Andrew Victor55d8bae2006-11-30 17:16:43 +010031#include <asm/arch/at91_pmc.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)
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
114/* USB function clocks (PLLB must be 48 MHz) */
115static struct clk udpck = {
116 .name = "udpck",
117 .parent = &pllb,
118 .pmc_mask = AT91_PMC_UDP,
119 .mode = pmc_sys_mode,
120};
121static struct clk uhpck = {
122 .name = "uhpck",
123 .parent = &pllb,
124 .pmc_mask = AT91_PMC_UHP,
125 .mode = pmc_sys_mode,
126};
127
SAN People73a59c12006-01-09 17:05:41 +0000128
129/*
130 * The master clock is divided from the CPU clock (by 1-4). It's used for
131 * memory, interfaces to on-chip peripherals, the AIC, and sometimes more
132 * (e.g baud rate generation). It's sourced from one of the primary clocks.
133 */
134static struct clk mck = {
135 .name = "mck",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100136 .pmc_mask = AT91_PMC_MCKRDY, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000137};
138
139static void pmc_periph_mode(struct clk *clk, int is_on)
140{
141 if (is_on)
142 at91_sys_write(AT91_PMC_PCER, clk->pmc_mask);
143 else
144 at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask);
145}
146
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100147static struct clk __init *at91_css_to_clk(unsigned long css)
148{
149 switch (css) {
150 case AT91_PMC_CSS_SLOW:
151 return &clk32k;
152 case AT91_PMC_CSS_MAIN:
153 return &main_clk;
154 case AT91_PMC_CSS_PLLA:
155 return &plla;
156 case AT91_PMC_CSS_PLLB:
157 return &pllb;
158 }
SAN People73a59c12006-01-09 17:05:41 +0000159
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100160 return NULL;
161}
SAN People73a59c12006-01-09 17:05:41 +0000162
Andrew Victor91f8ed82006-06-19 13:20:23 +0100163/*
164 * Associate a particular clock with a function (eg, "uart") and device.
165 * The drivers can then request the same 'function' with several different
166 * devices and not care about which clock name to use.
167 */
168void __init at91_clock_associate(const char *id, struct device *dev, const char *func)
169{
170 struct clk *clk = clk_get(NULL, id);
171
172 if (!dev || !clk || !IS_ERR(clk_get(dev, func)))
173 return;
174
175 clk->function = func;
176 clk->dev = dev;
177}
178
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100179/* clocks cannot be de-registered no refcounting necessary */
SAN People73a59c12006-01-09 17:05:41 +0000180struct clk *clk_get(struct device *dev, const char *id)
181{
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100182 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000183
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100184 list_for_each_entry(clk, &clocks, node) {
Andrew Victor91f8ed82006-06-19 13:20:23 +0100185 if (strcmp(id, clk->name) == 0)
186 return clk;
187 if (clk->function && (dev == clk->dev) && strcmp(id, clk->function) == 0)
188 return clk;
SAN People73a59c12006-01-09 17:05:41 +0000189 }
190
191 return ERR_PTR(-ENOENT);
192}
193EXPORT_SYMBOL(clk_get);
194
195void clk_put(struct clk *clk)
196{
197}
198EXPORT_SYMBOL(clk_put);
199
200static void __clk_enable(struct clk *clk)
201{
202 if (clk->parent)
203 __clk_enable(clk->parent);
204 if (clk->users++ == 0 && clk->mode)
205 clk->mode(clk, 1);
206}
207
208int clk_enable(struct clk *clk)
209{
210 unsigned long flags;
211
212 spin_lock_irqsave(&clk_lock, flags);
213 __clk_enable(clk);
214 spin_unlock_irqrestore(&clk_lock, flags);
215 return 0;
216}
217EXPORT_SYMBOL(clk_enable);
218
219static void __clk_disable(struct clk *clk)
220{
221 BUG_ON(clk->users == 0);
222 if (--clk->users == 0 && clk->mode)
223 clk->mode(clk, 0);
224 if (clk->parent)
225 __clk_disable(clk->parent);
226}
227
228void clk_disable(struct clk *clk)
229{
230 unsigned long flags;
231
232 spin_lock_irqsave(&clk_lock, flags);
233 __clk_disable(clk);
234 spin_unlock_irqrestore(&clk_lock, flags);
235}
236EXPORT_SYMBOL(clk_disable);
237
238unsigned long clk_get_rate(struct clk *clk)
239{
240 unsigned long flags;
241 unsigned long rate;
242
243 spin_lock_irqsave(&clk_lock, flags);
244 for (;;) {
245 rate = clk->rate_hz;
246 if (rate || !clk->parent)
247 break;
248 clk = clk->parent;
249 }
250 spin_unlock_irqrestore(&clk_lock, flags);
251 return rate;
252}
253EXPORT_SYMBOL(clk_get_rate);
254
255/*------------------------------------------------------------------------*/
256
257#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
258
259/*
260 * For now, only the programmable clocks support reparenting (MCK could
261 * do this too, with care) or rate changing (the PLLs could do this too,
262 * ditto MCK but that's more for cpufreq). Drivers may reparent to get
263 * a better rate match; we don't.
264 */
265
266long clk_round_rate(struct clk *clk, unsigned long rate)
267{
268 unsigned long flags;
269 unsigned prescale;
270 unsigned long actual;
271
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100272 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000273 return -EINVAL;
274 spin_lock_irqsave(&clk_lock, flags);
275
276 actual = clk->parent->rate_hz;
277 for (prescale = 0; prescale < 7; prescale++) {
278 if (actual && actual <= rate)
279 break;
280 actual >>= 1;
281 }
282
283 spin_unlock_irqrestore(&clk_lock, flags);
284 return (prescale < 7) ? actual : -ENOENT;
285}
286EXPORT_SYMBOL(clk_round_rate);
287
288int clk_set_rate(struct clk *clk, unsigned long rate)
289{
290 unsigned long flags;
291 unsigned prescale;
292 unsigned long actual;
293
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100294 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000295 return -EINVAL;
296 if (clk->users)
297 return -EBUSY;
298 spin_lock_irqsave(&clk_lock, flags);
299
300 actual = clk->parent->rate_hz;
301 for (prescale = 0; prescale < 7; prescale++) {
302 if (actual && actual <= rate) {
303 u32 pckr;
304
305 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
Andrew Victor69b648a2006-03-22 20:14:14 +0000306 pckr &= AT91_PMC_CSS_PLLB; /* clock selection */
SAN People73a59c12006-01-09 17:05:41 +0000307 pckr |= prescale << 2;
308 at91_sys_write(AT91_PMC_PCKR(clk->id), pckr);
309 clk->rate_hz = actual;
310 break;
311 }
312 actual >>= 1;
313 }
314
315 spin_unlock_irqrestore(&clk_lock, flags);
316 return (prescale < 7) ? actual : -ENOENT;
317}
318EXPORT_SYMBOL(clk_set_rate);
319
320struct clk *clk_get_parent(struct clk *clk)
321{
322 return clk->parent;
323}
324EXPORT_SYMBOL(clk_get_parent);
325
326int clk_set_parent(struct clk *clk, struct clk *parent)
327{
328 unsigned long flags;
329
330 if (clk->users)
331 return -EBUSY;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100332 if (!clk_is_primary(parent) || !clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000333 return -EINVAL;
334 spin_lock_irqsave(&clk_lock, flags);
335
336 clk->rate_hz = parent->rate_hz;
337 clk->parent = parent;
338 at91_sys_write(AT91_PMC_PCKR(clk->id), parent->id);
339
340 spin_unlock_irqrestore(&clk_lock, flags);
341 return 0;
342}
343EXPORT_SYMBOL(clk_set_parent);
344
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100345/* establish PCK0..PCK3 parentage and rate */
346static void init_programmable_clock(struct clk *clk)
347{
348 struct clk *parent;
349 u32 pckr;
350
351 pckr = at91_sys_read(AT91_PMC_PCKR(clk->id));
352 parent = at91_css_to_clk(pckr & AT91_PMC_CSS);
353 clk->parent = parent;
354 clk->rate_hz = parent->rate_hz / (1 << ((pckr >> 2) & 3));
355}
356
SAN People73a59c12006-01-09 17:05:41 +0000357#endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */
358
359/*------------------------------------------------------------------------*/
360
361#ifdef CONFIG_DEBUG_FS
362
363static int at91_clk_show(struct seq_file *s, void *unused)
364{
365 u32 scsr, pcsr, sr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100366 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000367 unsigned i;
368
369 seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR));
370 seq_printf(s, "PCSR = %8x\n", pcsr = at91_sys_read(AT91_PMC_PCSR));
371
372 seq_printf(s, "MOR = %8x\n", at91_sys_read(AT91_CKGR_MOR));
373 seq_printf(s, "MCFR = %8x\n", at91_sys_read(AT91_CKGR_MCFR));
374 seq_printf(s, "PLLA = %8x\n", at91_sys_read(AT91_CKGR_PLLAR));
375 seq_printf(s, "PLLB = %8x\n", at91_sys_read(AT91_CKGR_PLLBR));
376
377 seq_printf(s, "MCKR = %8x\n", at91_sys_read(AT91_PMC_MCKR));
378 for (i = 0; i < 4; i++)
379 seq_printf(s, "PCK%d = %8x\n", i, at91_sys_read(AT91_PMC_PCKR(i)));
380 seq_printf(s, "SR = %8x\n", sr = at91_sys_read(AT91_PMC_SR));
381
382 seq_printf(s, "\n");
383
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100384 list_for_each_entry(clk, &clocks, node) {
385 char *state;
SAN People73a59c12006-01-09 17:05:41 +0000386
387 if (clk->mode == pmc_sys_mode)
388 state = (scsr & clk->pmc_mask) ? "on" : "off";
389 else if (clk->mode == pmc_periph_mode)
390 state = (pcsr & clk->pmc_mask) ? "on" : "off";
391 else if (clk->pmc_mask)
392 state = (sr & clk->pmc_mask) ? "on" : "off";
393 else if (clk == &clk32k || clk == &main_clk)
394 state = "on";
395 else
396 state = "";
397
Andrew Victor69b648a2006-03-22 20:14:14 +0000398 seq_printf(s, "%-10s users=%2d %-3s %9ld Hz %s\n",
SAN People73a59c12006-01-09 17:05:41 +0000399 clk->name, clk->users, state, clk_get_rate(clk),
400 clk->parent ? clk->parent->name : "");
401 }
402 return 0;
403}
404
405static int at91_clk_open(struct inode *inode, struct file *file)
406{
407 return single_open(file, at91_clk_show, NULL);
408}
409
410static struct file_operations at91_clk_operations = {
411 .open = at91_clk_open,
412 .read = seq_read,
413 .llseek = seq_lseek,
414 .release = single_release,
415};
416
417static int __init at91_clk_debugfs_init(void)
418{
419 /* /sys/kernel/debug/at91_clk */
420 (void) debugfs_create_file("at91_clk", S_IFREG | S_IRUGO, NULL, NULL, &at91_clk_operations);
421
422 return 0;
423}
424postcore_initcall(at91_clk_debugfs_init);
425
426#endif
427
428/*------------------------------------------------------------------------*/
429
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100430/* Register a new clock */
431int __init clk_register(struct clk *clk)
432{
433 if (clk_is_peripheral(clk)) {
434 clk->parent = &mck;
435 clk->mode = pmc_periph_mode;
436 list_add_tail(&clk->node, &clocks);
437 }
438#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
439 else if (clk_is_programmable(clk)) {
440 clk->mode = pmc_sys_mode;
441 init_programmable_clock(clk);
442 list_add_tail(&clk->node, &clocks);
443 }
444#endif
445
446 return 0;
447}
448
449
450/*------------------------------------------------------------------------*/
451
SAN People73a59c12006-01-09 17:05:41 +0000452static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg)
453{
454 unsigned mul, div;
455
456 div = reg & 0xff;
457 mul = (reg >> 16) & 0x7ff;
458 if (div && mul) {
459 freq /= div;
460 freq *= mul + 1;
461 } else
462 freq = 0;
Andrew Victor69b648a2006-03-22 20:14:14 +0000463
SAN People73a59c12006-01-09 17:05:41 +0000464 return freq;
465}
466
Andrew Victor69b648a2006-03-22 20:14:14 +0000467static u32 __init at91_usb_rate(struct clk *pll, u32 freq, u32 reg)
468{
469 if (pll == &pllb && (reg & AT91_PMC_USB96M))
470 return freq / 2;
471 else
472 return freq;
473}
474
SAN People73a59c12006-01-09 17:05:41 +0000475static unsigned __init at91_pll_calc(unsigned main_freq, unsigned out_freq)
476{
477 unsigned i, div = 0, mul = 0, diff = 1 << 30;
478 unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00;
479
480 /* PLL output max 240 MHz (or 180 MHz per errata) */
481 if (out_freq > 240000000)
482 goto fail;
483
484 for (i = 1; i < 256; i++) {
485 int diff1;
486 unsigned input, mul1;
487
488 /*
489 * PLL input between 1MHz and 32MHz per spec, but lower
490 * frequences seem necessary in some cases so allow 100K.
491 */
492 input = main_freq / i;
493 if (input < 100000)
494 continue;
495 if (input > 32000000)
496 continue;
497
498 mul1 = out_freq / input;
499 if (mul1 > 2048)
500 continue;
501 if (mul1 < 2)
502 goto fail;
503
504 diff1 = out_freq - input * mul1;
505 if (diff1 < 0)
506 diff1 = -diff1;
507 if (diff > diff1) {
508 diff = diff1;
509 div = i;
510 mul = mul1;
511 if (diff == 0)
512 break;
513 }
514 }
515 if (i == 256 && diff > (out_freq >> 5))
516 goto fail;
517 return ret | ((mul - 1) << 16) | div;
518fail:
519 return 0;
520}
521
Andrew Victor91f8ed82006-06-19 13:20:23 +0100522/*
523 * Several unused clocks may be active. Turn them off.
524 */
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100525static void __init at91_periphclk_reset(void)
Andrew Victor91f8ed82006-06-19 13:20:23 +0100526{
527 unsigned long reg;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100528 struct clk *clk;
Andrew Victor91f8ed82006-06-19 13:20:23 +0100529
530 reg = at91_sys_read(AT91_PMC_PCSR);
531
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100532 list_for_each_entry(clk, &clocks, node) {
Andrew Victor91f8ed82006-06-19 13:20:23 +0100533 if (clk->mode != pmc_periph_mode)
534 continue;
535
536 if (clk->users > 0)
537 reg &= ~clk->pmc_mask;
538 }
539
540 at91_sys_write(AT91_PMC_PCDR, reg);
541}
542
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100543static struct clk *const standard_pmc_clocks[] __initdata = {
544 /* four primary clocks */
545 &clk32k,
546 &main_clk,
547 &plla,
548 &pllb,
549
550 /* PLLB children (USB) */
551 &udpck,
552 &uhpck,
553
554 /* MCK */
555 &mck
556};
557
SAN People73a59c12006-01-09 17:05:41 +0000558int __init at91_clock_init(unsigned long main_clock)
559{
560 unsigned tmp, freq, mckr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100561 int i;
SAN People73a59c12006-01-09 17:05:41 +0000562
563 /*
564 * When the bootloader initialized the main oscillator correctly,
565 * there's no problem using the cycle counter. But if it didn't,
566 * or when using oscillator bypass mode, we must be told the speed
567 * of the main clock.
568 */
569 if (!main_clock) {
570 do {
571 tmp = at91_sys_read(AT91_CKGR_MCFR);
Andrew Victor69b648a2006-03-22 20:14:14 +0000572 } while (!(tmp & AT91_PMC_MAINRDY));
573 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
SAN People73a59c12006-01-09 17:05:41 +0000574 }
575 main_clk.rate_hz = main_clock;
576
577 /* report if PLLA is more than mildly overclocked */
578 plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_sys_read(AT91_CKGR_PLLAR));
579 if (plla.rate_hz > 209000000)
580 pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000);
581
582 /*
583 * USB clock init: choose 48 MHz PLLB value, turn all clocks off,
584 * disable 48MHz clock during usb peripheral suspend.
585 *
586 * REVISIT: assumes MCK doesn't derive from PLLB!
587 */
Andrew Victor69b648a2006-03-22 20:14:14 +0000588 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | AT91_PMC_USB96M;
SAN People73a59c12006-01-09 17:05:41 +0000589 pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init);
SAN People73a59c12006-01-09 17:05:41 +0000590 at91_sys_write(AT91_PMC_SCDR, AT91_PMC_UHP | AT91_PMC_UDP);
591 at91_sys_write(AT91_CKGR_PLLBR, 0);
592 at91_sys_write(AT91_PMC_SCER, AT91_PMC_MCKUDP);
593
Andrew Victor69b648a2006-03-22 20:14:14 +0000594 udpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
595 uhpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
596
SAN People73a59c12006-01-09 17:05:41 +0000597 /*
598 * MCK and CPU derive from one of those primary clocks.
599 * For now, assume this parentage won't change.
600 */
601 mckr = at91_sys_read(AT91_PMC_MCKR);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100602 mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS);
SAN People73a59c12006-01-09 17:05:41 +0000603 freq = mck.parent->rate_hz;
604 freq /= (1 << ((mckr >> 2) & 3)); /* prescale */
605 mck.rate_hz = freq / (1 + ((mckr >> 8) & 3)); /* mdiv */
606
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100607 /* Register the PMC's standard clocks */
608 for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++)
609 list_add_tail(&standard_pmc_clocks[i]->node, &clocks);
610
Andrew Victor91f8ed82006-06-19 13:20:23 +0100611 /* MCK and CPU clock are "always on" */
612 clk_enable(&mck);
613
SAN People73a59c12006-01-09 17:05:41 +0000614 printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n",
615 freq / 1000000, (unsigned) mck.rate_hz / 1000000,
616 (unsigned) main_clock / 1000000,
617 ((unsigned) main_clock % 1000000) / 1000);
618
Andrew Victor91f8ed82006-06-19 13:20:23 +0100619 /* disable all programmable clocks */
SAN People73a59c12006-01-09 17:05:41 +0000620 at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK0 | AT91_PMC_PCK1 | AT91_PMC_PCK2 | AT91_PMC_PCK3);
Andrew Victor91f8ed82006-06-19 13:20:23 +0100621
622 /* disable all other unused peripheral clocks */
623 at91_periphclk_reset();
SAN People73a59c12006-01-09 17:05:41 +0000624
625 return 0;
626}