blob: 2c7bd94f95ee0b2ea4a33b4ffb1e96bea2d8888c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/kernel/cpufreq.c
3 *
4 * cpufreq driver for the SuperH processors.
5 *
Paul Mundt3bccf462012-01-27 17:49:16 +09006 * Copyright (C) 2002 - 2012 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2002 M. R. Brown
8 *
Paul Mundtcb5ec752007-07-20 13:38:19 +09009 * Clock framework bits from arch/avr32/mach-at32ap/cpufreq.c
10 *
11 * Copyright (C) 2004-2007 Atmel Corporation
12 *
13 * This file is subject to the terms and conditions of the GNU General Public
14 * License. See the file "COPYING" in the main directory of this archive
15 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
Paul Mundtecbef172012-01-27 19:44:49 +090017#define pr_fmt(fmt) "cpufreq: " fmt
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/types.h>
20#include <linux/cpufreq.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
Paul Mundtcb5ec752007-07-20 13:38:19 +090024#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/cpumask.h>
Paul Mundtecbef172012-01-27 19:44:49 +090026#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/smp.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080028#include <linux/sched.h> /* set_cpus_allowed() */
Paul Mundtcb5ec752007-07-20 13:38:19 +090029#include <linux/clk.h>
Paul Mundt3bccf462012-01-27 17:49:16 +090030#include <linux/percpu.h>
31#include <linux/sh_clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paul Mundt3bccf462012-01-27 17:49:16 +090033static DEFINE_PER_CPU(struct clk, sh_cpuclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Paul Mundtcb5ec752007-07-20 13:38:19 +090035static unsigned int sh_cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Paul Mundt3bccf462012-01-27 17:49:16 +090037 return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Here we notify other drivers of the proposed change and the final change.
42 */
Paul Mundtcb5ec752007-07-20 13:38:19 +090043static int sh_cpufreq_target(struct cpufreq_policy *policy,
44 unsigned int target_freq,
45 unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Paul Mundtcb5ec752007-07-20 13:38:19 +090047 unsigned int cpu = policy->cpu;
Paul Mundt3bccf462012-01-27 17:49:16 +090048 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 cpumask_t cpus_allowed;
50 struct cpufreq_freqs freqs;
Paul Mundtecbef172012-01-27 19:44:49 +090051 struct device *dev;
Paul Mundtcb5ec752007-07-20 13:38:19 +090052 long freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 if (!cpu_online(cpu))
55 return -ENODEV;
56
57 cpus_allowed = current->cpus_allowed;
Julia Lawall59a2f7d2010-03-26 22:03:49 +000058 set_cpus_allowed_ptr(current, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 BUG_ON(smp_processor_id() != cpu);
61
Paul Mundtecbef172012-01-27 19:44:49 +090062 dev = get_cpu_device(cpu);
63
Paul Mundtcb5ec752007-07-20 13:38:19 +090064 /* Convert target_freq from kHz to Hz */
65 freq = clk_round_rate(cpuclk, target_freq * 1000);
66
67 if (freq < (policy->min * 1000) || freq > (policy->max * 1000))
68 return -EINVAL;
69
Paul Mundtecbef172012-01-27 19:44:49 +090070 dev_dbg(dev, "requested frequency %u Hz\n", target_freq * 1000);
Paul Mundtcb5ec752007-07-20 13:38:19 +090071
Paul Mundtcb5ec752007-07-20 13:38:19 +090072 freqs.old = sh_cpufreq_get(cpu);
73 freqs.new = (freq + 500) / 1000;
74 freqs.flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053076 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
Julia Lawall59a2f7d2010-03-26 22:03:49 +000077 set_cpus_allowed_ptr(current, &cpus_allowed);
Paul Mundtcb5ec752007-07-20 13:38:19 +090078 clk_set_rate(cpuclk, freq);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053079 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Paul Mundtecbef172012-01-27 19:44:49 +090081 dev_dbg(dev, "set frequency %lu Hz\n", freq);
Paul Mundtcb5ec752007-07-20 13:38:19 +090082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return 0;
84}
85
Paul Mundt1bcfc722012-01-27 20:18:24 +090086static int sh_cpufreq_verify(struct cpufreq_policy *policy)
87{
88 struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu);
89 struct cpufreq_frequency_table *freq_table;
90
91 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
92 if (freq_table)
93 return cpufreq_frequency_table_verify(policy, freq_table);
94
95 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
96 policy->cpuinfo.max_freq);
97
98 policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000;
99 policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
100
101 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
102 policy->cpuinfo.max_freq);
103
104 return 0;
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
108{
Paul Mundt3bccf462012-01-27 17:49:16 +0900109 unsigned int cpu = policy->cpu;
110 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900111 struct cpufreq_frequency_table *freq_table;
Paul Mundtecbef172012-01-27 19:44:49 +0900112 struct device *dev;
Paul Mundt3bccf462012-01-27 17:49:16 +0900113
114 if (!cpu_online(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return -ENODEV;
116
Paul Mundtecbef172012-01-27 19:44:49 +0900117 dev = get_cpu_device(cpu);
118
119 cpuclk = clk_get(dev, "cpu_clk");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900120 if (IS_ERR(cpuclk)) {
Paul Mundtecbef172012-01-27 19:44:49 +0900121 dev_err(dev, "couldn't get CPU clk\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900122 return PTR_ERR(cpuclk);
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Paul Mundt1bcfc722012-01-27 20:18:24 +0900125 policy->cur = policy->min = policy->max = sh_cpufreq_get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Paul Mundt1bcfc722012-01-27 20:18:24 +0900127 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
128 if (freq_table) {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900129 int result;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900130
Paul Mundt1a565cf2012-01-27 20:43:14 +0900131 result = cpufreq_frequency_table_cpuinfo(policy, freq_table);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900132 if (!result)
133 cpufreq_frequency_table_get_attr(freq_table, cpu);
134 } else {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900135 dev_notice(dev, "no frequency table found, falling back "
136 "to rate rounding.\n");
137
138 policy->cpuinfo.min_freq =
139 (clk_round_rate(cpuclk, 1) + 500) / 1000;
140 policy->cpuinfo.max_freq =
141 (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900142 }
143
Paul Mundt1bcfc722012-01-27 20:18:24 +0900144 policy->min = policy->cpuinfo.min_freq;
145 policy->max = policy->cpuinfo.max_freq;
146
147 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
148
Paul Mundtecbef172012-01-27 19:44:49 +0900149 dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, "
Paul Mundtcb5ec752007-07-20 13:38:19 +0900150 "Maximum %u.%03u MHz.\n",
Paul Mundtecbef172012-01-27 19:44:49 +0900151 policy->min / 1000, policy->min % 1000,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900152 policy->max / 1000, policy->max % 1000);
153
154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Paul Mundt1bcfc722012-01-27 20:18:24 +0900157static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Paul Mundt1bcfc722012-01-27 20:18:24 +0900159 unsigned int cpu = policy->cpu;
160 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Paul Mundt1bcfc722012-01-27 20:18:24 +0900162 cpufreq_frequency_table_put_attr(cpu);
Paul Mundtcb5ec752007-07-20 13:38:19 +0900163 clk_put(cpuclk);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166}
167
Paul Mundt3cbb08a2012-01-27 20:45:24 +0900168static struct freq_attr *sh_freq_attr[] = {
169 &cpufreq_freq_attr_scaling_available_freqs,
170 NULL,
171};
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static struct cpufreq_driver sh_cpufreq_driver = {
174 .owner = THIS_MODULE,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900175 .name = "sh",
Paul Mundtcb5ec752007-07-20 13:38:19 +0900176 .get = sh_cpufreq_get,
Paul Mundt1bcfc722012-01-27 20:18:24 +0900177 .target = sh_cpufreq_target,
178 .verify = sh_cpufreq_verify,
179 .init = sh_cpufreq_cpu_init,
180 .exit = sh_cpufreq_cpu_exit,
Paul Mundt3cbb08a2012-01-27 20:45:24 +0900181 .attr = sh_freq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
Paul Mundtcb5ec752007-07-20 13:38:19 +0900184static int __init sh_cpufreq_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Paul Mundtecbef172012-01-27 19:44:49 +0900186 pr_notice("SuperH CPU frequency driver.\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900187 return cpufreq_register_driver(&sh_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Paul Mundtcb5ec752007-07-20 13:38:19 +0900190static void __exit sh_cpufreq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 cpufreq_unregister_driver(&sh_cpufreq_driver);
193}
194
Paul Mundtcb5ec752007-07-20 13:38:19 +0900195module_init(sh_cpufreq_module_init);
196module_exit(sh_cpufreq_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
199MODULE_DESCRIPTION("cpufreq driver for SuperH");
200MODULE_LICENSE("GPL");