2 * linux/drivers/devfreq/governor_userspace.c
4 * Copyright (C) 2011 Samsung Electronics
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/slab.h>
13 #include <linux/device.h>
14 #include <linux/devfreq.h>
16 #include <linux/mutex.h>
17 #include <linux/module.h>
20 struct userspace_data {
21 unsigned long user_frequency;
25 static int devfreq_userspace_func(struct devfreq *df, unsigned long *freq)
27 struct userspace_data *data = df->data;
30 *freq = data->user_frequency;
32 *freq = df->previous_freq; /* No user freq specified yet */
37 static ssize_t store_freq(struct device *dev, struct device_attribute *attr,
38 const char *buf, size_t count)
40 struct devfreq *devfreq = to_devfreq(dev);
41 struct userspace_data *data;
45 mutex_lock(&devfreq->lock);
48 sscanf(buf, "%lu", &wanted);
49 data->user_frequency = wanted;
51 err = update_devfreq(devfreq);
54 mutex_unlock(&devfreq->lock);
58 static ssize_t show_freq(struct device *dev, struct device_attribute *attr,
61 struct devfreq *devfreq = to_devfreq(dev);
62 struct userspace_data *data;
65 mutex_lock(&devfreq->lock);
69 err = sprintf(buf, "%lu\n", data->user_frequency);
71 err = sprintf(buf, "undefined\n");
72 mutex_unlock(&devfreq->lock);
76 static DEVICE_ATTR(set_freq, 0644, show_freq, store_freq);
77 static struct attribute *dev_entries[] = {
78 &dev_attr_set_freq.attr,
81 static const struct attribute_group dev_attr_group = {
82 .name = DEVFREQ_GOV_USERSPACE,
86 static int userspace_init(struct devfreq *devfreq)
89 struct userspace_data *data = kzalloc(sizeof(struct userspace_data),
99 err = sysfs_create_group(&devfreq->dev.kobj, &dev_attr_group);
104 static void userspace_exit(struct devfreq *devfreq)
107 * Remove the sysfs entry, unless this is being called after
108 * device_del(), which should have done this already via kobject_del().
110 if (devfreq->dev.kobj.sd)
111 sysfs_remove_group(&devfreq->dev.kobj, &dev_attr_group);
113 kfree(devfreq->data);
114 devfreq->data = NULL;
117 static int devfreq_userspace_handler(struct devfreq *devfreq,
118 unsigned int event, void *data)
123 case DEVFREQ_GOV_START:
124 ret = userspace_init(devfreq);
126 case DEVFREQ_GOV_STOP:
127 userspace_exit(devfreq);
136 static struct devfreq_governor devfreq_userspace = {
138 .get_target_freq = devfreq_userspace_func,
139 .event_handler = devfreq_userspace_handler,
142 static int __init devfreq_userspace_init(void)
144 return devfreq_add_governor(&devfreq_userspace);
146 subsys_initcall(devfreq_userspace_init);
148 static void __exit devfreq_userspace_exit(void)
152 ret = devfreq_remove_governor(&devfreq_userspace);
154 pr_err("%s: failed remove governor %d\n", __func__, ret);
158 module_exit(devfreq_userspace_exit);
159 MODULE_LICENSE("GPL");