cpufreq_userspace.c 5.9 KB
Newer Older
1

L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  linux/drivers/cpufreq/cpufreq_userspace.c
 *
 *  Copyright (C)  2001 Russell King
 *            (C)  2002 - 2004 Dominik Brodowski <linux@brodo.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/cpufreq.h>
21
#include <linux/cpu.h>
L
Linus Torvalds 已提交
22 23 24
#include <linux/types.h>
#include <linux/fs.h>
#include <linux/sysfs.h>
25
#include <linux/mutex.h>
L
Linus Torvalds 已提交
26 27 28 29

/**
 * A few values needed by the userspace governor
 */
30 31 32 33 34 35
static DEFINE_PER_CPU(unsigned int, cpu_max_freq);
static DEFINE_PER_CPU(unsigned int, cpu_min_freq);
static DEFINE_PER_CPU(unsigned int, cpu_cur_freq); /* current CPU freq */
static DEFINE_PER_CPU(unsigned int, cpu_set_freq); /* CPU freq desired by
							userspace */
static DEFINE_PER_CPU(unsigned int, cpu_is_managed);
L
Linus Torvalds 已提交
36

37
static DEFINE_MUTEX(userspace_mutex);
38
static int cpus_using_userspace_governor;
L
Linus Torvalds 已提交
39 40

/* keep track of frequency transitions */
41
static int
L
Linus Torvalds 已提交
42
userspace_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
43
	void *data)
L
Linus Torvalds 已提交
44
{
45
	struct cpufreq_freqs *freq = data;
L
Linus Torvalds 已提交
46

47
	if (!per_cpu(cpu_is_managed, freq->cpu))
48 49
		return 0;

50 51 52 53 54
	if (val == CPUFREQ_POSTCHANGE) {
		pr_debug("saving cpu_cur_freq of cpu %u to be %u kHz\n",
				freq->cpu, freq->new);
		per_cpu(cpu_cur_freq, freq->cpu) = freq->new;
	}
L
Linus Torvalds 已提交
55

56
	return 0;
L
Linus Torvalds 已提交
57 58 59
}

static struct notifier_block userspace_cpufreq_notifier_block = {
60
	.notifier_call  = userspace_cpufreq_notifier
L
Linus Torvalds 已提交
61 62 63
};


64
/**
L
Linus Torvalds 已提交
65
 * cpufreq_set - set the CPU frequency
66
 * @policy: pointer to policy struct where freq is being set
L
Linus Torvalds 已提交
67 68 69 70
 * @freq: target frequency in kHz
 *
 * Sets the CPU frequency to freq.
 */
71
static int cpufreq_set(struct cpufreq_policy *policy, unsigned int freq)
L
Linus Torvalds 已提交
72 73 74
{
	int ret = -EINVAL;

75
	pr_debug("cpufreq_set for cpu %u, freq %u kHz\n", policy->cpu, freq);
L
Linus Torvalds 已提交
76

77
	mutex_lock(&userspace_mutex);
78
	if (!per_cpu(cpu_is_managed, policy->cpu))
L
Linus Torvalds 已提交
79 80
		goto err;

81
	per_cpu(cpu_set_freq, policy->cpu) = freq;
L
Linus Torvalds 已提交
82

83 84 85 86
	if (freq < per_cpu(cpu_min_freq, policy->cpu))
		freq = per_cpu(cpu_min_freq, policy->cpu);
	if (freq > per_cpu(cpu_max_freq, policy->cpu))
		freq = per_cpu(cpu_max_freq, policy->cpu);
L
Linus Torvalds 已提交
87 88 89

	/*
	 * We're safe from concurrent calls to ->target() here
90
	 * as we hold the userspace_mutex lock. If we were calling
L
Linus Torvalds 已提交
91
	 * cpufreq_driver_target, a deadlock situation might occur:
92 93 94 95 96
	 * A: cpufreq_set (lock userspace_mutex) ->
	 *      cpufreq_driver_target(lock policy->lock)
	 * B: cpufreq_set_policy(lock policy->lock) ->
	 *      __cpufreq_governor ->
	 *         cpufreq_governor_userspace (lock userspace_mutex)
L
Linus Torvalds 已提交
97
	 */
98
	ret = __cpufreq_driver_target(policy, freq, CPUFREQ_RELATION_L);
L
Linus Torvalds 已提交
99 100

 err:
101
	mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
102 103 104 105
	return ret;
}


106
static ssize_t show_speed(struct cpufreq_policy *policy, char *buf)
L
Linus Torvalds 已提交
107
{
108
	return sprintf(buf, "%u\n", per_cpu(cpu_cur_freq, policy->cpu));
L
Linus Torvalds 已提交
109 110 111 112 113 114
}

