1 /* linux/arch/arm/plat-s3c64xx/clock.c
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
8 * S3C64XX Base clock support
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.
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/interrupt.h>
18 #include <linux/ioport.h>
19 #include <linux/clk.h>
20 #include <linux/err.h>
23 #include <mach/hardware.h>
26 #include <mach/regs-sys.h>
27 #include <mach/regs-clock.h>
31 #include <plat/devs.h>
32 #include <plat/cpu-freq.h>
33 #include <plat/clock.h>
34 #include <plat/clock-clksrc.h>
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.
40 static struct clk clk_ext_xtal_mux = {
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
49 #define clk_fout_mpll clk_mpll
50 #define clk_fout_epll clk_epll
58 struct clk clk_27m = {
64 static int clk_48m_ctrl(struct clk *clk, int enable)
69 /* can't rely on clock lock, this register has other usages */
70 local_irq_save(flags);
72 val = __raw_readl(S3C64XX_OTHERS);
74 val |= S3C64XX_OTHERS_USBMASK;
76 val &= ~S3C64XX_OTHERS_USBMASK;
78 __raw_writel(val, S3C64XX_OTHERS);
79 local_irq_restore(flags);
84 struct clk clk_48m = {
88 .enable = clk_48m_ctrl,
91 struct clk clk_xusbxti = {
97 static int inline s3c64xx_gate(void __iomem *reg,
101 unsigned int ctrlbit = clk->ctrlbit;
104 con = __raw_readl(reg);
111 __raw_writel(con, reg);
115 static int s3c64xx_pclk_ctrl(struct clk *clk, int enable)
117 return s3c64xx_gate(S3C_PCLK_GATE, clk, enable);
120 static int s3c64xx_hclk_ctrl(struct clk *clk, int enable)
122 return s3c64xx_gate(S3C_HCLK_GATE, clk, enable);
125 int s3c64xx_sclk_ctrl(struct clk *clk, int enable)
127 return s3c64xx_gate(S3C_SCLK_GATE, clk, enable);
130 static struct clk init_clocks_off[] = {
139 .enable = s3c64xx_pclk_ctrl,
140 .ctrlbit = S3C_CLKCON_PCLK_RTC,
145 .enable = s3c64xx_pclk_ctrl,
146 .ctrlbit = S3C_CLKCON_PCLK_TSADC,
151 .enable = s3c64xx_pclk_ctrl,
152 .ctrlbit = S3C_CLKCON_PCLK_IIC,
157 .enable = s3c64xx_pclk_ctrl,
158 .ctrlbit = S3C6410_CLKCON_PCLK_I2C1,
163 .enable = s3c64xx_pclk_ctrl,
164 .ctrlbit = S3C_CLKCON_PCLK_IIS0,
169 .enable = s3c64xx_pclk_ctrl,
170 .ctrlbit = S3C_CLKCON_PCLK_IIS1,
172 #ifdef CONFIG_CPU_S3C6410
174 .id = -1, /* There's only one IISv4 port */
176 .enable = s3c64xx_pclk_ctrl,
177 .ctrlbit = S3C6410_CLKCON_PCLK_IIS2,
183 .enable = s3c64xx_pclk_ctrl,
184 .ctrlbit = S3C_CLKCON_PCLK_KEYPAD,
189 .enable = s3c64xx_pclk_ctrl,
190 .ctrlbit = S3C_CLKCON_PCLK_SPI0,
195 .enable = s3c64xx_pclk_ctrl,
196 .ctrlbit = S3C_CLKCON_PCLK_SPI1,
201 .enable = s3c64xx_sclk_ctrl,
202 .ctrlbit = S3C_CLKCON_SCLK_SPI0_48,
207 .enable = s3c64xx_sclk_ctrl,
208 .ctrlbit = S3C_CLKCON_SCLK_SPI1_48,
213 .enable = s3c64xx_sclk_ctrl,
214 .ctrlbit = S3C_CLKCON_SCLK_MMC0_48,
219 .enable = s3c64xx_sclk_ctrl,
220 .ctrlbit = S3C_CLKCON_SCLK_MMC1_48,
225 .enable = s3c64xx_sclk_ctrl,
226 .ctrlbit = S3C_CLKCON_SCLK_MMC2_48,
231 .enable = s3c64xx_hclk_ctrl,
232 .ctrlbit = S3C_CLKCON_HCLK_DMA0,
237 .enable = s3c64xx_hclk_ctrl,
238 .ctrlbit = S3C_CLKCON_HCLK_DMA1,
242 static struct clk init_clocks[] = {
247 .enable = s3c64xx_hclk_ctrl,
248 .ctrlbit = S3C_CLKCON_HCLK_LCD,
253 .enable = s3c64xx_pclk_ctrl,
254 .ctrlbit = S3C_CLKCON_PCLK_GPIO,
259 .enable = s3c64xx_hclk_ctrl,
260 .ctrlbit = S3C_CLKCON_HCLK_UHOST,
265 .enable = s3c64xx_hclk_ctrl,
266 .ctrlbit = S3C_CLKCON_HCLK_HSMMC0,
271 .enable = s3c64xx_hclk_ctrl,
272 .ctrlbit = S3C_CLKCON_HCLK_HSMMC1,
277 .enable = s3c64xx_hclk_ctrl,
278 .ctrlbit = S3C_CLKCON_HCLK_HSMMC2,
283 .enable = s3c64xx_hclk_ctrl,
284 .ctrlbit = S3C_CLKCON_HCLK_USB,
289 .enable = s3c64xx_pclk_ctrl,
290 .ctrlbit = S3C_CLKCON_PCLK_PWM,
295 .enable = s3c64xx_pclk_ctrl,
296 .ctrlbit = S3C_CLKCON_PCLK_UART0,
301 .enable = s3c64xx_pclk_ctrl,
302 .ctrlbit = S3C_CLKCON_PCLK_UART1,
307 .enable = s3c64xx_pclk_ctrl,
308 .ctrlbit = S3C_CLKCON_PCLK_UART2,
313 .enable = s3c64xx_pclk_ctrl,
314 .ctrlbit = S3C_CLKCON_PCLK_UART3,
319 .ctrlbit = S3C_CLKCON_PCLK_WDT,
324 .ctrlbit = S3C_CLKCON_PCLK_AC97,
329 .enable = s3c64xx_hclk_ctrl,
330 .ctrlbit = S3C_CLKCON_HCLK_IHOST,
335 static struct clk clk_fout_apll = {
340 static struct clk *clk_src_apll_list[] = {
342 [1] = &clk_fout_apll,
345 static struct clksrc_sources clk_src_apll = {
346 .sources = clk_src_apll_list,
347 .nr_sources = ARRAY_SIZE(clk_src_apll_list),
350 static struct clksrc_clk clk_mout_apll = {
355 .reg_src = { .reg = S3C_CLK_SRC, .shift = 0, .size = 1 },
356 .sources = &clk_src_apll,
359 static struct clk *clk_src_epll_list[] = {
361 [1] = &clk_fout_epll,
364 static struct clksrc_sources clk_src_epll = {
365 .sources = clk_src_epll_list,
366 .nr_sources = ARRAY_SIZE(clk_src_epll_list),
369 static struct clksrc_clk clk_mout_epll = {
374 .reg_src = { .reg = S3C_CLK_SRC, .shift = 2, .size = 1 },
375 .sources = &clk_src_epll,
378 static struct clk *clk_src_mpll_list[] = {
380 [1] = &clk_fout_mpll,
383 static struct clksrc_sources clk_src_mpll = {
384 .sources = clk_src_mpll_list,
385 .nr_sources = ARRAY_SIZE(clk_src_mpll_list),
388 static struct clksrc_clk clk_mout_mpll = {
393 .reg_src = { .reg = S3C_CLK_SRC, .shift = 1, .size = 1 },
394 .sources = &clk_src_mpll,
397 static unsigned int armclk_mask;
399 static unsigned long s3c64xx_clk_arm_get_rate(struct clk *clk)
401 unsigned long rate = clk_get_rate(clk->parent);
404 /* divisor mask starts at bit0, so no need to shift */
405 clkdiv = __raw_readl(S3C_CLK_DIV0) & armclk_mask;
407 return rate / (clkdiv + 1);
410 static unsigned long s3c64xx_clk_arm_round_rate(struct clk *clk,
413 unsigned long parent = clk_get_rate(clk->parent);
419 div = (parent / rate) - 1;
420 if (div > armclk_mask)
423 return parent / (div + 1);
426 static int s3c64xx_clk_arm_set_rate(struct clk *clk, unsigned long rate)
428 unsigned long parent = clk_get_rate(clk->parent);
432 if (rate < parent / (armclk_mask + 1))
435 rate = clk_round_rate(clk, rate);
436 div = clk_get_rate(clk->parent) / rate;
438 val = __raw_readl(S3C_CLK_DIV0);
441 __raw_writel(val, S3C_CLK_DIV0);
447 static struct clk clk_arm = {
450 .parent = &clk_mout_apll.clk,
451 .ops = &(struct clk_ops) {
452 .get_rate = s3c64xx_clk_arm_get_rate,
453 .set_rate = s3c64xx_clk_arm_set_rate,
454 .round_rate = s3c64xx_clk_arm_round_rate,
458 static unsigned long s3c64xx_clk_doutmpll_get_rate(struct clk *clk)
460 unsigned long rate = clk_get_rate(clk->parent);
462 printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);
464 if (__raw_readl(S3C_CLK_DIV0) & S3C6400_CLKDIV0_MPLL_MASK)
470 static struct clk_ops clk_dout_ops = {
471 .get_rate = s3c64xx_clk_doutmpll_get_rate,
474 static struct clk clk_dout_mpll = {
477 .parent = &clk_mout_mpll.clk,
478 .ops = &clk_dout_ops,
481 static struct clk *clkset_spi_mmc_list[] = {
488 static struct clksrc_sources clkset_spi_mmc = {
489 .sources = clkset_spi_mmc_list,
490 .nr_sources = ARRAY_SIZE(clkset_spi_mmc_list),
493 static struct clk *clkset_irda_list[] = {
500 static struct clksrc_sources clkset_irda = {
501 .sources = clkset_irda_list,
502 .nr_sources = ARRAY_SIZE(clkset_irda_list),
505 static struct clk *clkset_uart_list[] = {
512 static struct clksrc_sources clkset_uart = {
513 .sources = clkset_uart_list,
514 .nr_sources = ARRAY_SIZE(clkset_uart_list),
517 static struct clk *clkset_uhost_list[] = {
524 static struct clksrc_sources clkset_uhost = {
525 .sources = clkset_uhost_list,
526 .nr_sources = ARRAY_SIZE(clkset_uhost_list),
529 /* The peripheral clocks are all controlled via clocksource followed
530 * by an optional divider and gate stage. We currently roll this into
531 * one clock which hides the intermediate clock from the mux.
533 * Note, the JPEG clock can only be an even divider...
535 * The scaler and LCD clocks depend on the S3C64XX version, and also
536 * have a common parent divisor so are not included here.
539 /* clocks that feed other parts of the clock source tree */
541 static struct clk clk_iis_cd0 = {
542 .name = "iis_cdclk0",
546 static struct clk clk_iis_cd1 = {
547 .name = "iis_cdclk1",
551 static struct clk clk_iisv4_cd = {
552 .name = "iis_cdclk_v4",
556 static struct clk clk_pcm_cd = {
561 static struct clk *clkset_audio0_list[] = {
562 [0] = &clk_mout_epll.clk,
563 [1] = &clk_dout_mpll,
569 static struct clksrc_sources clkset_audio0 = {
570 .sources = clkset_audio0_list,
571 .nr_sources = ARRAY_SIZE(clkset_audio0_list),
574 static struct clk *clkset_audio1_list[] = {
575 [0] = &clk_mout_epll.clk,
576 [1] = &clk_dout_mpll,
582 static struct clksrc_sources clkset_audio1 = {
583 .sources = clkset_audio1_list,
584 .nr_sources = ARRAY_SIZE(clkset_audio1_list),
587 static struct clk *clkset_audio2_list[] = {
588 [0] = &clk_mout_epll.clk,
589 [1] = &clk_dout_mpll,
595 static struct clksrc_sources clkset_audio2 = {
596 .sources = clkset_audio2_list,
597 .nr_sources = ARRAY_SIZE(clkset_audio2_list),
600 static struct clk *clkset_camif_list[] = {
604 static struct clksrc_sources clkset_camif = {
605 .sources = clkset_camif_list,
606 .nr_sources = ARRAY_SIZE(clkset_camif_list),
609 static struct clksrc_clk clksrcs[] = {
614 .ctrlbit = S3C_CLKCON_SCLK_MMC0,
615 .enable = s3c64xx_sclk_ctrl,
617 .reg_src = { .reg = S3C_CLK_SRC, .shift = 18, .size = 2 },
618 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 0, .size = 4 },
619 .sources = &clkset_spi_mmc,
624 .ctrlbit = S3C_CLKCON_SCLK_MMC1,
625 .enable = s3c64xx_sclk_ctrl,
627 .reg_src = { .reg = S3C_CLK_SRC, .shift = 20, .size = 2 },
628 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 4, .size = 4 },
629 .sources = &clkset_spi_mmc,
634 .ctrlbit = S3C_CLKCON_SCLK_MMC2,
635 .enable = s3c64xx_sclk_ctrl,
637 .reg_src = { .reg = S3C_CLK_SRC, .shift = 22, .size = 2 },
638 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 8, .size = 4 },
639 .sources = &clkset_spi_mmc,
642 .name = "usb-bus-host",
644 .ctrlbit = S3C_CLKCON_SCLK_UHOST,
645 .enable = s3c64xx_sclk_ctrl,
647 .reg_src = { .reg = S3C_CLK_SRC, .shift = 5, .size = 2 },
648 .reg_div = { .reg = S3C_CLK_DIV1, .shift = 20, .size = 4 },
649 .sources = &clkset_uhost,
654 .ctrlbit = S3C_CLKCON_SCLK_UART,
655 .enable = s3c64xx_sclk_ctrl,
657 .reg_src = { .reg = S3C_CLK_SRC, .shift = 13, .size = 1 },
658 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 16, .size = 4 },
659 .sources = &clkset_uart,
661 /* Where does UCLK0 come from? */
665 .ctrlbit = S3C_CLKCON_SCLK_SPI0,
666 .enable = s3c64xx_sclk_ctrl,
668 .reg_src = { .reg = S3C_CLK_SRC, .shift = 14, .size = 2 },
669 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 0, .size = 4 },
670 .sources = &clkset_spi_mmc,
675 .ctrlbit = S3C_CLKCON_SCLK_SPI1,
676 .enable = s3c64xx_sclk_ctrl,
678 .reg_src = { .reg = S3C_CLK_SRC, .shift = 16, .size = 2 },
679 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 4, .size = 4 },
680 .sources = &clkset_spi_mmc,
685 .ctrlbit = S3C_CLKCON_SCLK_AUDIO0,
686 .enable = s3c64xx_sclk_ctrl,
688 .reg_src = { .reg = S3C_CLK_SRC, .shift = 7, .size = 3 },
689 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 8, .size = 4 },
690 .sources = &clkset_audio0,
695 .ctrlbit = S3C_CLKCON_SCLK_AUDIO1,
696 .enable = s3c64xx_sclk_ctrl,
698 .reg_src = { .reg = S3C_CLK_SRC, .shift = 10, .size = 3 },
699 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 12, .size = 4 },
700 .sources = &clkset_audio1,
705 .ctrlbit = S3C6410_CLKCON_SCLK_AUDIO2,
706 .enable = s3c64xx_sclk_ctrl,
708 .reg_src = { .reg = S3C6410_CLK_SRC2, .shift = 0, .size = 3 },
709 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 24, .size = 4 },
710 .sources = &clkset_audio2,
715 .ctrlbit = S3C_CLKCON_SCLK_IRDA,
716 .enable = s3c64xx_sclk_ctrl,
718 .reg_src = { .reg = S3C_CLK_SRC, .shift = 24, .size = 2 },
719 .reg_div = { .reg = S3C_CLK_DIV2, .shift = 20, .size = 4 },
720 .sources = &clkset_irda,
725 .ctrlbit = S3C_CLKCON_SCLK_CAM,
726 .enable = s3c64xx_sclk_ctrl,
728 .reg_div = { .reg = S3C_CLK_DIV0, .shift = 20, .size = 4 },
729 .reg_src = { .reg = NULL, .shift = 0, .size = 0 },
730 .sources = &clkset_camif,
734 /* Clock initialisation code */
736 static struct clksrc_clk *init_parents[] = {
742 #define GET_DIV(clk, field) ((((clk) & field##_MASK) >> field##_SHIFT) + 1)
744 void __init_or_cpufreq s3c6400_setup_clocks(void)
746 struct clk *xtal_clk;
758 printk(KERN_DEBUG "%s: registering clocks\n", __func__);
760 clkdiv0 = __raw_readl(S3C_CLK_DIV0);
761 printk(KERN_DEBUG "%s: clkdiv0 = %08x\n", __func__, clkdiv0);
763 xtal_clk = clk_get(NULL, "xtal");
764 BUG_ON(IS_ERR(xtal_clk));
766 xtal = clk_get_rate(xtal_clk);
769 printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);
771 /* For now assume the mux always selects the crystal */
772 clk_ext_xtal_mux.parent = xtal_clk;
774 epll = s3c6400_get_epll(xtal);
775 mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON));
776 apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON));
780 printk(KERN_INFO "S3C64XX: PLL settings, A=%ld, M=%ld, E=%ld\n",
783 hclk2 = mpll / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK2);
784 hclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_HCLK);
785 pclk = hclk2 / GET_DIV(clkdiv0, S3C6400_CLKDIV0_PCLK);
787 printk(KERN_INFO "S3C64XX: HCLK2=%ld, HCLK=%ld, PCLK=%ld\n",
790 clk_fout_mpll.rate = mpll;
791 clk_fout_epll.rate = epll;
792 clk_fout_apll.rate = apll;
799 for (ptr = 0; ptr < ARRAY_SIZE(init_parents); ptr++)
800 s3c_set_clksrc(init_parents[ptr], true);
802 for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++)
803 s3c_set_clksrc(&clksrcs[ptr], true);
806 static struct clk *clks1[] __initdata = {
818 static struct clk *clks[] __initdata = {
828 * s3c64xx_register_clocks - register clocks for s3c6400 and s3c6410
829 * @xtal: The rate for the clock crystal feeding the PLLs.
830 * @armclk_divlimit: Divisor mask for ARMCLK.
832 * Register the clocks for the S3C6400 and S3C6410 SoC range, such
833 * as ARMCLK as well as the necessary parent clocks.
835 * This call does not setup the clocks, which is left to the
836 * s3c6400_setup_clocks() call which may be needed by the cpufreq
837 * or resume code to re-set the clocks if the bootloader has changed
840 void __init s3c64xx_register_clocks(unsigned long xtal,
841 unsigned armclk_divlimit)
843 armclk_mask = armclk_divlimit;
845 s3c24xx_register_baseclocks(xtal);
846 s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));
848 s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
850 s3c_register_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
851 s3c_disable_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
853 s3c24xx_register_clocks(clks1, ARRAY_SIZE(clks1));
854 s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));