ARM: S3C6410: Declare IISCDCLK_V4 Clock
[deliverable/linux.git] / arch / arm / mach-s3c64xx / clock.c
CommitLineData
4b31d8b2
BD
1/* linux/arch/arm/plat-s3c64xx/clock.c
2 *
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
7 *
8 * S3C64XX Base clock support
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13*/
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/interrupt.h>
18#include <linux/ioport.h>
62acb2f8
BD
19#include <linux/clk.h>
20#include <linux/err.h>
4b31d8b2
BD
21#include <linux/io.h>
22
23#include <mach/hardware.h>
24#include <mach/map.h>
25
3501c9ae
BD
26#include <mach/regs-sys.h>
27#include <mach/regs-clock.h>
f7be9aba
BD
28#include <mach/pll.h>
29
4b31d8b2
BD
30#include <plat/cpu.h>
31#include <plat/devs.h>
62acb2f8 32#include <plat/cpu-freq.h>
4b31d8b2 33#include <plat/clock.h>
62acb2f8
BD
34#include <plat/clock-clksrc.h>
35
36/* fin_apll, fin_mpll and fin_epll are all the same clock, which we call
37 * ext_xtal_mux for want of an actual name from the manual.
38*/
39
40static struct clk clk_ext_xtal_mux = {
41 .name = "ext_xtal",
42 .id = -1,
43};
44
45#define clk_fin_apll clk_ext_xtal_mux
46#define clk_fin_mpll clk_ext_xtal_mux
47#define clk_fin_epll clk_ext_xtal_mux
48
49#define clk_fout_mpll clk_mpll
50#define clk_fout_epll clk_epll
4b31d8b2 51
a03f7daf
WA
52struct clk clk_h2 = {
53 .name = "hclk2",
54 .id = -1,
55 .rate = 0,
56};
57
4b31d8b2
BD
58struct clk clk_27m = {
59 .name = "clk_27m",
60 .id = -1,
61 .rate = 27000000,
62};
63
3627379f
BD
64static int clk_48m_ctrl(struct clk *clk, int enable)
65{
66 unsigned long flags;
67 u32 val;
68
69 /* can't rely on clock lock, this register has other usages */
70 local_irq_save(flags);
71
72 val = __raw_readl(S3C64XX_OTHERS);
73 if (enable)
74 val |= S3C64XX_OTHERS_USBMASK;
75 else
76 val &= ~S3C64XX_OTHERS_USBMASK;
77
78 __raw_writel(val, S3C64XX_OTHERS);
79 local_irq_restore(flags);
80
81 return 0;
82}
83
4b31d8b2
BD
84struct clk clk_48m = {
85 .name = "clk_48m",
86 .id = -1,
87 .rate = 48000000,
3627379f 88 .enable = clk_48m_ctrl,
4b31d8b2
BD
89};
90
91static int inline s3c64xx_gate(void __iomem *reg,
92 struct clk *clk,
93 int enable)
94{
95 unsigned int ctrlbit = clk->ctrlbit;
96 u32 con;
97
98 con = __raw_readl(reg);
99
100 if (enable)
101 con |= ctrlbit;
102 else
103 con &= ~ctrlbit;
104
105 __raw_writel(con, reg);
106 return 0;
107}
108
109static int s3c64xx_pclk_ctrl(struct clk *clk, int enable)
110{
111 return s3c64xx_gate(S3C_PCLK_GATE, clk, enable);
112}
113
114static int s3c64xx_hclk_ctrl(struct clk *clk, int enable)
115{
116 return s3c64xx_gate(S3C_HCLK_GATE, clk, enable);
117}
118
cf18acf0 119int s3c64xx_sclk_ctrl(struct clk *clk, int enable)
4b31d8b2
BD
120{
121 return s3c64xx_gate(S3C_SCLK_GATE, clk, enable);
122}
123
124static struct clk init_clocks_disable[] = {
125 {
126 .name = "nand",
127 .id = -1,
128 .parent = &clk_h,
129 }, {
130 .name = "adc",
131 .id = -1,
132 .parent = &clk_p,
133 .enable = s3c64xx_pclk_ctrl,
134 .ctrlbit = S3C_CLKCON_PCLK_TSADC,
135 }, {
136 .name = "i2c",
137 .id = -1,
138 .parent = &clk_p,
139 .enable = s3c64xx_pclk_ctrl,
140 .ctrlbit = S3C_CLKCON_PCLK_IIC,
141 }, {
142 .name = "iis",
143 .id = 0,
144 .parent = &clk_p,
145 .enable = s3c64xx_pclk_ctrl,
146 .ctrlbit = S3C_CLKCON_PCLK_IIS0,
147 }, {
148 .name = "iis",
149 .id = 1,
150 .parent = &clk_p,
151 .enable = s3c64xx_pclk_ctrl,
152 .ctrlbit = S3C_CLKCON_PCLK_IIS1,
153 }, {
2e5070bc
JB
154#ifdef CONFIG_CPU_S3C6410
155 .name = "iis",
156 .id = -1, /* There's only one IISv4 port */
157 .parent = &clk_p,
158 .enable = s3c64xx_pclk_ctrl,
159 .ctrlbit = S3C6410_CLKCON_PCLK_IIS2,
160 }, {
161#endif
4b31d8b2
BD
162 .name = "spi",
163 .id = 0,
164 .parent = &clk_p,
165 .enable = s3c64xx_pclk_ctrl,
166 .ctrlbit = S3C_CLKCON_PCLK_SPI0,
167 }, {
168 .name = "spi",
169 .id = 1,
170 .parent = &clk_p,
171 .enable = s3c64xx_pclk_ctrl,
172 .ctrlbit = S3C_CLKCON_PCLK_SPI1,
87315a80
JB
173 }, {
174 .name = "spi_48m",
175 .id = 0,
176 .parent = &clk_48m,
177 .enable = s3c64xx_sclk_ctrl,
178 .ctrlbit = S3C_CLKCON_SCLK_SPI0_48,
179 }, {
180 .name = "spi_48m",
181 .id = 1,
182 .parent = &clk_48m,
183 .enable = s3c64xx_sclk_ctrl,
184 .ctrlbit = S3C_CLKCON_SCLK_SPI1_48,
4b31d8b2
BD
185 }, {
186 .name = "48m",
187 .id = 0,
188 .parent = &clk_48m,
189 .enable = s3c64xx_sclk_ctrl,
190 .ctrlbit = S3C_CLKCON_SCLK_MMC0_48,
191 }, {
192 .name = "48m",
193 .id = 1,
194 .parent = &clk_48m,
195 .enable = s3c64xx_sclk_ctrl,
196 .ctrlbit = S3C_CLKCON_SCLK_MMC1_48,
197 }, {
198 .name = "48m",
199 .id = 2,
200 .parent = &clk_48m,
201 .enable = s3c64xx_sclk_ctrl,
202 .ctrlbit = S3C_CLKCON_SCLK_MMC2_48,
8f1ecf1d
MB
203 }, {
204 .name = "dma0",
205 .id = -1,
206 .parent = &clk_h,
207 .enable = s3c64xx_hclk_ctrl,
208 .ctrlbit = S3C_CLKCON_HCLK_DMA0,
209 }, {
210 .name = "dma1",
211 .id = -1,
212 .parent = &clk_h,
213 .enable = s3c64xx_hclk_ctrl,
214 .ctrlbit = S3C_CLKCON_HCLK_DMA1,
4b31d8b2
BD
215 },
216};
217
218static struct clk init_clocks[] = {
219 {
220 .name = "lcd",
221 .id = -1,
222 .parent = &clk_h,
223 .enable = s3c64xx_hclk_ctrl,
224 .ctrlbit = S3C_CLKCON_HCLK_LCD,
225 }, {
226 .name = "gpio",
227 .id = -1,
228 .parent = &clk_p,
229 .enable = s3c64xx_pclk_ctrl,
230 .ctrlbit = S3C_CLKCON_PCLK_GPIO,
231 }, {
232 .name = "usb-host",
233 .id = -1,
234 .parent = &clk_h,
235 .enable = s3c64xx_hclk_ctrl,
386f4351 236 .ctrlbit = S3C_CLKCON_HCLK_UHOST,
4b31d8b2
BD
237 }, {
238 .name = "hsmmc",
239 .id = 0,
240 .parent = &clk_h,
241 .enable = s3c64xx_hclk_ctrl,
242 .ctrlbit = S3C_CLKCON_HCLK_HSMMC0,
243 }, {
244 .name = "hsmmc",
245 .id = 1,
246 .parent = &clk_h,
247 .enable = s3c64xx_hclk_ctrl,
248 .ctrlbit = S3C_CLKCON_HCLK_HSMMC1,
249 }, {
250 .name = "hsmmc",
251 .id = 2,
252 .parent = &clk_h,
253 .enable = s3c64xx_hclk_ctrl,
254 .ctrlbit = S3C_CLKCON_HCLK_HSMMC2,
255 }, {
256 .name = "timers",
257 .id = -1,
258 .parent = &clk_p,
259 .enable = s3c64xx_pclk_ctrl,
260 .ctrlbit = S3C_CLKCON_PCLK_PWM,
261 }, {
262 .name = "uart",
263 .id = 0,
264 .parent = &clk_p,
265 .enable = s3c64xx_pclk_ctrl,
266 .ctrlbit = S3C_CLKCON_PCLK_UART0,
267 }, {
268 .name = "uart",
269 .id = 1,
270 .parent = &clk_p,
271 .enable = s3c64xx_pclk_ctrl,
272 .ctrlbit = S3C_CLKCON_PCLK_UART1,
273 }, {
274 .name = "uart",
275 .id = 2,
276 .parent = &clk_p,
277 .enable = s3c64xx_pclk_ctrl,
278 .ctrlbit = S3C_CLKCON_PCLK_UART2,
279 }, {
280 .name = "uart",
281 .id = 3,
282 .parent = &clk_p,
283 .enable = s3c64xx_pclk_ctrl,
284 .ctrlbit = S3C_CLKCON_PCLK_UART3,
285 }, {
286 .name = "rtc",
287 .id = -1,
288 .parent = &clk_p,
289 .enable = s3c64xx_pclk_ctrl,
290 .ctrlbit = S3C_CLKCON_PCLK_RTC,
291 }, {
292 .name = "watchdog",
293 .id = -1,
294 .parent = &clk_p,
295 .ctrlbit = S3C_CLKCON_PCLK_WDT,
296 }, {
297 .name = "ac97",
298 .id = -1,
299 .parent = &clk_p,
300 .ctrlbit = S3C_CLKCON_PCLK_AC97,
301 }
302};
303
62acb2f8
BD
304
305static struct clk clk_fout_apll = {
306 .name = "fout_apll",
307 .id = -1,
308};
309
310static struct clk *clk_src_apll_list[] = {
311 [0] = &clk_fin_apll,
312 [1] = &clk_fout_apll,
313};
314
315static struct clksrc_sources clk_src_apll = {
316 .sources = clk_src_apll_list,
317 .nr_sources = ARRAY_SIZE(clk_src_apll_list),
318};
319
320static struct clksrc_clk clk_mout_apll = {
321 .clk = {
322 .name = "mout_apll",
323 .id = -1,
324 },
325 .reg_src = { .reg = S3C_CLK_SRC, .shift = 0, .size = 1 },
326 .sources = &clk_src_apll,
327};
328
329static struct clk *clk_src_epll_list[] = {
330 [0] = &clk_fin_epll,
331 [1] = &clk_fout_epll,
332};
333
334static struct clksrc_sources clk_src_epll = {
335 .sources = clk_src_epll_list,
336 .nr_sources = ARRAY_SIZE(clk_src_epll_list),
337};
338
339static struct clksrc_clk clk_mout_epll = {
340 .clk = {
341 .name = "mout_epll",
342 .id = -1,
343 },
344 .reg_src = { .reg = S3C_CLK_SRC, .shift = 2, .size = 1 },
345 .sources = &clk_src_epll,
346};
347
348static struct clk *clk_src_mpll_list[] = {
349 [0] = &clk_fin_mpll,
350 [1] = &clk_fout_mpll,
351};
352
353static struct clksrc_sources clk_src_mpll = {
354 .sources = clk_src_mpll_list,
355 .nr_sources = ARRAY_SIZE(clk_src_mpll_list),
356};
357
358static struct clksrc_clk clk_mout_mpll = {
359 .clk = {
360 .name = "mout_mpll",
361 .id = -1,
362 },
363 .reg_src = { .reg = S3C_CLK_SRC, .shift = 1, .size = 1 },
364 .sources = &clk_src_mpll,
365};
366
367static unsigned int armclk_mask;
368
369static unsigned long s3c64xx_clk_arm_get_rate(struct clk *clk)
370{
371 unsigned long rate = clk_get_rate(clk->parent);
372 u32 clkdiv;
373
374 /* divisor mask starts at bit0, so no need to shift */
375 clkdiv = __raw_readl(S3C_CLK_DIV0) & armclk_mask;
376
377 return rate / (clkdiv + 1);
378}
379
380static unsigned long s3c64xx_clk_arm_round_rate(struct clk *clk,
381 unsigned long rate)
382{
383 unsigned long parent = clk_get_rate(clk->parent);
384 u32 div;
385
386 if (parent < rate)
387 return parent;
388
389 div = (parent / rate) - 1;
390 if (div > armclk_mask)
391 div = armclk_mask;
392
393 return parent / (div + 1);
394}
395
396static int s3c64xx_clk_arm_set_rate(struct clk *clk, unsigned long rate)
397{
398 unsigned long parent = clk_get_rate(clk->parent);
399 u32 div;
400 u32 val;
401
402 if (rate < parent / (armclk_mask + 1))
403 return -EINVAL;
404
405 rate = clk_round_rate(clk, rate);
406 div = clk_get_rate(clk->parent) / rate;
407
408 val = __raw_readl(S3C_CLK_DIV0);
409 val &= ~armclk_mask;
410 val |= (div - 1);
411 __raw_writel(val, S3C_CLK_DIV0);
412
413 return 0;
414
415}
416
417static struct clk clk_arm = {
418 .name = "armclk",
419 .id = -1,
420 .parent = &clk_mout_apll.clk,
421 .ops = &(struct clk_ops) {
422 .get_rate = s3c64xx_clk_arm_get_rate,
423 .set_rate = s3c64xx_clk_arm_set_rate,
424 .round_rate = s3c64xx_clk_arm_round_rate,
425 },
426};
427
428static unsigned long s3c64xx_clk_doutmpll_get_rate(struct clk *clk)
429{
430 unsigned long rate = clk_get_rate(clk->parent);
431
432 printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);
433
434 if (__raw_readl(S3C_CLK_DIV0) & S3C6400_CLKDIV0_MPLL_MASK)
435 rate /= 2;
436
437 return rate;
438}
439
440static struct clk_ops clk_dout_ops = {
441 .get_rate = s3c64xx_clk_doutmpll_get_rate,
442};
443
444static struct clk clk_dout_mpll = {
445 .name = "dout_mpll",
446 .id = -1,
447 .parent = &clk_mout_mpll.clk,
448 .ops = &clk_dout_ops,
449};
450
451static struct clk *clkset_spi_mmc_list[] = {
452 &clk_mout_epll.clk,
453 &clk_dout_mpll,
454 &clk_fin_epll,
455 &clk_27m,
456};
457
458static struct clksrc_sources clkset_spi_mmc = {
459 .sources = clkset_spi_mmc_list,
460 .nr_sources = ARRAY_SIZE(clkset_spi_mmc_list),
461};
462
463static struct clk *clkset_irda_list[] = {
464 &clk_mout_epll.clk,
465 &clk_dout_mpll,
466 NULL,
467 &clk_27m,
468};
469
470static struct clksrc_sources clkset_irda = {
471 .sources = clkset_irda_list,
472 .nr_sources = ARRAY_SIZE(clkset_irda_list),
473};
474
475static struct clk *clkset_uart_list[] = {
476 &clk_mout_epll.clk,
477 &clk_dout_mpll,
478 NULL,
479 NULL
480};
481
482static struct clksrc_sources clkset_uart = {
483 .sources = clkset_uart_list,
484 .nr_sources = ARRAY_SIZE(clkset_uart_list),
485};
486
487static struct clk *clkset_uhost_list[] = {
488 &clk_48m,
489 &clk_mout_epll.clk,
490 &clk_dout_mpll,
491 &clk_fin_epll,
492};
493
494static struct clksrc_sources clkset_uhost = {
495 .sources = clkset_uhost_list,
496 .nr_sources = ARRAY_SIZE(clkset_uhost_list),
497};
498
499/* The peripheral clocks are all controlled via clocksource followed
500 * by an optional divider and gate stage. We currently roll this into
501 * one clock which hides the intermediate clock from the mux.
502 *
503 * Note, the JPEG clock can only be an even divider...
504 *
505 * The scaler and LCD clocks depend on the S3C64XX version, and also
506 * have a common parent divisor so are not included here.
507 */
508
509/* clocks that feed other parts of the clock source tree */
510
511static struct clk clk_iis_cd0 = {
512 .name = "iis_cdclk0",
513 .id = -1,
514};
515
516static struct clk clk_iis_cd1 = {
517 .name = "iis_cdclk1",
518 .id = -1,
519};
520
bc8eb1e2
JB
521static struct clk clk_iisv4_cd = {
522 .name = "iis_cdclk_v4",
523 .id = -1,
524};
525
62acb2f8
BD
526static struct clk clk_pcm_cd = {
527 .name = "pcm_cdclk",
528 .id = -1,
529};
530
531static struct clk *clkset_audio0_list[] = {
532 [0] = &clk_mout_epll.clk,
533 [1] = &clk_dout_mpll,
534 [2] = &clk_fin_epll,
535 [3] = &clk_iis_cd0,
536 [4] = &clk_pcm_cd,
537};
538
539static struct clksrc_sources clkset_audio0 = {
540 .sources = clkset_audio0_list,
541 .nr_sources = ARRAY_SIZE(clkset_audio0_list),
542};
543
544static struct clk *clkset_audio1_list[] = {
545 [0] = &clk_mout_epll.clk,
546 [1] = &clk_dout_mpll,
547 [2] = &clk_fin_epll,
548 [3] = &clk_iis_cd1,
549 [4] = &clk_pcm_cd,
550};
551
552static struct clksrc_sources clkset_audio1 = {
553 .sources = clkset_audio1_list,
554 .nr_sources = ARRAY_SIZE(clkset_audio1_list),
555};
556
557static struct clk *clkset_camif_list[] = {
558 &clk_h2,
559};
560
561static struct clksrc_sources clkset_camif = {
562 .sources = clkset_camif_list,
563 .nr_sources = ARRAY_SIZE(clkset_camif_list),
564};
565
566static struct clksrc_clk clksrcs[] = {
567 {
568 .clk = {
569 .name = "mmc_bus",
570 .id = 0,
571 .ctrlbit = S3C_CLKCON_SCLK_MMC0,
572 .enable = s3c64xx_sclk_ctrl,
573 },
574 .reg_src = { .reg = S3C_CLK_SRC, .shift = 18, .size = 2 },
575 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 0, .size = 4 },
576 .sources = &clkset_spi_mmc,
577 }, {
578 .clk = {
579 .name = "mmc_bus",
580 .id = 1,
581 .ctrlbit = S3C_CLKCON_SCLK_MMC1,
582 .enable = s3c64xx_sclk_ctrl,
583 },
584 .reg_src = { .reg = S3C_CLK_SRC, .shift = 20, .size = 2 },
585 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 4, .size = 4 },
586 .sources = &clkset_spi_mmc,
587 }, {
588 .clk = {
589 .name = "mmc_bus",
590 .id = 2,
591 .ctrlbit = S3C_CLKCON_SCLK_MMC2,
592 .enable = s3c64xx_sclk_ctrl,
593 },
594 .reg_src = { .reg = S3C_CLK_SRC, .shift = 22, .size = 2 },
595 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 8, .size = 4 },
596 .sources = &clkset_spi_mmc,
597 }, {
598 .clk = {
599 .name = "usb-bus-host",
600 .id = -1,
601 .ctrlbit = S3C_CLKCON_SCLK_UHOST,
602 .enable = s3c64xx_sclk_ctrl,
603 },
604 .reg_src = { .reg = S3C_CLK_SRC, .shift = 5, .size = 2 },
605 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 20, .size = 4 },
606 .sources = &clkset_uhost,
607 }, {
608 .clk = {
609 .name = "uclk1",
610 .id = -1,
611 .ctrlbit = S3C_CLKCON_SCLK_UART,
612 .enable = s3c64xx_sclk_ctrl,
613 },
614 .reg_src = { .reg = S3C_CLK_SRC, .shift = 13, .size = 1 },
615 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 16, .size = 4 },
616 .sources = &clkset_uart,
617 }, {
618/* Where does UCLK0 come from? */
619 .clk = {
620 .name = "spi-bus",
621 .id = 0,
622 .ctrlbit = S3C_CLKCON_SCLK_SPI0,
623 .enable = s3c64xx_sclk_ctrl,
624 },
625 .reg_src = { .reg = S3C_CLK_SRC, .shift = 14, .size = 2 },
626 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 0, .size = 4 },
627 .sources = &clkset_spi_mmc,
628 }, {
629 .clk = {
630 .name = "spi-bus",
631 .id = 1,
632 .ctrlbit = S3C_CLKCON_SCLK_SPI1,
633 .enable = s3c64xx_sclk_ctrl,
634 },
635 .reg_src = { .reg = S3C_CLK_SRC, .shift = 16, .size = 2 },
636 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 4, .size = 4 },
637 .sources = &clkset_spi_mmc,
638 }, {
639 .clk = {
640 .name = "audio-bus",
641 .id = 0,
642 .ctrlbit = S3C_CLKCON_SCLK_AUDIO0,
643 .enable = s3c64xx_sclk_ctrl,
644 },
645 .reg_src = { .reg = S3C_CLK_SRC, .shift = 7, .size = 3 },
646 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 8, .size = 4 },
647 .sources = &clkset_audio0,
648 }, {
649 .clk = {
650 .name = "audio-bus",
651 .id = 1,
652 .ctrlbit = S3C_CLKCON_SCLK_AUDIO1,
653 .enable = s3c64xx_sclk_ctrl,
654 },
655 .reg_src = { .reg = S3C_CLK_SRC, .shift = 10, .size = 3 },
656 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 12, .size = 4 },
657 .sources = &clkset_audio1,
658 }, {
659 .clk = {
660 .name = "irda-bus",
661 .id = 0,
662 .ctrlbit = S3C_CLKCON_SCLK_IRDA,
663 .enable = s3c64xx_sclk_ctrl,
664 },
665 .reg_src = { .reg = S3C_CLK_SRC, .shift = 24, .size = 2 },
666 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 20, .size = 4 },
667 .sources = &clkset_irda,
668 }, {
669 .clk = {
670 .name = "camera",
671 .id = -1,
672 .ctrlbit = S3C_CLKCON_SCLK_CAM,
673 .enable = s3c64xx_sclk_ctrl,
674 },
675 .reg_div = { .reg = S3C_CLK_DIV0, .shift = 20, .size = 4 },
676 .reg_src = { .reg = NULL, .shift = 0, .size = 0 },
677 .sources = &clkset_camif,
678 },
679};
680
681/* Clock initialisation code */
682
683static struct clksrc_clk *init_parents[] = {
684 &clk_mout_apll,
685 &clk_mout_epll,
686 &clk_mout_mpll,
687};
688
689#define GET_DIV(clk, field) ((((clk) & field##_MASK) >> field##_SHIFT) + 1)
690
691void __init_or_cpufreq s3c6400_setup_clocks(void)
692{
693 struct clk *xtal_clk;
694 unsigned long xtal;
695 unsigned long fclk;
696 unsigned long hclk;
697 unsigned long hclk2;
698 unsigned long pclk;
699 unsigned long epll;
700 unsigned long apll;
701 unsigned long mpll;
702 unsigned int ptr;
703 u32 clkdiv0;
704
705 printk(KERN_DEBUG "%s: registering clocks\n", __func__);
706
707 clkdiv0 = __raw_readl(S3C_CLK_DIV0);
708 printk(KERN_DEBUG "%s: clkdiv0 = %08x\n", __func__, clkdiv0);
709
710 xtal_clk = clk_get(NULL, "xtal");
711 BUG_ON(IS_ERR(xtal_clk));
712
713 xtal = clk_get_rate(xtal_clk);
714 clk_put(xtal_clk);
715
716 printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);
717
718 /* For now assume the mux always selects the crystal */
719 clk_ext_xtal_mux.parent = xtal_clk;
720
721 epll = s3c6400_get_epll(xtal);
722 mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON));
723 apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON));
724
725 fclk = mpll;
726
727 printk(KERN_INFO "S3C64XX: PLL settings, A=%ld, M=%ld, E=%ld\n",
728 apll, mpll, epll);
729
730 hclk2 = mpll / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK2);
731 hclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK);
732 pclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_PCLK);
733
734 printk(KERN_INFO "S3C64XX: HCLK2=%ld, HCLK=%ld, PCLK=%ld\n",
735 hclk2, hclk, pclk);
736
737 clk_fout_mpll.rate = mpll;
738 clk_fout_epll.rate = epll;
739 clk_fout_apll.rate = apll;
740
741 clk_h2.rate = hclk2;
742 clk_h.rate = hclk;
743 clk_p.rate = pclk;
744 clk_f.rate = fclk;
745
746 for (ptr = 0; ptr < ARRAY_SIZE(init_parents); ptr++)
747 s3c_set_clksrc(init_parents[ptr], true);
748
749 for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++)
750 s3c_set_clksrc(&clksrcs[ptr], true);
751}
752
753static struct clk *clks1[] __initdata = {
754 &clk_ext_xtal_mux,
755 &clk_iis_cd0,
756 &clk_iis_cd1,
bc8eb1e2 757 &clk_iisv4_cd,
62acb2f8
BD
758 &clk_pcm_cd,
759 &clk_mout_epll.clk,
760 &clk_mout_mpll.clk,
761 &clk_dout_mpll,
762 &clk_arm,
763};
764
55bf9267
BD
765static struct clk *clks[] __initdata = {
766 &clk_ext,
767 &clk_epll,
768 &clk_27m,
769 &clk_48m,
770 &clk_h2,
771};
772
62acb2f8 773/**
55bf9267
BD
774 * s3c64xx_register_clocks - register clocks for s3c6400 and s3c6410
775 * @xtal: The rate for the clock crystal feeding the PLLs.
776 * @armclk_divlimit: Divisor mask for ARMCLK.
62acb2f8 777 *
55bf9267
BD
778 * Register the clocks for the S3C6400 and S3C6410 SoC range, such
779 * as ARMCLK as well as the necessary parent clocks.
62acb2f8
BD
780 *
781 * This call does not setup the clocks, which is left to the
782 * s3c6400_setup_clocks() call which may be needed by the cpufreq
783 * or resume code to re-set the clocks if the bootloader has changed
784 * them.
785 */
55bf9267
BD
786void __init s3c64xx_register_clocks(unsigned long xtal,
787 unsigned armclk_divlimit)
62acb2f8
BD
788{
789 struct clk *clkp;
790 int ret;
791 int ptr;
792
793 armclk_mask = armclk_divlimit;
794
55bf9267 795 s3c24xx_register_baseclocks(xtal);
4b31d8b2 796 s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));
55bf9267 797
1d9f13c4 798 s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
4b31d8b2
BD
799
800 clkp = init_clocks_disable;
801 for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) {
802
803 ret = s3c24xx_register_clock(clkp);
804 if (ret < 0) {
805 printk(KERN_ERR "Failed to register clock %s (%d)\n",
806 clkp->name, ret);
807 }
808
809 (clkp->enable)(clkp, 0);
810 }
9d325f23 811
55bf9267
BD
812 s3c24xx_register_clocks(clks1, ARRAY_SIZE(clks1));
813 s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
9d325f23 814 s3c_pwmclk_init();
4b31d8b2 815}
This page took 0.128687 seconds and 5 git commands to generate.