blob: b8704232c27b24f34f80d1344bcf10324969e4d6 [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>
Paul Mundtcb5ec752007-07-20 13:38:19 +090026#include <linux/clk.h>
Paul Mundt3bccf462012-01-27 17:49:16 +090027#include <linux/percpu.h>
28#include <linux/sh_clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Paul Mundt3bccf462012-01-27 17:49:16 +090030static DEFINE_PER_CPU(struct clk, sh_cpuclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Thomas Gleixner205dcc12017-04-12 22:07:36 +020032struct cpufreq_target {
33 struct cpufreq_policy *policy;
34 unsigned int freq;
35};
36
Paul Mundtcb5ec752007-07-20 13:38:19 +090037static unsigned int sh_cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Paul Mundt3bccf462012-01-27 17:49:16 +090039 return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Thomas Gleixner205dcc12017-04-12 22:07:36 +020042static long __sh_cpufreq_target(void *arg)
43{
44 struct cpufreq_target *target = arg;
45 struct cpufreq_policy *policy = target->policy;
46 int cpu = policy->cpu;
47 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
48 struct cpufreq_freqs freqs;
49 struct device *dev;
50 long freq;
51
52 if (smp_processor_id() != cpu)
53 return -ENODEV;
54
55 dev = get_cpu_device(cpu);
56
57 /* Convert target_freq from kHz to Hz */
58 freq = clk_round_rate(cpuclk, target->freq * 1000);
59
60 if (freq < (policy->min * 1000) || freq > (policy->max * 1000))
61 return -EINVAL;
62
63 dev_dbg(dev, "requested frequency %u Hz\n", target->freq * 1000);
64
65 freqs.old = sh_cpufreq_get(cpu);
66 freqs.new = (freq + 500) / 1000;
67 freqs.flags = 0;
68
69 cpufreq_freq_transition_begin(target->policy, &freqs);
70 clk_set_rate(cpuclk, freq);
71 cpufreq_freq_transition_end(target->policy, &freqs, 0);
72
73 dev_dbg(dev, "set frequency %lu Hz\n", freq);
74 return 0;
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * Here we notify other drivers of the proposed change and the final change.
79 */
Paul Mundtcb5ec752007-07-20 13:38:19 +090080static int sh_cpufreq_target(struct cpufreq_policy *policy,
81 unsigned int target_freq,
82 unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Thomas Gleixner205dcc12017-04-12 22:07:36 +020084 struct cpufreq_target data = { .policy = policy, .freq = target_freq };
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Thomas Gleixner205dcc12017-04-12 22:07:36 +020086 return work_on_cpu(policy->cpu, __sh_cpufreq_target, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +010089static int sh_cpufreq_verify(struct cpufreq_policy_data *policy)
Paul Mundt1bcfc722012-01-27 20:18:24 +090090{
91 struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu);
92 struct cpufreq_frequency_table *freq_table;
93
94 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
95 if (freq_table)
96 return cpufreq_frequency_table_verify(policy, freq_table);
97
Viresh Kumarbe49e342013-10-02 14:13:19 +053098 cpufreq_verify_within_cpu_limits(policy);
Paul Mundt1bcfc722012-01-27 20:18:24 +090099
100 policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000;
101 policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
102
Viresh Kumarbe49e342013-10-02 14:13:19 +0530103 cpufreq_verify_within_cpu_limits(policy);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900104 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
Paul Mundtecbef172012-01-27 19:44:49 +0900114 dev = get_cpu_device(cpu);
115
116 cpuclk = clk_get(dev, "cpu_clk");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900117 if (IS_ERR(cpuclk)) {
Paul Mundtecbef172012-01-27 19:44:49 +0900118 dev_err(dev, "couldn't get CPU clk\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900119 return PTR_ERR(cpuclk);
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Paul Mundt1bcfc722012-01-27 20:18:24 +0900122 freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
123 if (freq_table) {
Viresh Kumarec8d2cc2018-02-26 10:39:06 +0530124 policy->freq_table = freq_table;
Paul Mundt1bcfc722012-01-27 20:18:24 +0900125 } else {
Paul Mundt1a565cf2012-01-27 20:43:14 +0900126 dev_notice(dev, "no frequency table found, falling back "
127 "to rate rounding.\n");
128
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000129 policy->min = policy->cpuinfo.min_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900130 (clk_round_rate(cpuclk, 1) + 500) / 1000;
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000131 policy->max = policy->cpuinfo.max_freq =
Paul Mundt1a565cf2012-01-27 20:43:14 +0900132 (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
Paul Mundtcb5ec752007-07-20 13:38:19 +0900133 }
134
Paul Mundtcb5ec752007-07-20 13:38:19 +0900135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Paul Mundt1bcfc722012-01-27 20:18:24 +0900138static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Paul Mundt1bcfc722012-01-27 20:18:24 +0900140 unsigned int cpu = policy->cpu;
141 struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Paul Mundtcb5ec752007-07-20 13:38:19 +0900143 clk_put(cpuclk);
Paul Mundt1bcfc722012-01-27 20:18:24 +0900144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 0;
146}
147
148static struct cpufreq_driver sh_cpufreq_driver = {
Paul Mundtcb5ec752007-07-20 13:38:19 +0900149 .name = "sh",
Viresh Kumarfe829ed2017-07-19 15:42:48 +0530150 .flags = CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900151 .get = sh_cpufreq_get,
Paul Mundt1bcfc722012-01-27 20:18:24 +0900152 .target = sh_cpufreq_target,
153 .verify = sh_cpufreq_verify,
154 .init = sh_cpufreq_cpu_init,
155 .exit = sh_cpufreq_cpu_exit,
Viresh Kumara8f64de2013-10-03 20:28:25 +0530156 .attr = cpufreq_generic_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
Paul Mundtcb5ec752007-07-20 13:38:19 +0900159static int __init sh_cpufreq_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Paul Mundtecbef172012-01-27 19:44:49 +0900161 pr_notice("SuperH CPU frequency driver.\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900162 return cpufreq_register_driver(&sh_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Paul Mundtcb5ec752007-07-20 13:38:19 +0900165static void __exit sh_cpufreq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 cpufreq_unregister_driver(&sh_cpufreq_driver);
168}
169
Paul Mundtcb5ec752007-07-20 13:38:19 +0900170module_init(sh_cpufreq_module_init);
171module_exit(sh_cpufreq_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
174MODULE_DESCRIPTION("cpufreq driver for SuperH");
175MODULE_LICENSE("GPL");