blob: 6b692824c9885555fffe031ead3bafcdf71d141d [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;
Joachim Eastwoodf19b7972012-04-07 19:30:22 +020038EXPORT_SYMBOL_GPL(at91_pmc_base);
Andrew Victor55c20c02006-06-20 19:31:39 +010039
SAN People73a59c12006-01-09 17:05:41 +000040/*
41 * There's a lot more which can be done with clocks, including cpufreq
42 * integration, slow clock mode support (for system suspend), letting
43 * PLLB be used at other rates (on boards that don't need USB), etc.
44 */
45
Andrew Victor2eeaaa22006-09-27 10:50:59 +010046#define clk_is_primary(x) ((x)->type & CLK_TYPE_PRIMARY)
47#define clk_is_programmable(x) ((x)->type & CLK_TYPE_PROGRAMMABLE)
48#define clk_is_peripheral(x) ((x)->type & CLK_TYPE_PERIPHERAL)
Andrew Victord481f862006-12-01 11:27:31 +010049#define clk_is_sys(x) ((x)->type & CLK_TYPE_SYSTEM)
SAN People73a59c12006-01-09 17:05:41 +000050
Andrew Victor2eeaaa22006-09-27 10:50:59 +010051
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010052/*
53 * Chips have some kind of clocks : group them by functionality
54 */
Jean-Christophe PLAGNIOL-VILLARD9918cea2012-01-26 14:07:09 +010055#define cpu_has_utmi() ( cpu_is_at91sam9rl() \
Nicolas Ferre11128722011-03-10 19:08:54 +010056 || cpu_is_at91sam9g45() \
57 || cpu_is_at91sam9x5())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010058
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010059#define cpu_has_800M_plla() ( cpu_is_at91sam9g20() \
Nicolas Ferre11128722011-03-10 19:08:54 +010060 || cpu_is_at91sam9g45() \
61 || cpu_is_at91sam9x5())
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() \
67 || cpu_is_at91sam9x5()))
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010068
Nicolas Ferre11128722011-03-10 19:08:54 +010069#define cpu_has_upll() (cpu_is_at91sam9g45() \
70 || cpu_is_at91sam9x5())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010071
72/* USB host HS & FS */
73#define cpu_has_uhp() (!cpu_is_at91sam9rl())
74
75/* USB device FS only */
Nicolas Ferre2ef9df72009-06-26 15:36:57 +010076#define cpu_has_udpfs() (!(cpu_is_at91sam9rl() \
Nicolas Ferre11128722011-03-10 19:08:54 +010077 || cpu_is_at91sam9g45() \
78 || cpu_is_at91sam9x5()))
79
80#define cpu_has_plladiv2() (cpu_is_at91sam9g45() \
81 || cpu_is_at91sam9x5())
82
83#define cpu_has_mdiv3() (cpu_is_at91sam9g45() \
84 || cpu_is_at91sam9x5())
85
86#define cpu_has_alt_prescaler() (cpu_is_at91sam9x5())
Nicolas Ferre6d0485a2009-03-31 17:13:15 +010087
Andrew Victor2eeaaa22006-09-27 10:50:59 +010088static LIST_HEAD(clocks);
89static DEFINE_SPINLOCK(clk_lock);
90
91static u32 at91_pllb_usb_init;
SAN People73a59c12006-01-09 17:05:41 +000092
93/*
94 * Four primary clock sources: two crystal oscillators (32K, main), and
95 * two PLLs. PLLA usually runs the master clock; and PLLB must run at
96 * 48 MHz (unless no USB function clocks are needed). The main clock and
97 * both PLLs are turned off to run in "slow clock mode" (system suspend).
98 */
99static struct clk clk32k = {
100 .name = "clk32k",
101 .rate_hz = AT91_SLOW_CLOCK,
102 .users = 1, /* always on */
103 .id = 0,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100104 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +0000105};
106static struct clk main_clk = {
107 .name = "main",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100108 .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000109 .id = 1,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100110 .type = CLK_TYPE_PRIMARY,
SAN People73a59c12006-01-09 17:05:41 +0000111};
112static struct clk plla = {
113 .name = "plla",
114 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100115 .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000116 .id = 2,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100117 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000118};
119
120static void pllb_mode(struct clk *clk, int is_on)
121{
122 u32 value;
123
124 if (is_on) {
125 is_on = AT91_PMC_LOCKB;
126 value = at91_pllb_usb_init;
127 } else
128 value = 0;
129
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100130 // REVISIT: Add work-around for AT91RM9200 Errata #26 ?
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800131 at91_pmc_write(AT91_CKGR_PLLBR, value);
SAN People73a59c12006-01-09 17:05:41 +0000132
133 do {
134 cpu_relax();
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800135 } while ((at91_pmc_read(AT91_PMC_SR) & AT91_PMC_LOCKB) != is_on);
SAN People73a59c12006-01-09 17:05:41 +0000136}
137
138static struct clk pllb = {
139 .name = "pllb",
140 .parent = &main_clk,
Andrew Victor91f8ed82006-06-19 13:20:23 +0100141 .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000142 .mode = pllb_mode,
143 .id = 3,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100144 .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL,
SAN People73a59c12006-01-09 17:05:41 +0000145};
146
147static void pmc_sys_mode(struct clk *clk, int is_on)
148{
149 if (is_on)
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800150 at91_pmc_write(AT91_PMC_SCER, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000151 else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800152 at91_pmc_write(AT91_PMC_SCDR, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000153}
154
Stelian Pop53d71682008-04-05 21:14:03 +0100155static void pmc_uckr_mode(struct clk *clk, int is_on)
156{
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800157 unsigned int uckr = at91_pmc_read(AT91_CKGR_UCKR);
Stelian Pop53d71682008-04-05 21:14:03 +0100158
159 if (is_on) {
160 is_on = AT91_PMC_LOCKU;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800161 at91_pmc_write(AT91_CKGR_UCKR, uckr | clk->pmc_mask);
Stelian Pop53d71682008-04-05 21:14:03 +0100162 } else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800163 at91_pmc_write(AT91_CKGR_UCKR, uckr & ~(clk->pmc_mask));
Stelian Pop53d71682008-04-05 21:14:03 +0100164
165 do {
166 cpu_relax();
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800167 } while ((at91_pmc_read(AT91_PMC_SR) & AT91_PMC_LOCKU) != is_on);
Stelian Pop53d71682008-04-05 21:14:03 +0100168}
169
SAN People73a59c12006-01-09 17:05:41 +0000170/* USB function clocks (PLLB must be 48 MHz) */
171static struct clk udpck = {
172 .name = "udpck",
173 .parent = &pllb,
SAN People73a59c12006-01-09 17:05:41 +0000174 .mode = pmc_sys_mode,
175};
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100176struct clk utmi_clk = {
Stelian Pop53d71682008-04-05 21:14:03 +0100177 .name = "utmi_clk",
178 .parent = &main_clk,
179 .pmc_mask = AT91_PMC_UPLLEN, /* in CKGR_UCKR */
180 .mode = pmc_uckr_mode,
181 .type = CLK_TYPE_PLL,
182};
SAN People73a59c12006-01-09 17:05:41 +0000183static struct clk uhpck = {
184 .name = "uhpck",
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100185 /*.parent = ... we choose parent at runtime */
SAN People73a59c12006-01-09 17:05:41 +0000186 .mode = pmc_sys_mode,
187};
188
SAN People73a59c12006-01-09 17:05:41 +0000189
190/*
191 * The master clock is divided from the CPU clock (by 1-4). It's used for
192 * memory, interfaces to on-chip peripherals, the AIC, and sometimes more
193 * (e.g baud rate generation). It's sourced from one of the primary clocks.
194 */
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100195struct clk mck = {
SAN People73a59c12006-01-09 17:05:41 +0000196 .name = "mck",
Andrew Victor91f8ed82006-06-19 13:20:23 +0100197 .pmc_mask = AT91_PMC_MCKRDY, /* in PMC_SR */
SAN People73a59c12006-01-09 17:05:41 +0000198};
199
200static void pmc_periph_mode(struct clk *clk, int is_on)
201{
202 if (is_on)
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800203 at91_pmc_write(AT91_PMC_PCER, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000204 else
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800205 at91_pmc_write(AT91_PMC_PCDR, clk->pmc_mask);
SAN People73a59c12006-01-09 17:05:41 +0000206}
207
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100208static struct clk __init *at91_css_to_clk(unsigned long css)
209{
210 switch (css) {
211 case AT91_PMC_CSS_SLOW:
212 return &clk32k;
213 case AT91_PMC_CSS_MAIN:
214 return &main_clk;
215 case AT91_PMC_CSS_PLLA:
216 return &plla;
217 case AT91_PMC_CSS_PLLB:
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100218 if (cpu_has_upll())
219 /* CSS_PLLB == CSS_UPLL */
220 return &utmi_clk;
221 else if (cpu_has_pllb())
222 return &pllb;
Nicolas Ferre11128722011-03-10 19:08:54 +0100223 break;
224 /* alternate PMC: can use master clock */
225 case AT91_PMC_CSS_MASTER:
226 return &mck;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100227 }
SAN People73a59c12006-01-09 17:05:41 +0000228
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100229 return NULL;
230}
SAN People73a59c12006-01-09 17:05:41 +0000231
Nicolas Ferre11128722011-03-10 19:08:54 +0100232static int pmc_prescaler_divider(u32 reg)
233{
234 if (cpu_has_alt_prescaler()) {
235 return 1 << ((reg & AT91_PMC_ALT_PRES) >> PMC_ALT_PRES_OFFSET);
236 } else {
237 return 1 << ((reg & AT91_PMC_PRES) >> PMC_PRES_OFFSET);
238 }
239}
240
SAN People73a59c12006-01-09 17:05:41 +0000241static void __clk_enable(struct clk *clk)
242{
243 if (clk->parent)
244 __clk_enable(clk->parent);
245 if (clk->users++ == 0 && clk->mode)
246 clk->mode(clk, 1);
247}
248
249int clk_enable(struct clk *clk)
250{
251 unsigned long flags;
252
253 spin_lock_irqsave(&clk_lock, flags);
254 __clk_enable(clk);
255 spin_unlock_irqrestore(&clk_lock, flags);
256 return 0;
257}
258EXPORT_SYMBOL(clk_enable);
259
260static void __clk_disable(struct clk *clk)
261{
262 BUG_ON(clk->users == 0);
263 if (--clk->users == 0 && clk->mode)
264 clk->mode(clk, 0);
265 if (clk->parent)
266 __clk_disable(clk->parent);
267}
268
269void clk_disable(struct clk *clk)
270{
271 unsigned long flags;
272
273 spin_lock_irqsave(&clk_lock, flags);
274 __clk_disable(clk);
275 spin_unlock_irqrestore(&clk_lock, flags);
276}
277EXPORT_SYMBOL(clk_disable);
278
279unsigned long clk_get_rate(struct clk *clk)
280{
281 unsigned long flags;
282 unsigned long rate;
283
284 spin_lock_irqsave(&clk_lock, flags);
285 for (;;) {
286 rate = clk->rate_hz;
287 if (rate || !clk->parent)
288 break;
289 clk = clk->parent;
290 }
291 spin_unlock_irqrestore(&clk_lock, flags);
292 return rate;
293}
294EXPORT_SYMBOL(clk_get_rate);
295
296/*------------------------------------------------------------------------*/
297
298#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
299
300/*
301 * For now, only the programmable clocks support reparenting (MCK could
302 * do this too, with care) or rate changing (the PLLs could do this too,
303 * ditto MCK but that's more for cpufreq). Drivers may reparent to get
304 * a better rate match; we don't.
305 */
306
307long clk_round_rate(struct clk *clk, unsigned long rate)
308{
309 unsigned long flags;
310 unsigned prescale;
311 unsigned long actual;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100312 unsigned long prev = ULONG_MAX;
SAN People73a59c12006-01-09 17:05:41 +0000313
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100314 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000315 return -EINVAL;
316 spin_lock_irqsave(&clk_lock, flags);
317
318 actual = clk->parent->rate_hz;
319 for (prescale = 0; prescale < 7; prescale++) {
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100320 if (actual > rate)
321 prev = actual;
322
323 if (actual && actual <= rate) {
324 if ((prev - rate) < (rate - actual)) {
325 actual = prev;
326 prescale--;
327 }
SAN People73a59c12006-01-09 17:05:41 +0000328 break;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100329 }
SAN People73a59c12006-01-09 17:05:41 +0000330 actual >>= 1;
331 }
332
333 spin_unlock_irqrestore(&clk_lock, flags);
334 return (prescale < 7) ? actual : -ENOENT;
335}
336EXPORT_SYMBOL(clk_round_rate);
337
338int clk_set_rate(struct clk *clk, unsigned long rate)
339{
340 unsigned long flags;
341 unsigned prescale;
Nicolas Ferre11128722011-03-10 19:08:54 +0100342 unsigned long prescale_offset, css_mask;
SAN People73a59c12006-01-09 17:05:41 +0000343 unsigned long actual;
344
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100345 if (!clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000346 return -EINVAL;
347 if (clk->users)
348 return -EBUSY;
Nicolas Ferre11128722011-03-10 19:08:54 +0100349
350 if (cpu_has_alt_prescaler()) {
351 prescale_offset = PMC_ALT_PRES_OFFSET;
352 css_mask = AT91_PMC_ALT_PCKR_CSS;
353 } else {
354 prescale_offset = PMC_PRES_OFFSET;
355 css_mask = AT91_PMC_CSS;
356 }
357
SAN People73a59c12006-01-09 17:05:41 +0000358 spin_lock_irqsave(&clk_lock, flags);
359
360 actual = clk->parent->rate_hz;
361 for (prescale = 0; prescale < 7; prescale++) {
362 if (actual && actual <= rate) {
363 u32 pckr;
364
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800365 pckr = at91_pmc_read(AT91_PMC_PCKR(clk->id));
Nicolas Ferre11128722011-03-10 19:08:54 +0100366 pckr &= css_mask; /* keep clock selection */
367 pckr |= prescale << prescale_offset;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800368 at91_pmc_write(AT91_PMC_PCKR(clk->id), pckr);
SAN People73a59c12006-01-09 17:05:41 +0000369 clk->rate_hz = actual;
370 break;
371 }
372 actual >>= 1;
373 }
374
375 spin_unlock_irqrestore(&clk_lock, flags);
376 return (prescale < 7) ? actual : -ENOENT;
377}
378EXPORT_SYMBOL(clk_set_rate);
379
380struct clk *clk_get_parent(struct clk *clk)
381{
382 return clk->parent;
383}
384EXPORT_SYMBOL(clk_get_parent);
385
386int clk_set_parent(struct clk *clk, struct clk *parent)
387{
388 unsigned long flags;
389
390 if (clk->users)
391 return -EBUSY;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100392 if (!clk_is_primary(parent) || !clk_is_programmable(clk))
SAN People73a59c12006-01-09 17:05:41 +0000393 return -EINVAL;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100394
395 if (cpu_is_at91sam9rl() && parent->id == AT91_PMC_CSS_PLLB)
396 return -EINVAL;
397
SAN People73a59c12006-01-09 17:05:41 +0000398 spin_lock_irqsave(&clk_lock, flags);
399
400 clk->rate_hz = parent->rate_hz;
401 clk->parent = parent;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800402 at91_pmc_write(AT91_PMC_PCKR(clk->id), parent->id);
SAN People73a59c12006-01-09 17:05:41 +0000403
404 spin_unlock_irqrestore(&clk_lock, flags);
405 return 0;
406}
407EXPORT_SYMBOL(clk_set_parent);
408
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100409/* establish PCK0..PCKN parentage and rate */
David Brownell72e7ae82008-02-06 22:03:42 +0100410static void __init init_programmable_clock(struct clk *clk)
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100411{
412 struct clk *parent;
413 u32 pckr;
Nicolas Ferre11128722011-03-10 19:08:54 +0100414 unsigned int css_mask;
415
416 if (cpu_has_alt_prescaler())
417 css_mask = AT91_PMC_ALT_PCKR_CSS;
418 else
419 css_mask = AT91_PMC_CSS;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100420
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800421 pckr = at91_pmc_read(AT91_PMC_PCKR(clk->id));
Nicolas Ferre11128722011-03-10 19:08:54 +0100422 parent = at91_css_to_clk(pckr & css_mask);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100423 clk->parent = parent;
Nicolas Ferre11128722011-03-10 19:08:54 +0100424 clk->rate_hz = parent->rate_hz / pmc_prescaler_divider(pckr);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100425}
426
SAN People73a59c12006-01-09 17:05:41 +0000427#endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */
428
429/*------------------------------------------------------------------------*/
430
431#ifdef CONFIG_DEBUG_FS
432
433static int at91_clk_show(struct seq_file *s, void *unused)
434{
Stelian Pop53d71682008-04-05 21:14:03 +0100435 u32 scsr, pcsr, uckr = 0, sr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100436 struct clk *clk;
SAN People73a59c12006-01-09 17:05:41 +0000437
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800438 scsr = at91_pmc_read(AT91_PMC_SCSR);
439 pcsr = at91_pmc_read(AT91_PMC_PCSR);
440 sr = at91_pmc_read(AT91_PMC_SR);
Nicolas Ferre940192e2012-02-23 09:44:37 +0100441 seq_printf(s, "SCSR = %8x\n", scsr);
442 seq_printf(s, "PCSR = %8x\n", pcsr);
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800443 seq_printf(s, "MOR = %8x\n", at91_pmc_read(AT91_CKGR_MOR));
444 seq_printf(s, "MCFR = %8x\n", at91_pmc_read(AT91_CKGR_MCFR));
445 seq_printf(s, "PLLA = %8x\n", at91_pmc_read(AT91_CKGR_PLLAR));
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100446 if (cpu_has_pllb())
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800447 seq_printf(s, "PLLB = %8x\n", at91_pmc_read(AT91_CKGR_PLLBR));
Nicolas Ferre940192e2012-02-23 09:44:37 +0100448 if (cpu_has_utmi()) {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800449 uckr = at91_pmc_read(AT91_CKGR_UCKR);
Nicolas Ferre940192e2012-02-23 09:44:37 +0100450 seq_printf(s, "UCKR = %8x\n", uckr);
451 }
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800452 seq_printf(s, "MCKR = %8x\n", at91_pmc_read(AT91_PMC_MCKR));
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100453 if (cpu_has_upll())
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800454 seq_printf(s, "USB = %8x\n", at91_pmc_read(AT91_PMC_USB));
Nicolas Ferre940192e2012-02-23 09:44:37 +0100455 seq_printf(s, "SR = %8x\n", sr);
SAN People73a59c12006-01-09 17:05:41 +0000456
457 seq_printf(s, "\n");
458
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100459 list_for_each_entry(clk, &clocks, node) {
460 char *state;
SAN People73a59c12006-01-09 17:05:41 +0000461
462 if (clk->mode == pmc_sys_mode)
463 state = (scsr & clk->pmc_mask) ? "on" : "off";
464 else if (clk->mode == pmc_periph_mode)
465 state = (pcsr & clk->pmc_mask) ? "on" : "off";
Stelian Pop53d71682008-04-05 21:14:03 +0100466 else if (clk->mode == pmc_uckr_mode)
467 state = (uckr & clk->pmc_mask) ? "on" : "off";
SAN People73a59c12006-01-09 17:05:41 +0000468 else if (clk->pmc_mask)
469 state = (sr & clk->pmc_mask) ? "on" : "off";
470 else if (clk == &clk32k || clk == &main_clk)
471 state = "on";
472 else
473 state = "";
474
Andrew Victor69b648a2006-03-22 20:14:14 +0000475 seq_printf(s, "%-10s users=%2d %-3s %9ld Hz %s\n",
SAN People73a59c12006-01-09 17:05:41 +0000476 clk->name, clk->users, state, clk_get_rate(clk),
477 clk->parent ? clk->parent->name : "");
478 }
479 return 0;
480}
481
482static int at91_clk_open(struct inode *inode, struct file *file)
483{
484 return single_open(file, at91_clk_show, NULL);
485}
486
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800487static const struct file_operations at91_clk_operations = {
SAN People73a59c12006-01-09 17:05:41 +0000488 .open = at91_clk_open,
489 .read = seq_read,
490 .llseek = seq_lseek,
491 .release = single_release,
492};
493
494static int __init at91_clk_debugfs_init(void)
495{
496 /* /sys/kernel/debug/at91_clk */
497 (void) debugfs_create_file("at91_clk", S_IFREG | S_IRUGO, NULL, NULL, &at91_clk_operations);
498
499 return 0;
500}
501postcore_initcall(at91_clk_debugfs_init);
502
503#endif
504
505/*------------------------------------------------------------------------*/
506
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100507/* Register a new clock */
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100508static void __init at91_clk_add(struct clk *clk)
509{
510 list_add_tail(&clk->node, &clocks);
511
512 clk->cl.con_id = clk->name;
513 clk->cl.clk = clk;
514 clkdev_add(&clk->cl);
515}
516
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100517int __init clk_register(struct clk *clk)
518{
519 if (clk_is_peripheral(clk)) {
Nicolas Ferre5afddee2010-09-09 19:58:23 +0200520 if (!clk->parent)
521 clk->parent = &mck;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100522 clk->mode = pmc_periph_mode;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100523 }
Andrew Victord481f862006-12-01 11:27:31 +0100524 else if (clk_is_sys(clk)) {
525 clk->parent = &mck;
526 clk->mode = pmc_sys_mode;
Andrew Victord481f862006-12-01 11:27:31 +0100527 }
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100528#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
529 else if (clk_is_programmable(clk)) {
530 clk->mode = pmc_sys_mode;
531 init_programmable_clock(clk);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100532 }
533#endif
534
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100535 at91_clk_add(clk);
536
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100537 return 0;
538}
539
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100540/*------------------------------------------------------------------------*/
541
SAN People73a59c12006-01-09 17:05:41 +0000542static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg)
543{
544 unsigned mul, div;
545
546 div = reg & 0xff;
547 mul = (reg >> 16) & 0x7ff;
548 if (div && mul) {
549 freq /= div;
550 freq *= mul + 1;
551 } else
552 freq = 0;
Andrew Victor69b648a2006-03-22 20:14:14 +0000553
SAN People73a59c12006-01-09 17:05:41 +0000554 return freq;
555}
556
Andrew Victor69b648a2006-03-22 20:14:14 +0000557static u32 __init at91_usb_rate(struct clk *pll, u32 freq, u32 reg)
558{
559 if (pll == &pllb && (reg & AT91_PMC_USB96M))
560 return freq / 2;
561 else
562 return freq;
563}
564
SAN People73a59c12006-01-09 17:05:41 +0000565static unsigned __init at91_pll_calc(unsigned main_freq, unsigned out_freq)
566{
567 unsigned i, div = 0, mul = 0, diff = 1 << 30;
568 unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00;
569
570 /* PLL output max 240 MHz (or 180 MHz per errata) */
571 if (out_freq > 240000000)
572 goto fail;
573
574 for (i = 1; i < 256; i++) {
575 int diff1;
576 unsigned input, mul1;
577
578 /*
579 * PLL input between 1MHz and 32MHz per spec, but lower
580 * frequences seem necessary in some cases so allow 100K.
sedji gaouaou61352662008-07-10 10:15:35 +0100581 * Warning: some newer products need 2MHz min.
SAN People73a59c12006-01-09 17:05:41 +0000582 */
583 input = main_freq / i;
sedji gaouaou61352662008-07-10 10:15:35 +0100584 if (cpu_is_at91sam9g20() && input < 2000000)
585 continue;
SAN People73a59c12006-01-09 17:05:41 +0000586 if (input < 100000)
587 continue;
588 if (input > 32000000)
589 continue;
590
591 mul1 = out_freq / input;
sedji gaouaou61352662008-07-10 10:15:35 +0100592 if (cpu_is_at91sam9g20() && mul > 63)
593 continue;
SAN People73a59c12006-01-09 17:05:41 +0000594 if (mul1 > 2048)
595 continue;
596 if (mul1 < 2)
597 goto fail;
598
599 diff1 = out_freq - input * mul1;
600 if (diff1 < 0)
601 diff1 = -diff1;
602 if (diff > diff1) {
603 diff = diff1;
604 div = i;
605 mul = mul1;
606 if (diff == 0)
607 break;
608 }
609 }
610 if (i == 256 && diff > (out_freq >> 5))
611 goto fail;
612 return ret | ((mul - 1) << 16) | div;
613fail:
614 return 0;
615}
616
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100617static struct clk *const standard_pmc_clocks[] __initdata = {
618 /* four primary clocks */
619 &clk32k,
620 &main_clk,
621 &plla,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100622
623 /* MCK */
624 &mck
625};
626
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100627/* PLLB generated USB full speed clock init */
628static void __init at91_pllb_usbfs_clock_init(unsigned long main_clock)
629{
630 /*
631 * USB clock init: choose 48 MHz PLLB value,
632 * disable 48MHz clock during usb peripheral suspend.
633 *
634 * REVISIT: assumes MCK doesn't derive from PLLB!
635 */
636 uhpck.parent = &pllb;
637
638 at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | AT91_PMC_USB96M;
639 pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init);
640 if (cpu_is_at91rm9200()) {
641 uhpck.pmc_mask = AT91RM9200_PMC_UHP;
642 udpck.pmc_mask = AT91RM9200_PMC_UDP;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800643 at91_pmc_write(AT91_PMC_SCER, AT91RM9200_PMC_MCKUDP);
Nicolas Ferreeab41702009-06-26 15:37:00 +0100644 } else if (cpu_is_at91sam9260() || cpu_is_at91sam9261() ||
645 cpu_is_at91sam9263() || cpu_is_at91sam9g20() ||
Jean-Christophe PLAGNIOL-VILLARD7a2207a2011-05-17 20:51:14 +0800646 cpu_is_at91sam9g10()) {
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100647 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
648 udpck.pmc_mask = AT91SAM926x_PMC_UDP;
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100649 }
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800650 at91_pmc_write(AT91_CKGR_PLLBR, 0);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100651
652 udpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
653 uhpck.rate_hz = at91_usb_rate(&pllb, pllb.rate_hz, at91_pllb_usb_init);
654}
655
656/* UPLL generated USB full speed clock init */
657static void __init at91_upll_usbfs_clock_init(unsigned long main_clock)
658{
659 /*
660 * USB clock init: choose 480 MHz from UPLL,
661 */
662 unsigned int usbr = AT91_PMC_USBS_UPLL;
663
664 /* Setup divider by 10 to reach 48 MHz */
665 usbr |= ((10 - 1) << 8) & AT91_PMC_OHCIUSBDIV;
666
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800667 at91_pmc_write(AT91_PMC_USB, usbr);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100668
669 /* Now set uhpck values */
670 uhpck.parent = &utmi_clk;
671 uhpck.pmc_mask = AT91SAM926x_PMC_UHP;
Ryan Mallon82515442010-06-02 12:55:36 +1200672 uhpck.rate_hz = utmi_clk.rate_hz;
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800673 uhpck.rate_hz /= 1 + ((at91_pmc_read(AT91_PMC_USB) & AT91_PMC_OHCIUSBDIV) >> 8);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100674}
675
Jean-Christophe PLAGNIOL-VILLARDeb5e76f2012-03-02 20:44:23 +0800676static int __init at91_pmc_init(unsigned long main_clock)
SAN People73a59c12006-01-09 17:05:41 +0000677{
678 unsigned tmp, freq, mckr;
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100679 int i;
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100680 int pll_overclock = false;
SAN People73a59c12006-01-09 17:05:41 +0000681
682 /*
683 * When the bootloader initialized the main oscillator correctly,
684 * there's no problem using the cycle counter. But if it didn't,
685 * or when using oscillator bypass mode, we must be told the speed
686 * of the main clock.
687 */
688 if (!main_clock) {
689 do {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800690 tmp = at91_pmc_read(AT91_CKGR_MCFR);
Andrew Victor69b648a2006-03-22 20:14:14 +0000691 } while (!(tmp & AT91_PMC_MAINRDY));
692 main_clock = (tmp & AT91_PMC_MAINF) * (AT91_SLOW_CLOCK / 16);
SAN People73a59c12006-01-09 17:05:41 +0000693 }
694 main_clk.rate_hz = main_clock;
695
696 /* report if PLLA is more than mildly overclocked */
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800697 plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_pmc_read(AT91_CKGR_PLLAR));
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100698 if (cpu_has_300M_plla()) {
699 if (plla.rate_hz > 300000000)
700 pll_overclock = true;
701 } else if (cpu_has_800M_plla()) {
702 if (plla.rate_hz > 800000000)
703 pll_overclock = true;
704 } else {
705 if (plla.rate_hz > 209000000)
706 pll_overclock = true;
707 }
708 if (pll_overclock)
SAN People73a59c12006-01-09 17:05:41 +0000709 pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000);
710
Nicolas Ferre11128722011-03-10 19:08:54 +0100711 if (cpu_has_plladiv2()) {
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800712 mckr = at91_pmc_read(AT91_PMC_MCKR);
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100713 plla.rate_hz /= (1 << ((mckr & AT91_PMC_PLLADIV2) >> 12)); /* plla divisor by 2 */
714 }
SAN People73a59c12006-01-09 17:05:41 +0000715
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100716 if (!cpu_has_pllb() && cpu_has_upll()) {
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100717 /* setup UTMI clock as the fourth primary clock
718 * (instead of pllb) */
719 utmi_clk.type |= CLK_TYPE_PRIMARY;
720 utmi_clk.id = 3;
721 }
722
Andrew Victor69b648a2006-03-22 20:14:14 +0000723
SAN People73a59c12006-01-09 17:05:41 +0000724 /*
Stelian Pop53d71682008-04-05 21:14:03 +0100725 * USB HS clock init
726 */
Andrew Victor5e38efa2009-12-15 21:57:27 +0100727 if (cpu_has_utmi()) {
Stelian Pop53d71682008-04-05 21:14:03 +0100728 /*
729 * multiplier is hard-wired to 40
730 * (obtain the USB High Speed 480 MHz when input is 12 MHz)
731 */
732 utmi_clk.rate_hz = 40 * utmi_clk.parent->rate_hz;
Nicolas Ferre11128722011-03-10 19:08:54 +0100733
734 /* UTMI bias and PLL are managed at the same time */
735 if (cpu_has_upll())
736 utmi_clk.pmc_mask |= AT91_PMC_BIASEN;
Andrew Victor5e38efa2009-12-15 21:57:27 +0100737 }
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100738
739 /*
740 * USB FS clock init
741 */
742 if (cpu_has_pllb())
743 at91_pllb_usbfs_clock_init(main_clock);
744 if (cpu_has_upll())
745 /* assumes that we choose UPLL for USB and not PLLA */
746 at91_upll_usbfs_clock_init(main_clock);
Stelian Pop53d71682008-04-05 21:14:03 +0100747
748 /*
SAN People73a59c12006-01-09 17:05:41 +0000749 * MCK and CPU derive from one of those primary clocks.
750 * For now, assume this parentage won't change.
751 */
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800752 mckr = at91_pmc_read(AT91_PMC_MCKR);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100753 mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS);
SAN People73a59c12006-01-09 17:05:41 +0000754 freq = mck.parent->rate_hz;
Nicolas Ferre11128722011-03-10 19:08:54 +0100755 freq /= pmc_prescaler_divider(mckr); /* prescale */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100756 if (cpu_is_at91rm9200()) {
Andrew Victora95c7292007-11-19 11:52:09 +0100757 mck.rate_hz = freq / (1 + ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100758 } else if (cpu_is_at91sam9g20()) {
sedji gaouaou61352662008-07-10 10:15:35 +0100759 mck.rate_hz = (mckr & AT91_PMC_MDIV) ?
760 freq / ((mckr & AT91_PMC_MDIV) >> 7) : freq; /* mdiv ; (x >> 7) = ((x >> 8) * 2) */
761 if (mckr & AT91_PMC_PDIV)
762 freq /= 2; /* processor clock division */
Nicolas Ferre11128722011-03-10 19:08:54 +0100763 } else if (cpu_has_mdiv3()) {
Nicolas Ferre2ef9df72009-06-26 15:36:57 +0100764 mck.rate_hz = (mckr & AT91_PMC_MDIV) == AT91SAM9_PMC_MDIV_3 ?
765 freq / 3 : freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100766 } else {
Andrew Victor5e38efa2009-12-15 21:57:27 +0100767 mck.rate_hz = freq / (1 << ((mckr & AT91_PMC_MDIV) >> 8)); /* mdiv */
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100768 }
SAN People73a59c12006-01-09 17:05:41 +0000769
Nicolas Ferre11128722011-03-10 19:08:54 +0100770 if (cpu_has_alt_prescaler()) {
771 /* Programmable clocks can use MCK */
772 mck.type |= CLK_TYPE_PRIMARY;
773 mck.id = 4;
774 }
775
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100776 /* Register the PMC's standard clocks */
777 for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++)
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100778 at91_clk_add(standard_pmc_clocks[i]);
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100779
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100780 if (cpu_has_pllb())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100781 at91_clk_add(&pllb);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100782
783 if (cpu_has_uhp())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100784 at91_clk_add(&uhpck);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100785
786 if (cpu_has_udpfs())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100787 at91_clk_add(&udpck);
Nicolas Ferre6d0485a2009-03-31 17:13:15 +0100788
789 if (cpu_has_utmi())
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100790 at91_clk_add(&utmi_clk);
Stelian Pop53d71682008-04-05 21:14:03 +0100791
Andrew Victor91f8ed82006-06-19 13:20:23 +0100792 /* MCK and CPU clock are "always on" */
793 clk_enable(&mck);
794
SAN People73a59c12006-01-09 17:05:41 +0000795 printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n",
796 freq / 1000000, (unsigned) mck.rate_hz / 1000000,
797 (unsigned) main_clock / 1000000,
798 ((unsigned) main_clock % 1000000) / 1000);
799
Andrew Victorc9b75d12007-02-08 17:36:34 +0100800 return 0;
801}
Andrew Victor91f8ed82006-06-19 13:20:23 +0100802
Jean-Christophe PLAGNIOL-VILLARDeb5e76f2012-03-02 20:44:23 +0800803#if defined(CONFIG_OF)
804static struct of_device_id pmc_ids[] = {
805 { .compatible = "atmel,at91rm9200-pmc" },
806 { /*sentinel*/ }
807};
808
809static struct of_device_id osc_ids[] = {
810 { .compatible = "atmel,osc" },
811 { /*sentinel*/ }
812};
813
814int __init at91_dt_clock_init(void)
815{
816 struct device_node *np;
817 u32 main_clock = 0;
818
819 np = of_find_matching_node(NULL, pmc_ids);
820 if (!np)
821 panic("unable to find compatible pmc node in dtb\n");
822
823 at91_pmc_base = of_iomap(np, 0);
824 if (!at91_pmc_base)
825 panic("unable to map pmc cpu registers\n");
826
827 of_node_put(np);
828
829 /* retrieve the freqency of fixed clocks from device tree */
830 np = of_find_matching_node(NULL, osc_ids);
831 if (np) {
832 u32 rate;
833 if (!of_property_read_u32(np, "clock-frequency", &rate))
834 main_clock = rate;
835 }
836
837 of_node_put(np);
838
839 return at91_pmc_init(main_clock);
840}
841#endif
842
843int __init at91_clock_init(unsigned long main_clock)
844{
845 at91_pmc_base = ioremap(AT91_PMC, 256);
846 if (!at91_pmc_base)
847 panic("Impossible to ioremap AT91_PMC 0x%x\n", AT91_PMC);
848
849 return at91_pmc_init(main_clock);
850}
851
Andrew Victorc9b75d12007-02-08 17:36:34 +0100852/*
853 * Several unused clocks may be active. Turn them off.
854 */
855static int __init at91_clock_reset(void)
856{
857 unsigned long pcdr = 0;
858 unsigned long scdr = 0;
859 struct clk *clk;
860
861 list_for_each_entry(clk, &clocks, node) {
862 if (clk->users > 0)
863 continue;
864
865 if (clk->mode == pmc_periph_mode)
866 pcdr |= clk->pmc_mask;
867
868 if (clk->mode == pmc_sys_mode)
869 scdr |= clk->pmc_mask;
870
871 pr_debug("Clocks: disable unused %s\n", clk->name);
872 }
873
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800874 at91_pmc_write(AT91_PMC_PCDR, pcdr);
875 at91_pmc_write(AT91_PMC_SCDR, scdr);
SAN People73a59c12006-01-09 17:05:41 +0000876
877 return 0;
878}
Andrew Victorc9b75d12007-02-08 17:36:34 +0100879late_initcall(at91_clock_reset);
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800880
881void at91sam9_idle(void)
882{
Jean-Christophe PLAGNIOL-VILLARDb5514952011-11-25 09:59:46 +0800883 at91_pmc_write(AT91_PMC_SCDR, AT91_PMC_PCK);
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800884 cpu_do_idle();
885}