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 30 31 32 33 34 35 36 37 38

#include <asm/uaccess.h>


/**
 * A few values needed by the userspace governor
 */
static unsigned int	cpu_max_freq[NR_CPUS];
static unsigned int	cpu_min_freq[NR_CPUS];
static unsigned int	cpu_cur_freq[NR_CPUS]; /* current CPU freq */
static unsigned int	cpu_set_freq[NR_CPUS]; /* CPU freq desired by userspace */
static unsigned int	cpu_is_managed[NR_CPUS];

39
static DEFINE_MUTEX	(userspace_mutex);
L
Linus Torvalds 已提交
40 41 42 43

#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_GOVERNOR, "userspace", msg)

/* keep track of frequency transitions */
44
static int
L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
userspace_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
                       void *data)
{
        struct cpufreq_freqs *freq = data;

	dprintk("saving cpu_cur_freq of cpu %u to be %u kHz\n", freq->cpu, freq->new);
	cpu_cur_freq[freq->cpu] = freq->new;

        return 0;
}

static struct notifier_block userspace_cpufreq_notifier_block = {
        .notifier_call  = userspace_cpufreq_notifier
};


61
/**
L
Linus Torvalds 已提交
62 63 64 65 66 67
 * cpufreq_set - set the CPU frequency
 * @freq: target frequency in kHz
 * @cpu: CPU for which the frequency is to be set
 *
 * Sets the CPU frequency to freq.
 */
68
static int cpufreq_set(unsigned int freq, struct cpufreq_policy *policy)
L
Linus Torvalds 已提交
69 70 71
{
	int ret = -EINVAL;

72
	dprintk("cpufreq_set for cpu %u, freq %u kHz\n", policy->cpu, freq);
L
Linus Torvalds 已提交
73

74
	mutex_lock(&userspace_mutex);
75
	if (!cpu_is_managed[policy->cpu])
L
Linus Torvalds 已提交
76 77
		goto err;

78
	cpu_set_freq[policy->cpu] = freq;
L
Linus Torvalds 已提交
79

80 81 82 83
	if (freq < cpu_min_freq[policy->cpu])
		freq = cpu_min_freq[policy->cpu];
	if (freq > cpu_max_freq[policy->cpu])
		freq = cpu_max_freq[policy->cpu];
L
Linus Torvalds 已提交
84 85 86

	/*
	 * We're safe from concurrent calls to ->target() here
87
	 * as we hold the userspace_mutex lock. If we were calling
L
Linus Torvalds 已提交
88
	 * cpufreq_driver_target, a deadlock situation might occur:
89 90
	 * 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 已提交
91
	 */
92
	ret = __cpufreq_driver_target(policy, freq, CPUFREQ_RELATION_L);
L
Linus Torvalds 已提交
93 94

 err:
95
	mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
96 97 98 99 100 101 102 103 104 105
	return ret;
}


/************************** sysfs interface ************************/
static ssize_t show_speed (struct cpufreq_policy *policy, char *buf)
{
	return sprintf (buf, "%u\n", cpu_cur_freq[policy->cpu]);
}

106 107
static ssize_t
store_speed (struct cpufreq_policy *policy, const char *buf, size_t count)
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115
{
	unsigned int freq = 0;
	unsigned int ret;

	ret = sscanf (buf, "%u", &freq);
	if (ret != 1)
		return -EINVAL;

116
	cpufreq_set(freq, policy);
L
Linus Torvalds 已提交
117 118 119 120

	return count;
}

121
static struct freq_attr freq_attr_scaling_setspeed =
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131
{
	.attr = { .name = "scaling_setspeed", .mode = 0644, .owner = THIS_MODULE },
	.show = show_speed,
	.store = store_speed,
};

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

