diff options
author | Andrew Victor <andrew@sanpeople.com> | 2006-09-27 05:50:59 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-28 06:52:06 -0400 |
commit | 2eeaaa21de68cb8869d3a54438a9224321d3dd03 (patch) | |
tree | 3d81cac00241b7a4239497d60bc409210ba42429 /arch/arm/mach-at91rm9200/clock.c | |
parent | 72729910c38ca5b4736032c15dc3f9d48fe4f68a (diff) |
[ARM] 3866/1: AT91 clock update
This patch makes the AT91 clock.c support processor-generic (AT91RM9200
and AT91SAM9xxx). The clocks supported by a particular AT91 processor
are defined in the processor-specific file and are registered with
clock.c at startup.
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91rm9200/clock.c')
-rw-r--r-- | arch/arm/mach-at91rm9200/clock.c | 324 |
1 files changed, 95 insertions, 229 deletions
diff --git a/arch/arm/mach-at91rm9200/clock.c b/arch/arm/mach-at91rm9200/clock.c index 5b7892277bee..a43b061a7c85 100644 --- a/arch/arm/mach-at91rm9200/clock.c +++ b/arch/arm/mach-at91rm9200/clock.c | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | #include <asm/hardware.h> | 30 | #include <asm/hardware.h> |
31 | 31 | ||
32 | #include "generic.h" | 32 | #include "clock.h" |
33 | 33 | ||
34 | 34 | ||
35 | /* | 35 | /* |
@@ -38,23 +38,15 @@ | |||
38 | * PLLB be used at other rates (on boards that don't need USB), etc. | 38 | * PLLB be used at other rates (on boards that don't need USB), etc. |
39 | */ | 39 | */ |
40 | 40 | ||
41 | struct clk { | 41 | #define clk_is_primary(x) ((x)->type & CLK_TYPE_PRIMARY) |
42 | const char *name; /* unique clock name */ | 42 | #define clk_is_programmable(x) ((x)->type & CLK_TYPE_PROGRAMMABLE) |
43 | const char *function; /* function of the clock */ | 43 | #define clk_is_peripheral(x) ((x)->type & CLK_TYPE_PERIPHERAL) |
44 | struct device *dev; /* device associated with function */ | 44 | |
45 | unsigned long rate_hz; | 45 | |
46 | struct clk *parent; | 46 | static LIST_HEAD(clocks); |
47 | u32 pmc_mask; | 47 | static DEFINE_SPINLOCK(clk_lock); |
48 | void (*mode)(struct clk *, int); | ||
49 | unsigned id:2; /* PCK0..3, or 32k/main/a/b */ | ||
50 | unsigned primary:1; | ||
51 | unsigned pll:1; | ||
52 | unsigned programmable:1; | ||
53 | u16 users; | ||
54 | }; | ||
55 | 48 | ||
56 | static spinlock_t clk_lock; | 49 | static u32 at91_pllb_usb_init; |
57 | static u32 at91_pllb_usb_init; | ||
58 | 50 | ||
59 | /* | 51 | /* |
60 | * Four primary clock sources: two crystal oscillators (32K, main), and | 52 | * Four primary clock sources: two crystal oscillators (32K, main), and |
@@ -67,21 +59,20 @@ static struct clk clk32k = { | |||
67 | .rate_hz = AT91_SLOW_CLOCK, | 59 | .rate_hz = AT91_SLOW_CLOCK, |
68 | .users = 1, /* always on */ | 60 | .users = 1, /* always on */ |
69 | .id = 0, | 61 | .id = 0, |
70 | .primary = 1, | 62 | .type = CLK_TYPE_PRIMARY, |
71 | }; | 63 | }; |
72 | static struct clk main_clk = { | 64 | static struct clk main_clk = { |
73 | .name = "main", | 65 | .name = "main", |
74 | .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */ | 66 | .pmc_mask = AT91_PMC_MOSCS, /* in PMC_SR */ |
75 | .id = 1, | 67 | .id = 1, |
76 | .primary = 1, | 68 | .type = CLK_TYPE_PRIMARY, |
77 | }; | 69 | }; |
78 | static struct clk plla = { | 70 | static struct clk plla = { |
79 | .name = "plla", | 71 | .name = "plla", |
80 | .parent = &main_clk, | 72 | .parent = &main_clk, |
81 | .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */ | 73 | .pmc_mask = AT91_PMC_LOCKA, /* in PMC_SR */ |
82 | .id = 2, | 74 | .id = 2, |
83 | .primary = 1, | 75 | .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL, |
84 | .pll = 1, | ||
85 | }; | 76 | }; |
86 | 77 | ||
87 | static void pllb_mode(struct clk *clk, int is_on) | 78 | static void pllb_mode(struct clk *clk, int is_on) |
@@ -94,6 +85,7 @@ static void pllb_mode(struct clk *clk, int is_on) | |||
94 | } else | 85 | } else |
95 | value = 0; | 86 | value = 0; |
96 | 87 | ||
88 | // REVISIT: Add work-around for AT91RM9200 Errata #26 ? | ||
97 | at91_sys_write(AT91_CKGR_PLLBR, value); | 89 | at91_sys_write(AT91_CKGR_PLLBR, value); |
98 | 90 | ||
99 | do { | 91 | do { |
@@ -107,8 +99,7 @@ static struct clk pllb = { | |||
107 | .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */ | 99 | .pmc_mask = AT91_PMC_LOCKB, /* in PMC_SR */ |
108 | .mode = pllb_mode, | 100 | .mode = pllb_mode, |
109 | .id = 3, | 101 | .id = 3, |
110 | .primary = 1, | 102 | .type = CLK_TYPE_PRIMARY | CLK_TYPE_PLL, |
111 | .pll = 1, | ||
112 | }; | 103 | }; |
113 | 104 | ||
114 | static void pmc_sys_mode(struct clk *clk, int is_on) | 105 | static void pmc_sys_mode(struct clk *clk, int is_on) |
@@ -133,41 +124,6 @@ static struct clk uhpck = { | |||
133 | .mode = pmc_sys_mode, | 124 | .mode = pmc_sys_mode, |
134 | }; | 125 | }; |
135 | 126 | ||
136 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
137 | /* | ||
138 | * The four programmable clocks can be parented by any primary clock. | ||
139 | * You must configure pin multiplexing to bring these signals out. | ||
140 | */ | ||
141 | static struct clk pck0 = { | ||
142 | .name = "pck0", | ||
143 | .pmc_mask = AT91_PMC_PCK0, | ||
144 | .mode = pmc_sys_mode, | ||
145 | .programmable = 1, | ||
146 | .id = 0, | ||
147 | }; | ||
148 | static struct clk pck1 = { | ||
149 | .name = "pck1", | ||
150 | .pmc_mask = AT91_PMC_PCK1, | ||
151 | .mode = pmc_sys_mode, | ||
152 | .programmable = 1, | ||
153 | .id = 1, | ||
154 | }; | ||
155 | static struct clk pck2 = { | ||
156 | .name = "pck2", | ||
157 | .pmc_mask = AT91_PMC_PCK2, | ||
158 | .mode = pmc_sys_mode, | ||
159 | .programmable = 1, | ||
160 | .id = 2, | ||
161 | }; | ||
162 | static struct clk pck3 = { | ||
163 | .name = "pck3", | ||
164 | .pmc_mask = AT91_PMC_PCK3, | ||
165 | .mode = pmc_sys_mode, | ||
166 | .programmable = 1, | ||
167 | .id = 3, | ||
168 | }; | ||
169 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
170 | |||
171 | 127 | ||
172 | /* | 128 | /* |
173 | * The master clock is divided from the CPU clock (by 1-4). It's used for | 129 | * The master clock is divided from the CPU clock (by 1-4). It's used for |
@@ -187,131 +143,21 @@ static void pmc_periph_mode(struct clk *clk, int is_on) | |||
187 | at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask); | 143 | at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask); |
188 | } | 144 | } |
189 | 145 | ||
190 | static struct clk udc_clk = { | 146 | static struct clk __init *at91_css_to_clk(unsigned long css) |
191 | .name = "udc_clk", | 147 | { |
192 | .parent = &mck, | 148 | switch (css) { |
193 | .pmc_mask = 1 << AT91RM9200_ID_UDP, | 149 | case AT91_PMC_CSS_SLOW: |
194 | .mode = pmc_periph_mode, | 150 | return &clk32k; |
195 | }; | 151 | case AT91_PMC_CSS_MAIN: |
196 | static struct clk ohci_clk = { | 152 | return &main_clk; |
197 | .name = "ohci_clk", | 153 | case AT91_PMC_CSS_PLLA: |
198 | .parent = &mck, | 154 | return &plla; |
199 | .pmc_mask = 1 << AT91RM9200_ID_UHP, | 155 | case AT91_PMC_CSS_PLLB: |
200 | .mode = pmc_periph_mode, | 156 | return &pllb; |
201 | }; | 157 | } |
202 | static struct clk ether_clk = { | ||
203 | .name = "ether_clk", | ||
204 | .parent = &mck, | ||
205 | .pmc_mask = 1 << AT91RM9200_ID_EMAC, | ||
206 | .mode = pmc_periph_mode, | ||
207 | }; | ||
208 | static struct clk mmc_clk = { | ||
209 | .name = "mci_clk", | ||
210 | .parent = &mck, | ||
211 | .pmc_mask = 1 << AT91RM9200_ID_MCI, | ||
212 | .mode = pmc_periph_mode, | ||
213 | }; | ||
214 | static struct clk twi_clk = { | ||
215 | .name = "twi_clk", | ||
216 | .parent = &mck, | ||
217 | .pmc_mask = 1 << AT91RM9200_ID_TWI, | ||
218 | .mode = pmc_periph_mode, | ||
219 | }; | ||
220 | static struct clk usart0_clk = { | ||
221 | .name = "usart0_clk", | ||
222 | .parent = &mck, | ||
223 | .pmc_mask = 1 << AT91RM9200_ID_US0, | ||
224 | .mode = pmc_periph_mode, | ||
225 | }; | ||
226 | static struct clk usart1_clk = { | ||
227 | .name = "usart1_clk", | ||
228 | .parent = &mck, | ||
229 | .pmc_mask = 1 << AT91RM9200_ID_US1, | ||
230 | .mode = pmc_periph_mode, | ||
231 | }; | ||
232 | static struct clk usart2_clk = { | ||
233 | .name = "usart2_clk", | ||
234 | .parent = &mck, | ||
235 | .pmc_mask = 1 << AT91RM9200_ID_US2, | ||
236 | .mode = pmc_periph_mode, | ||
237 | }; | ||
238 | static struct clk usart3_clk = { | ||
239 | .name = "usart3_clk", | ||
240 | .parent = &mck, | ||
241 | .pmc_mask = 1 << AT91RM9200_ID_US3, | ||
242 | .mode = pmc_periph_mode, | ||
243 | }; | ||
244 | static struct clk spi_clk = { | ||
245 | .name = "spi0_clk", | ||
246 | .parent = &mck, | ||
247 | .pmc_mask = 1 << AT91RM9200_ID_SPI, | ||
248 | .mode = pmc_periph_mode, | ||
249 | }; | ||
250 | static struct clk pioA_clk = { | ||
251 | .name = "pioA_clk", | ||
252 | .parent = &mck, | ||
253 | .pmc_mask = 1 << AT91RM9200_ID_PIOA, | ||
254 | .mode = pmc_periph_mode, | ||
255 | }; | ||
256 | static struct clk pioB_clk = { | ||
257 | .name = "pioB_clk", | ||
258 | .parent = &mck, | ||
259 | .pmc_mask = 1 << AT91RM9200_ID_PIOB, | ||
260 | .mode = pmc_periph_mode, | ||
261 | }; | ||
262 | static struct clk pioC_clk = { | ||
263 | .name = "pioC_clk", | ||
264 | .parent = &mck, | ||
265 | .pmc_mask = 1 << AT91RM9200_ID_PIOC, | ||
266 | .mode = pmc_periph_mode, | ||
267 | }; | ||
268 | static struct clk pioD_clk = { | ||
269 | .name = "pioD_clk", | ||
270 | .parent = &mck, | ||
271 | .pmc_mask = 1 << AT91RM9200_ID_PIOD, | ||
272 | .mode = pmc_periph_mode, | ||
273 | }; | ||
274 | |||
275 | static struct clk *const clock_list[] = { | ||
276 | /* four primary clocks -- MUST BE FIRST! */ | ||
277 | &clk32k, | ||
278 | &main_clk, | ||
279 | &plla, | ||
280 | &pllb, | ||
281 | |||
282 | /* PLLB children (USB) */ | ||
283 | &udpck, | ||
284 | &uhpck, | ||
285 | |||
286 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
287 | /* programmable clocks */ | ||
288 | &pck0, | ||
289 | &pck1, | ||
290 | &pck2, | ||
291 | &pck3, | ||
292 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
293 | |||
294 | /* MCK and peripherals */ | ||
295 | &mck, | ||
296 | &usart0_clk, | ||
297 | &usart1_clk, | ||
298 | &usart2_clk, | ||
299 | &usart3_clk, | ||
300 | &mmc_clk, | ||
301 | &udc_clk, | ||
302 | &twi_clk, | ||
303 | &spi_clk, | ||
304 | &pioA_clk, | ||
305 | &pioB_clk, | ||
306 | &pioC_clk, | ||
307 | &pioD_clk, | ||
308 | // ssc0..ssc2 | ||
309 | // tc0..tc5 | ||
310 | // irq0..irq6 | ||
311 | &ohci_clk, | ||
312 | ðer_clk, | ||
313 | }; | ||
314 | 158 | ||
159 | return NULL; | ||
160 | } | ||
315 | 161 | ||
316 | /* | 162 | /* |
317 | * Associate a particular clock with a function (eg, "uart") and device. | 163 | * Associate a particular clock with a function (eg, "uart") and device. |
@@ -329,14 +175,12 @@ void __init at91_clock_associate(const char *id, struct device *dev, const char | |||
329 | clk->dev = dev; | 175 | clk->dev = dev; |
330 | } | 176 | } |
331 | 177 | ||
332 | /* clocks are all static for now; no refcounting necessary */ | 178 | /* clocks cannot be de-registered no refcounting necessary */ |
333 | struct clk *clk_get(struct device *dev, const char *id) | 179 | struct clk *clk_get(struct device *dev, const char *id) |
334 | { | 180 | { |
335 | int i; | 181 | struct clk *clk; |
336 | |||
337 | for (i = 0; i < ARRAY_SIZE(clock_list); i++) { | ||
338 | struct clk *clk = clock_list[i]; | ||
339 | 182 | ||
183 | list_for_each_entry(clk, &clocks, node) { | ||
340 | if (strcmp(id, clk->name) == 0) | 184 | if (strcmp(id, clk->name) == 0) |
341 | return clk; | 185 | return clk; |
342 | if (clk->function && (dev == clk->dev) && strcmp(id, clk->function) == 0) | 186 | if (clk->function && (dev == clk->dev) && strcmp(id, clk->function) == 0) |
@@ -424,7 +268,7 @@ long clk_round_rate(struct clk *clk, unsigned long rate) | |||
424 | unsigned prescale; | 268 | unsigned prescale; |
425 | unsigned long actual; | 269 | unsigned long actual; |
426 | 270 | ||
427 | if (!clk->programmable) | 271 | if (!clk_is_programmable(clk)) |
428 | return -EINVAL; | 272 | return -EINVAL; |
429 | spin_lock_irqsave(&clk_lock, flags); | 273 | spin_lock_irqsave(&clk_lock, flags); |
430 | 274 | ||
@@ -446,7 +290,7 @@ int clk_set_rate(struct clk *clk, unsigned long rate) | |||
446 | unsigned prescale; | 290 | unsigned prescale; |
447 | unsigned long actual; | 291 | unsigned long actual; |
448 | 292 | ||
449 | if (!clk->programmable) | 293 | if (!clk_is_programmable(clk)) |
450 | return -EINVAL; | 294 | return -EINVAL; |
451 | if (clk->users) | 295 | if (clk->users) |
452 | return -EBUSY; | 296 | return -EBUSY; |
@@ -484,7 +328,7 @@ int clk_set_parent(struct clk *clk, struct clk *parent) | |||
484 | 328 | ||
485 | if (clk->users) | 329 | if (clk->users) |
486 | return -EBUSY; | 330 | return -EBUSY; |
487 | if (!parent->primary || !clk->programmable) | 331 | if (!clk_is_primary(parent) || !clk_is_programmable(clk)) |
488 | return -EINVAL; | 332 | return -EINVAL; |
489 | spin_lock_irqsave(&clk_lock, flags); | 333 | spin_lock_irqsave(&clk_lock, flags); |
490 | 334 | ||
@@ -497,6 +341,18 @@ int clk_set_parent(struct clk *clk, struct clk *parent) | |||
497 | } | 341 | } |
498 | EXPORT_SYMBOL(clk_set_parent); | 342 | EXPORT_SYMBOL(clk_set_parent); |
499 | 343 | ||
344 | /* establish PCK0..PCK3 parentage and rate */ | ||
345 | static void init_programmable_clock(struct clk *clk) | ||
346 | { | ||
347 | struct clk *parent; | ||
348 | u32 pckr; | ||
349 | |||
350 | pckr = at91_sys_read(AT91_PMC_PCKR(clk->id)); | ||
351 | parent = at91_css_to_clk(pckr & AT91_PMC_CSS); | ||
352 | clk->parent = parent; | ||
353 | clk->rate_hz = parent->rate_hz / (1 << ((pckr >> 2) & 3)); | ||
354 | } | ||
355 | |||
500 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | 356 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ |
501 | 357 | ||
502 | /*------------------------------------------------------------------------*/ | 358 | /*------------------------------------------------------------------------*/ |
@@ -506,6 +362,7 @@ EXPORT_SYMBOL(clk_set_parent); | |||
506 | static int at91_clk_show(struct seq_file *s, void *unused) | 362 | static int at91_clk_show(struct seq_file *s, void *unused) |
507 | { | 363 | { |
508 | u32 scsr, pcsr, sr; | 364 | u32 scsr, pcsr, sr; |
365 | struct clk *clk; | ||
509 | unsigned i; | 366 | unsigned i; |
510 | 367 | ||
511 | seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR)); | 368 | seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR)); |
@@ -523,9 +380,8 @@ static int at91_clk_show(struct seq_file *s, void *unused) | |||
523 | 380 | ||
524 | seq_printf(s, "\n"); | 381 | seq_printf(s, "\n"); |
525 | 382 | ||
526 | for (i = 0; i < ARRAY_SIZE(clock_list); i++) { | 383 | list_for_each_entry(clk, &clocks, node) { |
527 | char *state; | 384 | char *state; |
528 | struct clk *clk = clock_list[i]; | ||
529 | 385 | ||
530 | if (clk->mode == pmc_sys_mode) | 386 | if (clk->mode == pmc_sys_mode) |
531 | state = (scsr & clk->pmc_mask) ? "on" : "off"; | 387 | state = (scsr & clk->pmc_mask) ? "on" : "off"; |
@@ -570,6 +426,28 @@ postcore_initcall(at91_clk_debugfs_init); | |||
570 | 426 | ||
571 | /*------------------------------------------------------------------------*/ | 427 | /*------------------------------------------------------------------------*/ |
572 | 428 | ||
429 | /* Register a new clock */ | ||
430 | int __init clk_register(struct clk *clk) | ||
431 | { | ||
432 | if (clk_is_peripheral(clk)) { | ||
433 | clk->parent = &mck; | ||
434 | clk->mode = pmc_periph_mode; | ||
435 | list_add_tail(&clk->node, &clocks); | ||
436 | } | ||
437 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
438 | else if (clk_is_programmable(clk)) { | ||
439 | clk->mode = pmc_sys_mode; | ||
440 | init_programmable_clock(clk); | ||
441 | list_add_tail(&clk->node, &clocks); | ||
442 | } | ||
443 | #endif | ||
444 | |||
445 | return 0; | ||
446 | } | ||
447 | |||
448 | |||
449 | /*------------------------------------------------------------------------*/ | ||
450 | |||
573 | static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg) | 451 | static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg) |
574 | { | 452 | { |
575 | unsigned mul, div; | 453 | unsigned mul, div; |
@@ -640,20 +518,17 @@ fail: | |||
640 | return 0; | 518 | return 0; |
641 | } | 519 | } |
642 | 520 | ||
643 | |||
644 | /* | 521 | /* |
645 | * Several unused clocks may be active. Turn them off. | 522 | * Several unused clocks may be active. Turn them off. |
646 | */ | 523 | */ |
647 | static void at91_periphclk_reset(void) | 524 | static void __init at91_periphclk_reset(void) |
648 | { | 525 | { |
649 | unsigned long reg; | 526 | unsigned long reg; |
650 | int i; | 527 | struct clk *clk; |
651 | 528 | ||
652 | reg = at91_sys_read(AT91_PMC_PCSR); | 529 | reg = at91_sys_read(AT91_PMC_PCSR); |
653 | 530 | ||
654 | for (i = 0; i < ARRAY_SIZE(clock_list); i++) { | 531 | list_for_each_entry(clk, &clocks, node) { |
655 | struct clk *clk = clock_list[i]; | ||
656 | |||
657 | if (clk->mode != pmc_periph_mode) | 532 | if (clk->mode != pmc_periph_mode) |
658 | continue; | 533 | continue; |
659 | 534 | ||
@@ -664,11 +539,25 @@ static void at91_periphclk_reset(void) | |||
664 | at91_sys_write(AT91_PMC_PCDR, reg); | 539 | at91_sys_write(AT91_PMC_PCDR, reg); |
665 | } | 540 | } |
666 | 541 | ||
542 | static struct clk *const standard_pmc_clocks[] __initdata = { | ||
543 | /* four primary clocks */ | ||
544 | &clk32k, | ||
545 | &main_clk, | ||
546 | &plla, | ||
547 | &pllb, | ||
548 | |||
549 | /* PLLB children (USB) */ | ||
550 | &udpck, | ||
551 | &uhpck, | ||
552 | |||
553 | /* MCK */ | ||
554 | &mck | ||
555 | }; | ||
556 | |||
667 | int __init at91_clock_init(unsigned long main_clock) | 557 | int __init at91_clock_init(unsigned long main_clock) |
668 | { | 558 | { |
669 | unsigned tmp, freq, mckr; | 559 | unsigned tmp, freq, mckr; |
670 | 560 | int i; | |
671 | spin_lock_init(&clk_lock); | ||
672 | 561 | ||
673 | /* | 562 | /* |
674 | * When the bootloader initialized the main oscillator correctly, | 563 | * When the bootloader initialized the main oscillator correctly, |
@@ -709,11 +598,15 @@ int __init at91_clock_init(unsigned long main_clock) | |||
709 | * For now, assume this parentage won't change. | 598 | * For now, assume this parentage won't change. |
710 | */ | 599 | */ |
711 | mckr = at91_sys_read(AT91_PMC_MCKR); | 600 | mckr = at91_sys_read(AT91_PMC_MCKR); |
712 | mck.parent = clock_list[mckr & AT91_PMC_CSS]; | 601 | mck.parent = at91_css_to_clk(mckr & AT91_PMC_CSS); |
713 | freq = mck.parent->rate_hz; | 602 | freq = mck.parent->rate_hz; |
714 | freq /= (1 << ((mckr >> 2) & 3)); /* prescale */ | 603 | freq /= (1 << ((mckr >> 2) & 3)); /* prescale */ |
715 | mck.rate_hz = freq / (1 + ((mckr >> 8) & 3)); /* mdiv */ | 604 | mck.rate_hz = freq / (1 + ((mckr >> 8) & 3)); /* mdiv */ |
716 | 605 | ||
606 | /* Register the PMC's standard clocks */ | ||
607 | for (i = 0; i < ARRAY_SIZE(standard_pmc_clocks); i++) | ||
608 | list_add_tail(&standard_pmc_clocks[i]->node, &clocks); | ||
609 | |||
717 | /* MCK and CPU clock are "always on" */ | 610 | /* MCK and CPU clock are "always on" */ |
718 | clk_enable(&mck); | 611 | clk_enable(&mck); |
719 | 612 | ||
@@ -722,35 +615,8 @@ int __init at91_clock_init(unsigned long main_clock) | |||
722 | (unsigned) main_clock / 1000000, | 615 | (unsigned) main_clock / 1000000, |
723 | ((unsigned) main_clock % 1000000) / 1000); | 616 | ((unsigned) main_clock % 1000000) / 1000); |
724 | 617 | ||
725 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
726 | /* establish PCK0..PCK3 parentage */ | ||
727 | for (tmp = 0; tmp < ARRAY_SIZE(clock_list); tmp++) { | ||
728 | struct clk *clk = clock_list[tmp], *parent; | ||
729 | u32 pckr; | ||
730 | |||
731 | if (!clk->programmable) | ||
732 | continue; | ||
733 | |||
734 | pckr = at91_sys_read(AT91_PMC_PCKR(clk->id)); | ||
735 | parent = clock_list[pckr & AT91_PMC_CSS]; | ||
736 | clk->parent = parent; | ||
737 | clk->rate_hz = parent->rate_hz / (1 << ((pckr >> 2) & 3)); | ||
738 | |||
739 | if (clk->users == 0) { | ||
740 | /* not being used, so switch it off */ | ||
741 | at91_sys_write(AT91_PMC_SCDR, clk->pmc_mask); | ||
742 | } | ||
743 | } | ||
744 | #else | ||
745 | /* disable all programmable clocks */ | 618 | /* disable all programmable clocks */ |
746 | at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK0 | AT91_PMC_PCK1 | AT91_PMC_PCK2 | AT91_PMC_PCK3); | 619 | at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK0 | AT91_PMC_PCK1 | AT91_PMC_PCK2 | AT91_PMC_PCK3); |
747 | #endif | ||
748 | |||
749 | /* enable the PIO clocks */ | ||
750 | clk_enable(&pioA_clk); | ||
751 | clk_enable(&pioB_clk); | ||
752 | clk_enable(&pioC_clk); | ||
753 | clk_enable(&pioD_clk); | ||
754 | 620 | ||
755 | /* disable all other unused peripheral clocks */ | 621 | /* disable all other unused peripheral clocks */ |
756 | at91_periphclk_reset(); | 622 | at91_periphclk_reset(); |