2 * sysfs.c - sysfs support
6 * This code is licenced under the GPL.
9 #include <linux/kernel.h>
10 #include <linux/cpuidle.h>
11 #include <linux/sysfs.h>
12 #include <linux/slab.h>
13 #include <linux/cpu.h>
14 #include <linux/completion.h>
15 #include <linux/capability.h>
16 #include <linux/device.h>
17 #include <linux/kobject.h>
21 static unsigned int sysfs_switch;
22 static int __init cpuidle_sysfs_setup(char *unused)
27 __setup("cpuidle_sysfs_switch", cpuidle_sysfs_setup);
29 static ssize_t show_available_governors(struct device *dev,
30 struct device_attribute *attr,
34 struct cpuidle_governor *tmp;
36 mutex_lock(&cpuidle_lock);
37 list_for_each_entry(tmp, &cpuidle_governors, governor_list) {
38 if (i >= (ssize_t) ((PAGE_SIZE/sizeof(char)) -
39 CPUIDLE_NAME_LEN - 2))
41 i += scnprintf(&buf[i], CPUIDLE_NAME_LEN, "%s ", tmp->name);
45 i+= sprintf(&buf[i], "\n");
46 mutex_unlock(&cpuidle_lock);
50 static ssize_t show_current_driver(struct device *dev,
51 struct device_attribute *attr,
55 struct cpuidle_driver *drv;
57 spin_lock(&cpuidle_driver_lock);
58 drv = cpuidle_get_driver();
60 ret = sprintf(buf, "%s\n", drv->name);
62 ret = sprintf(buf, "none\n");
63 spin_unlock(&cpuidle_driver_lock);
68 static ssize_t show_current_governor(struct device *dev,
69 struct device_attribute *attr,
74 mutex_lock(&cpuidle_lock);
75 if (cpuidle_curr_governor)
76 ret = sprintf(buf, "%s\n", cpuidle_curr_governor->name);
78 ret = sprintf(buf, "none\n");
79 mutex_unlock(&cpuidle_lock);
84 static ssize_t store_current_governor(struct device *dev,
85 struct device_attribute *attr,
86 const char *buf, size_t count)
88 char gov_name[CPUIDLE_NAME_LEN];
91 struct cpuidle_governor *gov;
93 if (!len || len >= sizeof(gov_name))
96 memcpy(gov_name, buf, len);
98 if (gov_name[len - 1] == '\n')
99 gov_name[--len] = '\0';
101 mutex_lock(&cpuidle_lock);
103 list_for_each_entry(gov, &cpuidle_governors, governor_list) {
104 if (strlen(gov->name) == len && !strcmp(gov->name, gov_name)) {
105 ret = cpuidle_switch_governor(gov);
110 mutex_unlock(&cpuidle_lock);
118 static DEVICE_ATTR(current_driver, 0444, show_current_driver, NULL);
119 static DEVICE_ATTR(current_governor_ro, 0444, show_current_governor, NULL);
121 static struct attribute *cpuidle_default_attrs[] = {
122 &dev_attr_current_driver.attr,
123 &dev_attr_current_governor_ro.attr,
127 static DEVICE_ATTR(available_governors, 0444, show_available_governors, NULL);
128 static DEVICE_ATTR(current_governor, 0644, show_current_governor,
129 store_current_governor);
131 static struct attribute *cpuidle_switch_attrs[] = {
132 &dev_attr_available_governors.attr,
133 &dev_attr_current_driver.attr,
134 &dev_attr_current_governor.attr,
138 static struct attribute_group cpuidle_attr_group = {
139 .attrs = cpuidle_default_attrs,
144 * cpuidle_add_interface - add CPU global sysfs attributes
146 int cpuidle_add_interface(struct device *dev)
149 cpuidle_attr_group.attrs = cpuidle_switch_attrs;
151 return sysfs_create_group(&dev->kobj, &cpuidle_attr_group);
155 * cpuidle_remove_interface - remove CPU global sysfs attributes
157 void cpuidle_remove_interface(struct device *dev)
159 sysfs_remove_group(&dev->kobj, &cpuidle_attr_group);
162 struct cpuidle_attr {
163 struct attribute attr;
164 ssize_t (*show)(struct cpuidle_device *, char *);
165 ssize_t (*store)(struct cpuidle_device *, const char *, size_t count);
168 #define define_one_ro(_name, show) \
169 static struct cpuidle_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
170 #define define_one_rw(_name, show, store) \
171 static struct cpuidle_attr attr_##_name = __ATTR(_name, 0644, show, store)
173 #define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr)
175 struct cpuidle_device_kobj {
176 struct cpuidle_device *dev;
177 struct completion kobj_unregister;
181 static inline struct cpuidle_device *to_cpuidle_device(struct kobject *kobj)
183 struct cpuidle_device_kobj *kdev =
184 container_of(kobj, struct cpuidle_device_kobj, kobj);
189 static ssize_t cpuidle_show(struct kobject *kobj, struct attribute *attr,
193 struct cpuidle_device *dev = to_cpuidle_device(kobj);
194 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
197 mutex_lock(&cpuidle_lock);
198 ret = cattr->show(dev, buf);
199 mutex_unlock(&cpuidle_lock);
204 static ssize_t cpuidle_store(struct kobject *kobj, struct attribute *attr,
205 const char *buf, size_t count)
208 struct cpuidle_device *dev = to_cpuidle_device(kobj);
209 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
212 mutex_lock(&cpuidle_lock);
213 ret = cattr->store(dev, buf, count);
214 mutex_unlock(&cpuidle_lock);
219 static const struct sysfs_ops cpuidle_sysfs_ops = {
220 .show = cpuidle_show,
221 .store = cpuidle_store,
224 static void cpuidle_sysfs_release(struct kobject *kobj)
226 struct cpuidle_device_kobj *kdev =
227 container_of(kobj, struct cpuidle_device_kobj, kobj);
229 complete(&kdev->kobj_unregister);
232 static struct kobj_type ktype_cpuidle = {
233 .sysfs_ops = &cpuidle_sysfs_ops,
234 .release = cpuidle_sysfs_release,
237 struct cpuidle_state_attr {
238 struct attribute attr;
239 ssize_t (*show)(struct cpuidle_state *, \
240 struct cpuidle_state_usage *, char *);
241 ssize_t (*store)(struct cpuidle_state *, \
242 struct cpuidle_state_usage *, const char *, size_t);
245 #define define_one_state_ro(_name, show) \
246 static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
248 #define define_one_state_rw(_name, show, store) \
249 static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store)
251 #define define_show_state_function(_name) \
252 static ssize_t show_state_##_name(struct cpuidle_state *state, \
253 struct cpuidle_state_usage *state_usage, char *buf) \
255 return sprintf(buf, "%u\n", state->_name);\
258 #define define_store_state_ull_function(_name) \
259 static ssize_t store_state_##_name(struct cpuidle_state *state, \
260 struct cpuidle_state_usage *state_usage, \
261 const char *buf, size_t size) \
263 unsigned long long value; \
265 if (!capable(CAP_SYS_ADMIN)) \
267 err = kstrtoull(buf, 0, &value); \
271 state_usage->_name = 1; \
273 state_usage->_name = 0; \
277 #define define_show_state_ull_function(_name) \
278 static ssize_t show_state_##_name(struct cpuidle_state *state, \
279 struct cpuidle_state_usage *state_usage, \
282 return sprintf(buf, "%llu\n", state_usage->_name);\
285 #define define_show_state_str_function(_name) \
286 static ssize_t show_state_##_name(struct cpuidle_state *state, \
287 struct cpuidle_state_usage *state_usage, \
290 if (state->_name[0] == '\0')\
291 return sprintf(buf, "<null>\n");\
292 return sprintf(buf, "%s\n", state->_name);\
295 define_show_state_function(exit_latency)
296 define_show_state_function(target_residency)
297 define_show_state_function(power_usage)
298 define_show_state_ull_function(usage)
299 define_show_state_ull_function(time)
300 define_show_state_str_function(name)
301 define_show_state_str_function(desc)
302 define_show_state_ull_function(disable)
303 define_store_state_ull_function(disable)
304 define_show_state_ull_function(above)
305 define_show_state_ull_function(below)
307 define_one_state_ro(name, show_state_name);
308 define_one_state_ro(desc, show_state_desc);
309 define_one_state_ro(latency, show_state_exit_latency);
310 define_one_state_ro(residency, show_state_target_residency);
311 define_one_state_ro(power, show_state_power_usage);
312 define_one_state_ro(usage, show_state_usage);
313 define_one_state_ro(time, show_state_time);
314 define_one_state_rw(disable, show_state_disable, store_state_disable);
315 define_one_state_ro(above, show_state_above);
316 define_one_state_ro(below, show_state_below);
318 static struct attribute *cpuidle_state_default_attrs[] = {
322 &attr_residency.attr,
332 struct cpuidle_state_kobj {
333 struct cpuidle_state *state;
334 struct cpuidle_state_usage *state_usage;
335 struct completion kobj_unregister;
339 #ifdef CONFIG_SUSPEND
340 #define define_show_state_s2idle_ull_function(_name) \
341 static ssize_t show_state_s2idle_##_name(struct cpuidle_state *state, \
342 struct cpuidle_state_usage *state_usage, \
345 return sprintf(buf, "%llu\n", state_usage->s2idle_##_name);\
348 define_show_state_s2idle_ull_function(usage);
349 define_show_state_s2idle_ull_function(time);
351 #define define_one_state_s2idle_ro(_name, show) \
352 static struct cpuidle_state_attr attr_s2idle_##_name = \
353 __ATTR(_name, 0444, show, NULL)
355 define_one_state_s2idle_ro(usage, show_state_s2idle_usage);
356 define_one_state_s2idle_ro(time, show_state_s2idle_time);
358 static struct attribute *cpuidle_state_s2idle_attrs[] = {
359 &attr_s2idle_usage.attr,
360 &attr_s2idle_time.attr,
364 static const struct attribute_group cpuidle_state_s2idle_group = {
366 .attrs = cpuidle_state_s2idle_attrs,
369 static void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
373 if (!kobj->state->enter_s2idle)
376 ret = sysfs_create_group(&kobj->kobj, &cpuidle_state_s2idle_group);
378 pr_debug("%s: sysfs attribute group not created\n", __func__);
381 static void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
383 if (kobj->state->enter_s2idle)
384 sysfs_remove_group(&kobj->kobj, &cpuidle_state_s2idle_group);
387 static inline void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
388 static inline void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
389 #endif /* CONFIG_SUSPEND */
391 #define kobj_to_state_obj(k) container_of(k, struct cpuidle_state_kobj, kobj)
392 #define kobj_to_state(k) (kobj_to_state_obj(k)->state)
393 #define kobj_to_state_usage(k) (kobj_to_state_obj(k)->state_usage)
394 #define attr_to_stateattr(a) container_of(a, struct cpuidle_state_attr, attr)
396 static ssize_t cpuidle_state_show(struct kobject *kobj, struct attribute *attr,
400 struct cpuidle_state *state = kobj_to_state(kobj);
401 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
402 struct cpuidle_state_attr * cattr = attr_to_stateattr(attr);
405 ret = cattr->show(state, state_usage, buf);
410 static ssize_t cpuidle_state_store(struct kobject *kobj, struct attribute *attr,
411 const char *buf, size_t size)
414 struct cpuidle_state *state = kobj_to_state(kobj);
415 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
416 struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
419 ret = cattr->store(state, state_usage, buf, size);
424 static const struct sysfs_ops cpuidle_state_sysfs_ops = {
425 .show = cpuidle_state_show,
426 .store = cpuidle_state_store,
429 static void cpuidle_state_sysfs_release(struct kobject *kobj)
431 struct cpuidle_state_kobj *state_obj = kobj_to_state_obj(kobj);
433 complete(&state_obj->kobj_unregister);
436 static struct kobj_type ktype_state_cpuidle = {
437 .sysfs_ops = &cpuidle_state_sysfs_ops,
438 .default_attrs = cpuidle_state_default_attrs,
439 .release = cpuidle_state_sysfs_release,
442 static inline void cpuidle_free_state_kobj(struct cpuidle_device *device, int i)
444 cpuidle_remove_s2idle_attr_group(device->kobjs[i]);
445 kobject_put(&device->kobjs[i]->kobj);
446 wait_for_completion(&device->kobjs[i]->kobj_unregister);
447 kfree(device->kobjs[i]);
448 device->kobjs[i] = NULL;
452 * cpuidle_add_state_sysfs - adds cpuidle states sysfs attributes
453 * @device: the target device
455 static int cpuidle_add_state_sysfs(struct cpuidle_device *device)
457 int i, ret = -ENOMEM;
458 struct cpuidle_state_kobj *kobj;
459 struct cpuidle_device_kobj *kdev = device->kobj_dev;
460 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
462 /* state statistics */
463 for (i = 0; i < drv->state_count; i++) {
464 kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL);
469 kobj->state = &drv->states[i];
470 kobj->state_usage = &device->states_usage[i];
471 init_completion(&kobj->kobj_unregister);
473 ret = kobject_init_and_add(&kobj->kobj, &ktype_state_cpuidle,
474 &kdev->kobj, "state%d", i);
479 cpuidle_add_s2idle_attr_group(kobj);
480 kobject_uevent(&kobj->kobj, KOBJ_ADD);
481 device->kobjs[i] = kobj;
487 for (i = i - 1; i >= 0; i--)
488 cpuidle_free_state_kobj(device, i);
493 * cpuidle_remove_driver_sysfs - removes the cpuidle states sysfs attributes
494 * @device: the target device
496 static void cpuidle_remove_state_sysfs(struct cpuidle_device *device)
498 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
501 for (i = 0; i < drv->state_count; i++)
502 cpuidle_free_state_kobj(device, i);
505 #ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS
506 #define kobj_to_driver_kobj(k) container_of(k, struct cpuidle_driver_kobj, kobj)
507 #define attr_to_driver_attr(a) container_of(a, struct cpuidle_driver_attr, attr)
509 #define define_one_driver_ro(_name, show) \
510 static struct cpuidle_driver_attr attr_driver_##_name = \
511 __ATTR(_name, 0444, show, NULL)
513 struct cpuidle_driver_kobj {
514 struct cpuidle_driver *drv;
515 struct completion kobj_unregister;
519 struct cpuidle_driver_attr {
520 struct attribute attr;
521 ssize_t (*show)(struct cpuidle_driver *, char *);
522 ssize_t (*store)(struct cpuidle_driver *, const char *, size_t);
525 static ssize_t show_driver_name(struct cpuidle_driver *drv, char *buf)
529 spin_lock(&cpuidle_driver_lock);
530 ret = sprintf(buf, "%s\n", drv ? drv->name : "none");
531 spin_unlock(&cpuidle_driver_lock);
536 static void cpuidle_driver_sysfs_release(struct kobject *kobj)
538 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
539 complete(&driver_kobj->kobj_unregister);
542 static ssize_t cpuidle_driver_show(struct kobject *kobj, struct attribute *attr,
546 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
547 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
550 ret = dattr->show(driver_kobj->drv, buf);
555 static ssize_t cpuidle_driver_store(struct kobject *kobj, struct attribute *attr,
556 const char *buf, size_t size)
559 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
560 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
563 ret = dattr->store(driver_kobj->drv, buf, size);
568 define_one_driver_ro(name, show_driver_name);
570 static const struct sysfs_ops cpuidle_driver_sysfs_ops = {
571 .show = cpuidle_driver_show,
572 .store = cpuidle_driver_store,
575 static struct attribute *cpuidle_driver_default_attrs[] = {
576 &attr_driver_name.attr,
580 static struct kobj_type ktype_driver_cpuidle = {
581 .sysfs_ops = &cpuidle_driver_sysfs_ops,
582 .default_attrs = cpuidle_driver_default_attrs,
583 .release = cpuidle_driver_sysfs_release,
587 * cpuidle_add_driver_sysfs - adds the driver name sysfs attribute
588 * @device: the target device
590 static int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
592 struct cpuidle_driver_kobj *kdrv;
593 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
594 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
597 kdrv = kzalloc(sizeof(*kdrv), GFP_KERNEL);
602 init_completion(&kdrv->kobj_unregister);
604 ret = kobject_init_and_add(&kdrv->kobj, &ktype_driver_cpuidle,
605 &kdev->kobj, "driver");
611 kobject_uevent(&kdrv->kobj, KOBJ_ADD);
612 dev->kobj_driver = kdrv;
618 * cpuidle_remove_driver_sysfs - removes the driver name sysfs attribute
619 * @device: the target device
621 static void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
623 struct cpuidle_driver_kobj *kdrv = dev->kobj_driver;
624 kobject_put(&kdrv->kobj);
625 wait_for_completion(&kdrv->kobj_unregister);
629 static inline int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
634 static inline void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
641 * cpuidle_add_device_sysfs - adds device specific sysfs attributes
642 * @device: the target device
644 int cpuidle_add_device_sysfs(struct cpuidle_device *device)
648 ret = cpuidle_add_state_sysfs(device);
652 ret = cpuidle_add_driver_sysfs(device);
654 cpuidle_remove_state_sysfs(device);
659 * cpuidle_remove_device_sysfs : removes device specific sysfs attributes
660 * @device : the target device
662 void cpuidle_remove_device_sysfs(struct cpuidle_device *device)
664 cpuidle_remove_driver_sysfs(device);
665 cpuidle_remove_state_sysfs(device);
669 * cpuidle_add_sysfs - creates a sysfs instance for the target device
670 * @dev: the target device
672 int cpuidle_add_sysfs(struct cpuidle_device *dev)
674 struct cpuidle_device_kobj *kdev;
675 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
679 * Return if cpu_device is not setup for this CPU.
681 * This could happen if the arch did not set up cpu_device
682 * since this CPU is not in cpu_present mask and the
683 * driver did not send a correct CPU mask during registration.
684 * Without this check we would end up passing bogus
685 * value for &cpu_dev->kobj in kobject_init_and_add()
690 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
694 dev->kobj_dev = kdev;
696 init_completion(&kdev->kobj_unregister);
698 error = kobject_init_and_add(&kdev->kobj, &ktype_cpuidle, &cpu_dev->kobj,
705 kobject_uevent(&kdev->kobj, KOBJ_ADD);
711 * cpuidle_remove_sysfs - deletes a sysfs instance on the target device
712 * @dev: the target device
714 void cpuidle_remove_sysfs(struct cpuidle_device *dev)
716 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
718 kobject_put(&kdev->kobj);
719 wait_for_completion(&kdev->kobj_unregister);