sh-cpufreq.c 4.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * cpufreq driver for the SuperH processors.
 *
4
 * Copyright (C) 2002 - 2012 Paul Mundt
L
Linus Torvalds 已提交
5 6
 * Copyright (C) 2002 M. R. Brown
 *
7 8 9 10 11 12 13
 * Clock framework bits from arch/avr32/mach-at32ap/cpufreq.c
 *
 *   Copyright (C) 2004-2007 Atmel Corporation
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
L
Linus Torvalds 已提交
14
 */
15 16
#define pr_fmt(fmt) "cpufreq: " fmt

L
Linus Torvalds 已提交
17 18 19 20 21
#include <linux/types.h>
#include <linux/cpufreq.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
22
#include <linux/err.h>
L
Linus Torvalds 已提交
23
#include <linux/cpumask.h>
24
#include <linux/cpu.h>
L
Linus Torvalds 已提交
25
#include <linux/smp.h>
T
Tim Schmielau 已提交
26
#include <linux/sched.h>	/* set_cpus_allowed() */
27
#include <linux/clk.h>
28 29
#include <linux/percpu.h>
#include <linux/sh_clk.h>
L
Linus Torvalds 已提交
30

31
static DEFINE_PER_CPU(struct clk, sh_cpuclk);
L
Linus Torvalds 已提交
32

33
static unsigned int sh_cpufreq_get(unsigned int cpu)
L
Linus Torvalds 已提交
34
{
35
	return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000;
L
Linus Torvalds 已提交
36 37 38 39 40
}

/*
 * Here we notify other drivers of the proposed change and the final change.
 */
41 42 43
static int sh_cpufreq_target(struct cpufreq_policy *policy,
			     unsigned int target_freq,
			     unsigned int relation)
L
Linus Torvalds 已提交
44
{
45
	unsigned int cpu = policy->cpu;
46
	struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
L
Linus Torvalds 已提交
47 48
	cpumask_t cpus_allowed;
	struct cpufreq_freqs freqs;
49
	struct device *dev;
50
	long freq;
L
Linus Torvalds 已提交
51 52

	cpus_allowed = current->cpus_allowed;
53
	set_cpus_allowed_ptr(current, cpumask_of(cpu));
L
Linus Torvalds 已提交
54 55 56

	BUG_ON(smp_processor_id() != cpu);

57 58
	dev = get_cpu_device(cpu);

59 60
	/* Convert target_freq from kHz to Hz */
	freq = clk_round_rate(cpuclk, target_freq * 1000);
L
Linus Torvalds 已提交
61

62 63 64
	if (freq < (policy->min * 1000) || freq > (policy->max * 1000))
		return -EINVAL;

65
	dev_dbg(dev, "requested frequency %u Hz\n", target_freq * 1000);
L
Linus Torvalds 已提交
66

67 68 69 70
	freqs.old	= sh_cpufreq_get(cpu);
	freqs.new	= (freq + 500) / 1000;
	freqs.flags	= 0;

71
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
72
	set_cpus_allowed_ptr(current, &cpus_allowed);
73
	clk_set_rate(cpuclk, freq);
74
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
L
Linus Torvalds 已提交
75

76
	dev_dbg(dev, "set frequency %lu Hz\n", freq);
77

L
Linus Torvalds 已提交
78 79 80
	return 0;
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
static int sh_cpufreq_verify(struct cpufreq_policy *policy)
{
	struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu);
	struct cpufreq_frequency_table *freq_table;

	freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
	if (freq_table)
		return cpufreq_frequency_table_verify(policy, freq_table);

	cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
				     policy->cpuinfo.max_freq);

	policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000;
	policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000;

	cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
				     policy->cpuinfo.max_freq);

	return 0;
}

L
Linus Torvalds 已提交
102 103
static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
{
104 105
	unsigned int cpu = policy->cpu;
	struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
106
	struct cpufreq_frequency_table *freq_table;
107
	struct device *dev;
108

109 110 111
	dev = get_cpu_device(cpu);

	cpuclk = clk_get(dev, "cpu_clk");
112
	if (IS_ERR(cpuclk)) {
113
		dev_err(dev, "couldn't get CPU clk\n");
114 115
		return PTR_ERR(cpuclk);
	}
L
Linus Torvalds 已提交
116

117
	policy->cur = sh_cpufreq_get(cpu);
L
Linus Torvalds 已提交
118

119 120
	freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL;
	if (freq_table) {
121
		int result;
122

123 124 125
		result = cpufreq_table_validate_and_show(policy, freq_table);
		if (result)
			return result;
126
	} else {
127 128 129
		dev_notice(dev, "no frequency table found, falling back "
			   "to rate rounding.\n");

130
		policy->min = policy->cpuinfo.min_freq =
131
			(clk_round_rate(cpuclk, 1) + 500) / 1000;
132
		policy->max = policy->cpuinfo.max_freq =
133
			(clk_round_rate(cpuclk, ~0UL) + 500) / 1000;
134
	}
L
Linus Torvalds 已提交
135

136 137
	policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;

138
	dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, "
139
	       "Maximum %u.%03u MHz.\n",
140
	       policy->min / 1000, policy->min % 1000,
141
	       policy->max / 1000, policy->max % 1000);
L
Linus Torvalds 已提交
142

143 144
	return 0;
}
L
Linus Torvalds 已提交
145

146
static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy)
147
{
148 149
	unsigned int cpu = policy->cpu;
	struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu);
150

151
	cpufreq_frequency_table_put_attr(cpu);
152
	clk_put(cpuclk);
153

L
Linus Torvalds 已提交
154 155 156
	return 0;
}

157 158 159 160 161
static struct freq_attr *sh_freq_attr[] = {
	&cpufreq_freq_attr_scaling_available_freqs,
	NULL,
};

L
Linus Torvalds 已提交
162
static struct cpufreq_driver sh_cpufreq_driver = {
163 164
	.name		= "sh",
	.get		= sh_cpufreq_get,
165 166 167 168
	.target		= sh_cpufreq_target,
	.verify		= sh_cpufreq_verify,
	.init		= sh_cpufreq_cpu_init,
	.exit		= sh_cpufreq_cpu_exit,
169
	.attr		= sh_freq_attr,
L
Linus Torvalds 已提交
170 171
};

172
static int __init sh_cpufreq_module_init(void)
L
Linus Torvalds 已提交
173
{
174
	pr_notice("SuperH CPU frequency driver.\n");
175
	return cpufreq_register_driver(&sh_cpufreq_driver);
L
Linus Torvalds 已提交
176 177
}

178
static void __exit sh_cpufreq_module_exit(void)
L
Linus Torvalds 已提交
179 180 181 182
{
	cpufreq_unregister_driver(&sh_cpufreq_driver);
}

183 184
module_init(sh_cpufreq_module_init);
module_exit(sh_cpufreq_module_exit);
L
Linus Torvalds 已提交
185 186 187 188

MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
MODULE_DESCRIPTION("cpufreq driver for SuperH");
MODULE_LICENSE("GPL");