blob: ffc6d24b0cfbed764db6b6c8e2015330e6fb9fbd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * cpufreq driver for the SuperH processors.
3 *
Paul Mundt3bccf462012-01-27 17:49:16 +09004 * Copyright (C) 2002 - 2012 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2002 M. R. Brown
6 *
Paul Mundtcb5ec752007-07-20 13:38:19 +09007 * Clock framework bits from arch/avr32/mach-at32ap/cpufreq.c
8 *
9 * Copyright (C) 2004-2007 Atmel Corporation
10 *
11 * This file is subject to the terms and conditions of the GNU General Public
12 * License. See the file "COPYING" in the main directory of this archive
13 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
Paul Mundtecbef172012-01-27 19:44:49 +090015#define pr_fmt(fmt) "cpufreq: " fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <linux/cpufreq.h>
19#include <linux/kernel.h>
20#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
Paul Mundtcb5ec752007-07-20 13:38:19 +090022#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/cpumask.h>
Paul Mundtecbef172012-01-27 19:44:49 +090024#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/smp.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080026#include <linux/sched.h> /* set_cpus_allowed() */
Paul Mundtcb5ec752007-07-20 13:38:19 +090027#include <linux/clk.h>
Paul Mundt3bccf462012-01-27 17:49:16 +090028#include <linux/percpu.h>
29#include <linux/sh_clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Paul Mundt3bccf462012-01-27 17:49:16 +090031static DEFINE_PER_CPU(struct clk, sh_cpuclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paul Mundtcb5ec752007-07-20 13:38:19 +090033static unsigned int sh_cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Paul Mundt3bccf462012-01-27 17:49:16 +090035 return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * Here we notify other drivers of the proposed change and the final change.
40 */
Paul Mundtcb5ec752007-07-20 13:38:19 +090041static int sh_cpufreq_target(struct cpufreq_policy *policy,
42 unsigned int target_freq,
43 unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Paul Mundtcb5ec752007-07-20 13:38:19 +090045 unsigned int cpu = policy->cpu;
Paul Mundt3bccf462012-01-27 17:49:16 +090046 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 cpumask_t cpus_allowed;
48 struct cpufreq_freqs freqs;
Paul Mundtecbef172012-01-27 19:44:49 +090049 struct device *dev;
Paul Mundtcb5ec752007-07-20 13:38:19 +090050 long freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 cpus_allowed = current->cpus_allowed;
Julia Lawall59a2f7d2010-03-26 22:03:49 +000053 set_cpus_allowed_ptr(current, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 BUG_ON(smp_processor_id() != cpu);
56
Paul Mundtecbef172012-01-27 19:44:49 +090057 dev = get_cpu_device(cpu);
58
Paul Mundtcb5ec752007-07-20 13:38:19 +090059 /* Convert target_freq from kHz to Hz */
60 freq = clk_round_rate(cpuclk, target_freq * 1000);
61
62 if (freq < (policy->min * 1000) || freq > (policy->max * 1000))
63 return -EINVAL;
64
Paul Mundtecbef172012-01-27 19:44:49 +090065 dev_dbg(dev, "requested frequency %u Hz\n", target_freq * 1000);
Paul Mundtcb5ec752007-07-20 13:38:19 +090066
Paul Mundtcb5ec752007-07-20 13:38:19 +090067 freqs.old = sh_cpufreq_get(cpu);
68 freqs.new = (freq + 500) / 1000;
69 freqs.flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053071 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
Julia Lawall59a2f7d2010-03-26 22:03:49 +000072 set_cpus_allowed_ptr(current, &cpus_allowed);
Paul Mundtcb5ec752007-07-20 13:38:19 +090073 clk_set_rate(cpuclk, freq);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053074 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Paul Mundtecbef172012-01-27 19:44:49 +090076 dev_dbg(dev, "set frequency %lu Hz\n", freq);
Paul Mundtcb5ec752007-07-20 13:38:19 +090077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
79}
80
Paul Mundt1bcfc722012-01-27 20:18:24 +090081static int sh_cpufreq_verify(struct cpufreq_policy *policy)
82{
83 struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu);
84 struct cpufreq_frequency_table *freq_table;
85
86 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
87 if (freq_table)
88 return cpufreq_frequency_table_verify(policy, freq_table);
89
90 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
91 policy->cpuinfo.max_freq);
92
93 policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000;
94 policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
95
96 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
97 policy->cpuinfo.max_freq);
98
99 return 0;
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
103{
Paul Mundt3bccf462012-01-27 17:49:16 +0900104 unsigned int cpu = policy->cpu;
105 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900106 struct cpufreq_frequency_table *freq_table;
Paul Mundtecbef172012-01-27 19:44:49 +0900107 struct device *dev;
Paul Mundt3bccf462012-01-27 17:49:16 +0900108
Paul Mundtecbef172012-01-27 19:44:49 +0900109 dev = get_cpu_device(cpu);
110
111 cpuclk = clk_get(dev, "cpu_clk");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900112 if (IS_ERR(cpuclk)) {
Paul Mundtecbef172012-01-27 19:44:49 +0900113 dev_err(dev, "couldn't get CPU clk\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900114 return PTR_ERR(cpuclk);
115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000117 policy->cur = sh_cpufreq_get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Paul Mundt1bcfc722012-01-27 20:18:24 +0900119 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
120 if (freq_table) {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900121 int result;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900122
Paul Mundt1a565cf2012-01-27 20:43:14 +0900123 result = cpufreq_frequency_table_cpuinfo(policy, freq_table);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900124 if (!result)
125 cpufreq_frequency_table_get_attr(freq_table, cpu);
126 } else {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900127 dev_notice(dev, "no frequency table found, falling back "
128 "to rate rounding.\n");
129
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000130 policy->min = policy->cpuinfo.min_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900131 (clk_round_rate(cpuclk, 1) + 500) / 1000;
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000132 policy->max = policy->cpuinfo.max_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900133 (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900134 }
135
Paul Mundt1bcfc722012-01-27 20:18:24 +0900136 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
137
Paul Mundtecbef172012-01-27 19:44:49 +0900138 dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, "
Paul Mundtcb5ec752007-07-20 13:38:19 +0900139 "Maximum %u.%03u MHz.\n",
Paul Mundtecbef172012-01-27 19:44:49 +0900140 policy->min / 1000, policy->min % 1000,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900141 policy->max / 1000, policy->max % 1000);
142
143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Paul Mundt1bcfc722012-01-27 20:18:24 +0900146static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Paul Mundt1bcfc722012-01-27 20:18:24 +0900148 unsigned int cpu = policy->cpu;
149 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Paul Mundt1bcfc722012-01-27 20:18:24 +0900151 cpufreq_frequency_table_put_attr(cpu);
Paul Mundtcb5ec752007-07-20 13:38:19 +0900152 clk_put(cpuclk);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
155}
156
Paul Mundt3cbb08a2012-01-27 20:45:24 +0900157static struct freq_attr *sh_freq_attr[] = {
158 &cpufreq_freq_attr_scaling_available_freqs,
159 NULL,
160};
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static struct cpufreq_driver sh_cpufreq_driver = {
Paul Mundtcb5ec752007-07-20 13:38:19 +0900163 .name = "sh",
Paul Mundtcb5ec752007-07-20 13:38:19 +0900164 .get = sh_cpufreq_get,
Paul Mundt1bcfc722012-01-27 20:18:24 +0900165 .target = sh_cpufreq_target,
166 .verify = sh_cpufreq_verify,
167 .init = sh_cpufreq_cpu_init,
168 .exit = sh_cpufreq_cpu_exit,
Paul Mundt3cbb08a2012-01-27 20:45:24 +0900169 .attr = sh_freq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
Paul Mundtcb5ec752007-07-20 13:38:19 +0900172static int __init sh_cpufreq_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Paul Mundtecbef172012-01-27 19:44:49 +0900174 pr_notice("SuperH CPU frequency driver.\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900175 return cpufreq_register_driver(&sh_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Paul Mundtcb5ec752007-07-20 13:38:19 +0900178static void __exit sh_cpufreq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 cpufreq_unregister_driver(&sh_cpufreq_driver);
181}
182
Paul Mundtcb5ec752007-07-20 13:38:19 +0900183module_init(sh_cpufreq_module_init);
184module_exit(sh_cpufreq_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
187MODULE_DESCRIPTION("cpufreq driver for SuperH");
188MODULE_LICENSE("GPL");