blob: 86628e22b2a36827d37f35d552f0624bc9dc387c [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 Kumar8fec0512014-03-24 13:35:45 +053071 cpufreq_freq_transition_begin(policy, &freqs);
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 Kumar8fec0512014-03-24 13:35:45 +053074 cpufreq_freq_transition_end(policy, &freqs, 0);
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
Viresh Kumarbe49e342013-10-02 14:13:19 +053090 cpufreq_verify_within_cpu_limits(policy);
Paul Mundt1bcfc722012-01-27 20:18:24 +090091
92 policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000;
93 policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
94
Viresh Kumarbe49e342013-10-02 14:13:19 +053095 cpufreq_verify_within_cpu_limits(policy);
Paul Mundt1bcfc722012-01-27 20:18:24 +090096 return 0;
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
100{
Paul Mundt3bccf462012-01-27 17:49:16 +0900101 unsigned int cpu = policy->cpu;
102 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900103 struct cpufreq_frequency_table *freq_table;
Paul Mundtecbef172012-01-27 19:44:49 +0900104 struct device *dev;
Paul Mundt3bccf462012-01-27 17:49:16 +0900105
Paul Mundtecbef172012-01-27 19:44:49 +0900106 dev = get_cpu_device(cpu);
107
108 cpuclk = clk_get(dev, "cpu_clk");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900109 if (IS_ERR(cpuclk)) {
Paul Mundtecbef172012-01-27 19:44:49 +0900110 dev_err(dev, "couldn't get CPU clk\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900111 return PTR_ERR(cpuclk);
112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Paul Mundt1bcfc722012-01-27 20:18:24 +0900114 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
115 if (freq_table) {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900116 int result;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900117
Viresh Kumarc25d01b2013-09-16 18:56:35 +0530118 result = cpufreq_table_validate_and_show(policy, freq_table);
119 if (result)
120 return result;
Paul Mundt1bcfc722012-01-27 20:18:24 +0900121 } else {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900122 dev_notice(dev, "no frequency table found, falling back "
123 "to rate rounding.\n");
124
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000125 policy->min = policy->cpuinfo.min_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900126 (clk_round_rate(cpuclk, 1) + 500) / 1000;
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000127 policy->max = policy->cpuinfo.max_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900128 (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900129 }
130
Paul Mundt1bcfc722012-01-27 20:18:24 +0900131 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
132
Paul Mundtecbef172012-01-27 19:44:49 +0900133 dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, "
Paul Mundtcb5ec752007-07-20 13:38:19 +0900134 "Maximum %u.%03u MHz.\n",
Paul Mundtecbef172012-01-27 19:44:49 +0900135 policy->min / 1000, policy->min % 1000,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900136 policy->max / 1000, policy->max % 1000);
137
138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Paul Mundt1bcfc722012-01-27 20:18:24 +0900141static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Paul Mundt1bcfc722012-01-27 20:18:24 +0900143 unsigned int cpu = policy->cpu;
144 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Paul Mundtcb5ec752007-07-20 13:38:19 +0900146 clk_put(cpuclk);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149}
150
151static struct cpufreq_driver sh_cpufreq_driver = {
Paul Mundtcb5ec752007-07-20 13:38:19 +0900152 .name = "sh",
Paul Mundtcb5ec752007-07-20 13:38:19 +0900153 .get = sh_cpufreq_get,
Paul Mundt1bcfc722012-01-27 20:18:24 +0900154 .target = sh_cpufreq_target,
155 .verify = sh_cpufreq_verify,
156 .init = sh_cpufreq_cpu_init,
157 .exit = sh_cpufreq_cpu_exit,
Viresh Kumara8f64de2013-10-03 20:28:25 +0530158 .attr = cpufreq_generic_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Paul Mundtcb5ec752007-07-20 13:38:19 +0900161static int __init sh_cpufreq_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Paul Mundtecbef172012-01-27 19:44:49 +0900163 pr_notice("SuperH CPU frequency driver.\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900164 return cpufreq_register_driver(&sh_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Paul Mundtcb5ec752007-07-20 13:38:19 +0900167static void __exit sh_cpufreq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 cpufreq_unregister_driver(&sh_cpufreq_driver);
170}
171
Paul Mundtcb5ec752007-07-20 13:38:19 +0900172module_init(sh_cpufreq_module_init);
173module_exit(sh_cpufreq_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
176MODULE_DESCRIPTION("cpufreq driver for SuperH");
177MODULE_LICENSE("GPL");