blob: da83595890198e9a7cc05916e730be73d63f9e9d [file] [log] [blame]
Ben Dooks4b31d8b2008-10-21 14:07:00 +01001/* 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>
Ben Dooks62acb2f2010-01-26 14:53:19 +090019#include <linux/clk.h>
20#include <linux/err.h>
Ben Dooks4b31d8b2008-10-21 14:07:00 +010021#include <linux/io.h>
22
23#include <mach/hardware.h>
24#include <mach/map.h>
25
Ben Dooks3501c9a2010-01-26 10:45:40 +090026#include <mach/regs-sys.h>
27#include <mach/regs-clock.h>
Ben Dooksf7be9ab2010-01-26 13:41:30 +090028#include <mach/pll.h>
29
Ben Dooks4b31d8b2008-10-21 14:07:00 +010030#include <plat/cpu.h>
31#include <plat/devs.h>
Ben Dooks62acb2f2010-01-26 14:53:19 +090032#include <plat/cpu-freq.h>
Ben Dooks4b31d8b2008-10-21 14:07:00 +010033#include <plat/clock.h>
Ben Dooks62acb2f2010-01-26 14:53:19 +090034#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
Ben Dooks4b31d8b2008-10-21 14:07:00 +010051
Werner Almesbergera03f7da2009-03-05 11:43:13 +080052struct clk clk_h2 = {
53 .name = "hclk2",
54 .id = -1,
55 .rate = 0,
56};
57
Ben Dooks4b31d8b2008-10-21 14:07:00 +010058struct clk clk_27m = {
59 .name = "clk_27m",
60 .id = -1,
61 .rate = 27000000,
62};
63
Ben Dooks3627379f2008-10-31 16:14:36 +000064static 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
Ben Dooks4b31d8b2008-10-21 14:07:00 +010084struct clk clk_48m = {
85 .name = "clk_48m",
86 .id = -1,
87 .rate = 48000000,
Ben Dooks3627379f2008-10-31 16:14:36 +000088 .enable = clk_48m_ctrl,
Ben Dooks4b31d8b2008-10-21 14:07:00 +010089};
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
Ben Dookscf18acf2008-10-21 14:07:02 +0100119int s3c64xx_sclk_ctrl(struct clk *clk, int enable)
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100120{
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 }, {
Jassi Brar2e5070b2010-02-17 19:03:19 +0000154#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
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100162 .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,
173 }, {
Jassi Brar87315a82010-01-18 16:15:08 +0900174 .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,
185 }, {
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100186 .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,
Mark Brown8f1ecf12009-04-28 16:06:24 +0100203 }, {
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,
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100215 },
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,
Peter Korsgaard386f4352009-06-18 23:54:44 +0200236 .ctrlbit = S3C_CLKCON_HCLK_UHOST,
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100237 }, {
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
Ben Dooks62acb2f2010-01-26 14:53:19 +0900304
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
Jassi Brarbc8eb1e2010-03-09 15:10:32 +0900521static struct clk clk_iisv4_cd = {
522 .name = "iis_cdclk_v4",
523 .id = -1,
524};
525
Ben Dooks62acb2f2010-01-26 14:53:19 +0900526static 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
Jassi Brar1aede2e2010-03-09 15:10:33 +0900557static struct clk *clkset_audio2_list[] = {
558 [0] = &clk_mout_epll.clk,
559 [1] = &clk_dout_mpll,
560 [2] = &clk_fin_epll,
561 [3] = &clk_iisv4_cd,
562 [4] = &clk_pcm_cd,
563};
564
565static struct clksrc_sources clkset_audio2 = {
566 .sources = clkset_audio2_list,
567 .nr_sources = ARRAY_SIZE(clkset_audio2_list),
568};
569
Ben Dooks62acb2f2010-01-26 14:53:19 +0900570static struct clk *clkset_camif_list[] = {
571 &clk_h2,
572};
573
574static struct clksrc_sources clkset_camif = {
575 .sources = clkset_camif_list,
576 .nr_sources = ARRAY_SIZE(clkset_camif_list),
577};
578
579static struct clksrc_clk clksrcs[] = {
580 {
581 .clk = {
582 .name = "mmc_bus",
583 .id = 0,
584 .ctrlbit = S3C_CLKCON_SCLK_MMC0,
585 .enable = s3c64xx_sclk_ctrl,
586 },
587 .reg_src = { .reg = S3C_CLK_SRC, .shift = 18, .size = 2 },
588 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 0, .size = 4 },
589 .sources = &clkset_spi_mmc,
590 }, {
591 .clk = {
592 .name = "mmc_bus",
593 .id = 1,
594 .ctrlbit = S3C_CLKCON_SCLK_MMC1,
595 .enable = s3c64xx_sclk_ctrl,
596 },
597 .reg_src = { .reg = S3C_CLK_SRC, .shift = 20, .size = 2 },
598 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 4, .size = 4 },
599 .sources = &clkset_spi_mmc,
600 }, {
601 .clk = {
602 .name = "mmc_bus",
603 .id = 2,
604 .ctrlbit = S3C_CLKCON_SCLK_MMC2,
605 .enable = s3c64xx_sclk_ctrl,
606 },
607 .reg_src = { .reg = S3C_CLK_SRC, .shift = 22, .size = 2 },
608 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 8, .size = 4 },
609 .sources = &clkset_spi_mmc,
610 }, {
611 .clk = {
612 .name = "usb-bus-host",
613 .id = -1,
614 .ctrlbit = S3C_CLKCON_SCLK_UHOST,
615 .enable = s3c64xx_sclk_ctrl,
616 },
617 .reg_src = { .reg = S3C_CLK_SRC, .shift = 5, .size = 2 },
618 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 20, .size = 4 },
619 .sources = &clkset_uhost,
620 }, {
621 .clk = {
622 .name = "uclk1",
623 .id = -1,
624 .ctrlbit = S3C_CLKCON_SCLK_UART,
625 .enable = s3c64xx_sclk_ctrl,
626 },
627 .reg_src = { .reg = S3C_CLK_SRC, .shift = 13, .size = 1 },
628 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 16, .size = 4 },
629 .sources = &clkset_uart,
630 }, {
631/* Where does UCLK0 come from? */
632 .clk = {
633 .name = "spi-bus",
634 .id = 0,
635 .ctrlbit = S3C_CLKCON_SCLK_SPI0,
636 .enable = s3c64xx_sclk_ctrl,
637 },
638 .reg_src = { .reg = S3C_CLK_SRC, .shift = 14, .size = 2 },
639 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 0, .size = 4 },
640 .sources = &clkset_spi_mmc,
641 }, {
642 .clk = {
643 .name = "spi-bus",
644 .id = 1,
645 .ctrlbit = S3C_CLKCON_SCLK_SPI1,
646 .enable = s3c64xx_sclk_ctrl,
647 },
648 .reg_src = { .reg = S3C_CLK_SRC, .shift = 16, .size = 2 },
649 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 4, .size = 4 },
650 .sources = &clkset_spi_mmc,
651 }, {
652 .clk = {
653 .name = "audio-bus",
654 .id = 0,
655 .ctrlbit = S3C_CLKCON_SCLK_AUDIO0,
656 .enable = s3c64xx_sclk_ctrl,
657 },
658 .reg_src = { .reg = S3C_CLK_SRC, .shift = 7, .size = 3 },
659 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 8, .size = 4 },
660 .sources = &clkset_audio0,
661 }, {
662 .clk = {
663 .name = "audio-bus",
664 .id = 1,
665 .ctrlbit = S3C_CLKCON_SCLK_AUDIO1,
666 .enable = s3c64xx_sclk_ctrl,
667 },
668 .reg_src = { .reg = S3C_CLK_SRC, .shift = 10, .size = 3 },
669 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 12, .size = 4 },
670 .sources = &clkset_audio1,
671 }, {
672 .clk = {
Jassi Brar835879a2010-03-09 15:10:34 +0900673 .name = "audio-bus",
674 .id = -1, /* There's only one IISv4 port */
675 .ctrlbit = S3C6410_CLKCON_SCLK_AUDIO2,
676 .enable = s3c64xx_sclk_ctrl,
677 },
678 .reg_src = { .reg = S3C6410_CLK_SRC2, .shift = 0, .size = 3 },
679 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 24, .size = 4 },
680 .sources = &clkset_audio2,
681 }, {
682 .clk = {
Ben Dooks62acb2f2010-01-26 14:53:19 +0900683 .name = "irda-bus",
684 .id = 0,
685 .ctrlbit = S3C_CLKCON_SCLK_IRDA,
686 .enable = s3c64xx_sclk_ctrl,
687 },
688 .reg_src = { .reg = S3C_CLK_SRC, .shift = 24, .size = 2 },
689 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 20, .size = 4 },
690 .sources = &clkset_irda,
691 }, {
692 .clk = {
693 .name = "camera",
694 .id = -1,
695 .ctrlbit = S3C_CLKCON_SCLK_CAM,
696 .enable = s3c64xx_sclk_ctrl,
697 },
698 .reg_div = { .reg = S3C_CLK_DIV0, .shift = 20, .size = 4 },
699 .reg_src = { .reg = NULL, .shift = 0, .size = 0 },
700 .sources = &clkset_camif,
701 },
702};
703
704/* Clock initialisation code */
705
706static struct clksrc_clk *init_parents[] = {
707 &clk_mout_apll,
708 &clk_mout_epll,
709 &clk_mout_mpll,
710};
711
712#define GET_DIV(clk, field) ((((clk) & field##_MASK) >> field##_SHIFT) + 1)
713
714void __init_or_cpufreq s3c6400_setup_clocks(void)
715{
716 struct clk *xtal_clk;
717 unsigned long xtal;
718 unsigned long fclk;
719 unsigned long hclk;
720 unsigned long hclk2;
721 unsigned long pclk;
722 unsigned long epll;
723 unsigned long apll;
724 unsigned long mpll;
725 unsigned int ptr;
726 u32 clkdiv0;
727
728 printk(KERN_DEBUG "%s: registering clocks\n", __func__);
729
730 clkdiv0 = __raw_readl(S3C_CLK_DIV0);
731 printk(KERN_DEBUG "%s: clkdiv0 = %08x\n", __func__, clkdiv0);
732
733 xtal_clk = clk_get(NULL, "xtal");
734 BUG_ON(IS_ERR(xtal_clk));
735
736 xtal = clk_get_rate(xtal_clk);
737 clk_put(xtal_clk);
738
739 printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);
740
741 /* For now assume the mux always selects the crystal */
742 clk_ext_xtal_mux.parent = xtal_clk;
743
744 epll = s3c6400_get_epll(xtal);
745 mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON));
746 apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON));
747
748 fclk = mpll;
749
750 printk(KERN_INFO "S3C64XX: PLL settings, A=%ld, M=%ld, E=%ld\n",
751 apll, mpll, epll);
752
753 hclk2 = mpll / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK2);
754 hclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK);
755 pclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_PCLK);
756
757 printk(KERN_INFO "S3C64XX: HCLK2=%ld, HCLK=%ld, PCLK=%ld\n",
758 hclk2, hclk, pclk);
759
760 clk_fout_mpll.rate = mpll;
761 clk_fout_epll.rate = epll;
762 clk_fout_apll.rate = apll;
763
764 clk_h2.rate = hclk2;
765 clk_h.rate = hclk;
766 clk_p.rate = pclk;
767 clk_f.rate = fclk;
768
769 for (ptr = 0; ptr < ARRAY_SIZE(init_parents); ptr++)
770 s3c_set_clksrc(init_parents[ptr], true);
771
772 for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++)
773 s3c_set_clksrc(&clksrcs[ptr], true);
774}
775
776static struct clk *clks1[] __initdata = {
777 &clk_ext_xtal_mux,
778 &clk_iis_cd0,
779 &clk_iis_cd1,
Jassi Brarbc8eb1e2010-03-09 15:10:32 +0900780 &clk_iisv4_cd,
Ben Dooks62acb2f2010-01-26 14:53:19 +0900781 &clk_pcm_cd,
782 &clk_mout_epll.clk,
783 &clk_mout_mpll.clk,
784 &clk_dout_mpll,
785 &clk_arm,
786};
787
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100788static struct clk *clks[] __initdata = {
789 &clk_ext,
790 &clk_epll,
791 &clk_27m,
792 &clk_48m,
Werner Almesbergera03f7da2009-03-05 11:43:13 +0800793 &clk_h2,
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100794};
795
Ben Dooks55bf9262010-01-26 15:10:38 +0900796/**
797 * s3c64xx_register_clocks - register clocks for s3c6400 and s3c6410
798 * @xtal: The rate for the clock crystal feeding the PLLs.
799 * @armclk_divlimit: Divisor mask for ARMCLK.
800 *
801 * Register the clocks for the S3C6400 and S3C6410 SoC range, such
802 * as ARMCLK as well as the necessary parent clocks.
803 *
804 * This call does not setup the clocks, which is left to the
805 * s3c6400_setup_clocks() call which may be needed by the cpufreq
806 * or resume code to re-set the clocks if the bootloader has changed
807 * them.
808 */
809void __init s3c64xx_register_clocks(unsigned long xtal,
810 unsigned armclk_divlimit)
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100811{
812 struct clk *clkp;
813 int ret;
814 int ptr;
815
Ben Dooks55bf9262010-01-26 15:10:38 +0900816 armclk_mask = armclk_divlimit;
817
818 s3c24xx_register_baseclocks(xtal);
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100819 s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));
Ben Dooks55bf9262010-01-26 15:10:38 +0900820
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900821 s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100822
823 clkp = init_clocks_disable;
824 for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) {
825
826 ret = s3c24xx_register_clock(clkp);
827 if (ret < 0) {
828 printk(KERN_ERR "Failed to register clock %s (%d)\n",
829 clkp->name, ret);
830 }
831
832 (clkp->enable)(clkp, 0);
833 }
Ben Dooks9d325f22008-11-21 10:36:05 +0000834
Ben Dooks55bf9262010-01-26 15:10:38 +0900835 s3c24xx_register_clocks(clks1, ARRAY_SIZE(clks1));
836 s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
Ben Dooks9d325f22008-11-21 10:36:05 +0000837 s3c_pwmclk_init();
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100838}