static int cpufreq_governor_userspace(struct cpufreq_policy *policy,
				   unsigned int event)
{
	unsigned int cpu = policy->cpu;
J
Jeff Garzik 已提交
115 116
	int rc = 0;

L
Linus Torvalds 已提交
117 118 119 120 121
	switch (event) {
	case CPUFREQ_GOV_START:
		if (!cpu_online(cpu))
			return -EINVAL;
		BUG_ON(!policy->cur);
122
		mutex_lock(&userspace_mutex);
J
Jeff Garzik 已提交
123

124 125 126 127 128 129 130
		if (cpus_using_userspace_governor == 0) {
			cpufreq_register_notifier(
					&userspace_cpufreq_notifier_block,
					CPUFREQ_TRANSITION_NOTIFIER);
		}
		cpus_using_userspace_governor++;

131 132 133 134 135
		per_cpu(cpu_is_managed, cpu) = 1;
		per_cpu(cpu_min_freq, cpu) = policy->min;
		per_cpu(cpu_max_freq, cpu) = policy->max;
		per_cpu(cpu_cur_freq, cpu) = policy->cur;
		per_cpu(cpu_set_freq, cpu) = policy->cur;
136
		pr_debug("managing cpu %u started "
137 138 139 140 141
			"(%u - %u kHz, currently %u kHz)\n",
				cpu,
				per_cpu(cpu_min_freq, cpu),
				per_cpu(cpu_max_freq, cpu),
				per_cpu(cpu_cur_freq, cpu));
142

143
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
144 145
		break;
	case CPUFREQ_GOV_STOP:
146
		mutex_lock(&userspace_mutex);
147 148 149 150 151 152 153
		cpus_using_userspace_governor--;
		if (cpus_using_userspace_governor == 0) {
			cpufreq_unregister_notifier(
					&userspace_cpufreq_notifier_block,
					CPUFREQ_TRANSITION_NOTIFIER);
		}

154 155 156 157
		per_cpu(cpu_is_managed, cpu) = 0;
		per_cpu(cpu_min_freq, cpu) = 0;
		per_cpu(cpu_max_freq, cpu) = 0;
		per_cpu(cpu_set_freq, cpu) = 0;
158
		pr_debug("managing cpu %u stopped\n", cpu);
159
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
160 161
		break;
	case CPUFREQ_GOV_LIMITS:
162
		mutex_lock(&userspace_mutex);
163
		pr_debug("limit event for cpu %u: %u - %u kHz, "
164 165
			"currently %u kHz, last set to %u kHz\n",
			cpu, policy->min, policy->max,
166 167 168
			per_cpu(cpu_cur_freq, cpu),
			per_cpu(cpu_set_freq, cpu));
		if (policy->max < per_cpu(cpu_set_freq, cpu)) {
169 170
			__cpufreq_driver_target(policy, policy->max,
						CPUFREQ_RELATION_H);
171
		} else if (policy->min > per_cpu(cpu_set_freq, cpu)) {
172 173
			__cpufreq_driver_target(policy, policy->min,
						CPUFREQ_RELATION_L);
174 175 176
		} else {
			__cpufreq_driver_target(policy,
						per_cpu(cpu_set_freq, cpu),
177 178
						CPUFREQ_RELATION_L);
		}
179 180 181
		per_cpu(cpu_min_freq, cpu) = policy->min;
		per_cpu(cpu_max_freq, cpu) = policy->max;
		per_cpu(cpu_cur_freq, cpu) = policy->cur;
182
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
183 184
		break;
	}
J
Jeff Garzik 已提交
185
	return rc;
L
Linus Torvalds 已提交
186 187 188
}


189 190 191
#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE
static
#endif
L
Linus Torvalds 已提交
192 193 194
struct cpufreq_governor cpufreq_gov_userspace = {
	.name		= "userspace",
	.governor	= cpufreq_governor_userspace,
195 196
	.store_setspeed	= cpufreq_set,
	.show_setspeed	= show_speed,
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	.owner		= THIS_MODULE,
};

static int __init cpufreq_gov_userspace_init(void)
{
	return cpufreq_register_governor(&cpufreq_gov_userspace);
}


static void __exit cpufreq_gov_userspace_exit(void)
{
	cpufreq_unregister_governor(&cpufreq_gov_userspace);
}


212 213 214 215
MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>, "
		"Russell King <rmk@arm.linux.org.uk>");
MODULE_DESCRIPTION("CPUfreq policy governor 'userspace'");
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
216

217
#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE
L
Linus Torvalds 已提交
218
fs_initcall(cpufreq_gov_userspace_init);
219 220 221
#else
module_init(cpufreq_gov_userspace_init);
#endif
L
Linus Torvalds 已提交
222
module_exit(cpufreq_gov_userspace_exit);