blob: 5f809e337b89d04dde3d2cb3ffee098e6dff6e86 [file] [log] [blame]
Len Brown4f86d3a2007-10-03 18:58:00 -04001/*
2 * sysfs.c - sysfs support
3 *
4 * (C) 2006-2007 Shaohua Li <shaohua.li@intel.com>
5 *
6 * This code is licenced under the GPL.
7 */
8
9#include <linux/kernel.h>
10#include <linux/cpuidle.h>
11#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040013#include <linux/cpu.h>
ShuoX Liu3a533962012-03-28 15:19:11 -070014#include <linux/capability.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040015
16#include "cpuidle.h"
17
18static unsigned int sysfs_switch;
19static int __init cpuidle_sysfs_setup(char *unused)
20{
21 sysfs_switch = 1;
22 return 1;
23}
24__setup("cpuidle_sysfs_switch", cpuidle_sysfs_setup);
25
Kay Sievers8a25a2f2011-12-21 14:29:42 -080026static ssize_t show_available_governors(struct device *dev,
27 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070028 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040029{
30 ssize_t i = 0;
31 struct cpuidle_governor *tmp;
32
33 mutex_lock(&cpuidle_lock);
34 list_for_each_entry(tmp, &cpuidle_governors, governor_list) {
35 if (i >= (ssize_t) ((PAGE_SIZE/sizeof(char)) - CPUIDLE_NAME_LEN - 2))
36 goto out;
37 i += scnprintf(&buf[i], CPUIDLE_NAME_LEN, "%s ", tmp->name);
38 }
39
40out:
41 i+= sprintf(&buf[i], "\n");
42 mutex_unlock(&cpuidle_lock);
43 return i;
44}
45
Kay Sievers8a25a2f2011-12-21 14:29:42 -080046static ssize_t show_current_driver(struct device *dev,
47 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070048 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040049{
50 ssize_t ret;
Len Brown752138d2010-05-22 16:57:26 -040051 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -040052
53 spin_lock(&cpuidle_driver_lock);
Len Brown752138d2010-05-22 16:57:26 -040054 if (cpuidle_driver)
55 ret = sprintf(buf, "%s\n", cpuidle_driver->name);
Len Brown4f86d3a2007-10-03 18:58:00 -040056 else
57 ret = sprintf(buf, "none\n");
58 spin_unlock(&cpuidle_driver_lock);
59
60 return ret;
61}
62
Kay Sievers8a25a2f2011-12-21 14:29:42 -080063static ssize_t show_current_governor(struct device *dev,
64 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070065 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040066{
67 ssize_t ret;
68
69 mutex_lock(&cpuidle_lock);
70 if (cpuidle_curr_governor)
71 ret = sprintf(buf, "%s\n", cpuidle_curr_governor->name);
72 else
73 ret = sprintf(buf, "none\n");
74 mutex_unlock(&cpuidle_lock);
75
76 return ret;
77}
78
Kay Sievers8a25a2f2011-12-21 14:29:42 -080079static ssize_t store_current_governor(struct device *dev,
80 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070081 const char *buf, size_t count)
Len Brown4f86d3a2007-10-03 18:58:00 -040082{
83 char gov_name[CPUIDLE_NAME_LEN];
84 int ret = -EINVAL;
85 size_t len = count;
86 struct cpuidle_governor *gov;
87
88 if (!len || len >= sizeof(gov_name))
89 return -EINVAL;
90
91 memcpy(gov_name, buf, len);
92 gov_name[len] = '\0';
93 if (gov_name[len - 1] == '\n')
94 gov_name[--len] = '\0';
95
96 mutex_lock(&cpuidle_lock);
97
98 list_for_each_entry(gov, &cpuidle_governors, governor_list) {
99 if (strlen(gov->name) == len && !strcmp(gov->name, gov_name)) {
100 ret = cpuidle_switch_governor(gov);
101 break;
102 }
103 }
104
105 mutex_unlock(&cpuidle_lock);
106
107 if (ret)
108 return ret;
109 else
110 return count;
111}
112
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800113static DEVICE_ATTR(current_driver, 0444, show_current_driver, NULL);
114static DEVICE_ATTR(current_governor_ro, 0444, show_current_governor, NULL);
Len Brown4f86d3a2007-10-03 18:58:00 -0400115
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800116static struct attribute *cpuidle_default_attrs[] = {
117 &dev_attr_current_driver.attr,
118 &dev_attr_current_governor_ro.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400119 NULL
120};
121
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800122static DEVICE_ATTR(available_governors, 0444, show_available_governors, NULL);
123static DEVICE_ATTR(current_governor, 0644, show_current_governor,
124 store_current_governor);
Len Brown4f86d3a2007-10-03 18:58:00 -0400125
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800126static struct attribute *cpuidle_switch_attrs[] = {
127 &dev_attr_available_governors.attr,
128 &dev_attr_current_driver.attr,
129 &dev_attr_current_governor.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400130 NULL
131};
132
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800133static struct attribute_group cpuidle_attr_group = {
134 .attrs = cpuidle_default_attrs,
Len Brown4f86d3a2007-10-03 18:58:00 -0400135 .name = "cpuidle",
136};
137
138/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800139 * cpuidle_add_interface - add CPU global sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400140 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800141int cpuidle_add_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400142{
143 if (sysfs_switch)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800144 cpuidle_attr_group.attrs = cpuidle_switch_attrs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400145
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800146 return sysfs_create_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400147}
148
149/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800150 * cpuidle_remove_interface - remove CPU global sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400151 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800152void cpuidle_remove_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400153{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800154 sysfs_remove_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400155}
156
157struct cpuidle_attr {
158 struct attribute attr;
159 ssize_t (*show)(struct cpuidle_device *, char *);
160 ssize_t (*store)(struct cpuidle_device *, const char *, size_t count);
161};
162
163#define define_one_ro(_name, show) \
164 static struct cpuidle_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
165#define define_one_rw(_name, show, store) \
166 static struct cpuidle_attr attr_##_name = __ATTR(_name, 0644, show, store)
167
168#define kobj_to_cpuidledev(k) container_of(k, struct cpuidle_device, kobj)
169#define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr)
170static ssize_t cpuidle_show(struct kobject * kobj, struct attribute * attr ,char * buf)
171{
172 int ret = -EIO;
173 struct cpuidle_device *dev = kobj_to_cpuidledev(kobj);
174 struct cpuidle_attr * cattr = attr_to_cpuidleattr(attr);
175
176 if (cattr->show) {
177 mutex_lock(&cpuidle_lock);
178 ret = cattr->show(dev, buf);
179 mutex_unlock(&cpuidle_lock);
180 }
181 return ret;
182}
183
184static ssize_t cpuidle_store(struct kobject * kobj, struct attribute * attr,
185 const char * buf, size_t count)
186{
187 int ret = -EIO;
188 struct cpuidle_device *dev = kobj_to_cpuidledev(kobj);
189 struct cpuidle_attr * cattr = attr_to_cpuidleattr(attr);
190
191 if (cattr->store) {
192 mutex_lock(&cpuidle_lock);
193 ret = cattr->store(dev, buf, count);
194 mutex_unlock(&cpuidle_lock);
195 }
196 return ret;
197}
198
Emese Revfy52cf25d2010-01-19 02:58:23 +0100199static const struct sysfs_ops cpuidle_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400200 .show = cpuidle_show,
201 .store = cpuidle_store,
202};
203
204static void cpuidle_sysfs_release(struct kobject *kobj)
205{
206 struct cpuidle_device *dev = kobj_to_cpuidledev(kobj);
207
208 complete(&dev->kobj_unregister);
209}
210
211static struct kobj_type ktype_cpuidle = {
212 .sysfs_ops = &cpuidle_sysfs_ops,
213 .release = cpuidle_sysfs_release,
214};
215
216struct cpuidle_state_attr {
217 struct attribute attr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530218 ssize_t (*show)(struct cpuidle_state *, \
219 struct cpuidle_state_usage *, char *);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200220 ssize_t (*store)(struct cpuidle_state *, \
221 struct cpuidle_state_usage *, const char *, size_t);
Len Brown4f86d3a2007-10-03 18:58:00 -0400222};
223
224#define define_one_state_ro(_name, show) \
225static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
226
ShuoX Liu3a533962012-03-28 15:19:11 -0700227#define define_one_state_rw(_name, show, store) \
228static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store)
229
Len Brown4f86d3a2007-10-03 18:58:00 -0400230#define define_show_state_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530231static ssize_t show_state_##_name(struct cpuidle_state *state, \
232 struct cpuidle_state_usage *state_usage, char *buf) \
Len Brown4f86d3a2007-10-03 18:58:00 -0400233{ \
234 return sprintf(buf, "%u\n", state->_name);\
235}
236
ShuoX Liudc7fd272012-07-03 19:05:31 +0200237#define define_store_state_ull_function(_name) \
ShuoX Liu3a533962012-03-28 15:19:11 -0700238static ssize_t store_state_##_name(struct cpuidle_state *state, \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200239 struct cpuidle_state_usage *state_usage, \
ShuoX Liu3a533962012-03-28 15:19:11 -0700240 const char *buf, size_t size) \
241{ \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200242 unsigned long long value; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700243 int err; \
244 if (!capable(CAP_SYS_ADMIN)) \
245 return -EPERM; \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200246 err = kstrtoull(buf, 0, &value); \
ShuoX Liu3a533962012-03-28 15:19:11 -0700247 if (err) \
248 return err; \
249 if (value) \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200250 state_usage->_name = 1; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700251 else \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200252 state_usage->_name = 0; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700253 return size; \
254}
255
Yi Yang8b78cf62008-02-25 08:46:12 +0800256#define define_show_state_ull_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530257static ssize_t show_state_##_name(struct cpuidle_state *state, \
258 struct cpuidle_state_usage *state_usage, char *buf) \
Yi Yang8b78cf62008-02-25 08:46:12 +0800259{ \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530260 return sprintf(buf, "%llu\n", state_usage->_name);\
Yi Yang8b78cf62008-02-25 08:46:12 +0800261}
262
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800263#define define_show_state_str_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530264static ssize_t show_state_##_name(struct cpuidle_state *state, \
265 struct cpuidle_state_usage *state_usage, char *buf) \
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800266{ \
267 if (state->_name[0] == '\0')\
268 return sprintf(buf, "<null>\n");\
269 return sprintf(buf, "%s\n", state->_name);\
Len Brown4f86d3a2007-10-03 18:58:00 -0400270}
271
272define_show_state_function(exit_latency)
273define_show_state_function(power_usage)
Yi Yang8b78cf62008-02-25 08:46:12 +0800274define_show_state_ull_function(usage)
275define_show_state_ull_function(time)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800276define_show_state_str_function(name)
277define_show_state_str_function(desc)
ShuoX Liudc7fd272012-07-03 19:05:31 +0200278define_show_state_ull_function(disable)
279define_store_state_ull_function(disable)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800280
Len Brown4f86d3a2007-10-03 18:58:00 -0400281define_one_state_ro(name, show_state_name);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800282define_one_state_ro(desc, show_state_desc);
Len Brown4f86d3a2007-10-03 18:58:00 -0400283define_one_state_ro(latency, show_state_exit_latency);
284define_one_state_ro(power, show_state_power_usage);
285define_one_state_ro(usage, show_state_usage);
286define_one_state_ro(time, show_state_time);
ShuoX Liu3a533962012-03-28 15:19:11 -0700287define_one_state_rw(disable, show_state_disable, store_state_disable);
Len Brown4f86d3a2007-10-03 18:58:00 -0400288
289static struct attribute *cpuidle_state_default_attrs[] = {
290 &attr_name.attr,
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800291 &attr_desc.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400292 &attr_latency.attr,
293 &attr_power.attr,
294 &attr_usage.attr,
295 &attr_time.attr,
ShuoX Liu3a533962012-03-28 15:19:11 -0700296 &attr_disable.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400297 NULL
298};
299
300#define kobj_to_state_obj(k) container_of(k, struct cpuidle_state_kobj, kobj)
301#define kobj_to_state(k) (kobj_to_state_obj(k)->state)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530302#define kobj_to_state_usage(k) (kobj_to_state_obj(k)->state_usage)
Len Brown4f86d3a2007-10-03 18:58:00 -0400303#define attr_to_stateattr(a) container_of(a, struct cpuidle_state_attr, attr)
304static ssize_t cpuidle_state_show(struct kobject * kobj,
305 struct attribute * attr ,char * buf)
306{
307 int ret = -EIO;
308 struct cpuidle_state *state = kobj_to_state(kobj);
Deepthi Dharwar42027352011-10-28 16:20:33 +0530309 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400310 struct cpuidle_state_attr * cattr = attr_to_stateattr(attr);
311
312 if (cattr->show)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530313 ret = cattr->show(state, state_usage, buf);
Len Brown4f86d3a2007-10-03 18:58:00 -0400314
315 return ret;
316}
317
ShuoX Liu3a533962012-03-28 15:19:11 -0700318static ssize_t cpuidle_state_store(struct kobject *kobj,
319 struct attribute *attr, const char *buf, size_t size)
320{
321 int ret = -EIO;
322 struct cpuidle_state *state = kobj_to_state(kobj);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200323 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
ShuoX Liu3a533962012-03-28 15:19:11 -0700324 struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
325
326 if (cattr->store)
ShuoX Liudc7fd272012-07-03 19:05:31 +0200327 ret = cattr->store(state, state_usage, buf, size);
ShuoX Liu3a533962012-03-28 15:19:11 -0700328
329 return ret;
330}
331
Emese Revfy52cf25d2010-01-19 02:58:23 +0100332static const struct sysfs_ops cpuidle_state_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400333 .show = cpuidle_state_show,
ShuoX Liu3a533962012-03-28 15:19:11 -0700334 .store = cpuidle_state_store,
Len Brown4f86d3a2007-10-03 18:58:00 -0400335};
336
337static void cpuidle_state_sysfs_release(struct kobject *kobj)
338{
339 struct cpuidle_state_kobj *state_obj = kobj_to_state_obj(kobj);
340
341 complete(&state_obj->kobj_unregister);
342}
343
344static struct kobj_type ktype_state_cpuidle = {
345 .sysfs_ops = &cpuidle_state_sysfs_ops,
346 .default_attrs = cpuidle_state_default_attrs,
347 .release = cpuidle_state_sysfs_release,
348};
349
Jesper Juhl42b16b32011-01-17 00:09:38 +0100350static inline void cpuidle_free_state_kobj(struct cpuidle_device *device, int i)
Len Brown4f86d3a2007-10-03 18:58:00 -0400351{
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800352 kobject_put(&device->kobjs[i]->kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400353 wait_for_completion(&device->kobjs[i]->kobj_unregister);
354 kfree(device->kobjs[i]);
355 device->kobjs[i] = NULL;
356}
357
358/**
359 * cpuidle_add_driver_sysfs - adds driver-specific sysfs attributes
360 * @device: the target device
361 */
362int cpuidle_add_state_sysfs(struct cpuidle_device *device)
363{
364 int i, ret = -ENOMEM;
365 struct cpuidle_state_kobj *kobj;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530366 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400367
368 /* state statistics */
369 for (i = 0; i < device->state_count; i++) {
370 kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL);
371 if (!kobj)
372 goto error_state;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530373 kobj->state = &drv->states[i];
Deepthi Dharwar42027352011-10-28 16:20:33 +0530374 kobj->state_usage = &device->states_usage[i];
Len Brown4f86d3a2007-10-03 18:58:00 -0400375 init_completion(&kobj->kobj_unregister);
376
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400377 ret = kobject_init_and_add(&kobj->kobj, &ktype_state_cpuidle, &device->kobj,
378 "state%d", i);
Len Brown4f86d3a2007-10-03 18:58:00 -0400379 if (ret) {
380 kfree(kobj);
381 goto error_state;
382 }
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400383 kobject_uevent(&kobj->kobj, KOBJ_ADD);
Len Brown4f86d3a2007-10-03 18:58:00 -0400384 device->kobjs[i] = kobj;
385 }
386
387 return 0;
388
389error_state:
390 for (i = i - 1; i >= 0; i--)
391 cpuidle_free_state_kobj(device, i);
392 return ret;
393}
394
395/**
396 * cpuidle_remove_driver_sysfs - removes driver-specific sysfs attributes
397 * @device: the target device
398 */
399void cpuidle_remove_state_sysfs(struct cpuidle_device *device)
400{
401 int i;
402
403 for (i = 0; i < device->state_count; i++)
404 cpuidle_free_state_kobj(device, i);
405}
406
407/**
408 * cpuidle_add_sysfs - creates a sysfs instance for the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800409 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400410 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800411int cpuidle_add_sysfs(struct device *cpu_dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400412{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800413 int cpu = cpu_dev->id;
Len Brown4f86d3a2007-10-03 18:58:00 -0400414 struct cpuidle_device *dev;
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400415 int error;
Len Brown4f86d3a2007-10-03 18:58:00 -0400416
417 dev = per_cpu(cpuidle_devices, cpu);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800418 error = kobject_init_and_add(&dev->kobj, &ktype_cpuidle, &cpu_dev->kobj,
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400419 "cpuidle");
420 if (!error)
421 kobject_uevent(&dev->kobj, KOBJ_ADD);
422 return error;
Len Brown4f86d3a2007-10-03 18:58:00 -0400423}
424
425/**
426 * cpuidle_remove_sysfs - deletes a sysfs instance on the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800427 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400428 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800429void cpuidle_remove_sysfs(struct device *cpu_dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400430{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800431 int cpu = cpu_dev->id;
Len Brown4f86d3a2007-10-03 18:58:00 -0400432 struct cpuidle_device *dev;
433
434 dev = per_cpu(cpuidle_devices, cpu);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800435 kobject_put(&dev->kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400436}