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