Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 13 | #include <linux/cpu.h> |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 14 | #include <linux/completion.h> |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 15 | #include <linux/capability.h> |
Daniel Lezcano | 8f3e995 | 2012-10-31 01:09:02 +0100 | [diff] [blame] | 16 | #include <linux/device.h> |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 17 | #include <linux/kobject.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 18 | |
| 19 | #include "cpuidle.h" |
| 20 | |
| 21 | static unsigned int sysfs_switch; |
| 22 | static 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 Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 29 | static ssize_t show_available_governors(struct device *dev, |
| 30 | struct device_attribute *attr, |
Rabin Vincent | 66198f3 | 2008-08-12 15:08:45 -0700 | [diff] [blame] | 31 | char *buf) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 32 | { |
| 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 Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 38 | if (i >= (ssize_t) ((PAGE_SIZE/sizeof(char)) - |
| 39 | CPUIDLE_NAME_LEN - 2)) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 40 | goto out; |
| 41 | i += scnprintf(&buf[i], CPUIDLE_NAME_LEN, "%s ", tmp->name); |
| 42 | } |
| 43 | |
| 44 | out: |
| 45 | i+= sprintf(&buf[i], "\n"); |
| 46 | mutex_unlock(&cpuidle_lock); |
| 47 | return i; |
| 48 | } |
| 49 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 50 | static ssize_t show_current_driver(struct device *dev, |
| 51 | struct device_attribute *attr, |
Rabin Vincent | 66198f3 | 2008-08-12 15:08:45 -0700 | [diff] [blame] | 52 | char *buf) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 53 | { |
| 54 | ssize_t ret; |
Viresh Kumar | 1f6b9f7 | 2013-10-03 21:26:51 +0530 | [diff] [blame] | 55 | struct cpuidle_driver *drv; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 56 | |
| 57 | spin_lock(&cpuidle_driver_lock); |
Viresh Kumar | 1f6b9f7 | 2013-10-03 21:26:51 +0530 | [diff] [blame] | 58 | drv = cpuidle_get_driver(); |
| 59 | if (drv) |
| 60 | ret = sprintf(buf, "%s\n", drv->name); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 61 | else |
| 62 | ret = sprintf(buf, "none\n"); |
| 63 | spin_unlock(&cpuidle_driver_lock); |
| 64 | |
| 65 | return ret; |
| 66 | } |
| 67 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 68 | static ssize_t show_current_governor(struct device *dev, |
| 69 | struct device_attribute *attr, |
Rabin Vincent | 66198f3 | 2008-08-12 15:08:45 -0700 | [diff] [blame] | 70 | char *buf) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 71 | { |
| 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 Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 84 | static ssize_t store_current_governor(struct device *dev, |
| 85 | struct device_attribute *attr, |
Rabin Vincent | 66198f3 | 2008-08-12 15:08:45 -0700 | [diff] [blame] | 86 | const char *buf, size_t count) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 87 | { |
| 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 Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 118 | static DEVICE_ATTR(current_driver, 0444, show_current_driver, NULL); |
| 119 | static DEVICE_ATTR(current_governor_ro, 0444, show_current_governor, NULL); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 120 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 121 | static struct attribute *cpuidle_default_attrs[] = { |
| 122 | &dev_attr_current_driver.attr, |
| 123 | &dev_attr_current_governor_ro.attr, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 124 | NULL |
| 125 | }; |
| 126 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 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); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 130 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 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, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 135 | NULL |
| 136 | }; |
| 137 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 138 | static struct attribute_group cpuidle_attr_group = { |
| 139 | .attrs = cpuidle_default_attrs, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 140 | .name = "cpuidle", |
| 141 | }; |
| 142 | |
| 143 | /** |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 144 | * cpuidle_add_interface - add CPU global sysfs attributes |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 145 | */ |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 146 | int cpuidle_add_interface(struct device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 147 | { |
| 148 | if (sysfs_switch) |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 149 | cpuidle_attr_group.attrs = cpuidle_switch_attrs; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 150 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 151 | return sysfs_create_group(&dev->kobj, &cpuidle_attr_group); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | /** |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 155 | * cpuidle_remove_interface - remove CPU global sysfs attributes |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 156 | */ |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 157 | void cpuidle_remove_interface(struct device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 158 | { |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 159 | sysfs_remove_group(&dev->kobj, &cpuidle_attr_group); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 160 | } |
| 161 | |
| 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); |
| 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 Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 173 | #define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr) |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 174 | |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 175 | struct cpuidle_device_kobj { |
| 176 | struct cpuidle_device *dev; |
| 177 | struct completion kobj_unregister; |
| 178 | struct kobject kobj; |
| 179 | }; |
| 180 | |
| 181 | static 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 Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 189 | static ssize_t cpuidle_show(struct kobject *kobj, struct attribute *attr, |
| 190 | char *buf) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 191 | { |
| 192 | int ret = -EIO; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 193 | struct cpuidle_device *dev = to_cpuidle_device(kobj); |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 194 | struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 195 | |
| 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 Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 204 | static ssize_t cpuidle_store(struct kobject *kobj, struct attribute *attr, |
| 205 | const char *buf, size_t count) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 206 | { |
| 207 | int ret = -EIO; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 208 | struct cpuidle_device *dev = to_cpuidle_device(kobj); |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 209 | struct cpuidle_attr *cattr = attr_to_cpuidleattr(attr); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 210 | |
| 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 Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 219 | static const struct sysfs_ops cpuidle_sysfs_ops = { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 220 | .show = cpuidle_show, |
| 221 | .store = cpuidle_store, |
| 222 | }; |
| 223 | |
| 224 | static void cpuidle_sysfs_release(struct kobject *kobj) |
| 225 | { |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 226 | struct cpuidle_device_kobj *kdev = |
| 227 | container_of(kobj, struct cpuidle_device_kobj, kobj); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 228 | |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 229 | complete(&kdev->kobj_unregister); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | static struct kobj_type ktype_cpuidle = { |
| 233 | .sysfs_ops = &cpuidle_sysfs_ops, |
| 234 | .release = cpuidle_sysfs_release, |
| 235 | }; |
| 236 | |
| 237 | struct cpuidle_state_attr { |
| 238 | struct attribute attr; |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 239 | ssize_t (*show)(struct cpuidle_state *, \ |
| 240 | struct cpuidle_state_usage *, char *); |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 241 | ssize_t (*store)(struct cpuidle_state *, \ |
| 242 | struct cpuidle_state_usage *, const char *, size_t); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | #define define_one_state_ro(_name, show) \ |
| 246 | static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL) |
| 247 | |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 248 | #define define_one_state_rw(_name, show, store) \ |
| 249 | static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store) |
| 250 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 251 | #define define_show_state_function(_name) \ |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 252 | static ssize_t show_state_##_name(struct cpuidle_state *state, \ |
| 253 | struct cpuidle_state_usage *state_usage, char *buf) \ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 254 | { \ |
| 255 | return sprintf(buf, "%u\n", state->_name);\ |
| 256 | } |
| 257 | |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 258 | #define define_store_state_ull_function(_name) \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 259 | static ssize_t store_state_##_name(struct cpuidle_state *state, \ |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 260 | struct cpuidle_state_usage *state_usage, \ |
| 261 | const char *buf, size_t size) \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 262 | { \ |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 263 | unsigned long long value; \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 264 | int err; \ |
| 265 | if (!capable(CAP_SYS_ADMIN)) \ |
| 266 | return -EPERM; \ |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 267 | err = kstrtoull(buf, 0, &value); \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 268 | if (err) \ |
| 269 | return err; \ |
| 270 | if (value) \ |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 271 | state_usage->_name = 1; \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 272 | else \ |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 273 | state_usage->_name = 0; \ |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 274 | return size; \ |
| 275 | } |
| 276 | |
Yi Yang | 8b78cf6 | 2008-02-25 08:46:12 +0800 | [diff] [blame] | 277 | #define define_show_state_ull_function(_name) \ |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 278 | static ssize_t show_state_##_name(struct cpuidle_state *state, \ |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 279 | struct cpuidle_state_usage *state_usage, \ |
| 280 | char *buf) \ |
Yi Yang | 8b78cf6 | 2008-02-25 08:46:12 +0800 | [diff] [blame] | 281 | { \ |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 282 | return sprintf(buf, "%llu\n", state_usage->_name);\ |
Yi Yang | 8b78cf6 | 2008-02-25 08:46:12 +0800 | [diff] [blame] | 283 | } |
| 284 | |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 285 | #define define_show_state_str_function(_name) \ |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 286 | static ssize_t show_state_##_name(struct cpuidle_state *state, \ |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 287 | struct cpuidle_state_usage *state_usage, \ |
| 288 | char *buf) \ |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 289 | { \ |
| 290 | if (state->_name[0] == '\0')\ |
| 291 | return sprintf(buf, "<null>\n");\ |
| 292 | return sprintf(buf, "%s\n", state->_name);\ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | define_show_state_function(exit_latency) |
Daniel Lezcano | 9bc0482 | 2014-03-17 12:17:30 +0100 | [diff] [blame] | 296 | define_show_state_function(target_residency) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 297 | define_show_state_function(power_usage) |
Yi Yang | 8b78cf6 | 2008-02-25 08:46:12 +0800 | [diff] [blame] | 298 | define_show_state_ull_function(usage) |
| 299 | define_show_state_ull_function(time) |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 300 | define_show_state_str_function(name) |
| 301 | define_show_state_str_function(desc) |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 302 | define_show_state_ull_function(disable) |
| 303 | define_store_state_ull_function(disable) |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 304 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 305 | define_one_state_ro(name, show_state_name); |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 306 | define_one_state_ro(desc, show_state_desc); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 307 | define_one_state_ro(latency, show_state_exit_latency); |
Daniel Lezcano | 9bc0482 | 2014-03-17 12:17:30 +0100 | [diff] [blame] | 308 | define_one_state_ro(residency, show_state_target_residency); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 309 | define_one_state_ro(power, show_state_power_usage); |
| 310 | define_one_state_ro(usage, show_state_usage); |
| 311 | define_one_state_ro(time, show_state_time); |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 312 | define_one_state_rw(disable, show_state_disable, store_state_disable); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 313 | |
| 314 | static struct attribute *cpuidle_state_default_attrs[] = { |
| 315 | &attr_name.attr, |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 316 | &attr_desc.attr, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 317 | &attr_latency.attr, |
Daniel Lezcano | 9bc0482 | 2014-03-17 12:17:30 +0100 | [diff] [blame] | 318 | &attr_residency.attr, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 319 | &attr_power.attr, |
| 320 | &attr_usage.attr, |
| 321 | &attr_time.attr, |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 322 | &attr_disable.attr, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 323 | NULL |
| 324 | }; |
| 325 | |
Daniel Lezcano | 349631e | 2012-10-31 01:05:16 +0100 | [diff] [blame] | 326 | struct cpuidle_state_kobj { |
| 327 | struct cpuidle_state *state; |
| 328 | struct cpuidle_state_usage *state_usage; |
| 329 | struct completion kobj_unregister; |
| 330 | struct kobject kobj; |
| 331 | }; |
| 332 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 333 | #define kobj_to_state_obj(k) container_of(k, struct cpuidle_state_kobj, kobj) |
| 334 | #define kobj_to_state(k) (kobj_to_state_obj(k)->state) |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 335 | #define kobj_to_state_usage(k) (kobj_to_state_obj(k)->state_usage) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 336 | #define attr_to_stateattr(a) container_of(a, struct cpuidle_state_attr, attr) |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 337 | |
| 338 | static ssize_t cpuidle_state_show(struct kobject *kobj, struct attribute *attr, |
| 339 | char * buf) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 340 | { |
| 341 | int ret = -EIO; |
| 342 | struct cpuidle_state *state = kobj_to_state(kobj); |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 343 | struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 344 | struct cpuidle_state_attr * cattr = attr_to_stateattr(attr); |
| 345 | |
| 346 | if (cattr->show) |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 347 | ret = cattr->show(state, state_usage, buf); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 348 | |
| 349 | return ret; |
| 350 | } |
| 351 | |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 352 | static ssize_t cpuidle_state_store(struct kobject *kobj, struct attribute *attr, |
| 353 | const char *buf, size_t size) |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 354 | { |
| 355 | int ret = -EIO; |
| 356 | struct cpuidle_state *state = kobj_to_state(kobj); |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 357 | struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj); |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 358 | struct cpuidle_state_attr *cattr = attr_to_stateattr(attr); |
| 359 | |
| 360 | if (cattr->store) |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 361 | ret = cattr->store(state, state_usage, buf, size); |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 362 | |
| 363 | return ret; |
| 364 | } |
| 365 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 366 | static const struct sysfs_ops cpuidle_state_sysfs_ops = { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 367 | .show = cpuidle_state_show, |
ShuoX Liu | 3a53396 | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 368 | .store = cpuidle_state_store, |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 369 | }; |
| 370 | |
| 371 | static void cpuidle_state_sysfs_release(struct kobject *kobj) |
| 372 | { |
| 373 | struct cpuidle_state_kobj *state_obj = kobj_to_state_obj(kobj); |
| 374 | |
| 375 | complete(&state_obj->kobj_unregister); |
| 376 | } |
| 377 | |
| 378 | static struct kobj_type ktype_state_cpuidle = { |
| 379 | .sysfs_ops = &cpuidle_state_sysfs_ops, |
| 380 | .default_attrs = cpuidle_state_default_attrs, |
| 381 | .release = cpuidle_state_sysfs_release, |
| 382 | }; |
| 383 | |
Jesper Juhl | 42b16b3 | 2011-01-17 00:09:38 +0100 | [diff] [blame] | 384 | static inline void cpuidle_free_state_kobj(struct cpuidle_device *device, int i) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 385 | { |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 386 | kobject_put(&device->kobjs[i]->kobj); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 387 | wait_for_completion(&device->kobjs[i]->kobj_unregister); |
| 388 | kfree(device->kobjs[i]); |
| 389 | device->kobjs[i] = NULL; |
| 390 | } |
| 391 | |
| 392 | /** |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 393 | * cpuidle_add_state_sysfs - adds cpuidle states sysfs attributes |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 394 | * @device: the target device |
| 395 | */ |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 396 | static int cpuidle_add_state_sysfs(struct cpuidle_device *device) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 397 | { |
| 398 | int i, ret = -ENOMEM; |
| 399 | struct cpuidle_state_kobj *kobj; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 400 | struct cpuidle_device_kobj *kdev = device->kobj_dev; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 401 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 402 | |
| 403 | /* state statistics */ |
Krzysztof Mazur | 392370e | 2013-01-11 23:20:09 +0100 | [diff] [blame] | 404 | for (i = 0; i < device->state_count; i++) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 405 | kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL); |
| 406 | if (!kobj) |
| 407 | goto error_state; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 408 | kobj->state = &drv->states[i]; |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 409 | kobj->state_usage = &device->states_usage[i]; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 410 | init_completion(&kobj->kobj_unregister); |
| 411 | |
Daniel Lezcano | e45a00d | 2012-10-26 12:26:32 +0200 | [diff] [blame] | 412 | ret = kobject_init_and_add(&kobj->kobj, &ktype_state_cpuidle, |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 413 | &kdev->kobj, "state%d", i); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 414 | if (ret) { |
| 415 | kfree(kobj); |
| 416 | goto error_state; |
| 417 | } |
Greg Kroah-Hartman | 94f57f3 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 418 | kobject_uevent(&kobj->kobj, KOBJ_ADD); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 419 | device->kobjs[i] = kobj; |
| 420 | } |
| 421 | |
| 422 | return 0; |
| 423 | |
| 424 | error_state: |
| 425 | for (i = i - 1; i >= 0; i--) |
| 426 | cpuidle_free_state_kobj(device, i); |
| 427 | return ret; |
| 428 | } |
| 429 | |
| 430 | /** |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 431 | * cpuidle_remove_driver_sysfs - removes the cpuidle states sysfs attributes |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 432 | * @device: the target device |
| 433 | */ |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 434 | static void cpuidle_remove_state_sysfs(struct cpuidle_device *device) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 435 | { |
| 436 | int i; |
| 437 | |
| 438 | for (i = 0; i < device->state_count; i++) |
| 439 | cpuidle_free_state_kobj(device, i); |
| 440 | } |
| 441 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 442 | #ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS |
| 443 | #define kobj_to_driver_kobj(k) container_of(k, struct cpuidle_driver_kobj, kobj) |
| 444 | #define attr_to_driver_attr(a) container_of(a, struct cpuidle_driver_attr, attr) |
| 445 | |
| 446 | #define define_one_driver_ro(_name, show) \ |
| 447 | static struct cpuidle_driver_attr attr_driver_##_name = \ |
Mohammad Merajul Islam Molla | 4f8eea9 | 2014-07-12 19:29:22 +0600 | [diff] [blame] | 448 | __ATTR(_name, 0444, show, NULL) |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 449 | |
| 450 | struct cpuidle_driver_kobj { |
| 451 | struct cpuidle_driver *drv; |
| 452 | struct completion kobj_unregister; |
| 453 | struct kobject kobj; |
| 454 | }; |
| 455 | |
| 456 | struct cpuidle_driver_attr { |
| 457 | struct attribute attr; |
| 458 | ssize_t (*show)(struct cpuidle_driver *, char *); |
| 459 | ssize_t (*store)(struct cpuidle_driver *, const char *, size_t); |
| 460 | }; |
| 461 | |
| 462 | static ssize_t show_driver_name(struct cpuidle_driver *drv, char *buf) |
| 463 | { |
| 464 | ssize_t ret; |
| 465 | |
| 466 | spin_lock(&cpuidle_driver_lock); |
| 467 | ret = sprintf(buf, "%s\n", drv ? drv->name : "none"); |
| 468 | spin_unlock(&cpuidle_driver_lock); |
| 469 | |
| 470 | return ret; |
| 471 | } |
| 472 | |
| 473 | static void cpuidle_driver_sysfs_release(struct kobject *kobj) |
| 474 | { |
| 475 | struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj); |
| 476 | complete(&driver_kobj->kobj_unregister); |
| 477 | } |
| 478 | |
Daniel Lezcano | f89ae89 | 2013-06-12 15:08:50 +0200 | [diff] [blame] | 479 | static ssize_t cpuidle_driver_show(struct kobject *kobj, struct attribute *attr, |
| 480 | char *buf) |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 481 | { |
| 482 | int ret = -EIO; |
| 483 | struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj); |
| 484 | struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr); |
| 485 | |
| 486 | if (dattr->show) |
| 487 | ret = dattr->show(driver_kobj->drv, buf); |
| 488 | |
| 489 | return ret; |
| 490 | } |
| 491 | |
| 492 | static ssize_t cpuidle_driver_store(struct kobject *kobj, struct attribute *attr, |
| 493 | const char *buf, size_t size) |
| 494 | { |
| 495 | int ret = -EIO; |
| 496 | struct cpuidle_driver_kobj *driver_kobj = kobj_to_driver_kobj(kobj); |
| 497 | struct cpuidle_driver_attr *dattr = attr_to_driver_attr(attr); |
| 498 | |
| 499 | if (dattr->store) |
| 500 | ret = dattr->store(driver_kobj->drv, buf, size); |
| 501 | |
| 502 | return ret; |
| 503 | } |
| 504 | |
| 505 | define_one_driver_ro(name, show_driver_name); |
| 506 | |
| 507 | static const struct sysfs_ops cpuidle_driver_sysfs_ops = { |
| 508 | .show = cpuidle_driver_show, |
| 509 | .store = cpuidle_driver_store, |
| 510 | }; |
| 511 | |
| 512 | static struct attribute *cpuidle_driver_default_attrs[] = { |
| 513 | &attr_driver_name.attr, |
| 514 | NULL |
| 515 | }; |
| 516 | |
| 517 | static struct kobj_type ktype_driver_cpuidle = { |
| 518 | .sysfs_ops = &cpuidle_driver_sysfs_ops, |
| 519 | .default_attrs = cpuidle_driver_default_attrs, |
| 520 | .release = cpuidle_driver_sysfs_release, |
| 521 | }; |
| 522 | |
| 523 | /** |
| 524 | * cpuidle_add_driver_sysfs - adds the driver name sysfs attribute |
| 525 | * @device: the target device |
| 526 | */ |
| 527 | static int cpuidle_add_driver_sysfs(struct cpuidle_device *dev) |
| 528 | { |
| 529 | struct cpuidle_driver_kobj *kdrv; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 530 | struct cpuidle_device_kobj *kdev = dev->kobj_dev; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 531 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
| 532 | int ret; |
| 533 | |
| 534 | kdrv = kzalloc(sizeof(*kdrv), GFP_KERNEL); |
| 535 | if (!kdrv) |
| 536 | return -ENOMEM; |
| 537 | |
| 538 | kdrv->drv = drv; |
| 539 | init_completion(&kdrv->kobj_unregister); |
| 540 | |
| 541 | ret = kobject_init_and_add(&kdrv->kobj, &ktype_driver_cpuidle, |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 542 | &kdev->kobj, "driver"); |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 543 | if (ret) { |
| 544 | kfree(kdrv); |
| 545 | return ret; |
| 546 | } |
| 547 | |
| 548 | kobject_uevent(&kdrv->kobj, KOBJ_ADD); |
| 549 | dev->kobj_driver = kdrv; |
| 550 | |
| 551 | return ret; |
| 552 | } |
| 553 | |
| 554 | /** |
| 555 | * cpuidle_remove_driver_sysfs - removes the driver name sysfs attribute |
| 556 | * @device: the target device |
| 557 | */ |
| 558 | static void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev) |
| 559 | { |
| 560 | struct cpuidle_driver_kobj *kdrv = dev->kobj_driver; |
| 561 | kobject_put(&kdrv->kobj); |
| 562 | wait_for_completion(&kdrv->kobj_unregister); |
| 563 | kfree(kdrv); |
| 564 | } |
| 565 | #else |
| 566 | static inline int cpuidle_add_driver_sysfs(struct cpuidle_device *dev) |
| 567 | { |
| 568 | return 0; |
| 569 | } |
| 570 | |
| 571 | static inline void cpuidle_remove_driver_sysfs(struct cpuidle_device *dev) |
| 572 | { |
| 573 | ; |
| 574 | } |
| 575 | #endif |
| 576 | |
| 577 | /** |
| 578 | * cpuidle_add_device_sysfs - adds device specific sysfs attributes |
| 579 | * @device: the target device |
| 580 | */ |
| 581 | int cpuidle_add_device_sysfs(struct cpuidle_device *device) |
| 582 | { |
| 583 | int ret; |
| 584 | |
| 585 | ret = cpuidle_add_state_sysfs(device); |
| 586 | if (ret) |
| 587 | return ret; |
| 588 | |
| 589 | ret = cpuidle_add_driver_sysfs(device); |
| 590 | if (ret) |
| 591 | cpuidle_remove_state_sysfs(device); |
| 592 | return ret; |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * cpuidle_remove_device_sysfs : removes device specific sysfs attributes |
| 597 | * @device : the target device |
| 598 | */ |
| 599 | void cpuidle_remove_device_sysfs(struct cpuidle_device *device) |
| 600 | { |
| 601 | cpuidle_remove_driver_sysfs(device); |
| 602 | cpuidle_remove_state_sysfs(device); |
| 603 | } |
| 604 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 605 | /** |
| 606 | * cpuidle_add_sysfs - creates a sysfs instance for the target device |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 607 | * @dev: the target device |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 608 | */ |
Daniel Lezcano | 1aef40e | 2012-10-26 12:26:24 +0200 | [diff] [blame] | 609 | int cpuidle_add_sysfs(struct cpuidle_device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 610 | { |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 611 | struct cpuidle_device_kobj *kdev; |
Daniel Lezcano | 1aef40e | 2012-10-26 12:26:24 +0200 | [diff] [blame] | 612 | struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu); |
Greg Kroah-Hartman | 94f57f3 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 613 | int error; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 614 | |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 615 | kdev = kzalloc(sizeof(*kdev), GFP_KERNEL); |
| 616 | if (!kdev) |
| 617 | return -ENOMEM; |
| 618 | kdev->dev = dev; |
| 619 | dev->kobj_dev = kdev; |
Daniel Lezcano | e45a00d | 2012-10-26 12:26:32 +0200 | [diff] [blame] | 620 | |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 621 | init_completion(&kdev->kobj_unregister); |
| 622 | |
| 623 | error = kobject_init_and_add(&kdev->kobj, &ktype_cpuidle, &cpu_dev->kobj, |
| 624 | "cpuidle"); |
| 625 | if (error) { |
| 626 | kfree(kdev); |
| 627 | return error; |
| 628 | } |
| 629 | |
| 630 | kobject_uevent(&kdev->kobj, KOBJ_ADD); |
| 631 | |
| 632 | return 0; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | /** |
| 636 | * cpuidle_remove_sysfs - deletes a sysfs instance on the target device |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 637 | * @dev: the target device |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 638 | */ |
Daniel Lezcano | 1aef40e | 2012-10-26 12:26:24 +0200 | [diff] [blame] | 639 | void cpuidle_remove_sysfs(struct cpuidle_device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 640 | { |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 641 | struct cpuidle_device_kobj *kdev = dev->kobj_dev; |
| 642 | |
| 643 | kobject_put(&kdev->kobj); |
| 644 | wait_for_completion(&kdev->kobj_unregister); |
| 645 | kfree(kdev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 646 | } |