Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1 | /* |
| 2 | * thermal.c - Generic Thermal Management Sysfs support. |
| 3 | * |
| 4 | * Copyright (C) 2008 Intel Corp |
| 5 | * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com> |
| 6 | * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com> |
| 7 | * |
| 8 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 22 | * |
| 23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 24 | */ |
| 25 | |
Joe Perches | c5a01dd | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 27 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/device.h> |
| 30 | #include <linux/err.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 32 | #include <linux/kdev_t.h> |
| 33 | #include <linux/idr.h> |
| 34 | #include <linux/thermal.h> |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 35 | #include <linux/reboot.h> |
Andy Shevchenko | 42a5bf5 | 2013-05-17 11:52:02 +0000 | [diff] [blame] | 36 | #include <linux/string.h> |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 37 | #include <linux/of.h> |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 38 | #include <net/netlink.h> |
| 39 | #include <net/genetlink.h> |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 40 | |
Punit Agrawal | 100a8fd | 2014-07-29 11:50:48 +0100 | [diff] [blame] | 41 | #define CREATE_TRACE_POINTS |
| 42 | #include <trace/events/thermal.h> |
| 43 | |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 44 | #include "thermal_core.h" |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 45 | #include "thermal_hwmon.h" |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 46 | |
Zhang Rui | 63c4ec9 | 2008-04-21 16:07:13 +0800 | [diff] [blame] | 47 | MODULE_AUTHOR("Zhang Rui"); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 48 | MODULE_DESCRIPTION("Generic thermal management sysfs support"); |
Eduardo Valentin | 6d8d497 | 2013-04-23 21:48:13 +0000 | [diff] [blame] | 49 | MODULE_LICENSE("GPL v2"); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 50 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 51 | static DEFINE_IDR(thermal_tz_idr); |
| 52 | static DEFINE_IDR(thermal_cdev_idr); |
| 53 | static DEFINE_MUTEX(thermal_idr_lock); |
| 54 | |
| 55 | static LIST_HEAD(thermal_tz_list); |
| 56 | static LIST_HEAD(thermal_cdev_list); |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 57 | static LIST_HEAD(thermal_governor_list); |
| 58 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 59 | static DEFINE_MUTEX(thermal_list_lock); |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 60 | static DEFINE_MUTEX(thermal_governor_lock); |
| 61 | |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 62 | static struct thermal_governor *def_governor; |
| 63 | |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 64 | static struct thermal_governor *__find_governor(const char *name) |
| 65 | { |
| 66 | struct thermal_governor *pos; |
| 67 | |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 68 | if (!name || !name[0]) |
| 69 | return def_governor; |
| 70 | |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 71 | list_for_each_entry(pos, &thermal_governor_list, governor_list) |
| 72 | if (!strnicmp(name, pos->name, THERMAL_NAME_LENGTH)) |
| 73 | return pos; |
| 74 | |
| 75 | return NULL; |
| 76 | } |
| 77 | |
| 78 | int thermal_register_governor(struct thermal_governor *governor) |
| 79 | { |
| 80 | int err; |
| 81 | const char *name; |
| 82 | struct thermal_zone_device *pos; |
| 83 | |
| 84 | if (!governor) |
| 85 | return -EINVAL; |
| 86 | |
| 87 | mutex_lock(&thermal_governor_lock); |
| 88 | |
| 89 | err = -EBUSY; |
| 90 | if (__find_governor(governor->name) == NULL) { |
| 91 | err = 0; |
| 92 | list_add(&governor->governor_list, &thermal_governor_list); |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 93 | if (!def_governor && !strncmp(governor->name, |
| 94 | DEFAULT_THERMAL_GOVERNOR, THERMAL_NAME_LENGTH)) |
| 95 | def_governor = governor; |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | mutex_lock(&thermal_list_lock); |
| 99 | |
| 100 | list_for_each_entry(pos, &thermal_tz_list, node) { |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 101 | /* |
| 102 | * only thermal zones with specified tz->tzp->governor_name |
| 103 | * may run with tz->govenor unset |
| 104 | */ |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 105 | if (pos->governor) |
| 106 | continue; |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 107 | |
| 108 | name = pos->tzp->governor_name; |
| 109 | |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 110 | if (!strnicmp(name, governor->name, THERMAL_NAME_LENGTH)) |
| 111 | pos->governor = governor; |
| 112 | } |
| 113 | |
| 114 | mutex_unlock(&thermal_list_lock); |
| 115 | mutex_unlock(&thermal_governor_lock); |
| 116 | |
| 117 | return err; |
| 118 | } |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 119 | |
| 120 | void thermal_unregister_governor(struct thermal_governor *governor) |
| 121 | { |
| 122 | struct thermal_zone_device *pos; |
| 123 | |
| 124 | if (!governor) |
| 125 | return; |
| 126 | |
| 127 | mutex_lock(&thermal_governor_lock); |
| 128 | |
| 129 | if (__find_governor(governor->name) == NULL) |
| 130 | goto exit; |
| 131 | |
| 132 | mutex_lock(&thermal_list_lock); |
| 133 | |
| 134 | list_for_each_entry(pos, &thermal_tz_list, node) { |
| 135 | if (!strnicmp(pos->governor->name, governor->name, |
| 136 | THERMAL_NAME_LENGTH)) |
| 137 | pos->governor = NULL; |
| 138 | } |
| 139 | |
| 140 | mutex_unlock(&thermal_list_lock); |
| 141 | list_del(&governor->governor_list); |
| 142 | exit: |
| 143 | mutex_unlock(&thermal_governor_lock); |
| 144 | return; |
| 145 | } |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 146 | |
| 147 | static int get_idr(struct idr *idr, struct mutex *lock, int *id) |
| 148 | { |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 149 | int ret; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 150 | |
| 151 | if (lock) |
| 152 | mutex_lock(lock); |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 153 | ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 154 | if (lock) |
| 155 | mutex_unlock(lock); |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 156 | if (unlikely(ret < 0)) |
| 157 | return ret; |
| 158 | *id = ret; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | static void release_idr(struct idr *idr, struct mutex *lock, int id) |
| 163 | { |
| 164 | if (lock) |
| 165 | mutex_lock(lock); |
| 166 | idr_remove(idr, id); |
| 167 | if (lock) |
| 168 | mutex_unlock(lock); |
| 169 | } |
| 170 | |
Durgadoss R | 9b4298a | 2012-09-18 11:04:54 +0530 | [diff] [blame] | 171 | int get_tz_trend(struct thermal_zone_device *tz, int trip) |
| 172 | { |
| 173 | enum thermal_trend trend; |
| 174 | |
Eduardo Valentin | 0c87250 | 2013-05-29 21:37:00 +0000 | [diff] [blame] | 175 | if (tz->emul_temperature || !tz->ops->get_trend || |
| 176 | tz->ops->get_trend(tz, trip, &trend)) { |
Durgadoss R | 9b4298a | 2012-09-18 11:04:54 +0530 | [diff] [blame] | 177 | if (tz->temperature > tz->last_temperature) |
| 178 | trend = THERMAL_TREND_RAISING; |
| 179 | else if (tz->temperature < tz->last_temperature) |
| 180 | trend = THERMAL_TREND_DROPPING; |
| 181 | else |
| 182 | trend = THERMAL_TREND_STABLE; |
| 183 | } |
| 184 | |
| 185 | return trend; |
| 186 | } |
| 187 | EXPORT_SYMBOL(get_tz_trend); |
| 188 | |
| 189 | struct thermal_instance *get_thermal_instance(struct thermal_zone_device *tz, |
| 190 | struct thermal_cooling_device *cdev, int trip) |
| 191 | { |
| 192 | struct thermal_instance *pos = NULL; |
| 193 | struct thermal_instance *target_instance = NULL; |
| 194 | |
| 195 | mutex_lock(&tz->lock); |
| 196 | mutex_lock(&cdev->lock); |
| 197 | |
| 198 | list_for_each_entry(pos, &tz->thermal_instances, tz_node) { |
| 199 | if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) { |
| 200 | target_instance = pos; |
| 201 | break; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | mutex_unlock(&cdev->lock); |
| 206 | mutex_unlock(&tz->lock); |
| 207 | |
| 208 | return target_instance; |
| 209 | } |
| 210 | EXPORT_SYMBOL(get_thermal_instance); |
| 211 | |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 212 | static void print_bind_err_msg(struct thermal_zone_device *tz, |
| 213 | struct thermal_cooling_device *cdev, int ret) |
| 214 | { |
| 215 | dev_err(&tz->device, "binding zone %s with cdev %s failed:%d\n", |
| 216 | tz->type, cdev->type, ret); |
| 217 | } |
| 218 | |
| 219 | static void __bind(struct thermal_zone_device *tz, int mask, |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 220 | struct thermal_cooling_device *cdev, |
| 221 | unsigned long *limits) |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 222 | { |
| 223 | int i, ret; |
| 224 | |
| 225 | for (i = 0; i < tz->trips; i++) { |
| 226 | if (mask & (1 << i)) { |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 227 | unsigned long upper, lower; |
| 228 | |
| 229 | upper = THERMAL_NO_LIMIT; |
| 230 | lower = THERMAL_NO_LIMIT; |
| 231 | if (limits) { |
| 232 | lower = limits[i * 2]; |
| 233 | upper = limits[i * 2 + 1]; |
| 234 | } |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 235 | ret = thermal_zone_bind_cooling_device(tz, i, cdev, |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 236 | upper, lower); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 237 | if (ret) |
| 238 | print_bind_err_msg(tz, cdev, ret); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | static void __unbind(struct thermal_zone_device *tz, int mask, |
| 244 | struct thermal_cooling_device *cdev) |
| 245 | { |
| 246 | int i; |
| 247 | |
| 248 | for (i = 0; i < tz->trips; i++) |
| 249 | if (mask & (1 << i)) |
| 250 | thermal_zone_unbind_cooling_device(tz, i, cdev); |
| 251 | } |
| 252 | |
| 253 | static void bind_cdev(struct thermal_cooling_device *cdev) |
| 254 | { |
| 255 | int i, ret; |
| 256 | const struct thermal_zone_params *tzp; |
| 257 | struct thermal_zone_device *pos = NULL; |
| 258 | |
| 259 | mutex_lock(&thermal_list_lock); |
| 260 | |
| 261 | list_for_each_entry(pos, &thermal_tz_list, node) { |
| 262 | if (!pos->tzp && !pos->ops->bind) |
| 263 | continue; |
| 264 | |
Ni Wade | a9f2d19 | 2013-11-06 14:30:13 +0800 | [diff] [blame] | 265 | if (pos->ops->bind) { |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 266 | ret = pos->ops->bind(pos, cdev); |
| 267 | if (ret) |
| 268 | print_bind_err_msg(pos, cdev, ret); |
Ni Wade | a9f2d19 | 2013-11-06 14:30:13 +0800 | [diff] [blame] | 269 | continue; |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | tzp = pos->tzp; |
Hugh Dickins | 791700c | 2012-09-27 16:48:28 -0700 | [diff] [blame] | 273 | if (!tzp || !tzp->tbp) |
| 274 | continue; |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 275 | |
| 276 | for (i = 0; i < tzp->num_tbps; i++) { |
| 277 | if (tzp->tbp[i].cdev || !tzp->tbp[i].match) |
| 278 | continue; |
| 279 | if (tzp->tbp[i].match(pos, cdev)) |
| 280 | continue; |
| 281 | tzp->tbp[i].cdev = cdev; |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 282 | __bind(pos, tzp->tbp[i].trip_mask, cdev, |
| 283 | tzp->tbp[i].binding_limits); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 284 | } |
| 285 | } |
| 286 | |
| 287 | mutex_unlock(&thermal_list_lock); |
| 288 | } |
| 289 | |
| 290 | static void bind_tz(struct thermal_zone_device *tz) |
| 291 | { |
| 292 | int i, ret; |
| 293 | struct thermal_cooling_device *pos = NULL; |
| 294 | const struct thermal_zone_params *tzp = tz->tzp; |
| 295 | |
| 296 | if (!tzp && !tz->ops->bind) |
| 297 | return; |
| 298 | |
| 299 | mutex_lock(&thermal_list_lock); |
| 300 | |
Ni Wade | a9f2d19 | 2013-11-06 14:30:13 +0800 | [diff] [blame] | 301 | /* If there is ops->bind, try to use ops->bind */ |
| 302 | if (tz->ops->bind) { |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 303 | list_for_each_entry(pos, &thermal_cdev_list, node) { |
| 304 | ret = tz->ops->bind(tz, pos); |
| 305 | if (ret) |
| 306 | print_bind_err_msg(tz, pos, ret); |
| 307 | } |
| 308 | goto exit; |
| 309 | } |
| 310 | |
Hugh Dickins | 791700c | 2012-09-27 16:48:28 -0700 | [diff] [blame] | 311 | if (!tzp || !tzp->tbp) |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 312 | goto exit; |
| 313 | |
| 314 | list_for_each_entry(pos, &thermal_cdev_list, node) { |
| 315 | for (i = 0; i < tzp->num_tbps; i++) { |
| 316 | if (tzp->tbp[i].cdev || !tzp->tbp[i].match) |
| 317 | continue; |
| 318 | if (tzp->tbp[i].match(tz, pos)) |
| 319 | continue; |
| 320 | tzp->tbp[i].cdev = pos; |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 321 | __bind(tz, tzp->tbp[i].trip_mask, pos, |
| 322 | tzp->tbp[i].binding_limits); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | exit: |
| 326 | mutex_unlock(&thermal_list_lock); |
| 327 | } |
| 328 | |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 329 | static void thermal_zone_device_set_polling(struct thermal_zone_device *tz, |
| 330 | int delay) |
| 331 | { |
| 332 | if (delay > 1000) |
| 333 | mod_delayed_work(system_freezable_wq, &tz->poll_queue, |
| 334 | round_jiffies(msecs_to_jiffies(delay))); |
| 335 | else if (delay) |
| 336 | mod_delayed_work(system_freezable_wq, &tz->poll_queue, |
| 337 | msecs_to_jiffies(delay)); |
| 338 | else |
| 339 | cancel_delayed_work(&tz->poll_queue); |
| 340 | } |
| 341 | |
| 342 | static void monitor_thermal_zone(struct thermal_zone_device *tz) |
| 343 | { |
| 344 | mutex_lock(&tz->lock); |
| 345 | |
| 346 | if (tz->passive) |
| 347 | thermal_zone_device_set_polling(tz, tz->passive_delay); |
| 348 | else if (tz->polling_delay) |
| 349 | thermal_zone_device_set_polling(tz, tz->polling_delay); |
| 350 | else |
| 351 | thermal_zone_device_set_polling(tz, 0); |
| 352 | |
| 353 | mutex_unlock(&tz->lock); |
| 354 | } |
| 355 | |
| 356 | static void handle_non_critical_trips(struct thermal_zone_device *tz, |
| 357 | int trip, enum thermal_trip_type trip_type) |
| 358 | { |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 359 | tz->governor ? tz->governor->throttle(tz, trip) : |
| 360 | def_governor->throttle(tz, trip); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static void handle_critical_trips(struct thermal_zone_device *tz, |
| 364 | int trip, enum thermal_trip_type trip_type) |
| 365 | { |
| 366 | long trip_temp; |
| 367 | |
| 368 | tz->ops->get_trip_temp(tz, trip, &trip_temp); |
| 369 | |
| 370 | /* If we have not crossed the trip_temp, we do not care. */ |
| 371 | if (tz->temperature < trip_temp) |
| 372 | return; |
| 373 | |
Punit Agrawal | 208cd82 | 2014-07-29 11:50:50 +0100 | [diff] [blame^] | 374 | trace_thermal_zone_trip(tz, trip, trip_type); |
| 375 | |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 376 | if (tz->ops->notify) |
| 377 | tz->ops->notify(tz, trip, trip_type); |
| 378 | |
| 379 | if (trip_type == THERMAL_TRIP_CRITICAL) { |
Eduardo Valentin | 923e0b1 | 2013-01-02 15:29:41 +0000 | [diff] [blame] | 380 | dev_emerg(&tz->device, |
| 381 | "critical temperature reached(%d C),shutting down\n", |
| 382 | tz->temperature / 1000); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 383 | orderly_poweroff(true); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | static void handle_thermal_trip(struct thermal_zone_device *tz, int trip) |
| 388 | { |
| 389 | enum thermal_trip_type type; |
| 390 | |
| 391 | tz->ops->get_trip_type(tz, trip, &type); |
| 392 | |
| 393 | if (type == THERMAL_TRIP_CRITICAL || type == THERMAL_TRIP_HOT) |
| 394 | handle_critical_trips(tz, trip, type); |
| 395 | else |
| 396 | handle_non_critical_trips(tz, trip, type); |
| 397 | /* |
| 398 | * Alright, we handled this trip successfully. |
| 399 | * So, start monitoring again. |
| 400 | */ |
| 401 | monitor_thermal_zone(tz); |
| 402 | } |
| 403 | |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 404 | /** |
| 405 | * thermal_zone_get_temp() - returns its the temperature of thermal zone |
| 406 | * @tz: a valid pointer to a struct thermal_zone_device |
| 407 | * @temp: a valid pointer to where to store the resulting temperature. |
| 408 | * |
| 409 | * When a valid thermal zone reference is passed, it will fetch its |
| 410 | * temperature and fill @temp. |
| 411 | * |
| 412 | * Return: On success returns 0, an error code otherwise |
| 413 | */ |
| 414 | int thermal_zone_get_temp(struct thermal_zone_device *tz, unsigned long *temp) |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 415 | { |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 416 | int ret = -EINVAL; |
Zhang Rui | 5e20b2e | 2013-02-06 14:02:12 +0800 | [diff] [blame] | 417 | #ifdef CONFIG_THERMAL_EMULATION |
| 418 | int count; |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 419 | unsigned long crit_temp = -1UL; |
| 420 | enum thermal_trip_type type; |
Zhang Rui | 5e20b2e | 2013-02-06 14:02:12 +0800 | [diff] [blame] | 421 | #endif |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 422 | |
Eduardo Valentin | 81bd4e1 | 2013-09-12 19:15:44 -0400 | [diff] [blame] | 423 | if (!tz || IS_ERR(tz) || !tz->ops->get_temp) |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 424 | goto exit; |
| 425 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 426 | mutex_lock(&tz->lock); |
| 427 | |
| 428 | ret = tz->ops->get_temp(tz, temp); |
| 429 | #ifdef CONFIG_THERMAL_EMULATION |
| 430 | if (!tz->emul_temperature) |
| 431 | goto skip_emul; |
| 432 | |
| 433 | for (count = 0; count < tz->trips; count++) { |
| 434 | ret = tz->ops->get_trip_type(tz, count, &type); |
| 435 | if (!ret && type == THERMAL_TRIP_CRITICAL) { |
| 436 | ret = tz->ops->get_trip_temp(tz, count, &crit_temp); |
| 437 | break; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | if (ret) |
| 442 | goto skip_emul; |
| 443 | |
| 444 | if (*temp < crit_temp) |
| 445 | *temp = tz->emul_temperature; |
| 446 | skip_emul: |
| 447 | #endif |
| 448 | mutex_unlock(&tz->lock); |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 449 | exit: |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 450 | return ret; |
| 451 | } |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 452 | EXPORT_SYMBOL_GPL(thermal_zone_get_temp); |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 453 | |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 454 | static void update_temperature(struct thermal_zone_device *tz) |
| 455 | { |
| 456 | long temp; |
| 457 | int ret; |
| 458 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 459 | ret = thermal_zone_get_temp(tz, &temp); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 460 | if (ret) { |
Eduardo Valentin | 923e0b1 | 2013-01-02 15:29:41 +0000 | [diff] [blame] | 461 | dev_warn(&tz->device, "failed to read out thermal zone %d\n", |
| 462 | tz->id); |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 463 | return; |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 464 | } |
| 465 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 466 | mutex_lock(&tz->lock); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 467 | tz->last_temperature = tz->temperature; |
| 468 | tz->temperature = temp; |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 469 | mutex_unlock(&tz->lock); |
Aaron Lu | 06475b5 | 2013-12-02 13:54:26 +0800 | [diff] [blame] | 470 | |
Punit Agrawal | 100a8fd | 2014-07-29 11:50:48 +0100 | [diff] [blame] | 471 | trace_thermal_temperature(tz); |
Aaron Lu | 06475b5 | 2013-12-02 13:54:26 +0800 | [diff] [blame] | 472 | dev_dbg(&tz->device, "last_temperature=%d, current_temperature=%d\n", |
| 473 | tz->last_temperature, tz->temperature); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | void thermal_zone_device_update(struct thermal_zone_device *tz) |
| 477 | { |
| 478 | int count; |
| 479 | |
Eduardo Valentin | 81bd4e1 | 2013-09-12 19:15:44 -0400 | [diff] [blame] | 480 | if (!tz->ops->get_temp) |
| 481 | return; |
| 482 | |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 483 | update_temperature(tz); |
| 484 | |
| 485 | for (count = 0; count < tz->trips; count++) |
| 486 | handle_thermal_trip(tz, count); |
| 487 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 488 | EXPORT_SYMBOL_GPL(thermal_zone_device_update); |
Durgadoss R | 0c01ebb | 2012-09-18 11:05:04 +0530 | [diff] [blame] | 489 | |
| 490 | static void thermal_zone_device_check(struct work_struct *work) |
| 491 | { |
| 492 | struct thermal_zone_device *tz = container_of(work, struct |
| 493 | thermal_zone_device, |
| 494 | poll_queue.work); |
| 495 | thermal_zone_device_update(tz); |
| 496 | } |
| 497 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 498 | /* sys I/F for thermal zone */ |
| 499 | |
| 500 | #define to_thermal_zone(_dev) \ |
| 501 | container_of(_dev, struct thermal_zone_device, device) |
| 502 | |
| 503 | static ssize_t |
| 504 | type_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 505 | { |
| 506 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 507 | |
| 508 | return sprintf(buf, "%s\n", tz->type); |
| 509 | } |
| 510 | |
| 511 | static ssize_t |
| 512 | temp_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 513 | { |
| 514 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 515 | long temperature; |
| 516 | int ret; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 517 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 518 | ret = thermal_zone_get_temp(tz, &temperature); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 519 | |
| 520 | if (ret) |
| 521 | return ret; |
| 522 | |
| 523 | return sprintf(buf, "%ld\n", temperature); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | static ssize_t |
| 527 | mode_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 528 | { |
| 529 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 530 | enum thermal_device_mode mode; |
| 531 | int result; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 532 | |
| 533 | if (!tz->ops->get_mode) |
| 534 | return -EPERM; |
| 535 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 536 | result = tz->ops->get_mode(tz, &mode); |
| 537 | if (result) |
| 538 | return result; |
| 539 | |
| 540 | return sprintf(buf, "%s\n", mode == THERMAL_DEVICE_ENABLED ? "enabled" |
| 541 | : "disabled"); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | static ssize_t |
| 545 | mode_store(struct device *dev, struct device_attribute *attr, |
| 546 | const char *buf, size_t count) |
| 547 | { |
| 548 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 549 | int result; |
| 550 | |
| 551 | if (!tz->ops->set_mode) |
| 552 | return -EPERM; |
| 553 | |
Amit Daniel Kachhap | f1f0e2a | 2012-03-21 16:40:01 +0530 | [diff] [blame] | 554 | if (!strncmp(buf, "enabled", sizeof("enabled") - 1)) |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 555 | result = tz->ops->set_mode(tz, THERMAL_DEVICE_ENABLED); |
Amit Daniel Kachhap | f1f0e2a | 2012-03-21 16:40:01 +0530 | [diff] [blame] | 556 | else if (!strncmp(buf, "disabled", sizeof("disabled") - 1)) |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 557 | result = tz->ops->set_mode(tz, THERMAL_DEVICE_DISABLED); |
| 558 | else |
| 559 | result = -EINVAL; |
| 560 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 561 | if (result) |
| 562 | return result; |
| 563 | |
| 564 | return count; |
| 565 | } |
| 566 | |
| 567 | static ssize_t |
| 568 | trip_point_type_show(struct device *dev, struct device_attribute *attr, |
| 569 | char *buf) |
| 570 | { |
| 571 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 572 | enum thermal_trip_type type; |
| 573 | int trip, result; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 574 | |
| 575 | if (!tz->ops->get_trip_type) |
| 576 | return -EPERM; |
| 577 | |
| 578 | if (!sscanf(attr->attr.name, "trip_point_%d_type", &trip)) |
| 579 | return -EINVAL; |
| 580 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 581 | result = tz->ops->get_trip_type(tz, trip, &type); |
| 582 | if (result) |
| 583 | return result; |
| 584 | |
| 585 | switch (type) { |
| 586 | case THERMAL_TRIP_CRITICAL: |
Amit Kucheria | 625120a4 | 2009-10-16 12:46:02 +0300 | [diff] [blame] | 587 | return sprintf(buf, "critical\n"); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 588 | case THERMAL_TRIP_HOT: |
Amit Kucheria | 625120a4 | 2009-10-16 12:46:02 +0300 | [diff] [blame] | 589 | return sprintf(buf, "hot\n"); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 590 | case THERMAL_TRIP_PASSIVE: |
Amit Kucheria | 625120a4 | 2009-10-16 12:46:02 +0300 | [diff] [blame] | 591 | return sprintf(buf, "passive\n"); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 592 | case THERMAL_TRIP_ACTIVE: |
Amit Kucheria | 625120a4 | 2009-10-16 12:46:02 +0300 | [diff] [blame] | 593 | return sprintf(buf, "active\n"); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 594 | default: |
Amit Kucheria | 625120a4 | 2009-10-16 12:46:02 +0300 | [diff] [blame] | 595 | return sprintf(buf, "unknown\n"); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 596 | } |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | static ssize_t |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 600 | trip_point_temp_store(struct device *dev, struct device_attribute *attr, |
| 601 | const char *buf, size_t count) |
| 602 | { |
| 603 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 604 | int trip, ret; |
| 605 | unsigned long temperature; |
| 606 | |
| 607 | if (!tz->ops->set_trip_temp) |
| 608 | return -EPERM; |
| 609 | |
| 610 | if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip)) |
| 611 | return -EINVAL; |
| 612 | |
| 613 | if (kstrtoul(buf, 10, &temperature)) |
| 614 | return -EINVAL; |
| 615 | |
| 616 | ret = tz->ops->set_trip_temp(tz, trip, temperature); |
| 617 | |
| 618 | return ret ? ret : count; |
| 619 | } |
| 620 | |
| 621 | static ssize_t |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 622 | trip_point_temp_show(struct device *dev, struct device_attribute *attr, |
| 623 | char *buf) |
| 624 | { |
| 625 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 626 | int trip, ret; |
| 627 | long temperature; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 628 | |
| 629 | if (!tz->ops->get_trip_temp) |
| 630 | return -EPERM; |
| 631 | |
| 632 | if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip)) |
| 633 | return -EINVAL; |
| 634 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 635 | ret = tz->ops->get_trip_temp(tz, trip, &temperature); |
| 636 | |
| 637 | if (ret) |
| 638 | return ret; |
| 639 | |
| 640 | return sprintf(buf, "%ld\n", temperature); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 641 | } |
| 642 | |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 643 | static ssize_t |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 644 | trip_point_hyst_store(struct device *dev, struct device_attribute *attr, |
| 645 | const char *buf, size_t count) |
| 646 | { |
| 647 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 648 | int trip, ret; |
| 649 | unsigned long temperature; |
| 650 | |
| 651 | if (!tz->ops->set_trip_hyst) |
| 652 | return -EPERM; |
| 653 | |
| 654 | if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip)) |
| 655 | return -EINVAL; |
| 656 | |
| 657 | if (kstrtoul(buf, 10, &temperature)) |
| 658 | return -EINVAL; |
| 659 | |
| 660 | /* |
| 661 | * We are not doing any check on the 'temperature' value |
| 662 | * here. The driver implementing 'set_trip_hyst' has to |
| 663 | * take care of this. |
| 664 | */ |
| 665 | ret = tz->ops->set_trip_hyst(tz, trip, temperature); |
| 666 | |
| 667 | return ret ? ret : count; |
| 668 | } |
| 669 | |
| 670 | static ssize_t |
| 671 | trip_point_hyst_show(struct device *dev, struct device_attribute *attr, |
| 672 | char *buf) |
| 673 | { |
| 674 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 675 | int trip, ret; |
| 676 | unsigned long temperature; |
| 677 | |
| 678 | if (!tz->ops->get_trip_hyst) |
| 679 | return -EPERM; |
| 680 | |
| 681 | if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip)) |
| 682 | return -EINVAL; |
| 683 | |
| 684 | ret = tz->ops->get_trip_hyst(tz, trip, &temperature); |
| 685 | |
| 686 | return ret ? ret : sprintf(buf, "%ld\n", temperature); |
| 687 | } |
| 688 | |
| 689 | static ssize_t |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 690 | passive_store(struct device *dev, struct device_attribute *attr, |
| 691 | const char *buf, size_t count) |
| 692 | { |
| 693 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 694 | struct thermal_cooling_device *cdev = NULL; |
| 695 | int state; |
| 696 | |
| 697 | if (!sscanf(buf, "%d\n", &state)) |
| 698 | return -EINVAL; |
| 699 | |
Frans Pop | 3d8e3ad | 2009-10-26 08:39:02 +0100 | [diff] [blame] | 700 | /* sanity check: values below 1000 millicelcius don't make sense |
| 701 | * and can cause the system to go into a thermal heart attack |
| 702 | */ |
| 703 | if (state && state < 1000) |
| 704 | return -EINVAL; |
| 705 | |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 706 | if (state && !tz->forced_passive) { |
| 707 | mutex_lock(&thermal_list_lock); |
| 708 | list_for_each_entry(cdev, &thermal_cdev_list, node) { |
| 709 | if (!strncmp("Processor", cdev->type, |
| 710 | sizeof("Processor"))) |
| 711 | thermal_zone_bind_cooling_device(tz, |
Zhang Rui | 9d99842 | 2012-06-26 16:35:57 +0800 | [diff] [blame] | 712 | THERMAL_TRIPS_NONE, cdev, |
| 713 | THERMAL_NO_LIMIT, |
| 714 | THERMAL_NO_LIMIT); |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 715 | } |
| 716 | mutex_unlock(&thermal_list_lock); |
Frans Pop | e4143b0 | 2009-10-26 08:39:03 +0100 | [diff] [blame] | 717 | if (!tz->passive_delay) |
| 718 | tz->passive_delay = 1000; |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 719 | } else if (!state && tz->forced_passive) { |
| 720 | mutex_lock(&thermal_list_lock); |
| 721 | list_for_each_entry(cdev, &thermal_cdev_list, node) { |
| 722 | if (!strncmp("Processor", cdev->type, |
| 723 | sizeof("Processor"))) |
| 724 | thermal_zone_unbind_cooling_device(tz, |
| 725 | THERMAL_TRIPS_NONE, |
| 726 | cdev); |
| 727 | } |
| 728 | mutex_unlock(&thermal_list_lock); |
Frans Pop | e4143b0 | 2009-10-26 08:39:03 +0100 | [diff] [blame] | 729 | tz->passive_delay = 0; |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 730 | } |
| 731 | |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 732 | tz->forced_passive = state; |
| 733 | |
| 734 | thermal_zone_device_update(tz); |
| 735 | |
| 736 | return count; |
| 737 | } |
| 738 | |
| 739 | static ssize_t |
| 740 | passive_show(struct device *dev, struct device_attribute *attr, |
| 741 | char *buf) |
| 742 | { |
| 743 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 744 | |
| 745 | return sprintf(buf, "%d\n", tz->forced_passive); |
| 746 | } |
| 747 | |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 748 | static ssize_t |
| 749 | policy_store(struct device *dev, struct device_attribute *attr, |
| 750 | const char *buf, size_t count) |
| 751 | { |
| 752 | int ret = -EINVAL; |
| 753 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 754 | struct thermal_governor *gov; |
Andy Shevchenko | 42a5bf5 | 2013-05-17 11:52:02 +0000 | [diff] [blame] | 755 | char name[THERMAL_NAME_LENGTH]; |
| 756 | |
| 757 | snprintf(name, sizeof(name), "%s", buf); |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 758 | |
| 759 | mutex_lock(&thermal_governor_lock); |
| 760 | |
Andy Shevchenko | 42a5bf5 | 2013-05-17 11:52:02 +0000 | [diff] [blame] | 761 | gov = __find_governor(strim(name)); |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 762 | if (!gov) |
| 763 | goto exit; |
| 764 | |
| 765 | tz->governor = gov; |
| 766 | ret = count; |
| 767 | |
| 768 | exit: |
| 769 | mutex_unlock(&thermal_governor_lock); |
| 770 | return ret; |
| 771 | } |
| 772 | |
| 773 | static ssize_t |
| 774 | policy_show(struct device *dev, struct device_attribute *devattr, char *buf) |
| 775 | { |
| 776 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 777 | |
| 778 | return sprintf(buf, "%s\n", tz->governor->name); |
| 779 | } |
| 780 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 781 | #ifdef CONFIG_THERMAL_EMULATION |
| 782 | static ssize_t |
| 783 | emul_temp_store(struct device *dev, struct device_attribute *attr, |
| 784 | const char *buf, size_t count) |
| 785 | { |
| 786 | struct thermal_zone_device *tz = to_thermal_zone(dev); |
| 787 | int ret = 0; |
| 788 | unsigned long temperature; |
| 789 | |
| 790 | if (kstrtoul(buf, 10, &temperature)) |
| 791 | return -EINVAL; |
| 792 | |
| 793 | if (!tz->ops->set_emul_temp) { |
| 794 | mutex_lock(&tz->lock); |
| 795 | tz->emul_temperature = temperature; |
| 796 | mutex_unlock(&tz->lock); |
| 797 | } else { |
| 798 | ret = tz->ops->set_emul_temp(tz, temperature); |
| 799 | } |
| 800 | |
lan,Tianyu | 800744b | 2014-01-02 15:47:54 +0800 | [diff] [blame] | 801 | if (!ret) |
| 802 | thermal_zone_device_update(tz); |
| 803 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 804 | return ret ? ret : count; |
| 805 | } |
| 806 | static DEVICE_ATTR(emul_temp, S_IWUSR, NULL, emul_temp_store); |
| 807 | #endif/*CONFIG_THERMAL_EMULATION*/ |
| 808 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 809 | static DEVICE_ATTR(type, 0444, type_show, NULL); |
| 810 | static DEVICE_ATTR(temp, 0444, temp_show, NULL); |
| 811 | static DEVICE_ATTR(mode, 0644, mode_show, mode_store); |
Joe Perches | 886ee54 | 2012-03-21 12:55:01 -0700 | [diff] [blame] | 812 | static DEVICE_ATTR(passive, S_IRUGO | S_IWUSR, passive_show, passive_store); |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 813 | static DEVICE_ATTR(policy, S_IRUGO | S_IWUSR, policy_show, policy_store); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 814 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 815 | /* sys I/F for cooling device */ |
| 816 | #define to_cooling_device(_dev) \ |
| 817 | container_of(_dev, struct thermal_cooling_device, device) |
| 818 | |
| 819 | static ssize_t |
| 820 | thermal_cooling_device_type_show(struct device *dev, |
| 821 | struct device_attribute *attr, char *buf) |
| 822 | { |
| 823 | struct thermal_cooling_device *cdev = to_cooling_device(dev); |
| 824 | |
| 825 | return sprintf(buf, "%s\n", cdev->type); |
| 826 | } |
| 827 | |
| 828 | static ssize_t |
| 829 | thermal_cooling_device_max_state_show(struct device *dev, |
| 830 | struct device_attribute *attr, char *buf) |
| 831 | { |
| 832 | struct thermal_cooling_device *cdev = to_cooling_device(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 833 | unsigned long state; |
| 834 | int ret; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 835 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 836 | ret = cdev->ops->get_max_state(cdev, &state); |
| 837 | if (ret) |
| 838 | return ret; |
| 839 | return sprintf(buf, "%ld\n", state); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | static ssize_t |
| 843 | thermal_cooling_device_cur_state_show(struct device *dev, |
| 844 | struct device_attribute *attr, char *buf) |
| 845 | { |
| 846 | struct thermal_cooling_device *cdev = to_cooling_device(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 847 | unsigned long state; |
| 848 | int ret; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 849 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 850 | ret = cdev->ops->get_cur_state(cdev, &state); |
| 851 | if (ret) |
| 852 | return ret; |
| 853 | return sprintf(buf, "%ld\n", state); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | static ssize_t |
| 857 | thermal_cooling_device_cur_state_store(struct device *dev, |
| 858 | struct device_attribute *attr, |
| 859 | const char *buf, size_t count) |
| 860 | { |
| 861 | struct thermal_cooling_device *cdev = to_cooling_device(dev); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 862 | unsigned long state; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 863 | int result; |
| 864 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 865 | if (!sscanf(buf, "%ld\n", &state)) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 866 | return -EINVAL; |
| 867 | |
Roel Kluin | edb9491 | 2009-12-15 22:46:50 +0100 | [diff] [blame] | 868 | if ((long)state < 0) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 869 | return -EINVAL; |
| 870 | |
| 871 | result = cdev->ops->set_cur_state(cdev, state); |
| 872 | if (result) |
| 873 | return result; |
| 874 | return count; |
| 875 | } |
| 876 | |
| 877 | static struct device_attribute dev_attr_cdev_type = |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 878 | __ATTR(type, 0444, thermal_cooling_device_type_show, NULL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 879 | static DEVICE_ATTR(max_state, 0444, |
| 880 | thermal_cooling_device_max_state_show, NULL); |
| 881 | static DEVICE_ATTR(cur_state, 0644, |
| 882 | thermal_cooling_device_cur_state_show, |
| 883 | thermal_cooling_device_cur_state_store); |
| 884 | |
| 885 | static ssize_t |
| 886 | thermal_cooling_device_trip_point_show(struct device *dev, |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 887 | struct device_attribute *attr, char *buf) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 888 | { |
Zhang Rui | b81b6ba | 2012-06-27 10:08:19 +0800 | [diff] [blame] | 889 | struct thermal_instance *instance; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 890 | |
| 891 | instance = |
Zhang Rui | b81b6ba | 2012-06-27 10:08:19 +0800 | [diff] [blame] | 892 | container_of(attr, struct thermal_instance, attr); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 893 | |
| 894 | if (instance->trip == THERMAL_TRIPS_NONE) |
| 895 | return sprintf(buf, "-1\n"); |
| 896 | else |
| 897 | return sprintf(buf, "%d\n", instance->trip); |
| 898 | } |
| 899 | |
| 900 | /* Device management */ |
| 901 | |
| 902 | /** |
Eduardo Valentin | d2e4eb8 | 2013-04-23 21:48:16 +0000 | [diff] [blame] | 903 | * thermal_zone_bind_cooling_device() - bind a cooling device to a thermal zone |
| 904 | * @tz: pointer to struct thermal_zone_device |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 905 | * @trip: indicates which trip point the cooling devices is |
| 906 | * associated with in this thermal zone. |
Eduardo Valentin | d2e4eb8 | 2013-04-23 21:48:16 +0000 | [diff] [blame] | 907 | * @cdev: pointer to struct thermal_cooling_device |
| 908 | * @upper: the Maximum cooling state for this trip point. |
| 909 | * THERMAL_NO_LIMIT means no upper limit, |
| 910 | * and the cooling device can be in max_state. |
| 911 | * @lower: the Minimum cooling state can be used for this trip point. |
| 912 | * THERMAL_NO_LIMIT means no lower limit, |
| 913 | * and the cooling device can be in cooling state 0. |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 914 | * |
Eduardo Valentin | d2e4eb8 | 2013-04-23 21:48:16 +0000 | [diff] [blame] | 915 | * This interface function bind a thermal cooling device to the certain trip |
| 916 | * point of a thermal zone device. |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 917 | * This function is usually called in the thermal zone device .bind callback. |
Eduardo Valentin | d2e4eb8 | 2013-04-23 21:48:16 +0000 | [diff] [blame] | 918 | * |
| 919 | * Return: 0 on success, the proper error value otherwise. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 920 | */ |
| 921 | int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, |
| 922 | int trip, |
Zhang Rui | 9d99842 | 2012-06-26 16:35:57 +0800 | [diff] [blame] | 923 | struct thermal_cooling_device *cdev, |
| 924 | unsigned long upper, unsigned long lower) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 925 | { |
Zhang Rui | b81b6ba | 2012-06-27 10:08:19 +0800 | [diff] [blame] | 926 | struct thermal_instance *dev; |
| 927 | struct thermal_instance *pos; |
Thomas Sujith | c751670 | 2008-02-15 00:58:50 -0500 | [diff] [blame] | 928 | struct thermal_zone_device *pos1; |
| 929 | struct thermal_cooling_device *pos2; |
Zhang Rui | 74051ba | 2012-06-26 16:27:22 +0800 | [diff] [blame] | 930 | unsigned long max_state; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 931 | int result; |
| 932 | |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 933 | if (trip >= tz->trips || (trip < 0 && trip != THERMAL_TRIPS_NONE)) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 934 | return -EINVAL; |
| 935 | |
Thomas Sujith | c751670 | 2008-02-15 00:58:50 -0500 | [diff] [blame] | 936 | list_for_each_entry(pos1, &thermal_tz_list, node) { |
| 937 | if (pos1 == tz) |
| 938 | break; |
| 939 | } |
| 940 | list_for_each_entry(pos2, &thermal_cdev_list, node) { |
| 941 | if (pos2 == cdev) |
| 942 | break; |
| 943 | } |
| 944 | |
| 945 | if (tz != pos1 || cdev != pos2) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 946 | return -EINVAL; |
| 947 | |
Zhang Rui | 9d99842 | 2012-06-26 16:35:57 +0800 | [diff] [blame] | 948 | cdev->ops->get_max_state(cdev, &max_state); |
| 949 | |
| 950 | /* lower default 0, upper default max_state */ |
| 951 | lower = lower == THERMAL_NO_LIMIT ? 0 : lower; |
| 952 | upper = upper == THERMAL_NO_LIMIT ? max_state : upper; |
| 953 | |
| 954 | if (lower > upper || upper > max_state) |
| 955 | return -EINVAL; |
| 956 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 957 | dev = |
Zhang Rui | b81b6ba | 2012-06-27 10:08:19 +0800 | [diff] [blame] | 958 | kzalloc(sizeof(struct thermal_instance), GFP_KERNEL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 959 | if (!dev) |
| 960 | return -ENOMEM; |
| 961 | dev->tz = tz; |
| 962 | dev->cdev = cdev; |
| 963 | dev->trip = trip; |
Zhang Rui | 9d99842 | 2012-06-26 16:35:57 +0800 | [diff] [blame] | 964 | dev->upper = upper; |
| 965 | dev->lower = lower; |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 966 | dev->target = THERMAL_NO_TARGET; |
Zhang Rui | 74051ba | 2012-06-26 16:27:22 +0800 | [diff] [blame] | 967 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 968 | result = get_idr(&tz->idr, &tz->lock, &dev->id); |
| 969 | if (result) |
| 970 | goto free_mem; |
| 971 | |
| 972 | sprintf(dev->name, "cdev%d", dev->id); |
| 973 | result = |
| 974 | sysfs_create_link(&tz->device.kobj, &cdev->device.kobj, dev->name); |
| 975 | if (result) |
| 976 | goto release_idr; |
| 977 | |
| 978 | sprintf(dev->attr_name, "cdev%d_trip_point", dev->id); |
Sergey Senozhatsky | 975f8c5 | 2010-04-06 14:34:51 -0700 | [diff] [blame] | 979 | sysfs_attr_init(&dev->attr.attr); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 980 | dev->attr.attr.name = dev->attr_name; |
| 981 | dev->attr.attr.mode = 0444; |
| 982 | dev->attr.show = thermal_cooling_device_trip_point_show; |
| 983 | result = device_create_file(&tz->device, &dev->attr); |
| 984 | if (result) |
| 985 | goto remove_symbol_link; |
| 986 | |
| 987 | mutex_lock(&tz->lock); |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 988 | mutex_lock(&cdev->lock); |
Zhang Rui | cddf31b | 2012-06-27 10:09:36 +0800 | [diff] [blame] | 989 | list_for_each_entry(pos, &tz->thermal_instances, tz_node) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 990 | if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) { |
| 991 | result = -EEXIST; |
| 992 | break; |
| 993 | } |
Zhang Rui | b5e4ae6 | 2012-06-27 14:11:52 +0800 | [diff] [blame] | 994 | if (!result) { |
Zhang Rui | cddf31b | 2012-06-27 10:09:36 +0800 | [diff] [blame] | 995 | list_add_tail(&dev->tz_node, &tz->thermal_instances); |
Zhang Rui | b5e4ae6 | 2012-06-27 14:11:52 +0800 | [diff] [blame] | 996 | list_add_tail(&dev->cdev_node, &cdev->thermal_instances); |
| 997 | } |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 998 | mutex_unlock(&cdev->lock); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 999 | mutex_unlock(&tz->lock); |
| 1000 | |
| 1001 | if (!result) |
| 1002 | return 0; |
| 1003 | |
| 1004 | device_remove_file(&tz->device, &dev->attr); |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1005 | remove_symbol_link: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1006 | sysfs_remove_link(&tz->device.kobj, dev->name); |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1007 | release_idr: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1008 | release_idr(&tz->idr, &tz->lock, dev->id); |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1009 | free_mem: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1010 | kfree(dev); |
| 1011 | return result; |
| 1012 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1013 | EXPORT_SYMBOL_GPL(thermal_zone_bind_cooling_device); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1014 | |
| 1015 | /** |
Eduardo Valentin | 9892e5d | 2013-04-23 21:48:17 +0000 | [diff] [blame] | 1016 | * thermal_zone_unbind_cooling_device() - unbind a cooling device from a |
| 1017 | * thermal zone. |
| 1018 | * @tz: pointer to a struct thermal_zone_device. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1019 | * @trip: indicates which trip point the cooling devices is |
| 1020 | * associated with in this thermal zone. |
Eduardo Valentin | 9892e5d | 2013-04-23 21:48:17 +0000 | [diff] [blame] | 1021 | * @cdev: pointer to a struct thermal_cooling_device. |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1022 | * |
Eduardo Valentin | 9892e5d | 2013-04-23 21:48:17 +0000 | [diff] [blame] | 1023 | * This interface function unbind a thermal cooling device from the certain |
| 1024 | * trip point of a thermal zone device. |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1025 | * This function is usually called in the thermal zone device .unbind callback. |
Eduardo Valentin | 9892e5d | 2013-04-23 21:48:17 +0000 | [diff] [blame] | 1026 | * |
| 1027 | * Return: 0 on success, the proper error value otherwise. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1028 | */ |
| 1029 | int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz, |
| 1030 | int trip, |
| 1031 | struct thermal_cooling_device *cdev) |
| 1032 | { |
Zhang Rui | b81b6ba | 2012-06-27 10:08:19 +0800 | [diff] [blame] | 1033 | struct thermal_instance *pos, *next; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1034 | |
| 1035 | mutex_lock(&tz->lock); |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1036 | mutex_lock(&cdev->lock); |
Zhang Rui | cddf31b | 2012-06-27 10:09:36 +0800 | [diff] [blame] | 1037 | list_for_each_entry_safe(pos, next, &tz->thermal_instances, tz_node) { |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1038 | if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) { |
Zhang Rui | cddf31b | 2012-06-27 10:09:36 +0800 | [diff] [blame] | 1039 | list_del(&pos->tz_node); |
Zhang Rui | b5e4ae6 | 2012-06-27 14:11:52 +0800 | [diff] [blame] | 1040 | list_del(&pos->cdev_node); |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1041 | mutex_unlock(&cdev->lock); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1042 | mutex_unlock(&tz->lock); |
| 1043 | goto unbind; |
| 1044 | } |
| 1045 | } |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1046 | mutex_unlock(&cdev->lock); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1047 | mutex_unlock(&tz->lock); |
| 1048 | |
| 1049 | return -ENODEV; |
| 1050 | |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1051 | unbind: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1052 | device_remove_file(&tz->device, &pos->attr); |
| 1053 | sysfs_remove_link(&tz->device.kobj, pos->name); |
| 1054 | release_idr(&tz->idr, &tz->lock, pos->id); |
| 1055 | kfree(pos); |
| 1056 | return 0; |
| 1057 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1058 | EXPORT_SYMBOL_GPL(thermal_zone_unbind_cooling_device); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1059 | |
| 1060 | static void thermal_release(struct device *dev) |
| 1061 | { |
| 1062 | struct thermal_zone_device *tz; |
| 1063 | struct thermal_cooling_device *cdev; |
| 1064 | |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1065 | if (!strncmp(dev_name(dev), "thermal_zone", |
| 1066 | sizeof("thermal_zone") - 1)) { |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1067 | tz = to_thermal_zone(dev); |
| 1068 | kfree(tz); |
durgadoss.r@intel.com | 732e4c8 | 2013-10-02 00:08:00 +0530 | [diff] [blame] | 1069 | } else if(!strncmp(dev_name(dev), "cooling_device", |
| 1070 | sizeof("cooling_device") - 1)){ |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1071 | cdev = to_cooling_device(dev); |
| 1072 | kfree(cdev); |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | static struct class thermal_class = { |
| 1077 | .name = "thermal", |
| 1078 | .dev_release = thermal_release, |
| 1079 | }; |
| 1080 | |
| 1081 | /** |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1082 | * __thermal_cooling_device_register() - register a new thermal cooling device |
| 1083 | * @np: a pointer to a device tree node. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1084 | * @type: the thermal cooling device type. |
| 1085 | * @devdata: device private data. |
| 1086 | * @ops: standard thermal cooling devices callbacks. |
Eduardo Valentin | 3a6eccb | 2013-04-23 21:48:18 +0000 | [diff] [blame] | 1087 | * |
| 1088 | * This interface function adds a new thermal cooling device (fan/processor/...) |
| 1089 | * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself |
| 1090 | * to all the thermal zone devices registered at the same time. |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1091 | * It also gives the opportunity to link the cooling device to a device tree |
| 1092 | * node, so that it can be bound to a thermal zone created out of device tree. |
Eduardo Valentin | 3a6eccb | 2013-04-23 21:48:18 +0000 | [diff] [blame] | 1093 | * |
| 1094 | * Return: a pointer to the created struct thermal_cooling_device or an |
| 1095 | * ERR_PTR. Caller must check return value with IS_ERR*() helpers. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1096 | */ |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1097 | static struct thermal_cooling_device * |
| 1098 | __thermal_cooling_device_register(struct device_node *np, |
| 1099 | char *type, void *devdata, |
| 1100 | const struct thermal_cooling_device_ops *ops) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1101 | { |
| 1102 | struct thermal_cooling_device *cdev; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1103 | int result; |
| 1104 | |
Guenter Roeck | 204dd1d | 2012-08-07 22:36:45 -0700 | [diff] [blame] | 1105 | if (type && strlen(type) >= THERMAL_NAME_LENGTH) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1106 | return ERR_PTR(-EINVAL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1107 | |
| 1108 | if (!ops || !ops->get_max_state || !ops->get_cur_state || |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1109 | !ops->set_cur_state) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1110 | return ERR_PTR(-EINVAL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1111 | |
| 1112 | cdev = kzalloc(sizeof(struct thermal_cooling_device), GFP_KERNEL); |
| 1113 | if (!cdev) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1114 | return ERR_PTR(-ENOMEM); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1115 | |
| 1116 | result = get_idr(&thermal_cdev_idr, &thermal_idr_lock, &cdev->id); |
| 1117 | if (result) { |
| 1118 | kfree(cdev); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1119 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1120 | } |
| 1121 | |
Eduardo Valentin | c7a8b9d | 2013-04-23 21:48:12 +0000 | [diff] [blame] | 1122 | strlcpy(cdev->type, type ? : "", sizeof(cdev->type)); |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1123 | mutex_init(&cdev->lock); |
Zhang Rui | b5e4ae6 | 2012-06-27 14:11:52 +0800 | [diff] [blame] | 1124 | INIT_LIST_HEAD(&cdev->thermal_instances); |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1125 | cdev->np = np; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1126 | cdev->ops = ops; |
Ni Wade | 5ca0cce | 2014-02-17 11:02:55 +0800 | [diff] [blame] | 1127 | cdev->updated = false; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1128 | cdev->device.class = &thermal_class; |
| 1129 | cdev->devdata = devdata; |
Kay Sievers | 354655e | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 1130 | dev_set_name(&cdev->device, "cooling_device%d", cdev->id); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1131 | result = device_register(&cdev->device); |
| 1132 | if (result) { |
| 1133 | release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id); |
| 1134 | kfree(cdev); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1135 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /* sys I/F */ |
| 1139 | if (type) { |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1140 | result = device_create_file(&cdev->device, &dev_attr_cdev_type); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1141 | if (result) |
| 1142 | goto unregister; |
| 1143 | } |
| 1144 | |
| 1145 | result = device_create_file(&cdev->device, &dev_attr_max_state); |
| 1146 | if (result) |
| 1147 | goto unregister; |
| 1148 | |
| 1149 | result = device_create_file(&cdev->device, &dev_attr_cur_state); |
| 1150 | if (result) |
| 1151 | goto unregister; |
| 1152 | |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1153 | /* Add 'this' new cdev to the global cdev list */ |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1154 | mutex_lock(&thermal_list_lock); |
| 1155 | list_add(&cdev->node, &thermal_cdev_list); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1156 | mutex_unlock(&thermal_list_lock); |
| 1157 | |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1158 | /* Update binding information for 'this' new cdev */ |
| 1159 | bind_cdev(cdev); |
| 1160 | |
| 1161 | return cdev; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1162 | |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1163 | unregister: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1164 | release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id); |
| 1165 | device_unregister(&cdev->device); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1166 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1167 | } |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1168 | |
| 1169 | /** |
| 1170 | * thermal_cooling_device_register() - register a new thermal cooling device |
| 1171 | * @type: the thermal cooling device type. |
| 1172 | * @devdata: device private data. |
| 1173 | * @ops: standard thermal cooling devices callbacks. |
| 1174 | * |
| 1175 | * This interface function adds a new thermal cooling device (fan/processor/...) |
| 1176 | * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself |
| 1177 | * to all the thermal zone devices registered at the same time. |
| 1178 | * |
| 1179 | * Return: a pointer to the created struct thermal_cooling_device or an |
| 1180 | * ERR_PTR. Caller must check return value with IS_ERR*() helpers. |
| 1181 | */ |
| 1182 | struct thermal_cooling_device * |
| 1183 | thermal_cooling_device_register(char *type, void *devdata, |
| 1184 | const struct thermal_cooling_device_ops *ops) |
| 1185 | { |
| 1186 | return __thermal_cooling_device_register(NULL, type, devdata, ops); |
| 1187 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1188 | EXPORT_SYMBOL_GPL(thermal_cooling_device_register); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1189 | |
| 1190 | /** |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 1191 | * thermal_of_cooling_device_register() - register an OF thermal cooling device |
| 1192 | * @np: a pointer to a device tree node. |
| 1193 | * @type: the thermal cooling device type. |
| 1194 | * @devdata: device private data. |
| 1195 | * @ops: standard thermal cooling devices callbacks. |
| 1196 | * |
| 1197 | * This function will register a cooling device with device tree node reference. |
| 1198 | * This interface function adds a new thermal cooling device (fan/processor/...) |
| 1199 | * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself |
| 1200 | * to all the thermal zone devices registered at the same time. |
| 1201 | * |
| 1202 | * Return: a pointer to the created struct thermal_cooling_device or an |
| 1203 | * ERR_PTR. Caller must check return value with IS_ERR*() helpers. |
| 1204 | */ |
| 1205 | struct thermal_cooling_device * |
| 1206 | thermal_of_cooling_device_register(struct device_node *np, |
| 1207 | char *type, void *devdata, |
| 1208 | const struct thermal_cooling_device_ops *ops) |
| 1209 | { |
| 1210 | return __thermal_cooling_device_register(np, type, devdata, ops); |
| 1211 | } |
| 1212 | EXPORT_SYMBOL_GPL(thermal_of_cooling_device_register); |
| 1213 | |
| 1214 | /** |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1215 | * thermal_cooling_device_unregister - removes the registered thermal cooling device |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1216 | * @cdev: the thermal cooling device to remove. |
| 1217 | * |
| 1218 | * thermal_cooling_device_unregister() must be called when the device is no |
| 1219 | * longer needed. |
| 1220 | */ |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1221 | void thermal_cooling_device_unregister(struct thermal_cooling_device *cdev) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1222 | { |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1223 | int i; |
| 1224 | const struct thermal_zone_params *tzp; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1225 | struct thermal_zone_device *tz; |
| 1226 | struct thermal_cooling_device *pos = NULL; |
| 1227 | |
| 1228 | if (!cdev) |
| 1229 | return; |
| 1230 | |
| 1231 | mutex_lock(&thermal_list_lock); |
| 1232 | list_for_each_entry(pos, &thermal_cdev_list, node) |
| 1233 | if (pos == cdev) |
| 1234 | break; |
| 1235 | if (pos != cdev) { |
| 1236 | /* thermal cooling device not found */ |
| 1237 | mutex_unlock(&thermal_list_lock); |
| 1238 | return; |
| 1239 | } |
| 1240 | list_del(&cdev->node); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1241 | |
| 1242 | /* Unbind all thermal zones associated with 'this' cdev */ |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1243 | list_for_each_entry(tz, &thermal_tz_list, node) { |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1244 | if (tz->ops->unbind) { |
| 1245 | tz->ops->unbind(tz, cdev); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1246 | continue; |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | if (!tz->tzp || !tz->tzp->tbp) |
| 1250 | continue; |
| 1251 | |
| 1252 | tzp = tz->tzp; |
| 1253 | for (i = 0; i < tzp->num_tbps; i++) { |
| 1254 | if (tzp->tbp[i].cdev == cdev) { |
| 1255 | __unbind(tz, tzp->tbp[i].trip_mask, cdev); |
| 1256 | tzp->tbp[i].cdev = NULL; |
| 1257 | } |
| 1258 | } |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1259 | } |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1260 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1261 | mutex_unlock(&thermal_list_lock); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1262 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1263 | if (cdev->type[0]) |
Len Brown | 543a956 | 2008-02-07 16:55:08 -0500 | [diff] [blame] | 1264 | device_remove_file(&cdev->device, &dev_attr_cdev_type); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1265 | device_remove_file(&cdev->device, &dev_attr_max_state); |
| 1266 | device_remove_file(&cdev->device, &dev_attr_cur_state); |
| 1267 | |
| 1268 | release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id); |
| 1269 | device_unregister(&cdev->device); |
| 1270 | return; |
| 1271 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1272 | EXPORT_SYMBOL_GPL(thermal_cooling_device_unregister); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1273 | |
Durgadoss R | dc76548 | 2012-09-18 11:05:00 +0530 | [diff] [blame] | 1274 | void thermal_cdev_update(struct thermal_cooling_device *cdev) |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1275 | { |
| 1276 | struct thermal_instance *instance; |
| 1277 | unsigned long target = 0; |
| 1278 | |
| 1279 | /* cooling device is updated*/ |
| 1280 | if (cdev->updated) |
| 1281 | return; |
| 1282 | |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1283 | mutex_lock(&cdev->lock); |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1284 | /* Make sure cdev enters the deepest cooling state */ |
| 1285 | list_for_each_entry(instance, &cdev->thermal_instances, cdev_node) { |
Aaron Lu | 06475b5 | 2013-12-02 13:54:26 +0800 | [diff] [blame] | 1286 | dev_dbg(&cdev->device, "zone%d->target=%lu\n", |
| 1287 | instance->tz->id, instance->target); |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1288 | if (instance->target == THERMAL_NO_TARGET) |
| 1289 | continue; |
| 1290 | if (instance->target > target) |
| 1291 | target = instance->target; |
| 1292 | } |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 1293 | mutex_unlock(&cdev->lock); |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1294 | cdev->ops->set_cur_state(cdev, target); |
| 1295 | cdev->updated = true; |
Punit Agrawal | 3981156 | 2014-07-29 11:50:49 +0100 | [diff] [blame] | 1296 | trace_cdev_update(cdev, target); |
Aaron Lu | 06475b5 | 2013-12-02 13:54:26 +0800 | [diff] [blame] | 1297 | dev_dbg(&cdev->device, "set to state %lu\n", target); |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1298 | } |
Durgadoss R | dc76548 | 2012-09-18 11:05:00 +0530 | [diff] [blame] | 1299 | EXPORT_SYMBOL(thermal_cdev_update); |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 1300 | |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1301 | /** |
Eduardo Valentin | 7b73c99 | 2013-04-23 21:48:14 +0000 | [diff] [blame] | 1302 | * thermal_notify_framework - Sensor drivers use this API to notify framework |
Durgadoss R | f2b4caa | 2012-09-18 11:05:05 +0530 | [diff] [blame] | 1303 | * @tz: thermal zone device |
| 1304 | * @trip: indicates which trip point has been crossed |
| 1305 | * |
| 1306 | * This function handles the trip events from sensor drivers. It starts |
| 1307 | * throttling the cooling devices according to the policy configured. |
| 1308 | * For CRITICAL and HOT trip points, this notifies the respective drivers, |
| 1309 | * and does actual throttling for other trip points i.e ACTIVE and PASSIVE. |
| 1310 | * The throttling policy is based on the configured platform data; if no |
| 1311 | * platform data is provided, this uses the step_wise throttling policy. |
| 1312 | */ |
Eduardo Valentin | 7b73c99 | 2013-04-23 21:48:14 +0000 | [diff] [blame] | 1313 | void thermal_notify_framework(struct thermal_zone_device *tz, int trip) |
Durgadoss R | f2b4caa | 2012-09-18 11:05:05 +0530 | [diff] [blame] | 1314 | { |
| 1315 | handle_thermal_trip(tz, trip); |
| 1316 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1317 | EXPORT_SYMBOL_GPL(thermal_notify_framework); |
Durgadoss R | f2b4caa | 2012-09-18 11:05:05 +0530 | [diff] [blame] | 1318 | |
| 1319 | /** |
Eduardo Valentin | 269c174 | 2013-04-23 21:48:19 +0000 | [diff] [blame] | 1320 | * create_trip_attrs() - create attributes for trip points |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1321 | * @tz: the thermal zone device |
| 1322 | * @mask: Writeable trip point bitmap. |
Eduardo Valentin | 269c174 | 2013-04-23 21:48:19 +0000 | [diff] [blame] | 1323 | * |
| 1324 | * helper function to instantiate sysfs entries for every trip |
| 1325 | * point and its properties of a struct thermal_zone_device. |
| 1326 | * |
| 1327 | * Return: 0 on success, the proper error value otherwise. |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1328 | */ |
| 1329 | static int create_trip_attrs(struct thermal_zone_device *tz, int mask) |
| 1330 | { |
| 1331 | int indx; |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1332 | int size = sizeof(struct thermal_attr) * tz->trips; |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1333 | |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1334 | tz->trip_type_attrs = kzalloc(size, GFP_KERNEL); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1335 | if (!tz->trip_type_attrs) |
| 1336 | return -ENOMEM; |
| 1337 | |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1338 | tz->trip_temp_attrs = kzalloc(size, GFP_KERNEL); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1339 | if (!tz->trip_temp_attrs) { |
| 1340 | kfree(tz->trip_type_attrs); |
| 1341 | return -ENOMEM; |
| 1342 | } |
| 1343 | |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1344 | if (tz->ops->get_trip_hyst) { |
| 1345 | tz->trip_hyst_attrs = kzalloc(size, GFP_KERNEL); |
| 1346 | if (!tz->trip_hyst_attrs) { |
| 1347 | kfree(tz->trip_type_attrs); |
| 1348 | kfree(tz->trip_temp_attrs); |
| 1349 | return -ENOMEM; |
| 1350 | } |
| 1351 | } |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1352 | |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1353 | |
| 1354 | for (indx = 0; indx < tz->trips; indx++) { |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1355 | /* create trip type attribute */ |
| 1356 | snprintf(tz->trip_type_attrs[indx].name, THERMAL_NAME_LENGTH, |
| 1357 | "trip_point_%d_type", indx); |
| 1358 | |
| 1359 | sysfs_attr_init(&tz->trip_type_attrs[indx].attr.attr); |
| 1360 | tz->trip_type_attrs[indx].attr.attr.name = |
| 1361 | tz->trip_type_attrs[indx].name; |
| 1362 | tz->trip_type_attrs[indx].attr.attr.mode = S_IRUGO; |
| 1363 | tz->trip_type_attrs[indx].attr.show = trip_point_type_show; |
| 1364 | |
| 1365 | device_create_file(&tz->device, |
| 1366 | &tz->trip_type_attrs[indx].attr); |
| 1367 | |
| 1368 | /* create trip temp attribute */ |
| 1369 | snprintf(tz->trip_temp_attrs[indx].name, THERMAL_NAME_LENGTH, |
| 1370 | "trip_point_%d_temp", indx); |
| 1371 | |
| 1372 | sysfs_attr_init(&tz->trip_temp_attrs[indx].attr.attr); |
| 1373 | tz->trip_temp_attrs[indx].attr.attr.name = |
| 1374 | tz->trip_temp_attrs[indx].name; |
| 1375 | tz->trip_temp_attrs[indx].attr.attr.mode = S_IRUGO; |
| 1376 | tz->trip_temp_attrs[indx].attr.show = trip_point_temp_show; |
| 1377 | if (mask & (1 << indx)) { |
| 1378 | tz->trip_temp_attrs[indx].attr.attr.mode |= S_IWUSR; |
| 1379 | tz->trip_temp_attrs[indx].attr.store = |
| 1380 | trip_point_temp_store; |
| 1381 | } |
| 1382 | |
| 1383 | device_create_file(&tz->device, |
| 1384 | &tz->trip_temp_attrs[indx].attr); |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1385 | |
| 1386 | /* create Optional trip hyst attribute */ |
| 1387 | if (!tz->ops->get_trip_hyst) |
| 1388 | continue; |
| 1389 | snprintf(tz->trip_hyst_attrs[indx].name, THERMAL_NAME_LENGTH, |
| 1390 | "trip_point_%d_hyst", indx); |
| 1391 | |
| 1392 | sysfs_attr_init(&tz->trip_hyst_attrs[indx].attr.attr); |
| 1393 | tz->trip_hyst_attrs[indx].attr.attr.name = |
| 1394 | tz->trip_hyst_attrs[indx].name; |
| 1395 | tz->trip_hyst_attrs[indx].attr.attr.mode = S_IRUGO; |
| 1396 | tz->trip_hyst_attrs[indx].attr.show = trip_point_hyst_show; |
| 1397 | if (tz->ops->set_trip_hyst) { |
| 1398 | tz->trip_hyst_attrs[indx].attr.attr.mode |= S_IWUSR; |
| 1399 | tz->trip_hyst_attrs[indx].attr.store = |
| 1400 | trip_point_hyst_store; |
| 1401 | } |
| 1402 | |
| 1403 | device_create_file(&tz->device, |
| 1404 | &tz->trip_hyst_attrs[indx].attr); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1405 | } |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
| 1409 | static void remove_trip_attrs(struct thermal_zone_device *tz) |
| 1410 | { |
| 1411 | int indx; |
| 1412 | |
| 1413 | for (indx = 0; indx < tz->trips; indx++) { |
| 1414 | device_remove_file(&tz->device, |
| 1415 | &tz->trip_type_attrs[indx].attr); |
| 1416 | device_remove_file(&tz->device, |
| 1417 | &tz->trip_temp_attrs[indx].attr); |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1418 | if (tz->ops->get_trip_hyst) |
| 1419 | device_remove_file(&tz->device, |
| 1420 | &tz->trip_hyst_attrs[indx].attr); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1421 | } |
| 1422 | kfree(tz->trip_type_attrs); |
| 1423 | kfree(tz->trip_temp_attrs); |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 1424 | kfree(tz->trip_hyst_attrs); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | /** |
Eduardo Valentin | a00e55f | 2013-04-23 21:48:20 +0000 | [diff] [blame] | 1428 | * thermal_zone_device_register() - register a new thermal zone device |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1429 | * @type: the thermal zone device type |
| 1430 | * @trips: the number of trip points the thermal zone support |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1431 | * @mask: a bit string indicating the writeablility of trip points |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1432 | * @devdata: private device data |
| 1433 | * @ops: standard thermal zone device callbacks |
Durgadoss R | 50125a9 | 2012-09-18 11:04:56 +0530 | [diff] [blame] | 1434 | * @tzp: thermal zone platform parameters |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1435 | * @passive_delay: number of milliseconds to wait between polls when |
| 1436 | * performing passive cooling |
| 1437 | * @polling_delay: number of milliseconds to wait between polls when checking |
| 1438 | * whether trip points have been crossed (0 for interrupt |
| 1439 | * driven systems) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1440 | * |
Eduardo Valentin | a00e55f | 2013-04-23 21:48:20 +0000 | [diff] [blame] | 1441 | * This interface function adds a new thermal zone device (sensor) to |
| 1442 | * /sys/class/thermal folder as thermal_zone[0-*]. It tries to bind all the |
| 1443 | * thermal cooling devices registered at the same time. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1444 | * thermal_zone_device_unregister() must be called when the device is no |
Zhang Rui | 1b7ddb8 | 2012-06-27 09:51:12 +0800 | [diff] [blame] | 1445 | * longer needed. The passive cooling depends on the .get_trend() return value. |
Eduardo Valentin | a00e55f | 2013-04-23 21:48:20 +0000 | [diff] [blame] | 1446 | * |
| 1447 | * Return: a pointer to the created struct thermal_zone_device or an |
| 1448 | * in case of error, an ERR_PTR. Caller must check return value with |
| 1449 | * IS_ERR*() helpers. |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1450 | */ |
Anton Vorontsov | 4b1bf58 | 2012-07-31 04:39:30 -0700 | [diff] [blame] | 1451 | struct thermal_zone_device *thermal_zone_device_register(const char *type, |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1452 | int trips, int mask, void *devdata, |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 1453 | struct thermal_zone_device_ops *ops, |
Durgadoss R | 50125a9 | 2012-09-18 11:04:56 +0530 | [diff] [blame] | 1454 | const struct thermal_zone_params *tzp, |
Zhang Rui | 1b7ddb8 | 2012-06-27 09:51:12 +0800 | [diff] [blame] | 1455 | int passive_delay, int polling_delay) |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1456 | { |
| 1457 | struct thermal_zone_device *tz; |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 1458 | enum thermal_trip_type trip_type; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1459 | int result; |
| 1460 | int count; |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 1461 | int passive = 0; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1462 | |
Guenter Roeck | 204dd1d | 2012-08-07 22:36:45 -0700 | [diff] [blame] | 1463 | if (type && strlen(type) >= THERMAL_NAME_LENGTH) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1464 | return ERR_PTR(-EINVAL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1465 | |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1466 | if (trips > THERMAL_MAX_TRIPS || trips < 0 || mask >> trips) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1467 | return ERR_PTR(-EINVAL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1468 | |
Eduardo Valentin | 81bd4e1 | 2013-09-12 19:15:44 -0400 | [diff] [blame] | 1469 | if (!ops) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1470 | return ERR_PTR(-EINVAL); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1471 | |
Jonghwa Lee | 83720d0 | 2013-05-18 09:50:26 +0000 | [diff] [blame] | 1472 | if (trips > 0 && (!ops->get_trip_type || !ops->get_trip_temp)) |
Eduardo Valentin | 6b2aa51 | 2013-01-02 15:29:42 +0000 | [diff] [blame] | 1473 | return ERR_PTR(-EINVAL); |
| 1474 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1475 | tz = kzalloc(sizeof(struct thermal_zone_device), GFP_KERNEL); |
| 1476 | if (!tz) |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1477 | return ERR_PTR(-ENOMEM); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1478 | |
Zhang Rui | 2d37413 | 2012-06-27 10:09:00 +0800 | [diff] [blame] | 1479 | INIT_LIST_HEAD(&tz->thermal_instances); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1480 | idr_init(&tz->idr); |
| 1481 | mutex_init(&tz->lock); |
| 1482 | result = get_idr(&thermal_tz_idr, &thermal_idr_lock, &tz->id); |
| 1483 | if (result) { |
| 1484 | kfree(tz); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1485 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1486 | } |
| 1487 | |
Eduardo Valentin | c7a8b9d | 2013-04-23 21:48:12 +0000 | [diff] [blame] | 1488 | strlcpy(tz->type, type ? : "", sizeof(tz->type)); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1489 | tz->ops = ops; |
Durgadoss R | 50125a9 | 2012-09-18 11:04:56 +0530 | [diff] [blame] | 1490 | tz->tzp = tzp; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1491 | tz->device.class = &thermal_class; |
| 1492 | tz->devdata = devdata; |
| 1493 | tz->trips = trips; |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1494 | tz->passive_delay = passive_delay; |
| 1495 | tz->polling_delay = polling_delay; |
| 1496 | |
Kay Sievers | 354655e | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 1497 | dev_set_name(&tz->device, "thermal_zone%d", tz->id); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1498 | result = device_register(&tz->device); |
| 1499 | if (result) { |
| 1500 | release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id); |
| 1501 | kfree(tz); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1502 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1503 | } |
| 1504 | |
| 1505 | /* sys I/F */ |
| 1506 | if (type) { |
| 1507 | result = device_create_file(&tz->device, &dev_attr_type); |
| 1508 | if (result) |
| 1509 | goto unregister; |
| 1510 | } |
| 1511 | |
| 1512 | result = device_create_file(&tz->device, &dev_attr_temp); |
| 1513 | if (result) |
| 1514 | goto unregister; |
| 1515 | |
| 1516 | if (ops->get_mode) { |
| 1517 | result = device_create_file(&tz->device, &dev_attr_mode); |
| 1518 | if (result) |
| 1519 | goto unregister; |
| 1520 | } |
| 1521 | |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1522 | result = create_trip_attrs(tz, mask); |
| 1523 | if (result) |
| 1524 | goto unregister; |
| 1525 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1526 | for (count = 0; count < trips; count++) { |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 1527 | tz->ops->get_trip_type(tz, count, &trip_type); |
| 1528 | if (trip_type == THERMAL_TRIP_PASSIVE) |
| 1529 | passive = 1; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1530 | } |
| 1531 | |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 1532 | if (!passive) { |
| 1533 | result = device_create_file(&tz->device, &dev_attr_passive); |
| 1534 | if (result) |
| 1535 | goto unregister; |
| 1536 | } |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 1537 | |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 1538 | #ifdef CONFIG_THERMAL_EMULATION |
| 1539 | result = device_create_file(&tz->device, &dev_attr_emul_temp); |
| 1540 | if (result) |
| 1541 | goto unregister; |
| 1542 | #endif |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 1543 | /* Create policy attribute */ |
| 1544 | result = device_create_file(&tz->device, &dev_attr_policy); |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 1545 | if (result) |
| 1546 | goto unregister; |
| 1547 | |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 1548 | /* Update 'this' zone's governor information */ |
| 1549 | mutex_lock(&thermal_governor_lock); |
| 1550 | |
| 1551 | if (tz->tzp) |
| 1552 | tz->governor = __find_governor(tz->tzp->governor_name); |
| 1553 | else |
Zhang Rui | f2234bc | 2014-01-24 10:23:19 +0800 | [diff] [blame] | 1554 | tz->governor = def_governor; |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 1555 | |
| 1556 | mutex_unlock(&thermal_governor_lock); |
| 1557 | |
Eduardo Valentin | ccba4ff | 2013-08-15 11:34:17 -0400 | [diff] [blame] | 1558 | if (!tz->tzp || !tz->tzp->no_hwmon) { |
| 1559 | result = thermal_add_hwmon_sysfs(tz); |
| 1560 | if (result) |
| 1561 | goto unregister; |
| 1562 | } |
Zhang Rui | e68b16a | 2008-04-21 16:07:52 +0800 | [diff] [blame] | 1563 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1564 | mutex_lock(&thermal_list_lock); |
| 1565 | list_add_tail(&tz->node, &thermal_tz_list); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1566 | mutex_unlock(&thermal_list_lock); |
| 1567 | |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1568 | /* Bind cooling devices for this zone */ |
| 1569 | bind_tz(tz); |
| 1570 | |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1571 | INIT_DELAYED_WORK(&(tz->poll_queue), thermal_zone_device_check); |
| 1572 | |
Eduardo Valentin | 81bd4e1 | 2013-09-12 19:15:44 -0400 | [diff] [blame] | 1573 | if (!tz->ops->get_temp) |
| 1574 | thermal_zone_device_set_polling(tz, 0); |
| 1575 | |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1576 | thermal_zone_device_update(tz); |
| 1577 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1578 | if (!result) |
| 1579 | return tz; |
| 1580 | |
Joe Perches | caca8b80 | 2012-03-21 12:55:02 -0700 | [diff] [blame] | 1581 | unregister: |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1582 | release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id); |
| 1583 | device_unregister(&tz->device); |
Thomas Sujith | 3e6fda5 | 2008-02-15 00:59:50 -0500 | [diff] [blame] | 1584 | return ERR_PTR(result); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1585 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1586 | EXPORT_SYMBOL_GPL(thermal_zone_device_register); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1587 | |
| 1588 | /** |
| 1589 | * thermal_device_unregister - removes the registered thermal zone device |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1590 | * @tz: the thermal zone device to remove |
| 1591 | */ |
| 1592 | void thermal_zone_device_unregister(struct thermal_zone_device *tz) |
| 1593 | { |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1594 | int i; |
| 1595 | const struct thermal_zone_params *tzp; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1596 | struct thermal_cooling_device *cdev; |
| 1597 | struct thermal_zone_device *pos = NULL; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1598 | |
| 1599 | if (!tz) |
| 1600 | return; |
| 1601 | |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1602 | tzp = tz->tzp; |
| 1603 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1604 | mutex_lock(&thermal_list_lock); |
| 1605 | list_for_each_entry(pos, &thermal_tz_list, node) |
| 1606 | if (pos == tz) |
| 1607 | break; |
| 1608 | if (pos != tz) { |
| 1609 | /* thermal zone device not found */ |
| 1610 | mutex_unlock(&thermal_list_lock); |
| 1611 | return; |
| 1612 | } |
| 1613 | list_del(&tz->node); |
Durgadoss R | 7e8ee1e | 2012-09-18 11:04:59 +0530 | [diff] [blame] | 1614 | |
| 1615 | /* Unbind all cdevs associated with 'this' thermal zone */ |
| 1616 | list_for_each_entry(cdev, &thermal_cdev_list, node) { |
| 1617 | if (tz->ops->unbind) { |
| 1618 | tz->ops->unbind(tz, cdev); |
| 1619 | continue; |
| 1620 | } |
| 1621 | |
| 1622 | if (!tzp || !tzp->tbp) |
| 1623 | break; |
| 1624 | |
| 1625 | for (i = 0; i < tzp->num_tbps; i++) { |
| 1626 | if (tzp->tbp[i].cdev == cdev) { |
| 1627 | __unbind(tz, tzp->tbp[i].trip_mask, cdev); |
| 1628 | tzp->tbp[i].cdev = NULL; |
| 1629 | } |
| 1630 | } |
| 1631 | } |
| 1632 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1633 | mutex_unlock(&thermal_list_lock); |
| 1634 | |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 1635 | thermal_zone_device_set_polling(tz, 0); |
| 1636 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1637 | if (tz->type[0]) |
| 1638 | device_remove_file(&tz->device, &dev_attr_type); |
| 1639 | device_remove_file(&tz->device, &dev_attr_temp); |
| 1640 | if (tz->ops->get_mode) |
| 1641 | device_remove_file(&tz->device, &dev_attr_mode); |
Durgadoss R | 5a2c090 | 2012-09-18 11:04:58 +0530 | [diff] [blame] | 1642 | device_remove_file(&tz->device, &dev_attr_policy); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 1643 | remove_trip_attrs(tz); |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 1644 | tz->governor = NULL; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1645 | |
Zhang Rui | e68b16a | 2008-04-21 16:07:52 +0800 | [diff] [blame] | 1646 | thermal_remove_hwmon_sysfs(tz); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1647 | release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id); |
| 1648 | idr_destroy(&tz->idr); |
| 1649 | mutex_destroy(&tz->lock); |
| 1650 | device_unregister(&tz->device); |
| 1651 | return; |
| 1652 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1653 | EXPORT_SYMBOL_GPL(thermal_zone_device_unregister); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1654 | |
Eduardo Valentin | 63c4d91 | 2013-04-05 12:32:28 +0000 | [diff] [blame] | 1655 | /** |
| 1656 | * thermal_zone_get_zone_by_name() - search for a zone and returns its ref |
| 1657 | * @name: thermal zone name to fetch the temperature |
| 1658 | * |
| 1659 | * When only one zone is found with the passed name, returns a reference to it. |
| 1660 | * |
| 1661 | * Return: On success returns a reference to an unique thermal zone with |
| 1662 | * matching name equals to @name, an ERR_PTR otherwise (-EINVAL for invalid |
| 1663 | * paramenters, -ENODEV for not found and -EEXIST for multiple matches). |
| 1664 | */ |
| 1665 | struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name) |
| 1666 | { |
| 1667 | struct thermal_zone_device *pos = NULL, *ref = ERR_PTR(-EINVAL); |
| 1668 | unsigned int found = 0; |
| 1669 | |
| 1670 | if (!name) |
| 1671 | goto exit; |
| 1672 | |
| 1673 | mutex_lock(&thermal_list_lock); |
| 1674 | list_for_each_entry(pos, &thermal_tz_list, node) |
| 1675 | if (!strnicmp(name, pos->type, THERMAL_NAME_LENGTH)) { |
| 1676 | found++; |
| 1677 | ref = pos; |
| 1678 | } |
| 1679 | mutex_unlock(&thermal_list_lock); |
| 1680 | |
| 1681 | /* nothing has been found, thus an error code for it */ |
| 1682 | if (found == 0) |
| 1683 | ref = ERR_PTR(-ENODEV); |
| 1684 | else if (found > 1) |
| 1685 | /* Success only when an unique zone is found */ |
| 1686 | ref = ERR_PTR(-EEXIST); |
| 1687 | |
| 1688 | exit: |
| 1689 | return ref; |
| 1690 | } |
| 1691 | EXPORT_SYMBOL_GPL(thermal_zone_get_zone_by_name); |
| 1692 | |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 1693 | #ifdef CONFIG_NET |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 1694 | static const struct genl_multicast_group thermal_event_mcgrps[] = { |
| 1695 | { .name = THERMAL_GENL_MCAST_GROUP_NAME, }, |
| 1696 | }; |
| 1697 | |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 1698 | static struct genl_family thermal_event_genl_family = { |
| 1699 | .id = GENL_ID_GENERATE, |
| 1700 | .name = THERMAL_GENL_FAMILY_NAME, |
| 1701 | .version = THERMAL_GENL_VERSION, |
| 1702 | .maxattr = THERMAL_GENL_ATTR_MAX, |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 1703 | .mcgrps = thermal_event_mcgrps, |
| 1704 | .n_mcgrps = ARRAY_SIZE(thermal_event_mcgrps), |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 1705 | }; |
| 1706 | |
Eduardo Valentin | 8ab3e6a | 2013-01-02 15:29:39 +0000 | [diff] [blame] | 1707 | int thermal_generate_netlink_event(struct thermal_zone_device *tz, |
| 1708 | enum events event) |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1709 | { |
| 1710 | struct sk_buff *skb; |
| 1711 | struct nlattr *attr; |
| 1712 | struct thermal_genl_event *thermal_event; |
| 1713 | void *msg_header; |
| 1714 | int size; |
| 1715 | int result; |
Fabio Estevam | b11de07 | 2012-03-21 12:55:00 -0700 | [diff] [blame] | 1716 | static unsigned int thermal_event_seqnum; |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1717 | |
Eduardo Valentin | 8ab3e6a | 2013-01-02 15:29:39 +0000 | [diff] [blame] | 1718 | if (!tz) |
| 1719 | return -EINVAL; |
| 1720 | |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1721 | /* allocate memory */ |
Joe Perches | 886ee54 | 2012-03-21 12:55:01 -0700 | [diff] [blame] | 1722 | size = nla_total_size(sizeof(struct thermal_genl_event)) + |
| 1723 | nla_total_size(0); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1724 | |
| 1725 | skb = genlmsg_new(size, GFP_ATOMIC); |
| 1726 | if (!skb) |
| 1727 | return -ENOMEM; |
| 1728 | |
| 1729 | /* add the genetlink message header */ |
| 1730 | msg_header = genlmsg_put(skb, 0, thermal_event_seqnum++, |
| 1731 | &thermal_event_genl_family, 0, |
| 1732 | THERMAL_GENL_CMD_EVENT); |
| 1733 | if (!msg_header) { |
| 1734 | nlmsg_free(skb); |
| 1735 | return -ENOMEM; |
| 1736 | } |
| 1737 | |
| 1738 | /* fill the data */ |
Joe Perches | 886ee54 | 2012-03-21 12:55:01 -0700 | [diff] [blame] | 1739 | attr = nla_reserve(skb, THERMAL_GENL_ATTR_EVENT, |
| 1740 | sizeof(struct thermal_genl_event)); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1741 | |
| 1742 | if (!attr) { |
| 1743 | nlmsg_free(skb); |
| 1744 | return -EINVAL; |
| 1745 | } |
| 1746 | |
| 1747 | thermal_event = nla_data(attr); |
| 1748 | if (!thermal_event) { |
| 1749 | nlmsg_free(skb); |
| 1750 | return -EINVAL; |
| 1751 | } |
| 1752 | |
| 1753 | memset(thermal_event, 0, sizeof(struct thermal_genl_event)); |
| 1754 | |
Eduardo Valentin | 8ab3e6a | 2013-01-02 15:29:39 +0000 | [diff] [blame] | 1755 | thermal_event->orig = tz->id; |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1756 | thermal_event->event = event; |
| 1757 | |
| 1758 | /* send multicast genetlink message */ |
| 1759 | result = genlmsg_end(skb, msg_header); |
| 1760 | if (result < 0) { |
| 1761 | nlmsg_free(skb); |
| 1762 | return result; |
| 1763 | } |
| 1764 | |
Johannes Berg | 68eb550 | 2013-11-19 15:19:38 +0100 | [diff] [blame] | 1765 | result = genlmsg_multicast(&thermal_event_genl_family, skb, 0, |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 1766 | 0, GFP_ATOMIC); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1767 | if (result) |
Eduardo Valentin | 923e0b1 | 2013-01-02 15:29:41 +0000 | [diff] [blame] | 1768 | dev_err(&tz->device, "Failed to send netlink event:%d", result); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1769 | |
| 1770 | return result; |
| 1771 | } |
Eduardo Valentin | 910cb1e | 2013-04-23 21:48:15 +0000 | [diff] [blame] | 1772 | EXPORT_SYMBOL_GPL(thermal_generate_netlink_event); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1773 | |
| 1774 | static int genetlink_init(void) |
| 1775 | { |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 1776 | return genl_register_family(&thermal_event_genl_family); |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1777 | } |
| 1778 | |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 1779 | static void genetlink_exit(void) |
| 1780 | { |
| 1781 | genl_unregister_family(&thermal_event_genl_family); |
| 1782 | } |
| 1783 | #else /* !CONFIG_NET */ |
| 1784 | static inline int genetlink_init(void) { return 0; } |
| 1785 | static inline void genetlink_exit(void) {} |
| 1786 | #endif /* !CONFIG_NET */ |
| 1787 | |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1788 | static int __init thermal_register_governors(void) |
| 1789 | { |
| 1790 | int result; |
| 1791 | |
| 1792 | result = thermal_gov_step_wise_register(); |
| 1793 | if (result) |
| 1794 | return result; |
| 1795 | |
| 1796 | result = thermal_gov_fair_share_register(); |
| 1797 | if (result) |
| 1798 | return result; |
| 1799 | |
| 1800 | return thermal_gov_user_space_register(); |
| 1801 | } |
| 1802 | |
| 1803 | static void thermal_unregister_governors(void) |
| 1804 | { |
| 1805 | thermal_gov_step_wise_unregister(); |
| 1806 | thermal_gov_fair_share_unregister(); |
| 1807 | thermal_gov_user_space_unregister(); |
| 1808 | } |
| 1809 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1810 | static int __init thermal_init(void) |
| 1811 | { |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1812 | int result; |
| 1813 | |
| 1814 | result = thermal_register_governors(); |
| 1815 | if (result) |
| 1816 | goto error; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1817 | |
| 1818 | result = class_register(&thermal_class); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1819 | if (result) |
| 1820 | goto unregister_governors; |
| 1821 | |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1822 | result = genetlink_init(); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1823 | if (result) |
| 1824 | goto unregister_class; |
| 1825 | |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 1826 | result = of_parse_thermal_zones(); |
| 1827 | if (result) |
| 1828 | goto exit_netlink; |
| 1829 | |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1830 | return 0; |
| 1831 | |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 1832 | exit_netlink: |
| 1833 | genetlink_exit(); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1834 | unregister_governors: |
| 1835 | thermal_unregister_governors(); |
| 1836 | unregister_class: |
| 1837 | class_unregister(&thermal_class); |
| 1838 | error: |
| 1839 | idr_destroy(&thermal_tz_idr); |
| 1840 | idr_destroy(&thermal_cdev_idr); |
| 1841 | mutex_destroy(&thermal_idr_lock); |
| 1842 | mutex_destroy(&thermal_list_lock); |
| 1843 | mutex_destroy(&thermal_governor_lock); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1844 | return result; |
| 1845 | } |
| 1846 | |
| 1847 | static void __exit thermal_exit(void) |
| 1848 | { |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 1849 | of_thermal_destroy_zones(); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1850 | genetlink_exit(); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1851 | class_unregister(&thermal_class); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1852 | thermal_unregister_governors(); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1853 | idr_destroy(&thermal_tz_idr); |
| 1854 | idr_destroy(&thermal_cdev_idr); |
| 1855 | mutex_destroy(&thermal_idr_lock); |
| 1856 | mutex_destroy(&thermal_list_lock); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 1857 | mutex_destroy(&thermal_governor_lock); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1858 | } |
| 1859 | |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 1860 | fs_initcall(thermal_init); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1861 | module_exit(thermal_exit); |