2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * EXYNOS4210 - CPU frequency scaling support
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/err.h>
15 #include <linux/clk.h>
17 #include <linux/slab.h>
18 #include <linux/cpufreq.h>
20 #include "exynos-cpufreq.h"
22 static struct clk
*cpu_clk
;
23 static struct clk
*moutcore
;
24 static struct clk
*mout_mpll
;
25 static struct clk
*mout_apll
;
27 static unsigned int exynos4210_volt_table
[] = {
28 1250000, 1150000, 1050000, 975000, 950000,
31 static struct cpufreq_frequency_table exynos4210_freq_table
[] = {
37 {0, CPUFREQ_TABLE_END
},
40 static struct apll_freq apll_freq_4210
[] = {
44 * clock divider for CORE, COREM0, COREM1, PERIPH, ATB, PCLK_DBG, APLL, RESERVED
45 * clock divider for COPY, HPM, RESERVED
48 APLL_FREQ(1200, 0, 3, 7, 3, 4, 1, 7, 0, 5, 0, 0, 150, 3, 1),
49 APLL_FREQ(1000, 0, 3, 7, 3, 4, 1, 7, 0, 4, 0, 0, 250, 6, 1),
50 APLL_FREQ(800, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 200, 6, 1),
51 APLL_FREQ(500, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 250, 6, 2),
52 APLL_FREQ(200, 0, 1, 3, 1, 3, 1, 0, 0, 3, 0, 0, 200, 6, 3),
55 static void exynos4210_set_clkdiv(unsigned int div_index
)
59 /* Change Divider - CPU0 */
61 tmp
= apll_freq_4210
[div_index
].clk_div_cpu0
;
63 __raw_writel(tmp
, EXYNOS4_CLKDIV_CPU
);
66 tmp
= __raw_readl(EXYNOS4_CLKDIV_STATCPU
);
67 } while (tmp
& 0x1111111);
69 /* Change Divider - CPU1 */
71 tmp
= apll_freq_4210
[div_index
].clk_div_cpu1
;
73 __raw_writel(tmp
, EXYNOS4_CLKDIV_CPU1
);
76 tmp
= __raw_readl(EXYNOS4_CLKDIV_STATCPU1
);
80 static void exynos4210_set_apll(unsigned int index
)
82 unsigned int tmp
, freq
= apll_freq_4210
[index
].freq
;
84 /* MUX_CORE_SEL = MPLL, ARMCLK uses MPLL for lock time */
85 clk_set_parent(moutcore
, mout_mpll
);
88 tmp
= (__raw_readl(EXYNOS4_CLKMUX_STATCPU
)
89 >> EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT
);
93 clk_set_rate(mout_apll
, freq
* 1000);
95 /* MUX_CORE_SEL = APLL */
96 clk_set_parent(moutcore
, mout_apll
);
99 tmp
= __raw_readl(EXYNOS4_CLKMUX_STATCPU
);
100 tmp
&= EXYNOS4_CLKMUX_STATCPU_MUXCORE_MASK
;
101 } while (tmp
!= (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT
));
104 static void exynos4210_set_frequency(unsigned int old_index
,
105 unsigned int new_index
)
107 if (old_index
> new_index
) {
108 exynos4210_set_clkdiv(new_index
);
109 exynos4210_set_apll(new_index
);
110 } else if (old_index
< new_index
) {
111 exynos4210_set_apll(new_index
);
112 exynos4210_set_clkdiv(new_index
);
116 int exynos4210_cpufreq_init(struct exynos_dvfs_info
*info
)
120 cpu_clk
= clk_get(NULL
, "armclk");
122 return PTR_ERR(cpu_clk
);
124 moutcore
= clk_get(NULL
, "moutcore");
125 if (IS_ERR(moutcore
))
128 mout_mpll
= clk_get(NULL
, "mout_mpll");
129 if (IS_ERR(mout_mpll
))
132 rate
= clk_get_rate(mout_mpll
) / 1000;
134 mout_apll
= clk_get(NULL
, "mout_apll");
135 if (IS_ERR(mout_apll
))
138 info
->mpll_freq_khz
= rate
;
140 info
->pll_safe_idx
= L2
;
141 info
->cpu_clk
= cpu_clk
;
142 info
->volt_table
= exynos4210_volt_table
;
143 info
->freq_table
= exynos4210_freq_table
;
144 info
->set_freq
= exynos4210_set_frequency
;
155 pr_debug("%s: failed initialization\n", __func__
);