blob: e0590ffebd73f546af41b9a47453ab7eb09543ae [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 Mundtcb5ec752007-07-20 13:38:19 +09006 * Copyright (C) 2002 - 2007 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 */
17#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>
24#include <linux/smp.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080025#include <linux/sched.h> /* set_cpus_allowed() */
Paul Mundtcb5ec752007-07-20 13:38:19 +090026#include <linux/clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Paul Mundtcb5ec752007-07-20 13:38:19 +090028static struct clk *cpuclk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Paul Mundtcb5ec752007-07-20 13:38:19 +090030static unsigned int sh_cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Paul Mundtcb5ec752007-07-20 13:38:19 +090032 return (clk_get_rate(cpuclk) + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
36 * Here we notify other drivers of the proposed change and the final change.
37 */
Paul Mundtcb5ec752007-07-20 13:38:19 +090038static int sh_cpufreq_target(struct cpufreq_policy *policy,
39 unsigned int target_freq,
40 unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Paul Mundtcb5ec752007-07-20 13:38:19 +090042 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 cpumask_t cpus_allowed;
44 struct cpufreq_freqs freqs;
Paul Mundtcb5ec752007-07-20 13:38:19 +090045 long freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 if (!cpu_online(cpu))
48 return -ENODEV;
49
50 cpus_allowed = current->cpus_allowed;
51 set_cpus_allowed(current, cpumask_of_cpu(cpu));
52
53 BUG_ON(smp_processor_id() != cpu);
54
Paul Mundtcb5ec752007-07-20 13:38:19 +090055 /* Convert target_freq from kHz to Hz */
56 freq = clk_round_rate(cpuclk, target_freq * 1000);
57
58 if (freq < (policy->min * 1000) || freq > (policy->max * 1000))
59 return -EINVAL;
60
61 pr_debug("cpufreq: requested frequency %u Hz\n", target_freq * 1000);
62
63 freqs.cpu = cpu;
64 freqs.old = sh_cpufreq_get(cpu);
65 freqs.new = (freq + 500) / 1000;
66 freqs.flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 set_cpus_allowed(current, cpus_allowed);
Paul Mundtcb5ec752007-07-20 13:38:19 +090070 clk_set_rate(cpuclk, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
72
Paul Mundtcb5ec752007-07-20 13:38:19 +090073 pr_debug("cpufreq: set frequency %lu Hz\n", freq);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return 0;
76}
77
78static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
79{
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!cpu_online(policy->cpu))
81 return -ENODEV;
82
Paul Mundtcb5ec752007-07-20 13:38:19 +090083 cpuclk = clk_get(NULL, "cpu_clk");
84 if (IS_ERR(cpuclk)) {
85 printk(KERN_ERR "cpufreq: couldn't get CPU clk\n");
86 return PTR_ERR(cpuclk);
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* cpuinfo and default policy values */
Paul Mundtcb5ec752007-07-20 13:38:19 +090090 policy->cpuinfo.min_freq = (clk_round_rate(cpuclk, 1) + 500) / 1000;
91 policy->cpuinfo.max_freq = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Paul Mundtcb5ec752007-07-20 13:38:19 +090094 policy->cur = sh_cpufreq_get(policy->cpu);
95 policy->min = policy->cpuinfo.min_freq;
96 policy->max = policy->cpuinfo.max_freq;
97
98
99 /*
100 * Catch the cases where the clock framework hasn't been wired up
101 * properly to support scaling.
102 */
103 if (unlikely(policy->min == policy->max)) {
104 printk(KERN_ERR "cpufreq: clock framework rate rounding "
105 "not supported on this CPU.\n");
106
107 clk_put(cpuclk);
108 return -EINVAL;
109 }
110
111 printk(KERN_INFO "cpufreq: Frequencies - Minimum %u.%03u MHz, "
112 "Maximum %u.%03u MHz.\n",
113 policy->min / 1000, policy->min % 1000,
114 policy->max / 1000, policy->max % 1000);
115
116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static int sh_cpufreq_verify(struct cpufreq_policy *policy)
120{
Paul Mundtcb5ec752007-07-20 13:38:19 +0900121 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
122 policy->cpuinfo.max_freq);
123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Paul Mundtcb5ec752007-07-20 13:38:19 +0900126static int sh_cpufreq_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Paul Mundtcb5ec752007-07-20 13:38:19 +0900128 clk_put(cpuclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
130}
131
132static struct cpufreq_driver sh_cpufreq_driver = {
133 .owner = THIS_MODULE,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900134 .name = "sh",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .init = sh_cpufreq_cpu_init,
136 .verify = sh_cpufreq_verify,
137 .target = sh_cpufreq_target,
Paul Mundtcb5ec752007-07-20 13:38:19 +0900138 .get = sh_cpufreq_get,
139 .exit = sh_cpufreq_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Paul Mundtcb5ec752007-07-20 13:38:19 +0900142static int __init sh_cpufreq_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Paul Mundt00765c82007-09-21 17:53:26 +0900144 printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n");
Paul Mundtcb5ec752007-07-20 13:38:19 +0900145 return cpufreq_register_driver(&sh_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Paul Mundtcb5ec752007-07-20 13:38:19 +0900148static void __exit sh_cpufreq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 cpufreq_unregister_driver(&sh_cpufreq_driver);
151}
152
Paul Mundtcb5ec752007-07-20 13:38:19 +0900153module_init(sh_cpufreq_module_init);
154module_exit(sh_cpufreq_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
157MODULE_DESCRIPTION("cpufreq driver for SuperH");
158MODULE_LICENSE("GPL");