blob: 46130dad2d067d0566115f2aa22a1a6aa33beada [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>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Jean-Christophe PLAGNIOL-VILLARDeb5e76f2012-03-02 20:44:23 +080026#include <linux/of_address.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
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +080032#include <asm/proc-fns.h>
33
Andrew Victor2eeaaa22006-09-27 10:50:59 +010034#include "clock.h"
Andrew Victor5e38efa2009-12-15 21:57:27 +010035#include "generic.h"
SAN People73a59c12006-01-09 17:05:41 +000036
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +080037void __iomem *at91_pmc_base;
Andrew Victor55c20c02006-06-20 19:31:39 +010038
SAN People73a59c12006-01-09 17:05:41 +000039/*
40 * There's a lot more which can be done with clocks, including cpufreq
41 * integration, slow clock mode support (for system suspend), letting
42 * PLLB be used at other rates (on boards that don't need USB), etc.
43 */
44
Andrew Victor2eeaaa22006-09-27 10:50:59 +010045#define clk_is_primary(x) ((x)->type & CLK_TYPE_PRIMARY)
46#define clk_is_programmable(x) ((x)->type & CLK_TYPE_PROGRAMMABLE)
47#define clk_is_peripheral(x) ((x)->type & CLK_TYPE_PERIPHERAL)
Andrew Victord481f862006-12-01 11:27:31 +010048#define clk_is_sys(x) ((x)->type & CLK_TYPE_SYSTEM)
SAN People73a59c12006-01-09 17:05:41 +000049
Andrew Victor2eeaaa22006-09-27 10:50:59 +010050
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010051/*
52 * Chips have some kind of clocks : group them by functionality
53 */
Jean-Christophe PLAGNIOL-VILLARD9918cea2012-01-26 14:07:09 +010054#define cpu_has_utmi() ( cpu_is_at91sam9rl() \
Nicolas Ferre11128722011-03-10 19:08:54 +010055 || cpu_is_at91sam9g45() \
56 || cpu_is_at91sam9x5())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010057
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010058#define cpu_has_800M_plla() ( cpu_is_at91sam9g20() \
Nicolas Ferre11128722011-03-10 19:08:54 +010059 || cpu_is_at91sam9g45() \
Hong Xu74db4fb2012-04-17 14:26:31 +080060 || cpu_is_at91sam9x5() \
61 || cpu_is_at91sam9n12())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010062
Nicolas Ferreeab41702009-06-26 15:37:00 +010063#define cpu_has_300M_plla() (cpu_is_at91sam9g10())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010064
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010065#define cpu_has_pllb() (!(cpu_is_at91sam9rl() \
Nicolas Ferre11128722011-03-10 19:08:54 +010066 || cpu_is_at91sam9g45() \
Hong Xu74db4fb2012-04-17 14:26:31 +080067 || cpu_is_at91sam9x5() \
68 || cpu_is_at91sam9n12()))
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010069
Nicolas Ferre11128722011-03-10 19:08:54 +010070#define cpu_has_upll() (cpu_is_at91sam9g45() \
71 || cpu_is_at91sam9x5())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010072
73/* USB host HS & FS */
74#define cpu_has_uhp() (!cpu_is_at91sam9rl())
75
76/* USB device FS only */
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010077#define cpu_has_udpfs() (!(cpu_is_at91sam9rl() \
Nicolas Ferre11128722011-03-10 19:08:54 +010078 || cpu_is_at91sam9g45() \
79 || cpu_is_at91sam9x5()))
80
81#define cpu_has_plladiv2() (cpu_is_at91sam9g45() \
Hong Xu74db4fb2012-04-17 14:26:31 +080082 || cpu_is_at91sam9x5() \
83 || cpu_is_at91sam9n12())
Nicolas Ferre11128722011-03-10 19:08:54 +010084
85#define cpu_has_mdiv3() (cpu_is_at91sam9g45() \
Hong Xu74db4fb2012-04-17 14:26:31 +080086 || cpu_is_at91sam9x5() \
87 || cpu_is_at91sam9n12())
Nicolas Ferre11128722011-03-10 19:08:54 +010088
Hong Xu74db4fb2012-04-17 14:26:31 +080089#define cpu_has_alt_prescaler() (cpu_is_at91sam9x5() \
90 || cpu_is_at91sam9n12())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010091
Andrew Victor2eeaaa22006-09-27 10:50:59 +010092static LIST_HEAD(clocks);
93static DEFINE_SPINLOCK(clk_lock);
94
95static u32 at91_pllb_usb_init;
SAN People73a59c12006-01-09 17:05:41 +000096
97/*
98 * Four primary clock sources: two crystal oscillators (32K, main), and
99 * two PLLs. PLLA usually runs the master clock; and PLLB must run at
100 * 48 MHz (unless no USB function clocks are needed). The main clock and
101 * both PLLs are turned off to run in "slow clock mode" (system suspend).
102 */
103static struct clk clk32k = {
104 .name = "clk32k",
105 .rate_hz = AT91_SLOW_CLOCK,
106 .users = 1, /* always on */
107 .id = 0,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100108 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +0000109};
110static struct clk main_clk = {
111 .name = "main",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100112 .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000113 .id = 1,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100114 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +0000115};
116static struct clk plla = {
117 .name = "plla",
118 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100119 .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000120 .id = 2,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100121 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000122};
123
124static void pllb_mode(struct clk *clk, int is_on)
125{
126 u32 value;
127
128 if (is_on) {
129 is_on = AT91_PMC_LOCKB;
130 value = at91_pllb_usb_init;
131 } else
132 value = 0;
133
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100134 // REVISIT: Add work-around for AT91RM9200 Errata #26 ?
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800135 at91_pmc_write(AT91_CKGR_PLLBR, value);
SAN People73a59c12006-01-09 17:05:41 +0000136
137 do {
138 cpu_relax();
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800139 } while ((at91_pmc_read(AT91_PMC_SR) & AT91_PMC_LOCKB) != is_on);
SAN People73a59c12006-01-09 17:05:41 +0000140}
141
142static struct clk pllb = {
143 .name = "pllb",
144 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100145 .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000146 .mode = pllb_mode,
147 .id = 3,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100148 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000149};
150
151static void pmc_sys_mode(struct clk *clk, int is_on)
152{
153 if (is_on)
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800154 at91_pmc_write(AT91_PMC_SCER, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000155 else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800156 at91_pmc_write(AT91_PMC_SCDR, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000157}
158
Stelian Pop53d71682008-04-05 21:14:03 +0100159static void pmc_uckr_mode(struct clk *clk, int is_on)
160{
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800161 unsigned int uckr = at91_pmc_read(AT91_CKGR_UCKR);
Stelian Pop53d71682008-04-05 21:14:03 +0100162
163 if (is_on) {
164 is_on = AT91_PMC_LOCKU;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800165 at91_pmc_write(AT91_CKGR_UCKR, uckr | clk->pmc_mask);
Stelian Pop53d71682008-04-05 21:14:03 +0100166 } else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800167 at91_pmc_write(AT91_CKGR_UCKR, uckr & ~(clk->pmc_mask));
Stelian Pop53d71682008-04-05 21:14:03 +0100168
169 do {
170 cpu_relax();
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800171 } while ((at91_pmc_read(AT91_PMC_SR) & AT91_PMC_LOCKU) != is_on);
Stelian Pop53d71682008-04-05 21:14:03 +0100172}
173
SAN People73a59c12006-01-09 17:05:41 +0000174/* USB function clocks (PLLB must be 48 MHz) */
175static struct clk udpck = {
176 .name = "udpck",
177 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000178 .mode = pmc_sys_mode,
179};
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100180struct clk utmi_clk = {
Stelian Pop53d71682008-04-05 21:14:03 +0100181 .name = "utmi_clk",
182 .parent = &main_clk,
183 .pmc_mask = AT91_PMC_UPLLEN, /* in CKGR_UCKR */
184 .mode = pmc_uckr_mode,
185 .type = CLK_TYPE_PLL,
186};
SAN People73a59c12006-01-09 17:05:41 +0000187static struct clk uhpck = {
188 .name = "uhpck",
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100189 /*.parent = ... we choose parent at runtime */
SAN People73a59c12006-01-09 17:05:41 +0000190 .mode = pmc_sys_mode,
191};
192
SAN People73a59c12006-01-09 17:05:41 +0000193
194/*
195 * The master clock is divided from the CPU clock (by 1-4). It's used for
196 * memory, interfaces to on-chip peripherals, the AIC, and sometimes more
197 * (e.g baud rate generation). It's sourced from one of the primary clocks.
198 */
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100199struct clk mck = {
SAN People73a59c12006-01-09 17:05:41 +0000200 .name = "mck",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100201 .pmc_mask = AT91_PMC_MCKRDY, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000202};
203
204static void pmc_periph_mode(struct clk *clk, int is_on)
205{
206 if (is_on)
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800207 at91_pmc_write(AT91_PMC_PCER, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000208 else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800209 at91_pmc_write(AT91_PMC_PCDR, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000210}
211
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100212static struct clk __init *at91_css_to_clk(unsigned long css)
213{
214 switch (css) {
215 case AT91_PMC_CSS_SLOW:
216 return &clk32k;
217 case AT91_PMC_CSS_MAIN:
218 return &main_clk;
219 case AT91_PMC_CSS_PLLA:
220 return &plla;
221 case AT91_PMC_CSS_PLLB:
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100222 if (cpu_has_upll())
223 /* CSS_PLLB == CSS_UPLL */
224 return &utmi_clk;
225 else if (cpu_has_pllb())
226 return &pllb;
Nicolas Ferre11128722011-03-10 19:08:54 +0100227 break;
228 /* alternate PMC: can use master clock */
229 case AT91_PMC_CSS_MASTER:
230 return &mck;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100231 }
SAN People73a59c12006-01-09 17:05:41 +0000232
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100233 return NULL;
234}
SAN People73a59c12006-01-09 17:05:41 +0000235
Nicolas Ferre11128722011-03-10 19:08:54 +0100236static int pmc_prescaler_divider(u32 reg)
237{
238 if (cpu_has_alt_prescaler()) {
239 return 1 << ((reg & AT91_PMC_ALT_PRES) >> PMC_ALT_PRES_OFFSET);
240 } else {
241 return 1 << ((reg & AT91_PMC_PRES) >> PMC_PRES_OFFSET);
242 }
243}
244
SAN People73a59c12006-01-09 17:05:41 +0000245static void __clk_enable(struct clk *clk)
246{
247 if (clk->parent)
248 __clk_enable(clk->parent);
249 if (clk->users++ == 0 && clk->mode)
250 clk->mode(clk, 1);
251}
252
253int clk_enable(struct clk *clk)
254{
255 unsigned long flags;
256
257 spin_lock_irqsave(&clk_lock, flags);
258 __clk_enable(clk);
259 spin_unlock_irqrestore(&clk_lock, flags);
260 return 0;
261}
262EXPORT_SYMBOL(clk_enable);
263
264static void __clk_disable(struct clk *clk)
265{
266 BUG_ON(clk->users == 0);
267 if (--clk->users == 0 && clk->mode)
268 clk->mode(clk, 0);
269 if (clk->parent)
270 __clk_disable(clk->parent);
271}
272
273void clk_disable(struct clk *clk)
274{
275 unsigned long flags;
276
277 spin_lock_irqsave(&clk_lock, flags);
278 __clk_disable(clk);
279 spin_unlock_irqrestore(&clk_lock, flags);
280}
281EXPORT_SYMBOL(clk_disable);
282
283unsigned long clk_get_rate(struct clk *clk)
284{
285 unsigned long flags;
286 unsigned long rate;
287
288 spin_lock_irqsave(&clk_lock, flags);
289 for (;;) {
290 rate = clk->rate_hz;
291 if (rate || !clk->parent)
292 break;
293 clk = clk->parent;
294 }
295 spin_unlock_irqrestore(&clk_lock, flags);
296 return rate;
297}
298EXPORT_SYMBOL(clk_get_rate);
299
300/*------------------------------------------------------------------------*/
301
302#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
303
304/*
305 * For now, only the programmable clocks support reparenting (MCK could
306 * do this too, with care) or rate changing (the PLLs could do this too,
307 * ditto MCK but that's more for cpufreq). Drivers may reparent to get
308 * a better rate match; we don't.
309 */
310
311long clk_round_rate(struct clk *clk, unsigned long rate)
312{
313 unsigned long flags;
314 unsigned prescale;
315 unsigned long actual;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100316 unsigned long prev = ULONG_MAX;
SAN People73a59c12006-01-09 17:05:41 +0000317
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100318 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000319 return -EINVAL;
320 spin_lock_irqsave(&clk_lock, flags);
321
322 actual = clk->parent->rate_hz;
323 for (prescale = 0; prescale < 7; prescale++) {
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100324 if (actual > rate)
325 prev = actual;
326
327 if (actual && actual <= rate) {
328 if ((prev - rate) < (rate - actual)) {
329 actual = prev;
330 prescale--;
331 }
SAN People73a59c12006-01-09 17:05:41 +0000332 break;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100333 }
SAN People73a59c12006-01-09 17:05:41 +0000334 actual >>= 1;
335 }
336
337 spin_unlock_irqrestore(&clk_lock, flags);
338 return (prescale < 7) ? actual : -ENOENT;
339}
340EXPORT_SYMBOL(clk_round_rate);
341
342int clk_set_rate(struct clk *clk, unsigned long rate)
343{
344 unsigned long flags;
345 unsigned prescale;
Nicolas Ferre11128722011-03-10 19:08:54 +0100346 unsigned long prescale_offset, css_mask;
SAN People73a59c12006-01-09 17:05:41 +0000347 unsigned long actual;
348
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100349 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000350 return -EINVAL;
351 if (clk->users)
352 return -EBUSY;
Nicolas Ferre11128722011-03-10 19:08:54 +0100353
354 if (cpu_has_alt_prescaler()) {
355 prescale_offset = PMC_ALT_PRES_OFFSET;
356 css_mask = AT91_PMC_ALT_PCKR_CSS;
357 } else {
358 prescale_offset = PMC_PRES_OFFSET;
359 css_mask = AT91_PMC_CSS;
360 }
361
SAN People73a59c12006-01-09 17:05:41 +0000362 spin_lock_irqsave(&clk_lock, flags);
363
364 actual = clk->parent->rate_hz;
365 for (prescale = 0; prescale < 7; prescale++) {
366 if (actual && actual <= rate) {
367 u32 pckr;
368
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800369 pckr = at91_pmc_read(AT91_PMC_PCKR(clk->id));
Nicolas Ferre11128722011-03-10 19:08:54 +0100370 pckr &= css_mask; /* keep clock selection */
371 pckr |= prescale << prescale_offset;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800372 at91_pmc_write(AT91_PMC_PCKR(clk->id), pckr);
SAN People73a59c12006-01-09 17:05:41 +0000373 clk->rate_hz = actual;
374 break;
375 }
376 actual >>= 1;
377 }
378
379 spin_unlock_irqrestore(&clk_lock, flags);
380 return (prescale < 7) ? actual : -ENOENT;
381}
382EXPORT_SYMBOL(clk_set_rate);
383
384struct clk *clk_get_parent(struct clk *clk)
385{
386 return clk->parent;
387}
388EXPORT_SYMBOL(clk_get_parent);
389
390int clk_set_parent(struct clk *clk, struct clk *parent)
391{
392 unsigned long flags;
393
394 if (clk->users)
395 return -EBUSY;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100396 if (!clk_is_primary(parent) || !clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000397 return -EINVAL;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100398
399 if (cpu_is_at91sam9rl() && parent->id == AT91_PMC_CSS_PLLB)
400 return -EINVAL;
401
SAN People73a59c12006-01-09 17:05:41 +0000402 spin_lock_irqsave(&clk_lock, flags);
403
404 clk->rate_hz = parent->rate_hz;
405 clk->parent = parent;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800406 at91_pmc_write(AT91_PMC_PCKR(clk->id), parent->id);
SAN People73a59c12006-01-09 17:05:41 +0000407
408 spin_unlock_irqrestore(&clk_lock, flags);
409 return 0;
410}
411EXPORT_SYMBOL(clk_set_parent);
412
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100413/* establish PCK0..PCKN parentage and rate */
David Brownell72e7ae82008-02-06 22:03:42 +0100414static void __init init_programmable_clock(struct clk *clk)
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100415{
416 struct clk *parent;
417 u32 pckr;
Nicolas Ferre11128722011-03-10 19:08:54 +0100418 unsigned int css_mask;
419
420 if (cpu_has_alt_prescaler())
421 css_mask = AT91_PMC_ALT_PCKR_CSS;
422 else
423 css_mask = AT91_PMC_CSS;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100424
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800425 pckr = at91_pmc_read(AT91_PMC_PCKR(clk->id));
Nicolas Ferre11128722011-03-10 19:08:54 +0100426 parent = at91_css_to_clk(pckr & css_mask);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100427 clk->parent = parent;
Nicolas Ferre11128722011-03-10 19:08:54 +0100428 clk->rate_hz = parent->rate_hz / pmc_prescaler_divider(pckr);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100429}
430
SAN People73a59c12006-01-09 17:05:41 +0000431#endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */
432
433/*------------------------------------------------------------------------*/
434
435#ifdef CONFIG_DEBUG_FS
436
437static int at91_clk_show(struct seq_file *s, void *unused)
438{
Stelian Pop53d71682008-04-05 21:14:03 +0100439 u32 scsr, pcsr, uckr = 0, sr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100440 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000441
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800442 scsr = at91_pmc_read(AT91_PMC_SCSR);
443 pcsr = at91_pmc_read(AT91_PMC_PCSR);
444 sr = at91_pmc_read(AT91_PMC_SR);
Nicolas Ferre940192e2012-02-23 09:44:37 +0100445 seq_printf(s, "SCSR = %8x\n", scsr);
446 seq_printf(s, "PCSR = %8x\n", pcsr);
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800447 seq_printf(s, "MOR = %8x\n", at91_pmc_read(AT91_CKGR_MOR));
448 seq_printf(s, "MCFR = %8x\n", at91_pmc_read(AT91_CKGR_MCFR));
449 seq_printf(s, "PLLA = %8x\n", at91_pmc_read(AT91_CKGR_PLLAR));
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100450 if (cpu_has_pllb())
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800451 seq_printf(s, "PLLB = %8x\n", at91_pmc_read(AT91_CKGR_PLLBR));
Nicolas Ferre940192e2012-02-23 09:44:37 +0100452 if (cpu_has_utmi()) {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800453 uckr = at91_pmc_read(AT91_CKGR_UCKR);
Nicolas Ferre940192e2012-02-23 09:44:37 +0100454 seq_printf(s, "UCKR = %8x\n", uckr);
455 }
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800456 seq_printf(s, "MCKR = %8x\n", at91_pmc_read(AT91_PMC_MCKR));
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100457 if (cpu_has_upll())
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800458 seq_printf(s, "USB = %8x\n", at91_pmc_read(AT91_PMC_USB));
Nicolas Ferre940192e2012-02-23 09:44:37 +0100459 seq_printf(s, "SR = %8x\n", sr);
SAN People73a59c12006-01-09 17:05:41 +0000460
461 seq_printf(s, "\n");
462
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100463 list_for_each_entry(clk, &clocks, node) {
464 char *state;
SAN People73a59c12006-01-09 17:05:41 +0000465
466 if (clk->mode == pmc_sys_mode)
467 state = (scsr & clk->pmc_mask) ? "on" : "off";
468 else if (clk->mode == pmc_periph_mode)
469 state = (pcsr & clk->pmc_mask) ? "on" : "off";
Stelian Pop53d71682008-04-05 21:14:03 +0100470 else if (clk->mode == pmc_uckr_mode)
471 state = (uckr & clk->pmc_mask) ? "on" : "off";
SAN People73a59c12006-01-09 17:05:41 +0000472 else if (clk->pmc_mask)
473 state = (sr & clk->pmc_mask) ? "on" : "off";
474 else if (clk == &clk32k || clk == &main_clk)
475 state = "on";
476 else
477 state = "";
478
Andrew Victor69b648a2006-03-22 20:14:14 +0000479 seq_printf(s, "%-10s users=%2d %-3s %9ld Hz %s\n",
SAN People73a59c12006-01-09 17:05:41 +0000480 clk->name, clk->users, state, clk_get_rate(clk),
481 clk->parent ? clk->parent->name : "");
482 }
483 return 0;
484}
485
486static int at91_clk_open(struct inode *inode, struct file *file)
487{
488 return single_open(file, at91_clk_show, NULL);
489}
490
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800491static const struct file_operations at91_clk_operations = {
SAN People73a59c12006-01-09 17:05:41 +0000492 .open = at91_clk_open,
493 .read = seq_read,
494 .llseek = seq_lseek,
495 .release = single_release,
496};
497
498static int __init at91_clk_debugfs_init(void)
499{
500 /* /sys/kernel/debug/at91_clk */
501 (void) debugfs_create_file("at91_clk", S_IFREG | S_IRUGO, NULL, NULL, &at91_clk_operations);
502
503 return 0;
504}
505postcore_initcall(at91_clk_debugfs_init);
506
507#endif
508
509/*------------------------------------------------------------------------*/
510
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100511/* Register a new clock */
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100512static void __init at91_clk_add(struct clk *clk)
513{
514 list_add_tail(&clk->node, &clocks);
515
516 clk->cl.con_id = clk->name;
517 clk->cl.clk = clk;
518 clkdev_add(&clk->cl);
519}
520
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100521int __init clk_register(struct clk *clk)
522{
523 if (clk_is_peripheral(clk)) {
Nicolas Ferre5afddee2010-09-09 19:58:23 +0200524 if (!clk->parent)
525 clk->parent = &mck;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100526 clk->mode = pmc_periph_mode;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100527 }
Andrew Victord481f862006-12-01 11:27:31 +0100528 else if (clk_is_sys(clk)) {
529 clk->parent = &mck;
530 clk->mode = pmc_sys_mode;
Andrew Victord481f862006-12-01 11:27:31 +0100531 }
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100532#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
533 else if (clk_is_programmable(clk)) {
534 clk->mode = pmc_sys_mode;
535 init_programmable_clock(clk);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100536 }
537#endif
538
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100539 at91_clk_add(clk);
540
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100541 return 0;
542}
543
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100544/*------------------------------------------------------------------------*/
545
SAN People73a59c12006-01-09 17:05:41 +0000546static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg)
547{
548 unsigned mul, div;
549
550 div = reg & 0xff;
551 mul = (reg >> 16) & 0x7ff;
552 if (div && mul) {
553 freq /= div;
554 freq *= mul + 1;
555 } else
556 freq = 0;
Andrew Victor69b648a2006-03-22 20:14:14 +0000557
SAN People73a59c12006-01-09 17:05:41 +0000558 return freq;
559}
560
Andrew Victor69b648a2006-03-22 20:14:14 +0000561static u32 __init at91_usb_rate(struct clk *pll, u32 freq, u32 reg)
562{
563 if (pll == &pllb && (reg & AT91_PMC_USB96M))
564 return freq / 2;
565 else
566 return freq;
567}
568
SAN People73a59c12006-01-09 17:05:41 +0000569static unsigned __init at91_pll_calc(unsigned main_freq, unsigned out_freq)
570{
571 unsigned i, div = 0, mul = 0, diff = 1 << 30;
572 unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00;
573
574 /* PLL output max 240 MHz (or 180 MHz per errata) */
575 if (out_freq > 240000000)
576 goto fail;
577
578 for (i = 1; i < 256; i++) {
579 int diff1;
580 unsigned input, mul1;
581
582 /*
583 * PLL input between 1MHz and 32MHz per spec, but lower
584 * frequences seem necessary in some cases so allow 100K.
sedji gaouaou61352662008-07-10 10:15:35 +0100585 * Warning: some newer products need 2MHz min.
SAN People73a59c12006-01-09 17:05:41 +0000586 */
587 input = main_freq / i;
sedji gaouaou61352662008-07-10 10:15:35 +0100588 if (cpu_is_at91sam9g20() && input < 2000000)
589 continue;
SAN People73a59c12006-01-09 17:05:41 +0000590 if (input < 100000)
591 continue;
592 if (input > 32000000)
593 continue;
594
595 mul1 = out_freq / input;
sedji gaouaou61352662008-07-10 10:15:35 +0100596 if (cpu_is_at91sam9g20() && mul > 63)
597 continue;
SAN People73a59c12006-01-09 17:05:41 +0000598 if (mul1 > 2048)
599 continue;
600 if (mul1 < 2)
601 goto fail;
602
603 diff1 = out_freq - input * mul1;
604 if (diff1 < 0)
605 diff1 = -diff1;
606 if (diff > diff1) {
607 diff = diff1;
608 div = i;
609 mul = mul1;
610 if (diff == 0)
611 break;
612 }
613 }
614 if (i == 256 && diff > (out_freq >> 5))
615 goto fail;
616 return ret | ((mul - 1) << 16) | div;
617fail:
618 return 0;
619}
620
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100621static struct clk *const standard_pmc_clocks[] __initdata = {
622 /* four primary clocks */
623 &clk32k,
624 &main_clk,
625 &plla,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100626
627 /* MCK */
628 &mck
629};
630
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100631/* PLLB generated USB full speed clock init */
632static void __init at91_pllb_usbfs_clock_init(unsigned long main_clock)
633{
634 /*
635 * USB clock init: choose 48 MHz PLLB value,
636 * disable 48MHz clock during usb peripheral suspend.
637 *
638 * REVISIT: assumes MCK doesn't derive from PLLB!
639 */
640 uhpck.parent = &pllb;
641
642 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | AT91_PMC_USB96M;
643 pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init);
644 if (cpu_is_at91rm9200()) {
645 uhpck.pmc_mask = AT91RM9200_PMC_UHP;
646 udpck.pmc_mask = AT91RM9200_PMC_UDP;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800647 at91_pmc_write(AT91_PMC_SCER, AT91RM9200_PMC_MCKUDP);
Nicolas Ferreeab41702009-06-26 15:37:00 +0100648 } else if (cpu_is_at91sam9260() || cpu_is_at91sam9261() ||
649 cpu_is_at91sam9263() || cpu_is_at91sam9g20() ||
Jean-Christophe PLAGNIOL-VILLARD7a2207a2011-05-17 20:51:14 +0800650 cpu_is_at91sam9g10()) {
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100651 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
652 udpck.pmc_mask = AT91SAM926x_PMC_UDP;
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100653 }
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800654 at91_pmc_write(AT91_CKGR_PLLBR, 0);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100655
656 udpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
657 uhpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
658}
659
660/* UPLL generated USB full speed clock init */
661static void __init at91_upll_usbfs_clock_init(unsigned long main_clock)
662{
663 /*
664 * USB clock init: choose 480 MHz from UPLL,
665 */
666 unsigned int usbr = AT91_PMC_USBS_UPLL;
667
668 /* Setup divider by 10 to reach 48 MHz */
669 usbr |= ((10 - 1) << 8) & AT91_PMC_OHCIUSBDIV;
670
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800671 at91_pmc_write(AT91_PMC_USB, usbr);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100672
673 /* Now set uhpck values */
674 uhpck.parent = &utmi_clk;
675 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
Ryan Mallon82515442010-06-02 12:55:36 +1200676 uhpck.rate_hz = utmi_clk.rate_hz;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800677 uhpck.rate_hz /= 1 + ((at91_pmc_read(AT91_PMC_USB) & AT91_PMC_OHCIUSBDIV) >> 8);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100678}
679
Jean-Christophe PLAGNIOL-VILLARDeb5e76f2012-03-02 20:44:23 +0800680static int __init at91_pmc_init(unsigned long main_clock)
SAN People73a59c12006-01-09 17:05:41 +0000681{
682 unsigned tmp, freq, mckr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100683 int i;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100684 int pll_overclock = false;
SAN People73a59c12006-01-09 17:05:41 +0000685
686 /*
687 * When the bootloader initialized the main oscillator correctly,
688 * there's no problem using the cycle counter. But if it didn't,
689 * or when using oscillator bypass mode, we must be told the speed
690 * of the main clock.
691 */
692 if (!main_clock) {
693 do {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800694 tmp = at91_pmc_read(AT91_CKGR_MCFR);
Andrew Victor69b648a2006-03-22 20:14:14 +0000695 } while (!(tmp & AT91_PMC_MAINRDY));
696 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
SAN People73a59c12006-01-09 17:05:41 +0000697 }
698 main_clk.rate_hz = main_clock;
699
700 /* report if PLLA is more than mildly overclocked */
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800701 plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_pmc_read(AT91_CKGR_PLLAR));
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100702 if (cpu_has_300M_plla()) {
703 if (plla.rate_hz > 300000000)
704 pll_overclock = true;
705 } else if (cpu_has_800M_plla()) {
706 if (plla.rate_hz > 800000000)
707 pll_overclock = true;
708 } else {
709 if (plla.rate_hz > 209000000)
710 pll_overclock = true;
711 }
712 if (pll_overclock)
SAN People73a59c12006-01-09 17:05:41 +0000713 pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000);
714
Nicolas Ferre11128722011-03-10 19:08:54 +0100715 if (cpu_has_plladiv2()) {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800716 mckr = at91_pmc_read(AT91_PMC_MCKR);
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100717 plla.rate_hz /= (1 << ((mckr & AT91_PMC_PLLADIV2) >> 12)); /* plla divisor by 2 */
718 }
SAN People73a59c12006-01-09 17:05:41 +0000719
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100720 if (!cpu_has_pllb() && cpu_has_upll()) {
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100721 /* setup UTMI clock as the fourth primary clock
722 * (instead of pllb) */
723 utmi_clk.type |= CLK_TYPE_PRIMARY;
724 utmi_clk.id = 3;
725 }
726
Andrew Victor69b648a2006-03-22 20:14:14 +0000727
SAN People73a59c12006-01-09 17:05:41 +0000728 /*
Stelian Pop53d71682008-04-05 21:14:03 +0100729 * USB HS clock init
730 */
Andrew Victor5e38efa2009-12-15 21:57:27 +0100731 if (cpu_has_utmi()) {
Stelian Pop53d71682008-04-05 21:14:03 +0100732 /*
733 * multiplier is hard-wired to 40
734 * (obtain the USB High Speed 480 MHz when input is 12 MHz)
735 */
736 utmi_clk.rate_hz = 40 * utmi_clk.parent->rate_hz;
Nicolas Ferre11128722011-03-10 19:08:54 +0100737
738 /* UTMI bias and PLL are managed at the same time */
739 if (cpu_has_upll())
740 utmi_clk.pmc_mask |= AT91_PMC_BIASEN;
Andrew Victor5e38efa2009-12-15 21:57:27 +0100741 }
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100742
743 /*
744 * USB FS clock init
745 */
746 if (cpu_has_pllb())
747 at91_pllb_usbfs_clock_init(main_clock);
748 if (cpu_has_upll())
749 /* assumes that we choose UPLL for USB and not PLLA */
750 at91_upll_usbfs_clock_init(main_clock);
Stelian Pop53d71682008-04-05 21:14:03 +0100751
752 /*
SAN People73a59c12006-01-09 17:05:41 +0000753 * MCK and CPU derive from one of those primary clocks.
754 * For now, assume this parentage won't change.
755 */
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800756 mckr = at91_pmc_read(AT91_PMC_MCKR);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100757 mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS);
SAN People73a59c12006-01-09 17:05:41 +0000758 freq = mck.parent->rate_hz;
Nicolas Ferre11128722011-03-10 19:08:54 +0100759 freq /= pmc_prescaler_divider(mckr); /* prescale */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100760 if (cpu_is_at91rm9200()) {
Andrew Victora95c7292007-11-19 11:52:09 +0100761 mck.rate_hz = freq / (1 + ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100762 } else if (cpu_is_at91sam9g20()) {
sedji gaouaou61352662008-07-10 10:15:35 +0100763 mck.rate_hz = (mckr & AT91_PMC_MDIV) ?
764 freq / ((mckr & AT91_PMC_MDIV) >> 7) : freq; /* mdiv ; (x >> 7) = ((x >> 8) * 2) */
765 if (mckr & AT91_PMC_PDIV)
766 freq /= 2; /* processor clock division */
Nicolas Ferre11128722011-03-10 19:08:54 +0100767 } else if (cpu_has_mdiv3()) {
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100768 mck.rate_hz = (mckr & AT91_PMC_MDIV) == AT91SAM9_PMC_MDIV_3 ?
769 freq / 3 : freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100770 } else {
Andrew Victor5e38efa2009-12-15 21:57:27 +0100771 mck.rate_hz = freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100772 }
SAN People73a59c12006-01-09 17:05:41 +0000773
Nicolas Ferre11128722011-03-10 19:08:54 +0100774 if (cpu_has_alt_prescaler()) {
775 /* Programmable clocks can use MCK */
776 mck.type |= CLK_TYPE_PRIMARY;
777 mck.id = 4;
778 }
779
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100780 /* Register the PMC's standard clocks */
781 for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++)
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100782 at91_clk_add(standard_pmc_clocks[i]);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100783
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100784 if (cpu_has_pllb())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100785 at91_clk_add(&pllb);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100786
787 if (cpu_has_uhp())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100788 at91_clk_add(&uhpck);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100789
790 if (cpu_has_udpfs())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100791 at91_clk_add(&udpck);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100792
793 if (cpu_has_utmi())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100794 at91_clk_add(&utmi_clk);
Stelian Pop53d71682008-04-05 21:14:03 +0100795
Andrew Victor91f8ed82006-06-19 13:20:23 +0100796 /* MCK and CPU clock are "always on" */
797 clk_enable(&mck);
798
SAN People73a59c12006-01-09 17:05:41 +0000799 printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n",
800 freq / 1000000, (unsigned) mck.rate_hz / 1000000,
801 (unsigned) main_clock / 1000000,
802 ((unsigned) main_clock % 1000000) / 1000);
803
Andrew Victorc9b75d12007-02-08 17:36:34 +0100804 return 0;
805}
Andrew Victor91f8ed82006-06-19 13:20:23 +0100806
Jean-Christophe PLAGNIOL-VILLARDeb5e76f2012-03-02 20:44:23 +0800807#if defined(CONFIG_OF)
808static struct of_device_id pmc_ids[] = {
809 { .compatible = "atmel,at91rm9200-pmc" },
810 { /*sentinel*/ }
811};
812
813static struct of_device_id osc_ids[] = {
814 { .compatible = "atmel,osc" },
815 { /*sentinel*/ }
816};
817
818int __init at91_dt_clock_init(void)
819{
820 struct device_node *np;
821 u32 main_clock = 0;
822
823 np = of_find_matching_node(NULL, pmc_ids);
824 if (!np)
825 panic("unable to find compatible pmc node in dtb\n");
826
827 at91_pmc_base = of_iomap(np, 0);
828 if (!at91_pmc_base)
829 panic("unable to map pmc cpu registers\n");
830
831 of_node_put(np);
832
833 /* retrieve the freqency of fixed clocks from device tree */
834 np = of_find_matching_node(NULL, osc_ids);
835 if (np) {
836 u32 rate;
837 if (!of_property_read_u32(np, "clock-frequency", &rate))
838 main_clock = rate;
839 }
840
841 of_node_put(np);
842
843 return at91_pmc_init(main_clock);
844}
845#endif
846
847int __init at91_clock_init(unsigned long main_clock)
848{
849 at91_pmc_base = ioremap(AT91_PMC, 256);
850 if (!at91_pmc_base)
851 panic("Impossible to ioremap AT91_PMC 0x%x\n", AT91_PMC);
852
853 return at91_pmc_init(main_clock);
854}
855
Andrew Victorc9b75d12007-02-08 17:36:34 +0100856/*
857 * Several unused clocks may be active. Turn them off.
858 */
859static int __init at91_clock_reset(void)
860{
861 unsigned long pcdr = 0;
862 unsigned long scdr = 0;
863 struct clk *clk;
864
865 list_for_each_entry(clk, &clocks, node) {
866 if (clk->users > 0)
867 continue;
868
869 if (clk->mode == pmc_periph_mode)
870 pcdr |= clk->pmc_mask;
871
872 if (clk->mode == pmc_sys_mode)
873 scdr |= clk->pmc_mask;
874
875 pr_debug("Clocks: disable unused %s\n", clk->name);
876 }
877
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800878 at91_pmc_write(AT91_PMC_PCDR, pcdr);
879 at91_pmc_write(AT91_PMC_SCDR, scdr);
SAN People73a59c12006-01-09 17:05:41 +0000880
881 return 0;
882}
Andrew Victorc9b75d12007-02-08 17:36:34 +0100883late_initcall(at91_clock_reset);
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800884
885void at91sam9_idle(void)
886{
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800887 at91_pmc_write(AT91_PMC_SCDR, AT91_PMC_PCK);
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800888 cpu_do_idle();
889}