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 <mach/regs-clock.h>
22 #include "exynos-cpufreq.h"
24 static struct clk
*cpu_clk
;
25 static struct clk
*moutcore
;
26 static struct clk
*mout_mpll
;
27 static struct clk
*mout_apll
;
29 static unsigned int exynos4210_volt_table
[] = {
30 1250000, 1150000, 1050000, 975000, 950000,
33 static struct cpufreq_frequency_table exynos4210_freq_table
[] = {
39 {0, CPUFREQ_TABLE_END
},
42 static struct apll_freq apll_freq_4210
[] = {
46 * clock divider for CORE, COREM0, COREM1, PERIPH, ATB, PCLK_DBG, APLL, RESERVED
47 * clock divider for COPY, HPM, RESERVED
50 APLL_FREQ(1200, 0, 3, 7, 3, 4, 1, 7, 0, 5, 0, 0, 150, 3, 1),
51 APLL_FREQ(1000, 0, 3, 7, 3, 4, 1, 7, 0, 4, 0, 0, 250, 6, 1),
52 APLL_FREQ(800, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 200, 6, 1),
53 APLL_FREQ(500, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 250, 6, 2),
54 APLL_FREQ(200, 0, 1, 3, 1, 3, 1, 0, 0, 3, 0, 0, 200, 6, 3),
57 static void exynos4210_set_clkdiv(unsigned int div_index
)
61 /* Change Divider - CPU0 */
63 tmp
= apll_freq_4210
[div_index
].clk_div_cpu0
;
65 __raw_writel(tmp
, EXYNOS4_CLKDIV_CPU
);
68 tmp
= __raw_readl(EXYNOS4_CLKDIV_STATCPU
);
69 } while (tmp
& 0x1111111);
71 /* Change Divider - CPU1 */
73 tmp
= apll_freq_4210
[div_index
].clk_div_cpu1
;
75 __raw_writel(tmp
, EXYNOS4_CLKDIV_CPU1
);
78 tmp
= __raw_readl(EXYNOS4_CLKDIV_STATCPU1
);
82 static void exynos4210_set_apll(unsigned int index
)
86 /* 1. MUX_CORE_SEL = MPLL, ARMCLK uses MPLL for lock time */
87 clk_set_parent(moutcore
, mout_mpll
);
90 tmp
= (__raw_readl(EXYNOS4_CLKMUX_STATCPU
)
91 >> EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT
);
95 /* 2. Set APLL Lock time */
96 __raw_writel(EXYNOS4_APLL_LOCKTIME
, EXYNOS4_APLL_LOCK
);
98 /* 3. Change PLL PMS values */
99 tmp
= __raw_readl(EXYNOS4_APLL_CON0
);
100 tmp
&= ~((0x3ff << 16) | (0x3f << 8) | (0x7 << 0));
101 tmp
|= apll_freq_4210
[index
].mps
;
102 __raw_writel(tmp
, EXYNOS4_APLL_CON0
);
104 /* 4. wait_lock_time */
106 tmp
= __raw_readl(EXYNOS4_APLL_CON0
);
107 } while (!(tmp
& (0x1 << EXYNOS4_APLLCON0_LOCKED_SHIFT
)));
109 /* 5. MUX_CORE_SEL = APLL */
110 clk_set_parent(moutcore
, mout_apll
);
113 tmp
= __raw_readl(EXYNOS4_CLKMUX_STATCPU
);
114 tmp
&= EXYNOS4_CLKMUX_STATCPU_MUXCORE_MASK
;
115 } while (tmp
!= (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT
));
118 static bool exynos4210_pms_change(unsigned int old_index
, unsigned int new_index
)
120 unsigned int old_pm
= apll_freq_4210
[old_index
].mps
>> 8;
121 unsigned int new_pm
= apll_freq_4210
[new_index
].mps
>> 8;
123 return (old_pm
== new_pm
) ? 0 : 1;
126 static void exynos4210_set_frequency(unsigned int old_index
,
127 unsigned int new_index
)
131 if (old_index
> new_index
) {
132 if (!exynos4210_pms_change(old_index
, new_index
)) {
133 /* 1. Change the system clock divider values */
134 exynos4210_set_clkdiv(new_index
);
136 /* 2. Change just s value in apll m,p,s value */
137 tmp
= __raw_readl(EXYNOS4_APLL_CON0
);
139 tmp
|= apll_freq_4210
[new_index
].mps
& 0x7;
140 __raw_writel(tmp
, EXYNOS4_APLL_CON0
);
142 /* Clock Configuration Procedure */
143 /* 1. Change the system clock divider values */
144 exynos4210_set_clkdiv(new_index
);
145 /* 2. Change the apll m,p,s value */
146 exynos4210_set_apll(new_index
);
148 } else if (old_index
< new_index
) {
149 if (!exynos4210_pms_change(old_index
, new_index
)) {
150 /* 1. Change just s value in apll m,p,s value */
151 tmp
= __raw_readl(EXYNOS4_APLL_CON0
);
153 tmp
|= apll_freq_4210
[new_index
].mps
& 0x7;
154 __raw_writel(tmp
, EXYNOS4_APLL_CON0
);
156 /* 2. Change the system clock divider values */
157 exynos4210_set_clkdiv(new_index
);
159 /* Clock Configuration Procedure */
160 /* 1. Change the apll m,p,s value */
161 exynos4210_set_apll(new_index
);
162 /* 2. Change the system clock divider values */
163 exynos4210_set_clkdiv(new_index
);
168 int exynos4210_cpufreq_init(struct exynos_dvfs_info
*info
)
172 cpu_clk
= clk_get(NULL
, "armclk");
174 return PTR_ERR(cpu_clk
);
176 moutcore
= clk_get(NULL
, "moutcore");
177 if (IS_ERR(moutcore
))
180 mout_mpll
= clk_get(NULL
, "mout_mpll");
181 if (IS_ERR(mout_mpll
))
184 rate
= clk_get_rate(mout_mpll
) / 1000;
186 mout_apll
= clk_get(NULL
, "mout_apll");
187 if (IS_ERR(mout_apll
))
190 info
->mpll_freq_khz
= rate
;
192 info
->pll_safe_idx
= L2
;
193 info
->cpu_clk
= cpu_clk
;
194 info
->volt_table
= exynos4210_volt_table
;
195 info
->freq_table
= exynos4210_freq_table
;
196 info
->set_freq
= exynos4210_set_frequency
;
197 info
->need_apll_change
= exynos4210_pms_change
;
208 pr_debug("%s: failed initialization\n", __func__
);
211 EXPORT_SYMBOL(exynos4210_cpufreq_init
);