blob: 67bbb06d046081cd9d0f3786b7fdecd2b23ab955 [file] [log] [blame]
Tony Lindgrenec6bced2005-07-10 19:58:20 +01001/*
Nishanth Menonffe4f0f2011-05-26 19:39:18 -07002 * CPU frequency scaling for OMAP using OPP information
Tony Lindgrenec6bced2005-07-10 19:58:20 +01003 *
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 *
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -07009 * Copyright (C) 2007-2011 Texas Instruments, Inc.
10 * - OMAP3/4 support by Rajendra Nayak, Santosh Shilimkar
11 *
Tony Lindgrenec6bced2005-07-10 19:58:20 +010012 * 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>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -070025#include <linux/opp.h>
Russell King46c12212011-09-21 16:53:00 -070026#include <linux/cpu.h>
Kevin Hilmanc1b547b2011-09-30 10:41:26 -070027#include <linux/module.h>
Kevin Hilman53dfe8a2011-07-15 15:05:04 -070028#include <linux/regulator/consumer.h>
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -070029
30#include <asm/system.h>
31#include <asm/smp_plat.h>
Russell King46c12212011-09-21 16:53:00 -070032#include <asm/cpu.h>
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -070033
34#include <plat/clock.h>
35#include <plat/omap-pm.h>
36#include <plat/common.h>
Kevin Hilmanc1b547b2011-09-30 10:41:26 -070037#include <plat/omap_device.h>
Tony Lindgrenec6bced2005-07-10 19:58:20 +010038
Russell Kinga09e64f2008-08-05 16:14:15 +010039#include <mach/hardware.h>
Tony Lindgrenec6bced2005-07-10 19:58:20 +010040
Afzal Mohammed42daffd2012-02-23 19:19:24 +053041/* OPP tolerance in percentage */
42#define OPP_TOLERANCE 4
43
Russell King46c12212011-09-21 16:53:00 -070044#ifdef CONFIG_SMP
45struct lpj_info {
46 unsigned long ref;
47 unsigned int freq;
48};
49
50static DEFINE_PER_CPU(struct lpj_info, lpj_ref);
51static struct lpj_info global_lpj_ref;
52#endif
53
Kevin Hilmanaeec2992009-01-27 19:13:38 -070054static struct cpufreq_frequency_table *freq_table;
Nishanth Menon1c782172011-05-26 19:39:20 -070055static atomic_t freq_table_users = ATOMIC_INIT(0);
Hiroshi DOYUb8488fb2007-08-30 12:46:39 +030056static struct clk *mpu_clk;
Nishanth Menon08ca3e3b2011-05-25 16:38:46 -070057static char *mpu_clk_name;
Nishanth Menona820ffa2011-05-25 16:38:47 -070058static struct device *mpu_dev;
Kevin Hilman53dfe8a2011-07-15 15:05:04 -070059static struct regulator *mpu_reg;
Hiroshi DOYUb8488fb2007-08-30 12:46:39 +030060
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070061static int omap_verify_speed(struct cpufreq_policy *policy)
Tony Lindgrenec6bced2005-07-10 19:58:20 +010062{
Nishanth Menonbf2a3592011-05-26 19:39:17 -070063 if (!freq_table)
Tony Lindgrenec6bced2005-07-10 19:58:20 +010064 return -EINVAL;
Nishanth Menonbf2a3592011-05-26 19:39:17 -070065 return cpufreq_frequency_table_verify(policy, freq_table);
Tony Lindgrenec6bced2005-07-10 19:58:20 +010066}
67
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070068static unsigned int omap_getspeed(unsigned int cpu)
Tony Lindgrenec6bced2005-07-10 19:58:20 +010069{
Tony Lindgrenec6bced2005-07-10 19:58:20 +010070 unsigned long rate;
71
Russell King46c12212011-09-21 16:53:00 -070072 if (cpu >= NR_CPUS)
Tony Lindgrenec6bced2005-07-10 19:58:20 +010073 return 0;
74
Tony Lindgrenec6bced2005-07-10 19:58:20 +010075 rate = clk_get_rate(mpu_clk) / 1000;
Tony Lindgrenec6bced2005-07-10 19:58:20 +010076 return rate;
77}
78
79static int omap_target(struct cpufreq_policy *policy,
80 unsigned int target_freq,
81 unsigned int relation)
82{
Nishanth Menonbf2a3592011-05-26 19:39:17 -070083 unsigned int i;
Kevin Hilman53dfe8a2011-07-15 15:05:04 -070084 int r, ret = 0;
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -070085 struct cpufreq_freqs freqs;
Kevin Hilman53dfe8a2011-07-15 15:05:04 -070086 struct opp *opp;
Afzal Mohammed42daffd2012-02-23 19:19:24 +053087 unsigned long freq, volt = 0, volt_old = 0, tol = 0;
Tony Lindgrenec6bced2005-07-10 19:58:20 +010088
Nishanth Menonbf2a3592011-05-26 19:39:17 -070089 if (!freq_table) {
90 dev_err(mpu_dev, "%s: cpu%d: no freq table!\n", __func__,
91 policy->cpu);
92 return -EINVAL;
93 }
94
95 ret = cpufreq_frequency_table_target(policy, freq_table, target_freq,
96 relation, &i);
97 if (ret) {
98 dev_dbg(mpu_dev, "%s: cpu%d: no freq match for %d(ret=%d)\n",
99 __func__, policy->cpu, target_freq, ret);
100 return ret;
101 }
102 freqs.new = freq_table[i].frequency;
103 if (!freqs.new) {
104 dev_err(mpu_dev, "%s: cpu%d: no match for freq %d\n", __func__,
105 policy->cpu, target_freq);
106 return -EINVAL;
107 }
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700108
Russell King46c12212011-09-21 16:53:00 -0700109 freqs.old = omap_getspeed(policy->cpu);
Russell King46c12212011-09-21 16:53:00 -0700110 freqs.cpu = policy->cpu;
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100111
Colin Cross022ac032011-06-06 21:05:29 -0500112 if (freqs.old == freqs.new && policy->cur == freqs.new)
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700113 return ret;
114
Russell King46c12212011-09-21 16:53:00 -0700115 /* notifiers */
116 for_each_cpu(i, policy->cpus) {
117 freqs.cpu = i;
118 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
119 }
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700120
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700121 freq = freqs.new * 1000;
122
123 if (mpu_reg) {
124 opp = opp_find_freq_ceil(mpu_dev, &freq);
125 if (IS_ERR(opp)) {
126 dev_err(mpu_dev, "%s: unable to find MPU OPP for %d\n",
127 __func__, freqs.new);
128 return -EINVAL;
129 }
130 volt = opp_get_voltage(opp);
Afzal Mohammed42daffd2012-02-23 19:19:24 +0530131 tol = volt * OPP_TOLERANCE / 100;
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700132 volt_old = regulator_get_voltage(mpu_reg);
133 }
134
135 dev_dbg(mpu_dev, "cpufreq-omap: %u MHz, %ld mV --> %u MHz, %ld mV\n",
136 freqs.old / 1000, volt_old ? volt_old / 1000 : -1,
137 freqs.new / 1000, volt ? volt / 1000 : -1);
138
139 /* scaling up? scale voltage before frequency */
140 if (mpu_reg && (freqs.new > freqs.old)) {
Afzal Mohammed42daffd2012-02-23 19:19:24 +0530141 r = regulator_set_voltage(mpu_reg, volt - tol, volt + tol);
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700142 if (r < 0) {
143 dev_warn(mpu_dev, "%s: unable to scale voltage up.\n",
144 __func__);
145 freqs.new = freqs.old;
146 goto done;
147 }
148 }
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700149
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700150 ret = clk_set_rate(mpu_clk, freqs.new * 1000);
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700151
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700152 /* scaling down? scale voltage after frequency */
153 if (mpu_reg && (freqs.new < freqs.old)) {
Afzal Mohammed42daffd2012-02-23 19:19:24 +0530154 r = regulator_set_voltage(mpu_reg, volt - tol, volt + tol);
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700155 if (r < 0) {
156 dev_warn(mpu_dev, "%s: unable to scale voltage down.\n",
157 __func__);
158 ret = clk_set_rate(mpu_clk, freqs.old * 1000);
159 freqs.new = freqs.old;
160 goto done;
161 }
162 }
163
164 freqs.new = omap_getspeed(policy->cpu);
Russell King46c12212011-09-21 16:53:00 -0700165#ifdef CONFIG_SMP
166 /*
167 * Note that loops_per_jiffy is not updated on SMP systems in
168 * cpufreq driver. So, update the per-CPU loops_per_jiffy value
169 * on frequency transition. We need to update all dependent CPUs.
170 */
171 for_each_cpu(i, policy->cpus) {
172 struct lpj_info *lpj = &per_cpu(lpj_ref, i);
173 if (!lpj->freq) {
174 lpj->ref = per_cpu(cpu_data, i).loops_per_jiffy;
175 lpj->freq = freqs.old;
176 }
177
178 per_cpu(cpu_data, i).loops_per_jiffy =
179 cpufreq_scale(lpj->ref, lpj->freq, freqs.new);
180 }
181
182 /* And don't forget to adjust the global one */
183 if (!global_lpj_ref.freq) {
184 global_lpj_ref.ref = loops_per_jiffy;
185 global_lpj_ref.freq = freqs.old;
186 }
187 loops_per_jiffy = cpufreq_scale(global_lpj_ref.ref, global_lpj_ref.freq,
188 freqs.new);
189#endif
190
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700191done:
Russell King46c12212011-09-21 16:53:00 -0700192 /* notifiers */
193 for_each_cpu(i, policy->cpus) {
194 freqs.cpu = i;
195 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
196 }
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100197
198 return ret;
199}
200
Nishanth Menon1c782172011-05-26 19:39:20 -0700201static inline void freq_table_free(void)
202{
203 if (atomic_dec_and_test(&freq_table_users))
204 opp_free_cpufreq_table(mpu_dev, &freq_table);
205}
206
Ming Lei790ab7e2011-03-03 06:41:46 +0800207static int __cpuinit omap_cpu_init(struct cpufreq_policy *policy)
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100208{
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700209 int result = 0;
210
Nishanth Menon08ca3e3b2011-05-25 16:38:46 -0700211 mpu_clk = clk_get(NULL, mpu_clk_name);
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100212 if (IS_ERR(mpu_clk))
213 return PTR_ERR(mpu_clk);
214
Nishanth Menon11e04fd2011-05-26 19:39:19 -0700215 if (policy->cpu >= NR_CPUS) {
216 result = -EINVAL;
217 goto fail_ck;
218 }
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700219
Russell King46c12212011-09-21 16:53:00 -0700220 policy->cur = policy->min = policy->max = omap_getspeed(policy->cpu);
Nishanth Menon1c782172011-05-26 19:39:20 -0700221
222 if (atomic_inc_return(&freq_table_users) == 1)
223 result = opp_init_cpufreq_table(mpu_dev, &freq_table);
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700224
Nishanth Menonbf2a3592011-05-26 19:39:17 -0700225 if (result) {
226 dev_err(mpu_dev, "%s: cpu%d: failed creating freq table[%d]\n",
227 __func__, policy->cpu, result);
Nishanth Menon11e04fd2011-05-26 19:39:19 -0700228 goto fail_ck;
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700229 }
230
Nishanth Menonbf2a3592011-05-26 19:39:17 -0700231 result = cpufreq_frequency_table_cpuinfo(policy, freq_table);
Nishanth Menon1c782172011-05-26 19:39:20 -0700232 if (result)
233 goto fail_table;
234
235 cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
Nishanth Menonbf2a3592011-05-26 19:39:17 -0700236
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700237 policy->min = policy->cpuinfo.min_freq;
238 policy->max = policy->cpuinfo.max_freq;
Russell King46c12212011-09-21 16:53:00 -0700239 policy->cur = omap_getspeed(policy->cpu);
240
241 /*
242 * On OMAP SMP configuartion, both processors share the voltage
243 * and clock. So both CPUs needs to be scaled together and hence
244 * needs software co-ordination. Use cpufreq affected_cpus
245 * interface to handle this scenario. Additional is_smp() check
246 * is to keep SMP_ON_UP build working.
247 */
248 if (is_smp()) {
249 policy->shared_type = CPUFREQ_SHARED_TYPE_ANY;
Todd Poynored8ce002011-06-07 13:57:52 -0700250 cpumask_setall(policy->cpus);
Russell King46c12212011-09-21 16:53:00 -0700251 }
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700252
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700253 /* FIXME: what's the actual transition time? */
Mike Turquetteb0298392009-11-11 11:00:38 -0800254 policy->cpuinfo.transition_latency = 300 * 1000;
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100255
256 return 0;
Nishanth Menon11e04fd2011-05-26 19:39:19 -0700257
Nishanth Menon1c782172011-05-26 19:39:20 -0700258fail_table:
259 freq_table_free();
Nishanth Menon11e04fd2011-05-26 19:39:19 -0700260fail_ck:
261 clk_put(mpu_clk);
262 return result;
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100263}
264
Hiroshi DOYUb8488fb2007-08-30 12:46:39 +0300265static int omap_cpu_exit(struct cpufreq_policy *policy)
266{
Nishanth Menon1c782172011-05-26 19:39:20 -0700267 freq_table_free();
Hiroshi DOYUb8488fb2007-08-30 12:46:39 +0300268 clk_put(mpu_clk);
269 return 0;
270}
271
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700272static struct freq_attr *omap_cpufreq_attr[] = {
273 &cpufreq_freq_attr_scaling_available_freqs,
274 NULL,
275};
276
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100277static struct cpufreq_driver omap_driver = {
278 .flags = CPUFREQ_STICKY,
279 .verify = omap_verify_speed,
280 .target = omap_target,
281 .get = omap_getspeed,
282 .init = omap_cpu_init,
Hiroshi DOYUb8488fb2007-08-30 12:46:39 +0300283 .exit = omap_cpu_exit,
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100284 .name = "omap",
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700285 .attr = omap_cpufreq_attr,
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100286};
287
288static int __init omap_cpufreq_init(void)
289{
Nishanth Menon08ca3e3b2011-05-25 16:38:46 -0700290 if (cpu_is_omap24xx())
291 mpu_clk_name = "virt_prcm_set";
292 else if (cpu_is_omap34xx())
293 mpu_clk_name = "dpll1_ck";
294 else if (cpu_is_omap44xx())
295 mpu_clk_name = "dpll_mpu_ck";
296
297 if (!mpu_clk_name) {
298 pr_err("%s: unsupported Silicon?\n", __func__);
299 return -EINVAL;
300 }
Nishanth Menona820ffa2011-05-25 16:38:47 -0700301
Kevin Hilmanc1b547b2011-09-30 10:41:26 -0700302 mpu_dev = omap_device_get_by_hwmod_name("mpu");
Nishanth Menona820ffa2011-05-25 16:38:47 -0700303 if (!mpu_dev) {
304 pr_warning("%s: unable to get the mpu device\n", __func__);
305 return -EINVAL;
306 }
307
Kevin Hilman53dfe8a2011-07-15 15:05:04 -0700308 mpu_reg = regulator_get(mpu_dev, "vcc");
309 if (IS_ERR(mpu_reg)) {
310 pr_warning("%s: unable to get MPU regulator\n", __func__);
311 mpu_reg = NULL;
312 } else {
313 /*
314 * Ensure physical regulator is present.
315 * (e.g. could be dummy regulator.)
316 */
317 if (regulator_get_voltage(mpu_reg) < 0) {
318 pr_warn("%s: physical regulator not present for MPU\n",
319 __func__);
320 regulator_put(mpu_reg);
321 mpu_reg = NULL;
322 }
323 }
324
Tony Lindgrenec6bced2005-07-10 19:58:20 +0100325 return cpufreq_register_driver(&omap_driver);
326}
327
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700328static void __exit omap_cpufreq_exit(void)
329{
330 cpufreq_unregister_driver(&omap_driver);
331}
Kevin Hilmanaeec2992009-01-27 19:13:38 -0700332
Santosh Shilimkar731e0cc2010-08-11 17:02:43 -0700333MODULE_DESCRIPTION("cpufreq driver for OMAP SoCs");
334MODULE_LICENSE("GPL");
335module_init(omap_cpufreq_init);
336module_exit(omap_cpufreq_exit);