blob: 53ec9585ccd448eda6f8955553642d337745cef7 [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 Liu3a53396b2012-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
Kay Sievers8a25a2f2011-12-21 14:29:42 -080021static ssize_t show_available_governors(struct device *dev,
22 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070023 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040024{
25 ssize_t i = 0;
26 struct cpuidle_governor *tmp;
27
28 mutex_lock(&cpuidle_lock);
29 list_for_each_entry(tmp, &cpuidle_governors, governor_list) {
Hanjun Guo3f9f8da2020-05-19 14:25:20 +080030 if (i >= (ssize_t) (PAGE_SIZE - (CPUIDLE_NAME_LEN + 2)))
Len Brown4f86d3a2007-10-03 18:58:00 -040031 goto out;
Hanjun Guo3f9f8da2020-05-19 14:25:20 +080032
33 i += scnprintf(&buf[i], CPUIDLE_NAME_LEN + 1, "%s ", tmp->name);
Len Brown4f86d3a2007-10-03 18:58:00 -040034 }
35
36out:
37 i+= sprintf(&buf[i], "\n");
38 mutex_unlock(&cpuidle_lock);
39 return i;
40}
41
Kay Sievers8a25a2f2011-12-21 14:29:42 -080042static ssize_t show_current_driver(struct device *dev,
43 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070044 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040045{
46 ssize_t ret;
Viresh Kumar1f6b9f72013-10-03 21:26:51 +053047 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -040048
49 spin_lock(&cpuidle_driver_lock);
Viresh Kumar1f6b9f72013-10-03 21:26:51 +053050 drv = cpuidle_get_driver();
51 if (drv)
52 ret = sprintf(buf, "%s\n", drv->name);
Len Brown4f86d3a2007-10-03 18:58:00 -040053 else
54 ret = sprintf(buf, "none\n");
55 spin_unlock(&cpuidle_driver_lock);
56
57 return ret;
58}
59
Kay Sievers8a25a2f2011-12-21 14:29:42 -080060static ssize_t show_current_governor(struct device *dev,
61 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070062 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -040063{
64 ssize_t ret;
65
66 mutex_lock(&cpuidle_lock);
67 if (cpuidle_curr_governor)
68 ret = sprintf(buf, "%s\n", cpuidle_curr_governor->name);
69 else
70 ret = sprintf(buf, "none\n");
71 mutex_unlock(&cpuidle_lock);
72
73 return ret;
74}
75
Kay Sievers8a25a2f2011-12-21 14:29:42 -080076static ssize_t store_current_governor(struct device *dev,
77 struct device_attribute *attr,
Rabin Vincent66198f32008-08-12 15:08:45 -070078 const char *buf, size_t count)
Len Brown4f86d3a2007-10-03 18:58:00 -040079{
Hanjun Guoef7e7d62020-05-19 14:25:21 +080080 char gov_name[CPUIDLE_NAME_LEN + 1];
81 int ret;
Len Brown4f86d3a2007-10-03 18:58:00 -040082 struct cpuidle_governor *gov;
83
Hanjun Guoef7e7d62020-05-19 14:25:21 +080084 ret = sscanf(buf, "%" __stringify(CPUIDLE_NAME_LEN) "s", gov_name);
85 if (ret != 1)
Len Brown4f86d3a2007-10-03 18:58:00 -040086 return -EINVAL;
87
Len Brown4f86d3a2007-10-03 18:58:00 -040088 mutex_lock(&cpuidle_lock);
Hanjun Guoef7e7d62020-05-19 14:25:21 +080089 ret = -EINVAL;
Len Brown4f86d3a2007-10-03 18:58:00 -040090 list_for_each_entry(gov, &cpuidle_governors, governor_list) {
Hanjun Guoef7e7d62020-05-19 14:25:21 +080091 if (!strncmp(gov->name, gov_name, CPUIDLE_NAME_LEN)) {
Len Brown4f86d3a2007-10-03 18:58:00 -040092 ret = cpuidle_switch_governor(gov);
93 break;
94 }
95 }
Len Brown4f86d3a2007-10-03 18:58:00 -040096 mutex_unlock(&cpuidle_lock);
97
Hanjun Guoef7e7d62020-05-19 14:25:21 +080098 return ret ? ret : count;
Len Brown4f86d3a2007-10-03 18:58:00 -040099}
100
Hanjun Guob52e93e2020-05-19 14:25:22 +0800101static DEVICE_ATTR(available_governors, 0444, show_available_governors, NULL);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800102static DEVICE_ATTR(current_driver, 0444, show_current_driver, NULL);
Hanjun Guob52e93e2020-05-19 14:25:22 +0800103static DEVICE_ATTR(current_governor, 0644, show_current_governor,
104 store_current_governor);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800105static DEVICE_ATTR(current_governor_ro, 0444, show_current_governor, NULL);
Len Brown4f86d3a2007-10-03 18:58:00 -0400106
Hanjun Guocce55cc2020-05-19 14:25:23 +0800107static struct attribute *cpuidle_attrs[] = {
Hanjun Guob52e93e2020-05-19 14:25:22 +0800108 &dev_attr_available_governors.attr,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800109 &dev_attr_current_driver.attr,
Hanjun Guob52e93e2020-05-19 14:25:22 +0800110 &dev_attr_current_governor.attr,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800111 &dev_attr_current_governor_ro.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400112 NULL
113};
114
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800115static struct attribute_group cpuidle_attr_group = {
Hanjun Guocce55cc2020-05-19 14:25:23 +0800116 .attrs = cpuidle_attrs,
Len Brown4f86d3a2007-10-03 18:58:00 -0400117 .name = "cpuidle",
118};
119
120/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800121 * cpuidle_add_interface - add CPU global sysfs attributes
Benjamin Gaignarda09da3f2020-01-20 14:33:59 +0100122 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400123 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800124int cpuidle_add_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400125{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800126 return sysfs_create_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400127}
128
129/**
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800130 * cpuidle_remove_interface - remove CPU global sysfs attributes
Benjamin Gaignarda09da3f2020-01-20 14:33:59 +0100131 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400132 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800133void cpuidle_remove_interface(struct device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400134{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800135 sysfs_remove_group(&dev->kobj, &cpuidle_attr_group);
Len Brown4f86d3a2007-10-03 18:58:00 -0400136}
137
138struct cpuidle_attr {
139 struct attribute attr;
140 ssize_t (*show)(struct cpuidle_device *, char *);
141 ssize_t (*store)(struct cpuidle_device *, const char *, size_t count);
142};
143
Len Brown4f86d3a2007-10-03 18:58:00 -0400144#define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr)
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200145
Daniel Lezcano728ce222013-06-12 15:08:51 +0200146struct cpuidle_device_kobj {
147 struct cpuidle_device *dev;
148 struct completion kobj_unregister;
149 struct kobject kobj;
150};
151
152static inline struct cpuidle_device *to_cpuidle_device(struct kobject *kobj)
153{
154 struct cpuidle_device_kobj *kdev =
155 container_of(kobj, struct cpuidle_device_kobj, kobj);
156
157 return kdev->dev;
158}
159
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200160static ssize_t cpuidle_show(struct kobject *kobj, struct attribute *attr,
161 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -0400162{
163 int ret = -EIO;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200164 struct cpuidle_device *dev = to_cpuidle_device(kobj);
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200165 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
Len Brown4f86d3a2007-10-03 18:58:00 -0400166
167 if (cattr->show) {
168 mutex_lock(&cpuidle_lock);
169 ret = cattr->show(dev, buf);
170 mutex_unlock(&cpuidle_lock);
171 }
172 return ret;
173}
174
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200175static ssize_t cpuidle_store(struct kobject *kobj, struct attribute *attr,
176 const char *buf, size_t count)
Len Brown4f86d3a2007-10-03 18:58:00 -0400177{
178 int ret = -EIO;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200179 struct cpuidle_device *dev = to_cpuidle_device(kobj);
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200180 struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr);
Len Brown4f86d3a2007-10-03 18:58:00 -0400181
182 if (cattr->store) {
183 mutex_lock(&cpuidle_lock);
184 ret = cattr->store(dev, buf, count);
185 mutex_unlock(&cpuidle_lock);
186 }
187 return ret;
188}
189
Emese Revfy52cf25d2010-01-19 02:58:23 +0100190static const struct sysfs_ops cpuidle_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400191 .show = cpuidle_show,
192 .store = cpuidle_store,
193};
194
195static void cpuidle_sysfs_release(struct kobject *kobj)
196{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200197 struct cpuidle_device_kobj *kdev =
198 container_of(kobj, struct cpuidle_device_kobj, kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400199
Daniel Lezcano728ce222013-06-12 15:08:51 +0200200 complete(&kdev->kobj_unregister);
Len Brown4f86d3a2007-10-03 18:58:00 -0400201}
202
203static struct kobj_type ktype_cpuidle = {
204 .sysfs_ops = &cpuidle_sysfs_ops,
205 .release = cpuidle_sysfs_release,
206};
207
208struct cpuidle_state_attr {
209 struct attribute attr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530210 ssize_t (*show)(struct cpuidle_state *, \
211 struct cpuidle_state_usage *, char *);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200212 ssize_t (*store)(struct cpuidle_state *, \
213 struct cpuidle_state_usage *, const char *, size_t);
Len Brown4f86d3a2007-10-03 18:58:00 -0400214};
215
216#define define_one_state_ro(_name, show) \
217static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL)
218
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700219#define define_one_state_rw(_name, show, store) \
220static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store)
221
Len Brown4f86d3a2007-10-03 18:58:00 -0400222#define define_show_state_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530223static ssize_t show_state_##_name(struct cpuidle_state *state, \
224 struct cpuidle_state_usage *state_usage, char *buf) \
Len Brown4f86d3a2007-10-03 18:58:00 -0400225{ \
226 return sprintf(buf, "%u\n", state->_name);\
227}
228
Yi Yang8b78cf62008-02-25 08:46:12 +0800229#define define_show_state_ull_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530230static ssize_t show_state_##_name(struct cpuidle_state *state, \
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200231 struct cpuidle_state_usage *state_usage, \
232 char *buf) \
Yi Yang8b78cf62008-02-25 08:46:12 +0800233{ \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530234 return sprintf(buf, "%llu\n", state_usage->_name);\
Yi Yang8b78cf62008-02-25 08:46:12 +0800235}
236
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800237#define define_show_state_str_function(_name) \
Deepthi Dharwar42027352011-10-28 16:20:33 +0530238static ssize_t show_state_##_name(struct cpuidle_state *state, \
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200239 struct cpuidle_state_usage *state_usage, \
240 char *buf) \
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800241{ \
242 if (state->_name[0] == '\0')\
243 return sprintf(buf, "<null>\n");\
244 return sprintf(buf, "%s\n", state->_name);\
Len Brown4f86d3a2007-10-03 18:58:00 -0400245}
246
Rafael J. Wysockic1d51f62019-11-07 15:25:12 +0100247#define define_show_state_time_function(_name) \
248static ssize_t show_state_##_name(struct cpuidle_state *state, \
249 struct cpuidle_state_usage *state_usage, \
250 char *buf) \
251{ \
252 return sprintf(buf, "%llu\n", ktime_to_us(state->_name##_ns)); \
253}
254
255define_show_state_time_function(exit_latency)
256define_show_state_time_function(target_residency)
Len Brown4f86d3a2007-10-03 18:58:00 -0400257define_show_state_function(power_usage)
Yi Yang8b78cf62008-02-25 08:46:12 +0800258define_show_state_ull_function(usage)
Lina Iyerf49735f2020-09-22 12:34:16 -0600259define_show_state_ull_function(rejected)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800260define_show_state_str_function(name)
261define_show_state_str_function(desc)
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100262define_show_state_ull_function(above)
263define_show_state_ull_function(below)
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800264
Rafael J. Wysockic1d51f62019-11-07 15:25:12 +0100265static ssize_t show_state_time(struct cpuidle_state *state,
266 struct cpuidle_state_usage *state_usage,
267 char *buf)
268{
269 return sprintf(buf, "%llu\n", ktime_to_us(state_usage->time_ns));
270}
271
Rafael J. Wysocki99e98d32019-11-04 12:16:17 +0100272static ssize_t show_state_disable(struct cpuidle_state *state,
273 struct cpuidle_state_usage *state_usage,
274 char *buf)
275{
276 return sprintf(buf, "%llu\n",
277 state_usage->disable & CPUIDLE_STATE_DISABLED_BY_USER);
278}
279
280static ssize_t store_state_disable(struct cpuidle_state *state,
281 struct cpuidle_state_usage *state_usage,
282 const char *buf, size_t size)
283{
284 unsigned int value;
285 int err;
286
287 if (!capable(CAP_SYS_ADMIN))
288 return -EPERM;
289
290 err = kstrtouint(buf, 0, &value);
291 if (err)
292 return err;
293
294 if (value)
295 state_usage->disable |= CPUIDLE_STATE_DISABLED_BY_USER;
296 else
297 state_usage->disable &= ~CPUIDLE_STATE_DISABLED_BY_USER;
298
299 return size;
300}
301
Rafael J. Wysocki75a80262019-12-13 09:56:13 +0100302static ssize_t show_state_default_status(struct cpuidle_state *state,
303 struct cpuidle_state_usage *state_usage,
304 char *buf)
305{
306 return sprintf(buf, "%s\n",
307 state->flags & CPUIDLE_FLAG_OFF ? "disabled" : "enabled");
308}
309
Len Brown4f86d3a2007-10-03 18:58:00 -0400310define_one_state_ro(name, show_state_name);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800311define_one_state_ro(desc, show_state_desc);
Len Brown4f86d3a2007-10-03 18:58:00 -0400312define_one_state_ro(latency, show_state_exit_latency);
Daniel Lezcano9bc04822014-03-17 12:17:30 +0100313define_one_state_ro(residency, show_state_target_residency);
Len Brown4f86d3a2007-10-03 18:58:00 -0400314define_one_state_ro(power, show_state_power_usage);
315define_one_state_ro(usage, show_state_usage);
Lina Iyerf49735f2020-09-22 12:34:16 -0600316define_one_state_ro(rejected, show_state_rejected);
Len Brown4f86d3a2007-10-03 18:58:00 -0400317define_one_state_ro(time, show_state_time);
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700318define_one_state_rw(disable, show_state_disable, store_state_disable);
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100319define_one_state_ro(above, show_state_above);
320define_one_state_ro(below, show_state_below);
Rafael J. Wysocki75a80262019-12-13 09:56:13 +0100321define_one_state_ro(default_status, show_state_default_status);
Len Brown4f86d3a2007-10-03 18:58:00 -0400322
323static struct attribute *cpuidle_state_default_attrs[] = {
324 &attr_name.attr,
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800325 &attr_desc.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400326 &attr_latency.attr,
Daniel Lezcano9bc04822014-03-17 12:17:30 +0100327 &attr_residency.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400328 &attr_power.attr,
329 &attr_usage.attr,
Lina Iyerf49735f2020-09-22 12:34:16 -0600330 &attr_rejected.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400331 &attr_time.attr,
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700332 &attr_disable.attr,
Rafael J. Wysocki04dab582018-12-10 12:30:23 +0100333 &attr_above.attr,
334 &attr_below.attr,
Rafael J. Wysocki75a80262019-12-13 09:56:13 +0100335 &attr_default_status.attr,
Len Brown4f86d3a2007-10-03 18:58:00 -0400336 NULL
337};
338
Daniel Lezcano349631e2012-10-31 01:05:16 +0100339struct cpuidle_state_kobj {
340 struct cpuidle_state *state;
341 struct cpuidle_state_usage *state_usage;
342 struct completion kobj_unregister;
343 struct kobject kobj;
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300344 struct cpuidle_device *device;
Daniel Lezcano349631e2012-10-31 01:05:16 +0100345};
346
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100347#ifdef CONFIG_SUSPEND
348#define define_show_state_s2idle_ull_function(_name) \
349static ssize_t show_state_s2idle_##_name(struct cpuidle_state *state, \
350 struct cpuidle_state_usage *state_usage, \
351 char *buf) \
352{ \
353 return sprintf(buf, "%llu\n", state_usage->s2idle_##_name);\
354}
355
356define_show_state_s2idle_ull_function(usage);
357define_show_state_s2idle_ull_function(time);
358
359#define define_one_state_s2idle_ro(_name, show) \
360static struct cpuidle_state_attr attr_s2idle_##_name = \
361 __ATTR(_name, 0444, show, NULL)
362
363define_one_state_s2idle_ro(usage, show_state_s2idle_usage);
364define_one_state_s2idle_ro(time, show_state_s2idle_time);
365
366static struct attribute *cpuidle_state_s2idle_attrs[] = {
367 &attr_s2idle_usage.attr,
368 &attr_s2idle_time.attr,
369 NULL
370};
371
372static const struct attribute_group cpuidle_state_s2idle_group = {
373 .name = "s2idle",
374 .attrs = cpuidle_state_s2idle_attrs,
375};
376
377static void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
378{
379 int ret;
380
381 if (!kobj->state->enter_s2idle)
382 return;
383
384 ret = sysfs_create_group(&kobj->kobj, &cpuidle_state_s2idle_group);
385 if (ret)
386 pr_debug("%s: sysfs attribute group not created\n", __func__);
387}
388
389static void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj)
390{
391 if (kobj->state->enter_s2idle)
392 sysfs_remove_group(&kobj->kobj, &cpuidle_state_s2idle_group);
393}
394#else
395static inline void cpuidle_add_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
396static inline void cpuidle_remove_s2idle_attr_group(struct cpuidle_state_kobj *kobj) { }
397#endif /* CONFIG_SUSPEND */
398
Len Brown4f86d3a2007-10-03 18:58:00 -0400399#define kobj_to_state_obj(k) container_of(k, struct cpuidle_state_kobj, kobj)
400#define kobj_to_state(k) (kobj_to_state_obj(k)->state)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530401#define kobj_to_state_usage(k) (kobj_to_state_obj(k)->state_usage)
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300402#define kobj_to_device(k) (kobj_to_state_obj(k)->device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400403#define attr_to_stateattr(a) container_of(a, struct cpuidle_state_attr, attr)
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200404
405static ssize_t cpuidle_state_show(struct kobject *kobj, struct attribute *attr,
Hanjun Guoeba933c2020-04-27 17:34:21 +0800406 char *buf)
Len Brown4f86d3a2007-10-03 18:58:00 -0400407{
408 int ret = -EIO;
409 struct cpuidle_state *state = kobj_to_state(kobj);
Deepthi Dharwar42027352011-10-28 16:20:33 +0530410 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
Hanjun Guoeba933c2020-04-27 17:34:21 +0800411 struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
Len Brown4f86d3a2007-10-03 18:58:00 -0400412
413 if (cattr->show)
Deepthi Dharwar42027352011-10-28 16:20:33 +0530414 ret = cattr->show(state, state_usage, buf);
Len Brown4f86d3a2007-10-03 18:58:00 -0400415
416 return ret;
417}
418
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200419static ssize_t cpuidle_state_store(struct kobject *kobj, struct attribute *attr,
420 const char *buf, size_t size)
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700421{
422 int ret = -EIO;
423 struct cpuidle_state *state = kobj_to_state(kobj);
ShuoX Liudc7fd272012-07-03 19:05:31 +0200424 struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700425 struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300426 struct cpuidle_device *dev = kobj_to_device(kobj);
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700427
428 if (cattr->store)
ShuoX Liudc7fd272012-07-03 19:05:31 +0200429 ret = cattr->store(state, state_usage, buf, size);
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700430
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300431 /* reset poll time cache */
432 dev->poll_limit_ns = 0;
433
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700434 return ret;
435}
436
Emese Revfy52cf25d2010-01-19 02:58:23 +0100437static const struct sysfs_ops cpuidle_state_sysfs_ops = {
Len Brown4f86d3a2007-10-03 18:58:00 -0400438 .show = cpuidle_state_show,
ShuoX Liu3a53396b2012-03-28 15:19:11 -0700439 .store = cpuidle_state_store,
Len Brown4f86d3a2007-10-03 18:58:00 -0400440};
441
442static void cpuidle_state_sysfs_release(struct kobject *kobj)
443{
444 struct cpuidle_state_kobj *state_obj = kobj_to_state_obj(kobj);
445
446 complete(&state_obj->kobj_unregister);
447}
448
449static struct kobj_type ktype_state_cpuidle = {
450 .sysfs_ops = &cpuidle_state_sysfs_ops,
451 .default_attrs = cpuidle_state_default_attrs,
452 .release = cpuidle_state_sysfs_release,
453};
454
Jesper Juhl42b16b32011-01-17 00:09:38 +0100455static inline void cpuidle_free_state_kobj(struct cpuidle_device *device, int i)
Len Brown4f86d3a2007-10-03 18:58:00 -0400456{
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100457 cpuidle_remove_s2idle_attr_group(device->kobjs[i]);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800458 kobject_put(&device->kobjs[i]->kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400459 wait_for_completion(&device->kobjs[i]->kobj_unregister);
460 kfree(device->kobjs[i]);
461 device->kobjs[i] = NULL;
462}
463
464/**
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000465 * cpuidle_add_state_sysfs - adds cpuidle states sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400466 * @device: the target device
467 */
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000468static int cpuidle_add_state_sysfs(struct cpuidle_device *device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400469{
470 int i, ret = -ENOMEM;
471 struct cpuidle_state_kobj *kobj;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200472 struct cpuidle_device_kobj *kdev = device->kobj_dev;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000473 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
Len Brown4f86d3a2007-10-03 18:58:00 -0400474
475 /* state statistics */
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200476 for (i = 0; i < drv->state_count; i++) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400477 kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL);
Pan Bian8f6040c2016-12-03 23:02:27 +0800478 if (!kobj) {
479 ret = -ENOMEM;
Len Brown4f86d3a2007-10-03 18:58:00 -0400480 goto error_state;
Pan Bian8f6040c2016-12-03 23:02:27 +0800481 }
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530482 kobj->state = &drv->states[i];
Deepthi Dharwar42027352011-10-28 16:20:33 +0530483 kobj->state_usage = &device->states_usage[i];
Marcelo Tosatti259231a2019-07-03 20:51:26 -0300484 kobj->device = device;
Len Brown4f86d3a2007-10-03 18:58:00 -0400485 init_completion(&kobj->kobj_unregister);
486
Daniel Lezcanoe45a00d2012-10-26 12:26:32 +0200487 ret = kobject_init_and_add(&kobj->kobj, &ktype_state_cpuidle,
Daniel Lezcano728ce222013-06-12 15:08:51 +0200488 &kdev->kobj, "state%d", i);
Len Brown4f86d3a2007-10-03 18:58:00 -0400489 if (ret) {
Qiushi Wuc343bf12020-05-28 13:20:46 -0500490 kobject_put(&kobj->kobj);
Len Brown4f86d3a2007-10-03 18:58:00 -0400491 goto error_state;
492 }
Rafael J. Wysocki64bdff62018-03-14 12:27:21 +0100493 cpuidle_add_s2idle_attr_group(kobj);
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400494 kobject_uevent(&kobj->kobj, KOBJ_ADD);
Len Brown4f86d3a2007-10-03 18:58:00 -0400495 device->kobjs[i] = kobj;
496 }
497
498 return 0;
499
500error_state:
501 for (i = i - 1; i >= 0; i--)
502 cpuidle_free_state_kobj(device, i);
503 return ret;
504}
505
506/**
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000507 * cpuidle_remove_driver_sysfs - removes the cpuidle states sysfs attributes
Len Brown4f86d3a2007-10-03 18:58:00 -0400508 * @device: the target device
509 */
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000510static void cpuidle_remove_state_sysfs(struct cpuidle_device *device)
Len Brown4f86d3a2007-10-03 18:58:00 -0400511{
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200512 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device);
Len Brown4f86d3a2007-10-03 18:58:00 -0400513 int i;
514
Bartlomiej Zolnierkiewiczd75e4af2015-03-31 20:15:09 +0200515 for (i = 0; i < drv->state_count; i++)
Len Brown4f86d3a2007-10-03 18:58:00 -0400516 cpuidle_free_state_kobj(device, i);
517}
518
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000519#ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS
520#define kobj_to_driver_kobj(k) container_of(k, struct cpuidle_driver_kobj, kobj)
521#define attr_to_driver_attr(a) container_of(a, struct cpuidle_driver_attr, attr)
522
523#define define_one_driver_ro(_name, show) \
524 static struct cpuidle_driver_attr attr_driver_##_name = \
Mohammad Merajul Islam Molla4f8eea92014-07-12 19:29:22 +0600525 __ATTR(_name, 0444, show, NULL)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000526
527struct cpuidle_driver_kobj {
528 struct cpuidle_driver *drv;
529 struct completion kobj_unregister;
530 struct kobject kobj;
531};
532
533struct cpuidle_driver_attr {
534 struct attribute attr;
535 ssize_t (*show)(struct cpuidle_driver *, char *);
536 ssize_t (*store)(struct cpuidle_driver *, const char *, size_t);
537};
538
539static ssize_t show_driver_name(struct cpuidle_driver *drv, char *buf)
540{
541 ssize_t ret;
542
543 spin_lock(&cpuidle_driver_lock);
544 ret = sprintf(buf, "%s\n", drv ? drv->name : "none");
545 spin_unlock(&cpuidle_driver_lock);
546
547 return ret;
548}
549
550static void cpuidle_driver_sysfs_release(struct kobject *kobj)
551{
552 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
553 complete(&driver_kobj->kobj_unregister);
554}
555
Daniel Lezcanof89ae892013-06-12 15:08:50 +0200556static ssize_t cpuidle_driver_show(struct kobject *kobj, struct attribute *attr,
557 char *buf)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000558{
559 int ret = -EIO;
560 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
561 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
562
563 if (dattr->show)
564 ret = dattr->show(driver_kobj->drv, buf);
565
566 return ret;
567}
568
569static ssize_t cpuidle_driver_store(struct kobject *kobj, struct attribute *attr,
570 const char *buf, size_t size)
571{
572 int ret = -EIO;
573 struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj);
574 struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr);
575
576 if (dattr->store)
577 ret = dattr->store(driver_kobj->drv, buf, size);
578
579 return ret;
580}
581
582define_one_driver_ro(name, show_driver_name);
583
584static const struct sysfs_ops cpuidle_driver_sysfs_ops = {
585 .show = cpuidle_driver_show,
586 .store = cpuidle_driver_store,
587};
588
589static struct attribute *cpuidle_driver_default_attrs[] = {
590 &attr_driver_name.attr,
591 NULL
592};
593
594static struct kobj_type ktype_driver_cpuidle = {
595 .sysfs_ops = &cpuidle_driver_sysfs_ops,
596 .default_attrs = cpuidle_driver_default_attrs,
597 .release = cpuidle_driver_sysfs_release,
598};
599
600/**
601 * cpuidle_add_driver_sysfs - adds the driver name sysfs attribute
Benjamin Gaignarda09da3f2020-01-20 14:33:59 +0100602 * @dev: the target device
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000603 */
604static int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
605{
606 struct cpuidle_driver_kobj *kdrv;
Daniel Lezcano728ce222013-06-12 15:08:51 +0200607 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000608 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
609 int ret;
610
611 kdrv = kzalloc(sizeof(*kdrv), GFP_KERNEL);
612 if (!kdrv)
613 return -ENOMEM;
614
615 kdrv->drv = drv;
616 init_completion(&kdrv->kobj_unregister);
617
618 ret = kobject_init_and_add(&kdrv->kobj, &ktype_driver_cpuidle,
Daniel Lezcano728ce222013-06-12 15:08:51 +0200619 &kdev->kobj, "driver");
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000620 if (ret) {
Qiushi Wuc343bf12020-05-28 13:20:46 -0500621 kobject_put(&kdrv->kobj);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000622 return ret;
623 }
624
625 kobject_uevent(&kdrv->kobj, KOBJ_ADD);
626 dev->kobj_driver = kdrv;
627
628 return ret;
629}
630
631/**
632 * cpuidle_remove_driver_sysfs - removes the driver name sysfs attribute
Benjamin Gaignarda09da3f2020-01-20 14:33:59 +0100633 * @dev: the target device
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000634 */
635static void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
636{
637 struct cpuidle_driver_kobj *kdrv = dev->kobj_driver;
638 kobject_put(&kdrv->kobj);
639 wait_for_completion(&kdrv->kobj_unregister);
640 kfree(kdrv);
641}
642#else
643static inline int cpuidle_add_driver_sysfs(struct cpuidle_device *dev)
644{
645 return 0;
646}
647
648static inline void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev)
649{
650 ;
651}
652#endif
653
654/**
655 * cpuidle_add_device_sysfs - adds device specific sysfs attributes
656 * @device: the target device
657 */
658int cpuidle_add_device_sysfs(struct cpuidle_device *device)
659{
660 int ret;
661
662 ret = cpuidle_add_state_sysfs(device);
663 if (ret)
664 return ret;
665
666 ret = cpuidle_add_driver_sysfs(device);
667 if (ret)
668 cpuidle_remove_state_sysfs(device);
669 return ret;
670}
671
672/**
673 * cpuidle_remove_device_sysfs : removes device specific sysfs attributes
674 * @device : the target device
675 */
676void cpuidle_remove_device_sysfs(struct cpuidle_device *device)
677{
678 cpuidle_remove_driver_sysfs(device);
679 cpuidle_remove_state_sysfs(device);
680}
681
Len Brown4f86d3a2007-10-03 18:58:00 -0400682/**
683 * cpuidle_add_sysfs - creates a sysfs instance for the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800684 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400685 */
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200686int cpuidle_add_sysfs(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400687{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200688 struct cpuidle_device_kobj *kdev;
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200689 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Greg Kroah-Hartman94f57f32007-12-17 15:54:39 -0400690 int error;
Len Brown4f86d3a2007-10-03 18:58:00 -0400691
Vaidyanathan Srinivasanad0a45f2017-03-19 00:51:59 +0530692 /*
693 * Return if cpu_device is not setup for this CPU.
694 *
695 * This could happen if the arch did not set up cpu_device
696 * since this CPU is not in cpu_present mask and the
697 * driver did not send a correct CPU mask during registration.
698 * Without this check we would end up passing bogus
699 * value for &cpu_dev->kobj in kobject_init_and_add()
700 */
701 if (!cpu_dev)
702 return -ENODEV;
703
Daniel Lezcano728ce222013-06-12 15:08:51 +0200704 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
705 if (!kdev)
706 return -ENOMEM;
707 kdev->dev = dev;
708 dev->kobj_dev = kdev;
Daniel Lezcanoe45a00d2012-10-26 12:26:32 +0200709
Daniel Lezcano728ce222013-06-12 15:08:51 +0200710 init_completion(&kdev->kobj_unregister);
711
712 error = kobject_init_and_add(&kdev->kobj, &ktype_cpuidle, &cpu_dev->kobj,
713 "cpuidle");
714 if (error) {
Qiushi Wuc343bf12020-05-28 13:20:46 -0500715 kobject_put(&kdev->kobj);
Daniel Lezcano728ce222013-06-12 15:08:51 +0200716 return error;
717 }
718
719 kobject_uevent(&kdev->kobj, KOBJ_ADD);
720
721 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400722}
723
724/**
725 * cpuidle_remove_sysfs - deletes a sysfs instance on the target device
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800726 * @dev: the target device
Len Brown4f86d3a2007-10-03 18:58:00 -0400727 */
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200728void cpuidle_remove_sysfs(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400729{
Daniel Lezcano728ce222013-06-12 15:08:51 +0200730 struct cpuidle_device_kobj *kdev = dev->kobj_dev;
731
732 kobject_put(&kdev->kobj);
733 wait_for_completion(&kdev->kobj_unregister);
734 kfree(kdev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400735}