blob: 2bb2683b493cf7a1769146a6d19ecb3d7f748f7b [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>
Daniel Lezcano728ce222013-06-12 15:08:51 +020014#include <linux/completion.h>
ShuoX Liu3a533962012-03-28 15:19:11 -070015#include <linux/capability.h>
Daniel Lezcano8f3e9952012-10-31 01:09:02 +010016#include <linux/device.h>
Daniel Lezcano728ce222013-06-12 15:08:51 +020017#include <linux/kobject.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040018
19#include "cpuidle.h"
20
21static unsigned int sysfs_switch;
22static int __init cpuidle_sysfs_setup(char *unused)
23{
24 sysfs_switch = 1;
25 return 1;
26}
27__setup("cpuidle_sysfs_switch", cpuidle_sysfs_setup);
28
Kay Sievers8a25a2f2011-12-21 14:29:42 -080029static ssize_t show_available_governors(struct device *dev,
30 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070031 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040032{
33 ssize_t i = 0;
34 struct cpuidle_governor *tmp;
35
36 mutex_lock(&cpuidle_lock);
37 list_for_each_entry(tmp, &cpuidle_governors, governor_list) {
Daniel Lezcanof89ae892013-06-12 15:08:50 +020038 if (i >= (ssize_t) ((PAGE_SIZE/sizeof(char)) -
39 CPUIDLE_NAME_LEN - 2))
Len Brown4f86d3a2007-10-03 18:58:00 -040040 goto out;
41 i += scnprintf(&buf[i], CPUIDLE_NAME_LEN, "%s ", tmp->name);
42 }
43
44out:
45 i+= sprintf(&buf[i], "\n");
46 mutex_unlock(&cpuidle_lock);
47 return i;
48}
49
Kay Sievers8a25a2f2011-12-21 14:29:42 -080050static ssize_t show_current_driver(struct device *dev,
51 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070052 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040053{
54 ssize_t ret;
Viresh Kumar1f6b9f72013-10-03 21:26:51 +053055 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -040056
57 spin_lock(&cpuidle_driver_lock);
Viresh Kumar1f6b9f72013-10-03 21:26:51 +053058 drv = cpuidle_get_driver();
59 if (drv)
60 ret = sprintf(buf, "%s\n", drv->name);
Len Brown4f86d3a2007-10-03 18:58:00 -040061 else
62 ret = sprintf(buf, "none\n");
63 spin_unlock(&cpuidle_driver_lock);
64
65 return ret;
66}
67
Kay Sievers8a25a2f2011-12-21 14:29:42 -080068static ssize_t show_current_governor(struct device *dev,
69 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070070 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040071{
72 ssize_t ret;
73
74 mutex_lock(&cpuidle_lock);
75 if (cpuidle_curr_governor)
76 ret = sprintf(buf, "%s\n", cpuidle_curr_governor->name);
77 else
78 ret = sprintf(buf, "none\n");
79 mutex_unlock(&cpuidle_lock);
80
81 return ret;
82}
83
Kay Sievers8a25a2f2011-12-21 14:29:42 -080084static ssize_t store_current_governor(struct device *dev,
85 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070086 const char *buf, size_t count)
Len Brown4f86d3a2007-10-03 18:58:00 -040087{
88 char gov_name[CPUIDLE_NAME_LEN];
89 int ret = -EINVAL;
90 size_t len = count;
91 struct cpuidle_governor *gov;
92
93 if (!len || len >= sizeof(gov_name))
94 return -EINVAL;
95
96 memcpy(gov_name, buf, len);
97 gov_name[len] = '\0';
98 if (gov_name[len - 1] == '\n')
99 gov_name[--len] = '\0';
100
101 mutex_lock(&cpuidle_lock);
102
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);
106 break;
107 }
108 }
109
110 mutex_unlock(&cpuidle_lock);
111
112 if (ret)
113 return ret;
114 else
115 return count;
116}
117
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800118static DEVICE_ATTR(current_driver, 0444, show_current_driver, NULL);
119static DEVICE_ATTR(current_governor_ro, 0444, show_current_governor, NULL);
Len Brown4f86d3a2007-10-03 18:58:00 -0400120
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800121static struct attribute *cpuidle_default_attrs[] = {
122 &dev_attr_current_driver.attr,
123 &dev_attr_current_governor_ro.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400124 NULL
125};
126
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800127static DEVICE_ATTR(available_governors, 0444, show_available_governors, NULL);
128static DEVICE_ATTR(current_governor, 0644, show_current_governor,
129 store_current_governor);
Len Brown4f86d3a2007-10-03 18:58:00 -0400130
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800131static struct attribute *cpuidle_switch_attrs[] = {
132 &dev_attr_available_governors.attr,
133 &dev_attr_current_driver.attr,
134 &dev_attr_current_governor.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400135 NULL
136};
137
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800138static struct attribute_group cpuidle_attr_group = {
139 .attrs = cpuidle_default_attrs,
Len Brown4f86d3a2007-10-03 18:58:00 -0400140 .name = "cpuidle",
141};
142
143/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800144 * cpuidle_add_interface - add CPU global sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400145 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800146int cpuidle_add_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400147{
148 if (sysfs_switch)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800149 cpuidle_attr_group.attrs = cpuidle_switch_attrs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400150
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800151 return sysfs_create_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400152}
153
154/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800155 * cpuidle_remove_interface - remove CPU global sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400156 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800157void cpuidle_remove_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400158{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800159 sysfs_remove_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400160}
161
162struct 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);
166};
167
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)
172
Len Brown4f86d3a2007-10-03 18:58:00 -0400173#define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr)
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200174
Daniel Lezcano728ce222013-06-12 15:08:51 +0200175struct cpuidle_device_kobj {
176 struct cpuidle_device *dev;
177 struct completion kobj_unregister;
178 struct kobject kobj;
179};
180
181static inline struct cpuidle_device *to_cpuidle_device(struct kobject *kobj)
182{
183 struct cpuidle_device_kobj *kdev =
184 container_of(kobj, struct cpuidle_device_kobj, kobj);
185
186 return kdev->dev;
187}
188
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200189static ssize_t cpuidle_show(struct kobject *kobj, struct attribute *attr,
190 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -0400191{
192 int ret = -EIO;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200193 struct cpuidle_device *dev = to_cpuidle_device(kobj);
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200194 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
Len Brown4f86d3a2007-10-03 18:58:00 -0400195
196 if (cattr->show) {
197 mutex_lock(&cpuidle_lock);
198 ret = cattr->show(dev, buf);
199 mutex_unlock(&cpuidle_lock);
200 }
201 return ret;
202}
203
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200204static ssize_t cpuidle_store(struct kobject *kobj, struct attribute *attr,
205 const char *buf, size_t count)
Len Brown4f86d3a2007-10-03 18:58:00 -0400206{
207 int ret = -EIO;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200208 struct cpuidle_device *dev = to_cpuidle_device(kobj);
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200209 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
Len Brown4f86d3a2007-10-03 18:58:00 -0400210
211 if (cattr->store) {
212 mutex_lock(&cpuidle_lock);
213 ret = cattr->store(dev, buf, count);
214 mutex_unlock(&cpuidle_lock);
215 }
216 return ret;
217}
218
Emese Revfy52cf25d2010-01-19 02:58:23 +0100219static const struct sysfs_ops cpuidle_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400220 .show = cpuidle_show,
221 .store = cpuidle_store,
222};
223
224static void cpuidle_sysfs_release(struct kobject *kobj)
225{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200226 struct cpuidle_device_kobj *kdev =
227 container_of(kobj, struct cpuidle_device_kobj, kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400228
Daniel Lezcano728ce222013-06-12 15:08:51 +0200229 complete(&kdev->kobj_unregister);
Len Brown4f86d3a2007-10-03 18:58:00 -0400230}
231
232static struct kobj_type ktype_cpuidle = {
233 .sysfs_ops = &cpuidle_sysfs_ops,
234 .release = cpuidle_sysfs_release,
235};
236
237struct cpuidle_state_attr {
238 struct attribute attr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530239 ssize_t (*show)(struct cpuidle_state *, \
240 struct cpuidle_state_usage *, char *);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200241 ssize_t (*store)(struct cpuidle_state *, \
242 struct cpuidle_state_usage *, const char *, size_t);
Len Brown4f86d3a2007-10-03 18:58:00 -0400243};
244
245#define define_one_state_ro(_name, show) \
246static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
247
ShuoX Liu3a533962012-03-28 15:19:11 -0700248#define define_one_state_rw(_name, show, store) \
249static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store)
250
Len Brown4f86d3a2007-10-03 18:58:00 -0400251#define define_show_state_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530252static ssize_t show_state_##_name(struct cpuidle_state *state, \
253 struct cpuidle_state_usage *state_usage, char *buf) \
Len Brown4f86d3a2007-10-03 18:58:00 -0400254{ \
255 return sprintf(buf, "%u\n", state->_name);\
256}
257
ShuoX Liudc7fd272012-07-03 19:05:31 +0200258#define define_store_state_ull_function(_name) \
ShuoX Liu3a533962012-03-28 15:19:11 -0700259static ssize_t store_state_##_name(struct cpuidle_state *state, \
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200260 struct cpuidle_state_usage *state_usage, \
261 const char *buf, size_t size) \
ShuoX Liu3a533962012-03-28 15:19:11 -0700262{ \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200263 unsigned long long value; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700264 int err; \
265 if (!capable(CAP_SYS_ADMIN)) \
266 return -EPERM; \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200267 err = kstrtoull(buf, 0, &value); \
ShuoX Liu3a533962012-03-28 15:19:11 -0700268 if (err) \
269 return err; \
270 if (value) \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200271 state_usage->_name = 1; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700272 else \
ShuoX Liudc7fd272012-07-03 19:05:31 +0200273 state_usage->_name = 0; \
ShuoX Liu3a533962012-03-28 15:19:11 -0700274 return size; \
275}
276
Yi Yang8b78cf62008-02-25 08:46:12 +0800277#define define_show_state_ull_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530278static ssize_t show_state_##_name(struct cpuidle_state *state, \
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200279 struct cpuidle_state_usage *state_usage, \
280 char *buf) \
Yi Yang8b78cf62008-02-25 08:46:12 +0800281{ \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530282 return sprintf(buf, "%llu\n", state_usage->_name);\
Yi Yang8b78cf62008-02-25 08:46:12 +0800283}
284
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800285#define define_show_state_str_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530286static ssize_t show_state_##_name(struct cpuidle_state *state, \
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200287 struct cpuidle_state_usage *state_usage, \
288 char *buf) \
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800289{ \
290 if (state->_name[0] == '\0')\
291 return sprintf(buf, "<null>\n");\
292 return sprintf(buf, "%s\n", state->_name);\
Len Brown4f86d3a2007-10-03 18:58:00 -0400293}
294
295define_show_state_function(exit_latency)
Daniel Lezcano9bc04822014-03-17 12:17:30 +0100296define_show_state_function(target_residency)
Len Brown4f86d3a2007-10-03 18:58:00 -0400297define_show_state_function(power_usage)
Yi Yang8b78cf62008-02-25 08:46:12 +0800298define_show_state_ull_function(usage)
299define_show_state_ull_function(time)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800300define_show_state_str_function(name)
301define_show_state_str_function(desc)
ShuoX Liudc7fd272012-07-03 19:05:31 +0200302define_show_state_ull_function(disable)
303define_store_state_ull_function(disable)
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100304define_show_state_ull_function(above)
305define_show_state_ull_function(below)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800306
Len Brown4f86d3a2007-10-03 18:58:00 -0400307define_one_state_ro(name, show_state_name);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800308define_one_state_ro(desc, show_state_desc);
Len Brown4f86d3a2007-10-03 18:58:00 -0400309define_one_state_ro(latency, show_state_exit_latency);
Daniel Lezcano9bc04822014-03-17 12:17:30 +0100310define_one_state_ro(residency, show_state_target_residency);
Len Brown4f86d3a2007-10-03 18:58:00 -0400311define_one_state_ro(power, show_state_power_usage);
312define_one_state_ro(usage, show_state_usage);
313define_one_state_ro(time, show_state_time);
ShuoX Liu3a533962012-03-28 15:19:11 -0700314define_one_state_rw(disable, show_state_disable, store_state_disable);
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100315define_one_state_ro(above, show_state_above);
316define_one_state_ro(below, show_state_below);
Len Brown4f86d3a2007-10-03 18:58:00 -0400317
318static struct attribute *cpuidle_state_default_attrs[] = {
319 &attr_name.attr,
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800320 &attr_desc.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400321 &attr_latency.attr,
Daniel Lezcano9bc04822014-03-17 12:17:30 +0100322 &attr_residency.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400323 &attr_power.attr,
324 &attr_usage.attr,
325 &attr_time.attr,
ShuoX Liu3a533962012-03-28 15:19:11 -0700326 &attr_disable.attr,
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100327 &attr_above.attr,
328 &attr_below.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400329 NULL
330};
331
Daniel Lezcano349631e2012-10-31 01:05:16 +0100332struct cpuidle_state_kobj {
333 struct cpuidle_state *state;
334 struct cpuidle_state_usage *state_usage;
335 struct completion kobj_unregister;
336 struct kobject kobj;
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300337 struct cpuidle_device *device;
Daniel Lezcano349631e2012-10-31 01:05:16 +0100338};
339
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100340#ifdef CONFIG_SUSPEND
341#define define_show_state_s2idle_ull_function(_name) \
342static ssize_t show_state_s2idle_##_name(struct cpuidle_state *state, \
343 struct cpuidle_state_usage *state_usage, \
344 char *buf) \
345{ \
346 return sprintf(buf, "%llu\n", state_usage->s2idle_##_name);\
347}
348
349define_show_state_s2idle_ull_function(usage);
350define_show_state_s2idle_ull_function(time);
351
352#define define_one_state_s2idle_ro(_name, show) \
353static struct cpuidle_state_attr attr_s2idle_##_name = \
354 __ATTR(_name, 0444, show, NULL)
355
356define_one_state_s2idle_ro(usage, show_state_s2idle_usage);
357define_one_state_s2idle_ro(time, show_state_s2idle_time);
358
359static struct attribute *cpuidle_state_s2idle_attrs[] = {
360 &attr_s2idle_usage.attr,
361 &attr_s2idle_time.attr,
362 NULL
363};
364
365static const struct attribute_group cpuidle_state_s2idle_group = {
366 .name = "s2idle",
367 .attrs = cpuidle_state_s2idle_attrs,
368};
369
370static void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
371{
372 int ret;
373
374 if (!kobj->state->enter_s2idle)
375 return;
376
377 ret = sysfs_create_group(&kobj->kobj, &cpuidle_state_s2idle_group);
378 if (ret)
379 pr_debug("%s: sysfs attribute group not created\n", __func__);
380}
381
382static void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
383{
384 if (kobj->state->enter_s2idle)
385 sysfs_remove_group(&kobj->kobj, &cpuidle_state_s2idle_group);
386}
387#else
388static inline void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
389static inline void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
390#endif /* CONFIG_SUSPEND */
391
Len Brown4f86d3a2007-10-03 18:58:00 -0400392#define kobj_to_state_obj(k) container_of(k, struct cpuidle_state_kobj, kobj)
393#define kobj_to_state(k) (kobj_to_state_obj(k)->state)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530394#define kobj_to_state_usage(k) (kobj_to_state_obj(k)->state_usage)
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300395#define kobj_to_device(k) (kobj_to_state_obj(k)->device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400396#define attr_to_stateattr(a) container_of(a, struct cpuidle_state_attr, attr)
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200397
398static ssize_t cpuidle_state_show(struct kobject *kobj, struct attribute *attr,
399 char * buf)
Len Brown4f86d3a2007-10-03 18:58:00 -0400400{
401 int ret = -EIO;
402 struct cpuidle_state *state = kobj_to_state(kobj);
Deepthi Dharwar42027352011-10-28 16:20:33 +0530403 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400404 struct cpuidle_state_attr * cattr = attr_to_stateattr(attr);
405
406 if (cattr->show)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530407 ret = cattr->show(state, state_usage, buf);
Len Brown4f86d3a2007-10-03 18:58:00 -0400408
409 return ret;
410}
411
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200412static ssize_t cpuidle_state_store(struct kobject *kobj, struct attribute *attr,
413 const char *buf, size_t size)
ShuoX Liu3a533962012-03-28 15:19:11 -0700414{
415 int ret = -EIO;
416 struct cpuidle_state *state = kobj_to_state(kobj);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200417 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
ShuoX Liu3a533962012-03-28 15:19:11 -0700418 struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300419 struct cpuidle_device *dev = kobj_to_device(kobj);
ShuoX Liu3a533962012-03-28 15:19:11 -0700420
421 if (cattr->store)
ShuoX Liudc7fd272012-07-03 19:05:31 +0200422 ret = cattr->store(state, state_usage, buf, size);
ShuoX Liu3a533962012-03-28 15:19:11 -0700423
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300424 /* reset poll time cache */
425 dev->poll_limit_ns = 0;
426
ShuoX Liu3a533962012-03-28 15:19:11 -0700427 return ret;
428}
429
Emese Revfy52cf25d2010-01-19 02:58:23 +0100430static const struct sysfs_ops cpuidle_state_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400431 .show = cpuidle_state_show,
ShuoX Liu3a533962012-03-28 15:19:11 -0700432 .store = cpuidle_state_store,
Len Brown4f86d3a2007-10-03 18:58:00 -0400433};
434
435static void cpuidle_state_sysfs_release(struct kobject *kobj)
436{
437 struct cpuidle_state_kobj *state_obj = kobj_to_state_obj(kobj);
438
439 complete(&state_obj->kobj_unregister);
440}
441
442static struct kobj_type ktype_state_cpuidle = {
443 .sysfs_ops = &cpuidle_state_sysfs_ops,
444 .default_attrs = cpuidle_state_default_attrs,
445 .release = cpuidle_state_sysfs_release,
446};
447
Jesper Juhl42b16b32011-01-17 00:09:38 +0100448static inline void cpuidle_free_state_kobj(struct cpuidle_device *device, int i)
Len Brown4f86d3a2007-10-03 18:58:00 -0400449{
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100450 cpuidle_remove_s2idle_attr_group(device->kobjs[i]);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800451 kobject_put(&device->kobjs[i]->kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400452 wait_for_completion(&device->kobjs[i]->kobj_unregister);
453 kfree(device->kobjs[i]);
454 device->kobjs[i] = NULL;
455}
456
457/**
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000458 * cpuidle_add_state_sysfs - adds cpuidle states sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400459 * @device: the target device
460 */
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000461static int cpuidle_add_state_sysfs(struct cpuidle_device *device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400462{
463 int i, ret = -ENOMEM;
464 struct cpuidle_state_kobj *kobj;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200465 struct cpuidle_device_kobj *kdev = device->kobj_dev;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000466 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
Len Brown4f86d3a2007-10-03 18:58:00 -0400467
468 /* state statistics */
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200469 for (i = 0; i < drv->state_count; i++) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400470 kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL);
Pan Bian8f6040c2016-12-03 23:02:27 +0800471 if (!kobj) {
472 ret = -ENOMEM;
Len Brown4f86d3a2007-10-03 18:58:00 -0400473 goto error_state;
Pan Bian8f6040c2016-12-03 23:02:27 +0800474 }
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530475 kobj->state = &drv->states[i];
Deepthi Dharwar42027352011-10-28 16:20:33 +0530476 kobj->state_usage = &device->states_usage[i];
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300477 kobj->device = device;
Len Brown4f86d3a2007-10-03 18:58:00 -0400478 init_completion(&kobj->kobj_unregister);
479
Daniel Lezcanoe45a00d2012-10-26 12:26:32 +0200480 ret = kobject_init_and_add(&kobj->kobj, &ktype_state_cpuidle,
Daniel Lezcano728ce222013-06-12 15:08:51 +0200481 &kdev->kobj, "state%d", i);
Len Brown4f86d3a2007-10-03 18:58:00 -0400482 if (ret) {
483 kfree(kobj);
484 goto error_state;
485 }
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100486 cpuidle_add_s2idle_attr_group(kobj);
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400487 kobject_uevent(&kobj->kobj, KOBJ_ADD);
Len Brown4f86d3a2007-10-03 18:58:00 -0400488 device->kobjs[i] = kobj;
489 }
490
491 return 0;
492
493error_state:
494 for (i = i - 1; i >= 0; i--)
495 cpuidle_free_state_kobj(device, i);
496 return ret;
497}
498
499/**
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000500 * cpuidle_remove_driver_sysfs - removes the cpuidle states sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400501 * @device: the target device
502 */
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000503static void cpuidle_remove_state_sysfs(struct cpuidle_device *device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400504{
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200505 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
Len Brown4f86d3a2007-10-03 18:58:00 -0400506 int i;
507
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200508 for (i = 0; i < drv->state_count; i++)
Len Brown4f86d3a2007-10-03 18:58:00 -0400509 cpuidle_free_state_kobj(device, i);
510}
511
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000512#ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS
513#define kobj_to_driver_kobj(k) container_of(k, struct cpuidle_driver_kobj, kobj)
514#define attr_to_driver_attr(a) container_of(a, struct cpuidle_driver_attr, attr)
515
516#define define_one_driver_ro(_name, show) \
517 static struct cpuidle_driver_attr attr_driver_##_name = \
Mohammad Merajul Islam Molla4f8eea92014-07-12 19:29:22 +0600518 __ATTR(_name, 0444, show, NULL)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000519
520struct cpuidle_driver_kobj {
521 struct cpuidle_driver *drv;
522 struct completion kobj_unregister;
523 struct kobject kobj;
524};
525
526struct cpuidle_driver_attr {
527 struct attribute attr;
528 ssize_t (*show)(struct cpuidle_driver *, char *);
529 ssize_t (*store)(struct cpuidle_driver *, const char *, size_t);
530};
531
532static ssize_t show_driver_name(struct cpuidle_driver *drv, char *buf)
533{
534 ssize_t ret;
535
536 spin_lock(&cpuidle_driver_lock);
537 ret = sprintf(buf, "%s\n", drv ? drv->name : "none");
538 spin_unlock(&cpuidle_driver_lock);
539
540 return ret;
541}
542
543static void cpuidle_driver_sysfs_release(struct kobject *kobj)
544{
545 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
546 complete(&driver_kobj->kobj_unregister);
547}
548
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200549static ssize_t cpuidle_driver_show(struct kobject *kobj, struct attribute *attr,
550 char *buf)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000551{
552 int ret = -EIO;
553 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
554 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
555
556 if (dattr->show)
557 ret = dattr->show(driver_kobj->drv, buf);
558
559 return ret;
560}
561
562static ssize_t cpuidle_driver_store(struct kobject *kobj, struct attribute *attr,
563 const char *buf, size_t size)
564{
565 int ret = -EIO;
566 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
567 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
568
569 if (dattr->store)
570 ret = dattr->store(driver_kobj->drv, buf, size);
571
572 return ret;
573}
574
575define_one_driver_ro(name, show_driver_name);
576
577static const struct sysfs_ops cpuidle_driver_sysfs_ops = {
578 .show = cpuidle_driver_show,
579 .store = cpuidle_driver_store,
580};
581
582static struct attribute *cpuidle_driver_default_attrs[] = {
583 &attr_driver_name.attr,
584 NULL
585};
586
587static struct kobj_type ktype_driver_cpuidle = {
588 .sysfs_ops = &cpuidle_driver_sysfs_ops,
589 .default_attrs = cpuidle_driver_default_attrs,
590 .release = cpuidle_driver_sysfs_release,
591};
592
593/**
594 * cpuidle_add_driver_sysfs - adds the driver name sysfs attribute
595 * @device: the target device
596 */
597static int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
598{
599 struct cpuidle_driver_kobj *kdrv;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200600 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000601 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
602 int ret;
603
604 kdrv = kzalloc(sizeof(*kdrv), GFP_KERNEL);
605 if (!kdrv)
606 return -ENOMEM;
607
608 kdrv->drv = drv;
609 init_completion(&kdrv->kobj_unregister);
610
611 ret = kobject_init_and_add(&kdrv->kobj, &ktype_driver_cpuidle,
Daniel Lezcano728ce222013-06-12 15:08:51 +0200612 &kdev->kobj, "driver");
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000613 if (ret) {
614 kfree(kdrv);
615 return ret;
616 }
617
618 kobject_uevent(&kdrv->kobj, KOBJ_ADD);
619 dev->kobj_driver = kdrv;
620
621 return ret;
622}
623
624/**
625 * cpuidle_remove_driver_sysfs - removes the driver name sysfs attribute
626 * @device: the target device
627 */
628static void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
629{
630 struct cpuidle_driver_kobj *kdrv = dev->kobj_driver;
631 kobject_put(&kdrv->kobj);
632 wait_for_completion(&kdrv->kobj_unregister);
633 kfree(kdrv);
634}
635#else
636static inline int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
637{
638 return 0;
639}
640
641static inline void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
642{
643 ;
644}
645#endif
646
647/**
648 * cpuidle_add_device_sysfs - adds device specific sysfs attributes
649 * @device: the target device
650 */
651int cpuidle_add_device_sysfs(struct cpuidle_device *device)
652{
653 int ret;
654
655 ret = cpuidle_add_state_sysfs(device);
656 if (ret)
657 return ret;
658
659 ret = cpuidle_add_driver_sysfs(device);
660 if (ret)
661 cpuidle_remove_state_sysfs(device);
662 return ret;
663}
664
665/**
666 * cpuidle_remove_device_sysfs : removes device specific sysfs attributes
667 * @device : the target device
668 */
669void cpuidle_remove_device_sysfs(struct cpuidle_device *device)
670{
671 cpuidle_remove_driver_sysfs(device);
672 cpuidle_remove_state_sysfs(device);
673}
674
Len Brown4f86d3a2007-10-03 18:58:00 -0400675/**
676 * cpuidle_add_sysfs - creates a sysfs instance for the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800677 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400678 */
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200679int cpuidle_add_sysfs(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400680{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200681 struct cpuidle_device_kobj *kdev;
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200682 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400683 int error;
Len Brown4f86d3a2007-10-03 18:58:00 -0400684
Vaidyanathan Srinivasanad0a45f2017-03-19 00:51:59 +0530685 /*
686 * Return if cpu_device is not setup for this CPU.
687 *
688 * This could happen if the arch did not set up cpu_device
689 * since this CPU is not in cpu_present mask and the
690 * driver did not send a correct CPU mask during registration.
691 * Without this check we would end up passing bogus
692 * value for &cpu_dev->kobj in kobject_init_and_add()
693 */
694 if (!cpu_dev)
695 return -ENODEV;
696
Daniel Lezcano728ce222013-06-12 15:08:51 +0200697 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
698 if (!kdev)
699 return -ENOMEM;
700 kdev->dev = dev;
701 dev->kobj_dev = kdev;
Daniel Lezcanoe45a00d2012-10-26 12:26:32 +0200702
Daniel Lezcano728ce222013-06-12 15:08:51 +0200703 init_completion(&kdev->kobj_unregister);
704
705 error = kobject_init_and_add(&kdev->kobj, &ktype_cpuidle, &cpu_dev->kobj,
706 "cpuidle");
707 if (error) {
708 kfree(kdev);
709 return error;
710 }
711
712 kobject_uevent(&kdev->kobj, KOBJ_ADD);
713
714 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400715}
716
717/**
718 * cpuidle_remove_sysfs - deletes a sysfs instance on the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800719 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400720 */
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200721void cpuidle_remove_sysfs(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400722{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200723 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
724
725 kobject_put(&kdev->kobj);
726 wait_for_completion(&kdev->kobj_unregister);
727 kfree(kdev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400728}