cpufreq: OMAP: remove unused <plat/omap-pm.h>
[deliverable/linux.git] / drivers / cpufreq / omap-cpufreq.c
CommitLineData
ec6bced6 1/*
ffe4f0f1 2 * CPU frequency scaling for OMAP using OPP information
ec6bced6
TL
3 *
4 * Copyright (C) 2005 Nokia Corporation
5 * Written by Tony Lindgren <tony@atomide.com>
6 *
7 * Based on cpu-sa1110.c, Copyright (C) 2001 Russell King
8 *
731e0cc6
SS
9 * Copyright (C) 2007-2011 Texas Instruments, Inc.
10 * - OMAP3/4 support by Rajendra Nayak, Santosh Shilimkar
11 *
ec6bced6
TL
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/sched.h>
19#include <linux/cpufreq.h>
20#include <linux/delay.h>
21#include <linux/init.h>
22#include <linux/err.h>
f8ce2547 23#include <linux/clk.h>
fced80c7 24#include <linux/io.h>
731e0cc6 25#include <linux/opp.h>
46c12216 26#include <linux/cpu.h>
c1b547bc 27#include <linux/module.h>
53dfe8a8 28#include <linux/regulator/consumer.h>
ec6bced6 29
731e0cc6 30#include <asm/smp_plat.h>
46c12216 31#include <asm/cpu.h>
ec6bced6 32
731e0cc6 33#include <plat/clock.h>
731e0cc6 34#include <plat/common.h>
c1b547bc 35#include <plat/omap_device.h>
a7ca9d2b 36
731e0cc6 37#include <mach/hardware.h>
aeec2990 38
42daffd2
AM
39/* OPP tolerance in percentage */
40#define OPP_TOLERANCE 4
41
731e0cc6 42static struct cpufreq_frequency_table *freq_table;
1c78217f 43static atomic_t freq_table_users = ATOMIC_INIT(0);
b8488fbe 44static struct clk *mpu_clk;
08ca3e3b 45static char *mpu_clk_name;
a820ffa8 46static struct device *mpu_dev;
53dfe8a8 47static struct regulator *mpu_reg;
b8488fbe 48
b0a330dc 49static int omap_verify_speed(struct cpufreq_policy *policy)
ec6bced6 50{
bf2a359d 51 if (!freq_table)
ec6bced6 52 return -EINVAL;
bf2a359d 53 return cpufreq_frequency_table_verify(policy, freq_table);
ec6bced6
TL
54}
55
b0a330dc 56static unsigned int omap_getspeed(unsigned int cpu)
ec6bced6 57{
ec6bced6
TL
58 unsigned long rate;
59
46c12216 60 if (cpu >= NR_CPUS)
ec6bced6
TL
61 return 0;
62
ec6bced6 63 rate = clk_get_rate(mpu_clk) / 1000;
ec6bced6
TL
64 return rate;
65}
66
67static int omap_target(struct cpufreq_policy *policy,
68 unsigned int target_freq,
69 unsigned int relation)
70{
bf2a359d 71 unsigned int i;
53dfe8a8 72 int r, ret = 0;
731e0cc6 73 struct cpufreq_freqs freqs;
53dfe8a8 74 struct opp *opp;
42daffd2 75 unsigned long freq, volt = 0, volt_old = 0, tol = 0;
ec6bced6 76
bf2a359d
NM
77 if (!freq_table) {
78 dev_err(mpu_dev, "%s: cpu%d: no freq table!\n", __func__,
79 policy->cpu);
80 return -EINVAL;
81 }
82
83 ret = cpufreq_frequency_table_target(policy, freq_table, target_freq,
84 relation, &i);
85 if (ret) {
86 dev_dbg(mpu_dev, "%s: cpu%d: no freq match for %d(ret=%d)\n",
87 __func__, policy->cpu, target_freq, ret);
88 return ret;
89 }
90 freqs.new = freq_table[i].frequency;
91 if (!freqs.new) {
92 dev_err(mpu_dev, "%s: cpu%d: no match for freq %d\n", __func__,
93 policy->cpu, target_freq);
94 return -EINVAL;
95 }
aeec2990 96
46c12216 97 freqs.old = omap_getspeed(policy->cpu);
46c12216 98 freqs.cpu = policy->cpu;
ec6bced6 99
022ac03b 100 if (freqs.old == freqs.new && policy->cur == freqs.new)
aeec2990
KH
101 return ret;
102
46c12216
RK
103 /* notifiers */
104 for_each_cpu(i, policy->cpus) {
105 freqs.cpu = i;
106 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
107 }
731e0cc6 108
53dfe8a8 109 freq = freqs.new * 1000;
8df0a663
KH
110 ret = clk_round_rate(mpu_clk, freq);
111 if (IS_ERR_VALUE(ret)) {
112 dev_warn(mpu_dev,
113 "CPUfreq: Cannot find matching frequency for %lu\n",
114 freq);
115 return ret;
116 }
117 freq = ret;
53dfe8a8
KH
118
119 if (mpu_reg) {
120 opp = opp_find_freq_ceil(mpu_dev, &freq);
121 if (IS_ERR(opp)) {
122 dev_err(mpu_dev, "%s: unable to find MPU OPP for %d\n",
123 __func__, freqs.new);
124 return -EINVAL;
125 }
126 volt = opp_get_voltage(opp);
42daffd2 127 tol = volt * OPP_TOLERANCE / 100;
53dfe8a8
KH
128 volt_old = regulator_get_voltage(mpu_reg);
129 }
130
131 dev_dbg(mpu_dev, "cpufreq-omap: %u MHz, %ld mV --> %u MHz, %ld mV\n",
132 freqs.old / 1000, volt_old ? volt_old / 1000 : -1,
133 freqs.new / 1000, volt ? volt / 1000 : -1);
134
135 /* scaling up? scale voltage before frequency */
136 if (mpu_reg && (freqs.new > freqs.old)) {
42daffd2 137 r = regulator_set_voltage(mpu_reg, volt - tol, volt + tol);
53dfe8a8
KH
138 if (r < 0) {
139 dev_warn(mpu_dev, "%s: unable to scale voltage up.\n",
140 __func__);
141 freqs.new = freqs.old;
142 goto done;
143 }
144 }
731e0cc6 145
aeec2990 146 ret = clk_set_rate(mpu_clk, freqs.new * 1000);
46c12216 147
53dfe8a8
KH
148 /* scaling down? scale voltage after frequency */
149 if (mpu_reg && (freqs.new < freqs.old)) {
42daffd2 150 r = regulator_set_voltage(mpu_reg, volt - tol, volt + tol);
53dfe8a8
KH
151 if (r < 0) {
152 dev_warn(mpu_dev, "%s: unable to scale voltage down.\n",
153 __func__);
154 ret = clk_set_rate(mpu_clk, freqs.old * 1000);
155 freqs.new = freqs.old;
156 goto done;
157 }
158 }
159
160 freqs.new = omap_getspeed(policy->cpu);
46c12216 161
53dfe8a8 162done:
46c12216
RK
163 /* notifiers */
164 for_each_cpu(i, policy->cpus) {
165 freqs.cpu = i;
166 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
167 }
ec6bced6
TL
168
169 return ret;
170}
171
1c78217f
NM
172static inline void freq_table_free(void)
173{
174 if (atomic_dec_and_test(&freq_table_users))
175 opp_free_cpufreq_table(mpu_dev, &freq_table);
176}
177
790ab7e9 178static int __cpuinit omap_cpu_init(struct cpufreq_policy *policy)
ec6bced6 179{
aeec2990 180 int result = 0;
731e0cc6 181
08ca3e3b 182 mpu_clk = clk_get(NULL, mpu_clk_name);
ec6bced6
TL
183 if (IS_ERR(mpu_clk))
184 return PTR_ERR(mpu_clk);
185
11e04fdd
NM
186 if (policy->cpu >= NR_CPUS) {
187 result = -EINVAL;
188 goto fail_ck;
189 }
aeec2990 190
46c12216 191 policy->cur = policy->min = policy->max = omap_getspeed(policy->cpu);
1c78217f 192
1b865214 193 if (!freq_table)
1c78217f 194 result = opp_init_cpufreq_table(mpu_dev, &freq_table);
bf2a359d
NM
195
196 if (result) {
197 dev_err(mpu_dev, "%s: cpu%d: failed creating freq table[%d]\n",
198 __func__, policy->cpu, result);
11e04fdd 199 goto fail_ck;
aeec2990
KH
200 }
201
1b865214
RN
202 atomic_inc_return(&freq_table_users);
203
bf2a359d 204 result = cpufreq_frequency_table_cpuinfo(policy, freq_table);
1c78217f
NM
205 if (result)
206 goto fail_table;
207
208 cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
bf2a359d 209
731e0cc6
SS
210 policy->min = policy->cpuinfo.min_freq;
211 policy->max = policy->cpuinfo.max_freq;
46c12216
RK
212 policy->cur = omap_getspeed(policy->cpu);
213
214 /*
215 * On OMAP SMP configuartion, both processors share the voltage
216 * and clock. So both CPUs needs to be scaled together and hence
217 * needs software co-ordination. Use cpufreq affected_cpus
218 * interface to handle this scenario. Additional is_smp() check
219 * is to keep SMP_ON_UP build working.
220 */
221 if (is_smp()) {
222 policy->shared_type = CPUFREQ_SHARED_TYPE_ANY;
ed8ce00c 223 cpumask_setall(policy->cpus);
46c12216 224 }
731e0cc6 225
aeec2990 226 /* FIXME: what's the actual transition time? */
b029839c 227 policy->cpuinfo.transition_latency = 300 * 1000;
ec6bced6
TL
228
229 return 0;
11e04fdd 230
1c78217f
NM
231fail_table:
232 freq_table_free();
11e04fdd
NM
233fail_ck:
234 clk_put(mpu_clk);
235 return result;
ec6bced6
TL
236}
237
b8488fbe
HD
238static int omap_cpu_exit(struct cpufreq_policy *policy)
239{
1c78217f 240 freq_table_free();
b8488fbe
HD
241 clk_put(mpu_clk);
242 return 0;
243}
244
aeec2990
KH
245static struct freq_attr *omap_cpufreq_attr[] = {
246 &cpufreq_freq_attr_scaling_available_freqs,
247 NULL,
248};
249
ec6bced6
TL
250static struct cpufreq_driver omap_driver = {
251 .flags = CPUFREQ_STICKY,
252 .verify = omap_verify_speed,
253 .target = omap_target,
254 .get = omap_getspeed,
255 .init = omap_cpu_init,
b8488fbe 256 .exit = omap_cpu_exit,
ec6bced6 257 .name = "omap",
aeec2990 258 .attr = omap_cpufreq_attr,
ec6bced6
TL
259};
260
261static int __init omap_cpufreq_init(void)
262{
08ca3e3b
NM
263 if (cpu_is_omap24xx())
264 mpu_clk_name = "virt_prcm_set";
265 else if (cpu_is_omap34xx())
266 mpu_clk_name = "dpll1_ck";
267 else if (cpu_is_omap44xx())
268 mpu_clk_name = "dpll_mpu_ck";
269
270 if (!mpu_clk_name) {
271 pr_err("%s: unsupported Silicon?\n", __func__);
272 return -EINVAL;
273 }
a820ffa8 274
c1b547bc 275 mpu_dev = omap_device_get_by_hwmod_name("mpu");
1bae9958 276 if (IS_ERR(mpu_dev)) {
a820ffa8 277 pr_warning("%s: unable to get the mpu device\n", __func__);
1bae9958 278 return PTR_ERR(mpu_dev);
a820ffa8
NM
279 }
280
53dfe8a8
KH
281 mpu_reg = regulator_get(mpu_dev, "vcc");
282 if (IS_ERR(mpu_reg)) {
283 pr_warning("%s: unable to get MPU regulator\n", __func__);
284 mpu_reg = NULL;
285 } else {
286 /*
287 * Ensure physical regulator is present.
288 * (e.g. could be dummy regulator.)
289 */
290 if (regulator_get_voltage(mpu_reg) < 0) {
291 pr_warn("%s: physical regulator not present for MPU\n",
292 __func__);
293 regulator_put(mpu_reg);
294 mpu_reg = NULL;
295 }
296 }
297
ec6bced6
TL
298 return cpufreq_register_driver(&omap_driver);
299}
300
731e0cc6
SS
301static void __exit omap_cpufreq_exit(void)
302{
303 cpufreq_unregister_driver(&omap_driver);
304}
aeec2990 305
731e0cc6
SS
306MODULE_DESCRIPTION("cpufreq driver for OMAP SoCs");
307MODULE_LICENSE("GPL");
308module_init(omap_cpufreq_init);
309module_exit(omap_cpufreq_exit);
This page took 0.509213 seconds and 5 git commands to generate.