sh: Enable maple by default for the Dreamcast.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / sh / kernel / cpufreq.c
CommitLineData
1da177e4
LT
1/*
2 * arch/sh/kernel/cpufreq.c
3 *
4 * cpufreq driver for the SuperH processors.
5 *
cb5ec75b 6 * Copyright (C) 2002 - 2007 Paul Mundt
1da177e4
LT
7 * Copyright (C) 2002 M. R. Brown
8 *
cb5ec75b
PM
9 * 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.
1da177e4
LT
16 */
17#include <linux/types.h>
18#include <linux/cpufreq.h>
19#include <linux/kernel.h>
20#include <linux/module.h>
1da177e4 21#include <linux/init.h>
cb5ec75b 22#include <linux/err.h>
1da177e4
LT
23#include <linux/cpumask.h>
24#include <linux/smp.h>
4e57b681 25#include <linux/sched.h> /* set_cpus_allowed() */
cb5ec75b 26#include <linux/clk.h>
1da177e4 27
cb5ec75b 28static struct clk *cpuclk;
1da177e4 29
cb5ec75b 30static unsigned int sh_cpufreq_get(unsigned int cpu)
1da177e4 31{
cb5ec75b 32 return (clk_get_rate(cpuclk) + 500) / 1000;
1da177e4
LT
33}
34
1da177e4
LT
35/*
36 * Here we notify other drivers of the proposed change and the final change.
37 */
cb5ec75b
PM
38static int sh_cpufreq_target(struct cpufreq_policy *policy,
39 unsigned int target_freq,
40 unsigned int relation)
1da177e4 41{
cb5ec75b 42 unsigned int cpu = policy->cpu;
1da177e4
LT
43 cpumask_t cpus_allowed;
44 struct cpufreq_freqs freqs;
cb5ec75b 45 long freq;
1da177e4
LT
46
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
cb5ec75b
PM
55 /* Convert target_freq from kHz to Hz */
56 freq = clk_round_rate(cpuclk, target_freq * 1000);
1da177e4 57
cb5ec75b
PM
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);
1da177e4 62
cb5ec75b
PM
63 freqs.cpu = cpu;
64 freqs.old = sh_cpufreq_get(cpu);
65 freqs.new = (freq + 500) / 1000;
66 freqs.flags = 0;
67
68 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1da177e4 69 set_cpus_allowed(current, cpus_allowed);
cb5ec75b 70 clk_set_rate(cpuclk, freq);
1da177e4
LT
71 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
72
cb5ec75b
PM
73 pr_debug("cpufreq: set frequency %lu Hz\n", freq);
74
1da177e4
LT
75 return 0;
76}
77
78static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
79{
cb5ec75b 80 printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n");
1da177e4
LT
81
82 if (!cpu_online(policy->cpu))
83 return -ENODEV;
84
cb5ec75b
PM
85 cpuclk = clk_get(NULL, "cpu_clk");
86 if (IS_ERR(cpuclk)) {
87 printk(KERN_ERR "cpufreq: couldn't get CPU clk\n");
88 return PTR_ERR(cpuclk);
89 }
1da177e4
LT
90
91 /* cpuinfo and default policy values */
cb5ec75b
PM
92 policy->cpuinfo.min_freq = (clk_round_rate(cpuclk, 1) + 500) / 1000;
93 policy->cpuinfo.max_freq = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
1da177e4 94 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
1da177e4 95
cb5ec75b
PM
96 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
97 policy->cur = sh_cpufreq_get(policy->cpu);
98 policy->min = policy->cpuinfo.min_freq;
99 policy->max = policy->cpuinfo.max_freq;
1da177e4 100
1da177e4 101
cb5ec75b
PM
102 /*
103 * Catch the cases where the clock framework hasn't been wired up
104 * properly to support scaling.
105 */
106 if (unlikely(policy->min == policy->max)) {
107 printk(KERN_ERR "cpufreq: clock framework rate rounding "
108 "not supported on this CPU.\n");
1da177e4 109
cb5ec75b 110 clk_put(cpuclk);
1da177e4 111 return -EINVAL;
cb5ec75b 112 }
1da177e4 113
cb5ec75b
PM
114 printk(KERN_INFO "cpufreq: Frequencies - Minimum %u.%03u MHz, "
115 "Maximum %u.%03u MHz.\n",
116 policy->min / 1000, policy->min % 1000,
117 policy->max / 1000, policy->max % 1000);
1da177e4 118
cb5ec75b
PM
119 return 0;
120}
1da177e4 121
cb5ec75b
PM
122static int sh_cpufreq_verify(struct cpufreq_policy *policy)
123{
124 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
125 policy->cpuinfo.max_freq);
126 return 0;
127}
128
129static int sh_cpufreq_exit(struct cpufreq_policy *policy)
130{
131 clk_put(cpuclk);
1da177e4
LT
132 return 0;
133}
134
135static struct cpufreq_driver sh_cpufreq_driver = {
136 .owner = THIS_MODULE,
cb5ec75b 137 .name = "sh",
1da177e4
LT
138 .init = sh_cpufreq_cpu_init,
139 .verify = sh_cpufreq_verify,
140 .target = sh_cpufreq_target,
cb5ec75b
PM
141 .get = sh_cpufreq_get,
142 .exit = sh_cpufreq_exit,
1da177e4
LT
143};
144
cb5ec75b 145static int __init sh_cpufreq_module_init(void)
1da177e4 146{
cb5ec75b 147 return cpufreq_register_driver(&sh_cpufreq_driver);
1da177e4
LT
148}
149
cb5ec75b 150static void __exit sh_cpufreq_module_exit(void)
1da177e4
LT
151{
152 cpufreq_unregister_driver(&sh_cpufreq_driver);
153}
154
cb5ec75b
PM
155module_init(sh_cpufreq_module_init);
156module_exit(sh_cpufreq_module_exit);
1da177e4
LT
157
158MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
159MODULE_DESCRIPTION("cpufreq driver for SuperH");
160MODULE_LICENSE("GPL");