Merge tag 'v3.10.108' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / cpufreq / exynos4210-cpufreq.c
CommitLineData
f7d77079 1/*
7d30e8b3 2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
f40f91fe
SK
3 * http://www.samsung.com
4 *
a125a17f 5 * EXYNOS4210 - CPU frequency scaling support
f40f91fe
SK
6 *
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.
10*/
11
6c523c61 12#include <linux/module.h>
f40f91fe
SK
13#include <linux/kernel.h>
14#include <linux/err.h>
15#include <linux/clk.h>
16#include <linux/io.h>
17#include <linux/slab.h>
f40f91fe
SK
18#include <linux/cpufreq.h>
19
f40f91fe 20#include <mach/regs-clock.h>
c4aaa295
KK
21
22#include "exynos-cpufreq.h"
f40f91fe 23
f40f91fe
SK
24static struct clk *cpu_clk;
25static struct clk *moutcore;
26static struct clk *mout_mpll;
27static struct clk *mout_apll;
28
9d0554ff 29static unsigned int exynos4210_volt_table[] = {
a125a17f 30 1250000, 1150000, 1050000, 975000, 950000,
f40f91fe
SK
31};
32
a125a17f 33static struct cpufreq_frequency_table exynos4210_freq_table[] = {
9d0554ff
JC
34 {L0, 1200 * 1000},
35 {L1, 1000 * 1000},
36 {L2, 800 * 1000},
37 {L3, 500 * 1000},
38 {L4, 200 * 1000},
f40f91fe
SK
39 {0, CPUFREQ_TABLE_END},
40};
41
9d0554ff 42static struct apll_freq apll_freq_4210[] = {
f40f91fe 43 /*
9d0554ff
JC
44 * values:
45 * freq
46 * clock divider for CORE, COREM0, COREM1, PERIPH, ATB, PCLK_DBG, APLL, RESERVED
47 * clock divider for COPY, HPM, RESERVED
48 * PLL M, P, S
f40f91fe 49 */
9d0554ff
JC
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),
bf5ce054
SJ
55};
56
a125a17f 57static void exynos4210_set_clkdiv(unsigned int div_index)
f40f91fe
SK
58{
59 unsigned int tmp;
60
61 /* Change Divider - CPU0 */
62
9d0554ff 63 tmp = apll_freq_4210[div_index].clk_div_cpu0;
f40f91fe 64
09cee1ab 65 __raw_writel(tmp, EXYNOS4_CLKDIV_CPU);
f40f91fe
SK
66
67 do {
09cee1ab 68 tmp = __raw_readl(EXYNOS4_CLKDIV_STATCPU);
f40f91fe
SK
69 } while (tmp & 0x1111111);
70
bf5ce054
SJ
71 /* Change Divider - CPU1 */
72
9d0554ff 73 tmp = apll_freq_4210[div_index].clk_div_cpu1;
bf5ce054 74
09cee1ab 75 __raw_writel(tmp, EXYNOS4_CLKDIV_CPU1);
bf5ce054
SJ
76
77 do {
09cee1ab 78 tmp = __raw_readl(EXYNOS4_CLKDIV_STATCPU1);
bf5ce054 79 } while (tmp & 0x11);
f40f91fe
SK
80}
81
a125a17f 82static void exynos4210_set_apll(unsigned int index)
bf5ce054
SJ
83{
84 unsigned int tmp;
85
86 /* 1. MUX_CORE_SEL = MPLL, ARMCLK uses MPLL for lock time */
87 clk_set_parent(moutcore, mout_mpll);
88
89 do {
09cee1ab
KK
90 tmp = (__raw_readl(EXYNOS4_CLKMUX_STATCPU)
91 >> EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT);
bf5ce054
SJ
92 tmp &= 0x7;
93 } while (tmp != 0x2);
94
95 /* 2. Set APLL Lock time */
09cee1ab 96 __raw_writel(EXYNOS4_APLL_LOCKTIME, EXYNOS4_APLL_LOCK);
bf5ce054
SJ
97
98 /* 3. Change PLL PMS values */
09cee1ab 99 tmp = __raw_readl(EXYNOS4_APLL_CON0);
bf5ce054 100 tmp &= ~((0x3ff << 16) | (0x3f << 8) | (0x7 << 0));
9d0554ff 101 tmp |= apll_freq_4210[index].mps;
09cee1ab 102 __raw_writel(tmp, EXYNOS4_APLL_CON0);
bf5ce054
SJ
103
104 /* 4. wait_lock_time */
105 do {
09cee1ab
KK
106 tmp = __raw_readl(EXYNOS4_APLL_CON0);
107 } while (!(tmp & (0x1 << EXYNOS4_APLLCON0_LOCKED_SHIFT)));
bf5ce054
SJ
108
109 /* 5. MUX_CORE_SEL = APLL */
110 clk_set_parent(moutcore, mout_apll);
111
112 do {
09cee1ab
KK
113 tmp = __raw_readl(EXYNOS4_CLKMUX_STATCPU);
114 tmp &= EXYNOS4_CLKMUX_STATCPU_MUXCORE_MASK;
115 } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT));
bf5ce054
SJ
116}
117
94aa4409 118static bool exynos4210_pms_change(unsigned int old_index, unsigned int new_index)
a125a17f 119{
9d0554ff
JC
120 unsigned int old_pm = apll_freq_4210[old_index].mps >> 8;
121 unsigned int new_pm = apll_freq_4210[new_index].mps >> 8;
a125a17f
JL
122
123 return (old_pm == new_pm) ? 0 : 1;
124}
125
126static void exynos4210_set_frequency(unsigned int old_index,
127 unsigned int new_index)
bf5ce054
SJ
128{
129 unsigned int tmp;
130
131 if (old_index > new_index) {
a125a17f 132 if (!exynos4210_pms_change(old_index, new_index)) {
bf5ce054 133 /* 1. Change the system clock divider values */
a125a17f 134 exynos4210_set_clkdiv(new_index);
bf5ce054
SJ
135
136 /* 2. Change just s value in apll m,p,s value */
09cee1ab 137 tmp = __raw_readl(EXYNOS4_APLL_CON0);
bf5ce054 138 tmp &= ~(0x7 << 0);
9d0554ff 139 tmp |= apll_freq_4210[new_index].mps & 0x7;
09cee1ab 140 __raw_writel(tmp, EXYNOS4_APLL_CON0);
bf5ce054 141 } else {
27f805dc
JL
142 /* Clock Configuration Procedure */
143 /* 1. Change the system clock divider values */
a125a17f 144 exynos4210_set_clkdiv(new_index);
27f805dc 145 /* 2. Change the apll m,p,s value */
a125a17f 146 exynos4210_set_apll(new_index);
27f805dc
JL
147 }
148 } else if (old_index < new_index) {
a125a17f 149 if (!exynos4210_pms_change(old_index, new_index)) {
bf5ce054 150 /* 1. Change just s value in apll m,p,s value */
09cee1ab 151 tmp = __raw_readl(EXYNOS4_APLL_CON0);
bf5ce054 152 tmp &= ~(0x7 << 0);
9d0554ff 153 tmp |= apll_freq_4210[new_index].mps & 0x7;
09cee1ab 154 __raw_writel(tmp, EXYNOS4_APLL_CON0);
bf5ce054 155
27f805dc 156 /* 2. Change the system clock divider values */
a125a17f 157 exynos4210_set_clkdiv(new_index);
27f805dc
JL
158 } else {
159 /* Clock Configuration Procedure */
160 /* 1. Change the apll m,p,s value */
a125a17f 161 exynos4210_set_apll(new_index);
bf5ce054 162 /* 2. Change the system clock divider values */
a125a17f 163 exynos4210_set_clkdiv(new_index);
bf5ce054
SJ
164 }
165 }
166}
167
a125a17f 168int exynos4210_cpufreq_init(struct exynos_dvfs_info *info)
f40f91fe 169{
a125a17f 170 unsigned long rate;
27f805dc 171
f40f91fe
SK
172 cpu_clk = clk_get(NULL, "armclk");
173 if (IS_ERR(cpu_clk))
174 return PTR_ERR(cpu_clk);
175
176 moutcore = clk_get(NULL, "moutcore");
177 if (IS_ERR(moutcore))
a125a17f 178 goto err_moutcore;
f40f91fe
SK
179
180 mout_mpll = clk_get(NULL, "mout_mpll");
181 if (IS_ERR(mout_mpll))
a125a17f
JL
182 goto err_mout_mpll;
183
184 rate = clk_get_rate(mout_mpll) / 1000;
f40f91fe
SK
185
186 mout_apll = clk_get(NULL, "mout_apll");
187 if (IS_ERR(mout_apll))
a125a17f 188 goto err_mout_apll;
0073f538 189
a125a17f 190 info->mpll_freq_khz = rate;
9d0554ff 191 /* 800Mhz */
a125a17f 192 info->pll_safe_idx = L2;
a125a17f
JL
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;
f40f91fe 198
a125a17f 199 return 0;
f40f91fe 200
a125a17f 201err_mout_apll:
184cddd1 202 clk_put(mout_mpll);
a125a17f 203err_mout_mpll:
184cddd1 204 clk_put(moutcore);
a125a17f 205err_moutcore:
184cddd1 206 clk_put(cpu_clk);
f40f91fe 207
a125a17f 208 pr_debug("%s: failed initialization\n", __func__);
f40f91fe
SK
209 return -EINVAL;
210}
a125a17f 211EXPORT_SYMBOL(exynos4210_cpufreq_init);