L
Linus Torvalds 已提交
134 135 136 137 138
	switch (event) {
	case CPUFREQ_GOV_START:
		if (!cpu_online(cpu))
			return -EINVAL;
		BUG_ON(!policy->cur);
139
		mutex_lock(&userspace_mutex);
J
Jeff Garzik 已提交
140 141 142 143 144
		rc = sysfs_create_file (&policy->kobj,
					&freq_attr_scaling_setspeed.attr);
		if (rc)
			goto start_out;

145
		cpu_is_managed[cpu] = 1;
L
Linus Torvalds 已提交
146 147 148 149 150
		cpu_min_freq[cpu] = policy->min;
		cpu_max_freq[cpu] = policy->max;
		cpu_cur_freq[cpu] = policy->cur;
		cpu_set_freq[cpu] = policy->cur;
		dprintk("managing cpu %u started (%u - %u kHz, currently %u kHz)\n", cpu, cpu_min_freq[cpu], cpu_max_freq[cpu], cpu_cur_freq[cpu]);
J
Jeff Garzik 已提交
151
start_out:
152
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
153 154
		break;
	case CPUFREQ_GOV_STOP:
155
		mutex_lock(&userspace_mutex);
L
Linus Torvalds 已提交
156 157 158 159 160 161
		cpu_is_managed[cpu] = 0;
		cpu_min_freq[cpu] = 0;
		cpu_max_freq[cpu] = 0;
		cpu_set_freq[cpu] = 0;
		sysfs_remove_file (&policy->kobj, &freq_attr_scaling_setspeed.attr);
		dprintk("managing cpu %u stopped\n", cpu);
162
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
163 164
		break;
	case CPUFREQ_GOV_LIMITS:
165
		mutex_lock(&userspace_mutex);
166 167 168 169
		dprintk("limit event for cpu %u: %u - %u kHz,"
			"currently %u kHz, last set to %u kHz\n",
			cpu, policy->min, policy->max,
			cpu_cur_freq[cpu], cpu_set_freq[cpu]);
L
Linus Torvalds 已提交
170
		if (policy->max < cpu_set_freq[cpu]) {
171 172 173 174 175 176
			__cpufreq_driver_target(policy, policy->max,
						CPUFREQ_RELATION_H);
		}
		else if (policy->min > cpu_set_freq[cpu]) {
			__cpufreq_driver_target(policy, policy->min,
						CPUFREQ_RELATION_L);
L
Linus Torvalds 已提交
177
		}
178 179 180 181 182 183 184
		else {
			__cpufreq_driver_target(policy, cpu_set_freq[cpu],
						CPUFREQ_RELATION_L);
		}
		cpu_min_freq[cpu] = policy->min;
		cpu_max_freq[cpu] = policy->max;
		cpu_cur_freq[cpu] = policy->cur;
185
		mutex_unlock(&userspace_mutex);
L
Linus Torvalds 已提交
186 187
		break;
	}
J
Jeff Garzik 已提交
188
	return rc;
L
Linus Torvalds 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
}


struct cpufreq_governor cpufreq_gov_userspace = {
	.name		= "userspace",
	.governor	= cpufreq_governor_userspace,
	.owner		= THIS_MODULE,
};
EXPORT_SYMBOL(cpufreq_gov_userspace);

static int __init cpufreq_gov_userspace_init(void)
{
	cpufreq_register_notifier(&userspace_cpufreq_notifier_block, CPUFREQ_TRANSITION_NOTIFIER);
	return cpufreq_register_governor(&cpufreq_gov_userspace);
}


static void __exit cpufreq_gov_userspace_exit(void)
{
	cpufreq_unregister_governor(&cpufreq_gov_userspace);
        cpufreq_unregister_notifier(&userspace_cpufreq_notifier_block, CPUFREQ_TRANSITION_NOTIFIER);
}


MODULE_AUTHOR ("Dominik Brodowski <linux@brodo.de>, Russell King <rmk@arm.linux.org.uk>");
MODULE_DESCRIPTION ("CPUfreq policy governor 'userspace'");
MODULE_LICENSE ("GPL");

fs_initcall(cpufreq_gov_userspace_init);
module_exit(cpufreq_gov_userspace_exit);