2 * thermal.c - Generic Thermal Management Sysfs support.
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>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
38 #include <net/netlink.h>
39 #include <net/genetlink.h>
40 #include <linux/suspend.h>
42 #define CREATE_TRACE_POINTS
43 #include <trace/events/thermal.h>
45 #include "thermal_core.h"
46 #include "thermal_hwmon.h"
48 MODULE_AUTHOR("Zhang Rui");
49 MODULE_DESCRIPTION("Generic thermal management sysfs support");
50 MODULE_LICENSE("GPL v2");
52 static DEFINE_IDR(thermal_tz_idr
);
53 static DEFINE_IDR(thermal_cdev_idr
);
54 static DEFINE_MUTEX(thermal_idr_lock
);
56 static LIST_HEAD(thermal_tz_list
);
57 static LIST_HEAD(thermal_cdev_list
);
58 static LIST_HEAD(thermal_governor_list
);
60 static DEFINE_MUTEX(thermal_list_lock
);
61 static DEFINE_MUTEX(thermal_governor_lock
);
63 static atomic_t in_suspend
;
65 static struct thermal_governor
*def_governor
;
67 static struct thermal_governor
*__find_governor(const char *name
)
69 struct thermal_governor
*pos
;
71 if (!name
|| !name
[0])
74 list_for_each_entry(pos
, &thermal_governor_list
, governor_list
)
75 if (!strncasecmp(name
, pos
->name
, THERMAL_NAME_LENGTH
))
82 * bind_previous_governor() - bind the previous governor of the thermal zone
83 * @tz: a valid pointer to a struct thermal_zone_device
84 * @failed_gov_name: the name of the governor that failed to register
86 * Register the previous governor of the thermal zone after a new
87 * governor has failed to be bound.
89 static void bind_previous_governor(struct thermal_zone_device
*tz
,
90 const char *failed_gov_name
)
92 if (tz
->governor
&& tz
->governor
->bind_to_tz
) {
93 if (tz
->governor
->bind_to_tz(tz
)) {
95 "governor %s failed to bind and the previous one (%s) failed to bind again, thermal zone %s has no governor\n",
96 failed_gov_name
, tz
->governor
->name
, tz
->type
);
103 * thermal_set_governor() - Switch to another governor
104 * @tz: a valid pointer to a struct thermal_zone_device
105 * @new_gov: pointer to the new governor
107 * Change the governor of thermal zone @tz.
109 * Return: 0 on success, an error if the new governor's bind_to_tz() failed.
111 static int thermal_set_governor(struct thermal_zone_device
*tz
,
112 struct thermal_governor
*new_gov
)
116 if (tz
->governor
&& tz
->governor
->unbind_from_tz
)
117 tz
->governor
->unbind_from_tz(tz
);
119 if (new_gov
&& new_gov
->bind_to_tz
) {
120 ret
= new_gov
->bind_to_tz(tz
);
122 bind_previous_governor(tz
, new_gov
->name
);
128 tz
->governor
= new_gov
;
133 int thermal_register_governor(struct thermal_governor
*governor
)
137 struct thermal_zone_device
*pos
;
142 mutex_lock(&thermal_governor_lock
);
145 if (__find_governor(governor
->name
) == NULL
) {
147 list_add(&governor
->governor_list
, &thermal_governor_list
);
148 if (!def_governor
&& !strncmp(governor
->name
,
149 DEFAULT_THERMAL_GOVERNOR
, THERMAL_NAME_LENGTH
))
150 def_governor
= governor
;
153 mutex_lock(&thermal_list_lock
);
155 list_for_each_entry(pos
, &thermal_tz_list
, node
) {
157 * only thermal zones with specified tz->tzp->governor_name
158 * may run with tz->govenor unset
163 name
= pos
->tzp
->governor_name
;
165 if (!strncasecmp(name
, governor
->name
, THERMAL_NAME_LENGTH
)) {
168 ret
= thermal_set_governor(pos
, governor
);
170 dev_err(&pos
->device
,
171 "Failed to set governor %s for thermal zone %s: %d\n",
172 governor
->name
, pos
->type
, ret
);
176 mutex_unlock(&thermal_list_lock
);
177 mutex_unlock(&thermal_governor_lock
);
182 void thermal_unregister_governor(struct thermal_governor
*governor
)
184 struct thermal_zone_device
*pos
;
189 mutex_lock(&thermal_governor_lock
);
191 if (__find_governor(governor
->name
) == NULL
)
194 mutex_lock(&thermal_list_lock
);
196 list_for_each_entry(pos
, &thermal_tz_list
, node
) {
197 if (!strncasecmp(pos
->governor
->name
, governor
->name
,
198 THERMAL_NAME_LENGTH
))
199 thermal_set_governor(pos
, NULL
);
202 mutex_unlock(&thermal_list_lock
);
203 list_del(&governor
->governor_list
);
205 mutex_unlock(&thermal_governor_lock
);
209 static int get_idr(struct idr
*idr
, struct mutex
*lock
, int *id
)
215 ret
= idr_alloc(idr
, NULL
, 0, 0, GFP_KERNEL
);
218 if (unlikely(ret
< 0))
224 static void release_idr(struct idr
*idr
, struct mutex
*lock
, int id
)
233 int get_tz_trend(struct thermal_zone_device
*tz
, int trip
)
235 enum thermal_trend trend
;
237 if (tz
->emul_temperature
|| !tz
->ops
->get_trend
||
238 tz
->ops
->get_trend(tz
, trip
, &trend
)) {
239 if (tz
->temperature
> tz
->last_temperature
)
240 trend
= THERMAL_TREND_RAISING
;
241 else if (tz
->temperature
< tz
->last_temperature
)
242 trend
= THERMAL_TREND_DROPPING
;
244 trend
= THERMAL_TREND_STABLE
;
249 EXPORT_SYMBOL(get_tz_trend
);
251 struct thermal_instance
*get_thermal_instance(struct thermal_zone_device
*tz
,
252 struct thermal_cooling_device
*cdev
, int trip
)
254 struct thermal_instance
*pos
= NULL
;
255 struct thermal_instance
*target_instance
= NULL
;
257 mutex_lock(&tz
->lock
);
258 mutex_lock(&cdev
->lock
);
260 list_for_each_entry(pos
, &tz
->thermal_instances
, tz_node
) {
261 if (pos
->tz
== tz
&& pos
->trip
== trip
&& pos
->cdev
== cdev
) {
262 target_instance
= pos
;
267 mutex_unlock(&cdev
->lock
);
268 mutex_unlock(&tz
->lock
);
270 return target_instance
;
272 EXPORT_SYMBOL(get_thermal_instance
);
274 static void print_bind_err_msg(struct thermal_zone_device
*tz
,
275 struct thermal_cooling_device
*cdev
, int ret
)
277 dev_err(&tz
->device
, "binding zone %s with cdev %s failed:%d\n",
278 tz
->type
, cdev
->type
, ret
);
281 static void __bind(struct thermal_zone_device
*tz
, int mask
,
282 struct thermal_cooling_device
*cdev
,
283 unsigned long *limits
,
288 for (i
= 0; i
< tz
->trips
; i
++) {
289 if (mask
& (1 << i
)) {
290 unsigned long upper
, lower
;
292 upper
= THERMAL_NO_LIMIT
;
293 lower
= THERMAL_NO_LIMIT
;
295 lower
= limits
[i
* 2];
296 upper
= limits
[i
* 2 + 1];
298 ret
= thermal_zone_bind_cooling_device(tz
, i
, cdev
,
302 print_bind_err_msg(tz
, cdev
, ret
);
307 static void __unbind(struct thermal_zone_device
*tz
, int mask
,
308 struct thermal_cooling_device
*cdev
)
312 for (i
= 0; i
< tz
->trips
; i
++)
314 thermal_zone_unbind_cooling_device(tz
, i
, cdev
);
317 static void bind_cdev(struct thermal_cooling_device
*cdev
)
320 const struct thermal_zone_params
*tzp
;
321 struct thermal_zone_device
*pos
= NULL
;
323 mutex_lock(&thermal_list_lock
);
325 list_for_each_entry(pos
, &thermal_tz_list
, node
) {
326 if (!pos
->tzp
&& !pos
->ops
->bind
)
329 if (pos
->ops
->bind
) {
330 ret
= pos
->ops
->bind(pos
, cdev
);
332 print_bind_err_msg(pos
, cdev
, ret
);
337 if (!tzp
|| !tzp
->tbp
)
340 for (i
= 0; i
< tzp
->num_tbps
; i
++) {
341 if (tzp
->tbp
[i
].cdev
|| !tzp
->tbp
[i
].match
)
343 if (tzp
->tbp
[i
].match(pos
, cdev
))
345 tzp
->tbp
[i
].cdev
= cdev
;
346 __bind(pos
, tzp
->tbp
[i
].trip_mask
, cdev
,
347 tzp
->tbp
[i
].binding_limits
,
352 mutex_unlock(&thermal_list_lock
);
355 static void bind_tz(struct thermal_zone_device
*tz
)
358 struct thermal_cooling_device
*pos
= NULL
;
359 const struct thermal_zone_params
*tzp
= tz
->tzp
;
361 if (!tzp
&& !tz
->ops
->bind
)
364 mutex_lock(&thermal_list_lock
);
366 /* If there is ops->bind, try to use ops->bind */
368 list_for_each_entry(pos
, &thermal_cdev_list
, node
) {
369 ret
= tz
->ops
->bind(tz
, pos
);
371 print_bind_err_msg(tz
, pos
, ret
);
376 if (!tzp
|| !tzp
->tbp
)
379 list_for_each_entry(pos
, &thermal_cdev_list
, node
) {
380 for (i
= 0; i
< tzp
->num_tbps
; i
++) {
381 if (tzp
->tbp
[i
].cdev
|| !tzp
->tbp
[i
].match
)
383 if (tzp
->tbp
[i
].match(tz
, pos
))
385 tzp
->tbp
[i
].cdev
= pos
;
386 __bind(tz
, tzp
->tbp
[i
].trip_mask
, pos
,
387 tzp
->tbp
[i
].binding_limits
,
392 mutex_unlock(&thermal_list_lock
);
395 static void thermal_zone_device_set_polling(struct thermal_zone_device
*tz
,
399 mod_delayed_work(system_freezable_wq
, &tz
->poll_queue
,
400 round_jiffies(msecs_to_jiffies(delay
)));
402 mod_delayed_work(system_freezable_wq
, &tz
->poll_queue
,
403 msecs_to_jiffies(delay
));
405 cancel_delayed_work(&tz
->poll_queue
);
408 static void monitor_thermal_zone(struct thermal_zone_device
*tz
)
410 mutex_lock(&tz
->lock
);
413 thermal_zone_device_set_polling(tz
, tz
->passive_delay
);
414 else if (tz
->polling_delay
)
415 thermal_zone_device_set_polling(tz
, tz
->polling_delay
);
417 thermal_zone_device_set_polling(tz
, 0);
419 mutex_unlock(&tz
->lock
);
422 static void handle_non_critical_trips(struct thermal_zone_device
*tz
,
423 int trip
, enum thermal_trip_type trip_type
)
425 tz
->governor
? tz
->governor
->throttle(tz
, trip
) :
426 def_governor
->throttle(tz
, trip
);
429 static void handle_critical_trips(struct thermal_zone_device
*tz
,
430 int trip
, enum thermal_trip_type trip_type
)
434 tz
->ops
->get_trip_temp(tz
, trip
, &trip_temp
);
436 /* If we have not crossed the trip_temp, we do not care. */
437 if (trip_temp
<= 0 || tz
->temperature
< trip_temp
)
440 trace_thermal_zone_trip(tz
, trip
, trip_type
);
443 tz
->ops
->notify(tz
, trip
, trip_type
);
445 if (trip_type
== THERMAL_TRIP_CRITICAL
) {
446 dev_emerg(&tz
->device
,
447 "critical temperature reached(%d C),shutting down\n",
448 tz
->temperature
/ 1000);
449 orderly_poweroff(true);
453 static void handle_thermal_trip(struct thermal_zone_device
*tz
, int trip
)
455 enum thermal_trip_type type
;
457 /* Ignore disabled trip points */
458 if (test_bit(trip
, &tz
->trips_disabled
))
461 tz
->ops
->get_trip_type(tz
, trip
, &type
);
463 if (type
== THERMAL_TRIP_CRITICAL
|| type
== THERMAL_TRIP_HOT
)
464 handle_critical_trips(tz
, trip
, type
);
466 handle_non_critical_trips(tz
, trip
, type
);
468 * Alright, we handled this trip successfully.
469 * So, start monitoring again.
471 monitor_thermal_zone(tz
);
475 * thermal_zone_get_temp() - returns the temperature of a thermal zone
476 * @tz: a valid pointer to a struct thermal_zone_device
477 * @temp: a valid pointer to where to store the resulting temperature.
479 * When a valid thermal zone reference is passed, it will fetch its
480 * temperature and fill @temp.
482 * Return: On success returns 0, an error code otherwise
484 int thermal_zone_get_temp(struct thermal_zone_device
*tz
, int *temp
)
488 int crit_temp
= INT_MAX
;
489 enum thermal_trip_type type
;
491 if (!tz
|| IS_ERR(tz
) || !tz
->ops
->get_temp
)
494 mutex_lock(&tz
->lock
);
496 ret
= tz
->ops
->get_temp(tz
, temp
);
498 if (IS_ENABLED(CONFIG_THERMAL_EMULATION
) && tz
->emul_temperature
) {
499 for (count
= 0; count
< tz
->trips
; count
++) {
500 ret
= tz
->ops
->get_trip_type(tz
, count
, &type
);
501 if (!ret
&& type
== THERMAL_TRIP_CRITICAL
) {
502 ret
= tz
->ops
->get_trip_temp(tz
, count
,
509 * Only allow emulating a temperature when the real temperature
510 * is below the critical temperature so that the emulation code
511 * cannot hide critical conditions.
513 if (!ret
&& *temp
< crit_temp
)
514 *temp
= tz
->emul_temperature
;
517 mutex_unlock(&tz
->lock
);
521 EXPORT_SYMBOL_GPL(thermal_zone_get_temp
);
523 void thermal_zone_set_trips(struct thermal_zone_device
*tz
)
527 int trip_temp
, hysteresis
;
530 mutex_lock(&tz
->lock
);
532 if (!tz
->ops
->set_trips
|| !tz
->ops
->get_trip_hyst
)
535 for (i
= 0; i
< tz
->trips
; i
++) {
538 tz
->ops
->get_trip_temp(tz
, i
, &trip_temp
);
539 tz
->ops
->get_trip_hyst(tz
, i
, &hysteresis
);
541 trip_low
= trip_temp
- hysteresis
;
543 if (trip_low
< tz
->temperature
&& trip_low
> low
)
546 if (trip_temp
> tz
->temperature
&& trip_temp
< high
)
550 /* No need to change trip points */
551 if (tz
->prev_low_trip
== low
&& tz
->prev_high_trip
== high
)
554 tz
->prev_low_trip
= low
;
555 tz
->prev_high_trip
= high
;
558 "new temperature boundaries: %d < x < %d\n", low
, high
);
561 * Set a temperature window. When this window is left the driver
562 * must inform the thermal core via thermal_zone_device_update.
564 ret
= tz
->ops
->set_trips(tz
, low
, high
);
566 dev_err(&tz
->device
, "Failed to set trips: %d\n", ret
);
569 mutex_unlock(&tz
->lock
);
571 EXPORT_SYMBOL_GPL(thermal_zone_set_trips
);
573 static void update_temperature(struct thermal_zone_device
*tz
)
577 ret
= thermal_zone_get_temp(tz
, &temp
);
580 dev_warn(&tz
->device
,
581 "failed to read out thermal zone (%d)\n",
586 mutex_lock(&tz
->lock
);
587 tz
->last_temperature
= tz
->temperature
;
588 tz
->temperature
= temp
;
589 mutex_unlock(&tz
->lock
);
591 trace_thermal_temperature(tz
);
592 if (tz
->last_temperature
== THERMAL_TEMP_INVALID
)
593 dev_dbg(&tz
->device
, "last_temperature N/A, current_temperature=%d\n",
596 dev_dbg(&tz
->device
, "last_temperature=%d, current_temperature=%d\n",
597 tz
->last_temperature
, tz
->temperature
);
600 static void thermal_zone_device_init(struct thermal_zone_device
*tz
)
602 struct thermal_instance
*pos
;
603 tz
->temperature
= THERMAL_TEMP_INVALID
;
604 list_for_each_entry(pos
, &tz
->thermal_instances
, tz_node
)
605 pos
->initialized
= false;
608 static void thermal_zone_device_reset(struct thermal_zone_device
*tz
)
611 thermal_zone_device_init(tz
);
614 void thermal_zone_device_update(struct thermal_zone_device
*tz
,
615 enum thermal_notify_event event
)
619 if (atomic_read(&in_suspend
))
622 if (!tz
->ops
->get_temp
)
625 update_temperature(tz
);
627 thermal_zone_set_trips(tz
);
629 tz
->notify_event
= event
;
631 for (count
= 0; count
< tz
->trips
; count
++)
632 handle_thermal_trip(tz
, count
);
634 EXPORT_SYMBOL_GPL(thermal_zone_device_update
);
636 static void thermal_zone_device_check(struct work_struct
*work
)
638 struct thermal_zone_device
*tz
= container_of(work
, struct
641 thermal_zone_device_update(tz
, THERMAL_EVENT_UNSPECIFIED
);
644 /* sys I/F for thermal zone */
646 #define to_thermal_zone(_dev) \
647 container_of(_dev, struct thermal_zone_device, device)
650 type_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
652 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
654 return sprintf(buf
, "%s\n", tz
->type
);
658 temp_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
660 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
661 int temperature
, ret
;
663 ret
= thermal_zone_get_temp(tz
, &temperature
);
668 return sprintf(buf
, "%d\n", temperature
);
672 mode_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
674 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
675 enum thermal_device_mode mode
;
678 if (!tz
->ops
->get_mode
)
681 result
= tz
->ops
->get_mode(tz
, &mode
);
685 return sprintf(buf
, "%s\n", mode
== THERMAL_DEVICE_ENABLED
? "enabled"
690 mode_store(struct device
*dev
, struct device_attribute
*attr
,
691 const char *buf
, size_t count
)
693 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
696 if (!tz
->ops
->set_mode
)
699 if (!strncmp(buf
, "enabled", sizeof("enabled") - 1))
700 result
= tz
->ops
->set_mode(tz
, THERMAL_DEVICE_ENABLED
);
701 else if (!strncmp(buf
, "disabled", sizeof("disabled") - 1))
702 result
= tz
->ops
->set_mode(tz
, THERMAL_DEVICE_DISABLED
);
713 trip_point_type_show(struct device
*dev
, struct device_attribute
*attr
,
716 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
717 enum thermal_trip_type type
;
720 if (!tz
->ops
->get_trip_type
)
723 if (!sscanf(attr
->attr
.name
, "trip_point_%d_type", &trip
))
726 result
= tz
->ops
->get_trip_type(tz
, trip
, &type
);
731 case THERMAL_TRIP_CRITICAL
:
732 return sprintf(buf
, "critical\n");
733 case THERMAL_TRIP_HOT
:
734 return sprintf(buf
, "hot\n");
735 case THERMAL_TRIP_PASSIVE
:
736 return sprintf(buf
, "passive\n");
737 case THERMAL_TRIP_ACTIVE
:
738 return sprintf(buf
, "active\n");
740 return sprintf(buf
, "unknown\n");
745 trip_point_temp_store(struct device
*dev
, struct device_attribute
*attr
,
746 const char *buf
, size_t count
)
748 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
752 if (!tz
->ops
->set_trip_temp
)
755 if (!sscanf(attr
->attr
.name
, "trip_point_%d_temp", &trip
))
758 if (kstrtoint(buf
, 10, &temperature
))
761 ret
= tz
->ops
->set_trip_temp(tz
, trip
, temperature
);
765 thermal_zone_device_update(tz
, THERMAL_EVENT_UNSPECIFIED
);
771 trip_point_temp_show(struct device
*dev
, struct device_attribute
*attr
,
774 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
778 if (!tz
->ops
->get_trip_temp
)
781 if (!sscanf(attr
->attr
.name
, "trip_point_%d_temp", &trip
))
784 ret
= tz
->ops
->get_trip_temp(tz
, trip
, &temperature
);
789 return sprintf(buf
, "%d\n", temperature
);
793 trip_point_hyst_store(struct device
*dev
, struct device_attribute
*attr
,
794 const char *buf
, size_t count
)
796 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
800 if (!tz
->ops
->set_trip_hyst
)
803 if (!sscanf(attr
->attr
.name
, "trip_point_%d_hyst", &trip
))
806 if (kstrtoint(buf
, 10, &temperature
))
810 * We are not doing any check on the 'temperature' value
811 * here. The driver implementing 'set_trip_hyst' has to
814 ret
= tz
->ops
->set_trip_hyst(tz
, trip
, temperature
);
817 thermal_zone_set_trips(tz
);
819 return ret
? ret
: count
;
823 trip_point_hyst_show(struct device
*dev
, struct device_attribute
*attr
,
826 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
830 if (!tz
->ops
->get_trip_hyst
)
833 if (!sscanf(attr
->attr
.name
, "trip_point_%d_hyst", &trip
))
836 ret
= tz
->ops
->get_trip_hyst(tz
, trip
, &temperature
);
838 return ret
? ret
: sprintf(buf
, "%d\n", temperature
);
842 passive_store(struct device
*dev
, struct device_attribute
*attr
,
843 const char *buf
, size_t count
)
845 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
846 struct thermal_cooling_device
*cdev
= NULL
;
849 if (!sscanf(buf
, "%d\n", &state
))
852 /* sanity check: values below 1000 millicelcius don't make sense
853 * and can cause the system to go into a thermal heart attack
855 if (state
&& state
< 1000)
858 if (state
&& !tz
->forced_passive
) {
859 mutex_lock(&thermal_list_lock
);
860 list_for_each_entry(cdev
, &thermal_cdev_list
, node
) {
861 if (!strncmp("Processor", cdev
->type
,
862 sizeof("Processor")))
863 thermal_zone_bind_cooling_device(tz
,
864 THERMAL_TRIPS_NONE
, cdev
,
867 THERMAL_WEIGHT_DEFAULT
);
869 mutex_unlock(&thermal_list_lock
);
870 if (!tz
->passive_delay
)
871 tz
->passive_delay
= 1000;
872 } else if (!state
&& tz
->forced_passive
) {
873 mutex_lock(&thermal_list_lock
);
874 list_for_each_entry(cdev
, &thermal_cdev_list
, node
) {
875 if (!strncmp("Processor", cdev
->type
,
876 sizeof("Processor")))
877 thermal_zone_unbind_cooling_device(tz
,
881 mutex_unlock(&thermal_list_lock
);
882 tz
->passive_delay
= 0;
885 tz
->forced_passive
= state
;
887 thermal_zone_device_update(tz
, THERMAL_EVENT_UNSPECIFIED
);
893 passive_show(struct device
*dev
, struct device_attribute
*attr
,
896 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
898 return sprintf(buf
, "%d\n", tz
->forced_passive
);
902 policy_store(struct device
*dev
, struct device_attribute
*attr
,
903 const char *buf
, size_t count
)
906 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
907 struct thermal_governor
*gov
;
908 char name
[THERMAL_NAME_LENGTH
];
910 snprintf(name
, sizeof(name
), "%s", buf
);
912 mutex_lock(&thermal_governor_lock
);
913 mutex_lock(&tz
->lock
);
915 gov
= __find_governor(strim(name
));
919 ret
= thermal_set_governor(tz
, gov
);
924 mutex_unlock(&tz
->lock
);
925 mutex_unlock(&thermal_governor_lock
);
930 policy_show(struct device
*dev
, struct device_attribute
*devattr
, char *buf
)
932 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
934 return sprintf(buf
, "%s\n", tz
->governor
->name
);
938 available_policies_show(struct device
*dev
, struct device_attribute
*devattr
,
941 struct thermal_governor
*pos
;
943 ssize_t size
= PAGE_SIZE
;
945 mutex_lock(&thermal_governor_lock
);
947 list_for_each_entry(pos
, &thermal_governor_list
, governor_list
) {
948 size
= PAGE_SIZE
- count
;
949 count
+= scnprintf(buf
+ count
, size
, "%s ", pos
->name
);
951 count
+= scnprintf(buf
+ count
, size
, "\n");
953 mutex_unlock(&thermal_governor_lock
);
959 emul_temp_store(struct device
*dev
, struct device_attribute
*attr
,
960 const char *buf
, size_t count
)
962 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
966 if (kstrtoint(buf
, 10, &temperature
))
969 if (!tz
->ops
->set_emul_temp
) {
970 mutex_lock(&tz
->lock
);
971 tz
->emul_temperature
= temperature
;
972 mutex_unlock(&tz
->lock
);
974 ret
= tz
->ops
->set_emul_temp(tz
, temperature
);
978 thermal_zone_device_update(tz
, THERMAL_EVENT_UNSPECIFIED
);
980 return ret
? ret
: count
;
982 static DEVICE_ATTR(emul_temp
, S_IWUSR
, NULL
, emul_temp_store
);
985 sustainable_power_show(struct device
*dev
, struct device_attribute
*devattr
,
988 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
991 return sprintf(buf
, "%u\n", tz
->tzp
->sustainable_power
);
997 sustainable_power_store(struct device
*dev
, struct device_attribute
*devattr
,
998 const char *buf
, size_t count
)
1000 struct thermal_zone_device
*tz
= to_thermal_zone(dev
);
1001 u32 sustainable_power
;
1006 if (kstrtou32(buf
, 10, &sustainable_power
))
1009 tz
->tzp
->sustainable_power
= sustainable_power
;
1013 static DEVICE_ATTR(sustainable_power
, S_IWUSR
| S_IRUGO
, sustainable_power_show
,
1014 sustainable_power_store
);
1016 #define create_s32_tzp_attr(name) \
1018 name##_show(struct device *dev, struct device_attribute *devattr, \
1021 struct thermal_zone_device *tz = to_thermal_zone(dev); \
1024 return sprintf(buf, "%d\n", tz->tzp->name); \
1030 name##_store(struct device *dev, struct device_attribute *devattr, \
1031 const char *buf, size_t count) \
1033 struct thermal_zone_device *tz = to_thermal_zone(dev); \
1039 if (kstrtos32(buf, 10, &value)) \
1042 tz->tzp->name = value; \
1046 static DEVICE_ATTR(name, S_IWUSR | S_IRUGO, name##_show, name##_store)
1048 create_s32_tzp_attr(k_po
);
1049 create_s32_tzp_attr(k_pu
);
1050 create_s32_tzp_attr(k_i
);
1051 create_s32_tzp_attr(k_d
);
1052 create_s32_tzp_attr(integral_cutoff
);
1053 create_s32_tzp_attr(slope
);
1054 create_s32_tzp_attr(offset
);
1055 #undef create_s32_tzp_attr
1057 static struct device_attribute
*dev_tzp_attrs
[] = {
1058 &dev_attr_sustainable_power
,
1063 &dev_attr_integral_cutoff
,
1068 static int create_tzp_attrs(struct device
*dev
)
1072 for (i
= 0; i
< ARRAY_SIZE(dev_tzp_attrs
); i
++) {
1074 struct device_attribute
*dev_attr
= dev_tzp_attrs
[i
];
1076 ret
= device_create_file(dev
, dev_attr
);
1085 * power_actor_get_max_power() - get the maximum power that a cdev can consume
1086 * @cdev: pointer to &thermal_cooling_device
1087 * @tz: a valid thermal zone device pointer
1088 * @max_power: pointer in which to store the maximum power
1090 * Calculate the maximum power consumption in milliwats that the
1091 * cooling device can currently consume and store it in @max_power.
1093 * Return: 0 on success, -EINVAL if @cdev doesn't support the
1094 * power_actor API or -E* on other error.
1096 int power_actor_get_max_power(struct thermal_cooling_device
*cdev
,
1097 struct thermal_zone_device
*tz
, u32
*max_power
)
1099 if (!cdev_is_power_actor(cdev
))
1102 return cdev
->ops
->state2power(cdev
, tz
, 0, max_power
);
1106 * power_actor_get_min_power() - get the mainimum power that a cdev can consume
1107 * @cdev: pointer to &thermal_cooling_device
1108 * @tz: a valid thermal zone device pointer
1109 * @min_power: pointer in which to store the minimum power
1111 * Calculate the minimum power consumption in milliwatts that the
1112 * cooling device can currently consume and store it in @min_power.
1114 * Return: 0 on success, -EINVAL if @cdev doesn't support the
1115 * power_actor API or -E* on other error.
1117 int power_actor_get_min_power(struct thermal_cooling_device
*cdev
,
1118 struct thermal_zone_device
*tz
, u32
*min_power
)
1120 unsigned long max_state
;
1123 if (!cdev_is_power_actor(cdev
))
1126 ret
= cdev
->ops
->get_max_state(cdev
, &max_state
);
1130 return cdev
->ops
->state2power(cdev
, tz
, max_state
, min_power
);
1134 * power_actor_set_power() - limit the maximum power that a cooling device can consume
1135 * @cdev: pointer to &thermal_cooling_device
1136 * @instance: thermal instance to update
1137 * @power: the power in milliwatts
1139 * Set the cooling device to consume at most @power milliwatts.
1141 * Return: 0 on success, -EINVAL if the cooling device does not
1142 * implement the power actor API or -E* for other failures.
1144 int power_actor_set_power(struct thermal_cooling_device
*cdev
,
1145 struct thermal_instance
*instance
, u32 power
)
1147 unsigned long state
;
1150 if (!cdev_is_power_actor(cdev
))
1153 ret
= cdev
->ops
->power2state(cdev
, instance
->tz
, power
, &state
);
1157 instance
->target
= state
;
1158 mutex_lock(&cdev
->lock
);
1159 cdev
->updated
= false;
1160 mutex_unlock(&cdev
->lock
);
1161 thermal_cdev_update(cdev
);
1166 static DEVICE_ATTR(type
, 0444, type_show
, NULL
);
1167 static DEVICE_ATTR(temp
, 0444, temp_show
, NULL
);
1168 static DEVICE_ATTR(mode
, 0644, mode_show
, mode_store
);
1169 static DEVICE_ATTR(passive
, S_IRUGO
| S_IWUSR
, passive_show
, passive_store
);
1170 static DEVICE_ATTR(policy
, S_IRUGO
| S_IWUSR
, policy_show
, policy_store
);
1171 static DEVICE_ATTR(available_policies
, S_IRUGO
, available_policies_show
, NULL
);
1173 /* sys I/F for cooling device */
1174 #define to_cooling_device(_dev) \
1175 container_of(_dev, struct thermal_cooling_device, device)
1178 thermal_cooling_device_type_show(struct device
*dev
,
1179 struct device_attribute
*attr
, char *buf
)
1181 struct thermal_cooling_device
*cdev
= to_cooling_device(dev
);
1183 return sprintf(buf
, "%s\n", cdev
->type
);
1187 thermal_cooling_device_max_state_show(struct device
*dev
,
1188 struct device_attribute
*attr
, char *buf
)
1190 struct thermal_cooling_device
*cdev
= to_cooling_device(dev
);
1191 unsigned long state
;
1194 ret
= cdev
->ops
->get_max_state(cdev
, &state
);
1197 return sprintf(buf
, "%ld\n", state
);
1201 thermal_cooling_device_cur_state_show(struct device
*dev
,
1202 struct device_attribute
*attr
, char *buf
)
1204 struct thermal_cooling_device
*cdev
= to_cooling_device(dev
);
1205 unsigned long state
;
1208 ret
= cdev
->ops
->get_cur_state(cdev
, &state
);
1211 return sprintf(buf
, "%ld\n", state
);
1215 thermal_cooling_device_cur_state_store(struct device
*dev
,
1216 struct device_attribute
*attr
,
1217 const char *buf
, size_t count
)
1219 struct thermal_cooling_device
*cdev
= to_cooling_device(dev
);
1220 unsigned long state
;
1223 if (!sscanf(buf
, "%ld\n", &state
))
1226 if ((long)state
< 0)
1229 result
= cdev
->ops
->set_cur_state(cdev
, state
);
1235 static struct device_attribute dev_attr_cdev_type
=
1236 __ATTR(type
, 0444, thermal_cooling_device_type_show
, NULL
);
1237 static DEVICE_ATTR(max_state
, 0444,
1238 thermal_cooling_device_max_state_show
, NULL
);
1239 static DEVICE_ATTR(cur_state
, 0644,
1240 thermal_cooling_device_cur_state_show
,
1241 thermal_cooling_device_cur_state_store
);
1244 thermal_cooling_device_trip_point_show(struct device
*dev
,
1245 struct device_attribute
*attr
, char *buf
)
1247 struct thermal_instance
*instance
;
1250 container_of(attr
, struct thermal_instance
, attr
);
1252 if (instance
->trip
== THERMAL_TRIPS_NONE
)
1253 return sprintf(buf
, "-1\n");
1255 return sprintf(buf
, "%d\n", instance
->trip
);
1258 static struct attribute
*cooling_device_attrs
[] = {
1259 &dev_attr_cdev_type
.attr
,
1260 &dev_attr_max_state
.attr
,
1261 &dev_attr_cur_state
.attr
,
1265 static const struct attribute_group cooling_device_attr_group
= {
1266 .attrs
= cooling_device_attrs
,
1269 static const struct attribute_group
*cooling_device_attr_groups
[] = {
1270 &cooling_device_attr_group
,
1275 thermal_cooling_device_weight_show(struct device
*dev
,
1276 struct device_attribute
*attr
, char *buf
)
1278 struct thermal_instance
*instance
;
1280 instance
= container_of(attr
, struct thermal_instance
, weight_attr
);
1282 return sprintf(buf
, "%d\n", instance
->weight
);
1286 thermal_cooling_device_weight_store(struct device
*dev
,
1287 struct device_attribute
*attr
,
1288 const char *buf
, size_t count
)
1290 struct thermal_instance
*instance
;
1293 ret
= kstrtoint(buf
, 0, &weight
);
1297 instance
= container_of(attr
, struct thermal_instance
, weight_attr
);
1298 instance
->weight
= weight
;
1302 /* Device management */
1305 * thermal_zone_bind_cooling_device() - bind a cooling device to a thermal zone
1306 * @tz: pointer to struct thermal_zone_device
1307 * @trip: indicates which trip point the cooling devices is
1308 * associated with in this thermal zone.
1309 * @cdev: pointer to struct thermal_cooling_device
1310 * @upper: the Maximum cooling state for this trip point.
1311 * THERMAL_NO_LIMIT means no upper limit,
1312 * and the cooling device can be in max_state.
1313 * @lower: the Minimum cooling state can be used for this trip point.
1314 * THERMAL_NO_LIMIT means no lower limit,
1315 * and the cooling device can be in cooling state 0.
1316 * @weight: The weight of the cooling device to be bound to the
1317 * thermal zone. Use THERMAL_WEIGHT_DEFAULT for the
1320 * This interface function bind a thermal cooling device to the certain trip
1321 * point of a thermal zone device.
1322 * This function is usually called in the thermal zone device .bind callback.
1324 * Return: 0 on success, the proper error value otherwise.
1326 int thermal_zone_bind_cooling_device(struct thermal_zone_device
*tz
,
1328 struct thermal_cooling_device
*cdev
,
1329 unsigned long upper
, unsigned long lower
,
1330 unsigned int weight
)
1332 struct thermal_instance
*dev
;
1333 struct thermal_instance
*pos
;
1334 struct thermal_zone_device
*pos1
;
1335 struct thermal_cooling_device
*pos2
;
1336 unsigned long max_state
;
1339 if (trip
>= tz
->trips
|| (trip
< 0 && trip
!= THERMAL_TRIPS_NONE
))
1342 list_for_each_entry(pos1
, &thermal_tz_list
, node
) {
1346 list_for_each_entry(pos2
, &thermal_cdev_list
, node
) {
1351 if (tz
!= pos1
|| cdev
!= pos2
)
1354 ret
= cdev
->ops
->get_max_state(cdev
, &max_state
);
1358 /* lower default 0, upper default max_state */
1359 lower
= lower
== THERMAL_NO_LIMIT
? 0 : lower
;
1360 upper
= upper
== THERMAL_NO_LIMIT
? max_state
: upper
;
1362 if (lower
> upper
|| upper
> max_state
)
1366 kzalloc(sizeof(struct thermal_instance
), GFP_KERNEL
);
1374 dev
->target
= THERMAL_NO_TARGET
;
1375 dev
->weight
= weight
;
1377 result
= get_idr(&tz
->idr
, &tz
->lock
, &dev
->id
);
1381 sprintf(dev
->name
, "cdev%d", dev
->id
);
1383 sysfs_create_link(&tz
->device
.kobj
, &cdev
->device
.kobj
, dev
->name
);
1387 sprintf(dev
->attr_name
, "cdev%d_trip_point", dev
->id
);
1388 sysfs_attr_init(&dev
->attr
.attr
);
1389 dev
->attr
.attr
.name
= dev
->attr_name
;
1390 dev
->attr
.attr
.mode
= 0444;
1391 dev
->attr
.show
= thermal_cooling_device_trip_point_show
;
1392 result
= device_create_file(&tz
->device
, &dev
->attr
);
1394 goto remove_symbol_link
;
1396 sprintf(dev
->weight_attr_name
, "cdev%d_weight", dev
->id
);
1397 sysfs_attr_init(&dev
->weight_attr
.attr
);
1398 dev
->weight_attr
.attr
.name
= dev
->weight_attr_name
;
1399 dev
->weight_attr
.attr
.mode
= S_IWUSR
| S_IRUGO
;
1400 dev
->weight_attr
.show
= thermal_cooling_device_weight_show
;
1401 dev
->weight_attr
.store
= thermal_cooling_device_weight_store
;
1402 result
= device_create_file(&tz
->device
, &dev
->weight_attr
);
1404 goto remove_trip_file
;
1406 mutex_lock(&tz
->lock
);
1407 mutex_lock(&cdev
->lock
);
1408 list_for_each_entry(pos
, &tz
->thermal_instances
, tz_node
)
1409 if (pos
->tz
== tz
&& pos
->trip
== trip
&& pos
->cdev
== cdev
) {
1414 list_add_tail(&dev
->tz_node
, &tz
->thermal_instances
);
1415 list_add_tail(&dev
->cdev_node
, &cdev
->thermal_instances
);
1416 atomic_set(&tz
->need_update
, 1);
1418 mutex_unlock(&cdev
->lock
);
1419 mutex_unlock(&tz
->lock
);
1424 device_remove_file(&tz
->device
, &dev
->weight_attr
);
1426 device_remove_file(&tz
->device
, &dev
->attr
);
1428 sysfs_remove_link(&tz
->device
.kobj
, dev
->name
);
1430 release_idr(&tz
->idr
, &tz
->lock
, dev
->id
);
1435 EXPORT_SYMBOL_GPL(thermal_zone_bind_cooling_device
);
1438 * thermal_zone_unbind_cooling_device() - unbind a cooling device from a
1440 * @tz: pointer to a struct thermal_zone_device.
1441 * @trip: indicates which trip point the cooling devices is
1442 * associated with in this thermal zone.
1443 * @cdev: pointer to a struct thermal_cooling_device.
1445 * This interface function unbind a thermal cooling device from the certain
1446 * trip point of a thermal zone device.
1447 * This function is usually called in the thermal zone device .unbind callback.
1449 * Return: 0 on success, the proper error value otherwise.
1451 int thermal_zone_unbind_cooling_device(struct thermal_zone_device
*tz
,
1453 struct thermal_cooling_device
*cdev
)
1455 struct thermal_instance
*pos
, *next
;
1457 mutex_lock(&tz
->lock
);
1458 mutex_lock(&cdev
->lock
);
1459 list_for_each_entry_safe(pos
, next
, &tz
->thermal_instances
, tz_node
) {
1460 if (pos
->tz
== tz
&& pos
->trip
== trip
&& pos
->cdev
== cdev
) {
1461 list_del(&pos
->tz_node
);
1462 list_del(&pos
->cdev_node
);
1463 mutex_unlock(&cdev
->lock
);
1464 mutex_unlock(&tz
->lock
);
1468 mutex_unlock(&cdev
->lock
);
1469 mutex_unlock(&tz
->lock
);
1474 device_remove_file(&tz
->device
, &pos
->weight_attr
);
1475 device_remove_file(&tz
->device
, &pos
->attr
);
1476 sysfs_remove_link(&tz
->device
.kobj
, pos
->name
);
1477 release_idr(&tz
->idr
, &tz
->lock
, pos
->id
);
1481 EXPORT_SYMBOL_GPL(thermal_zone_unbind_cooling_device
);
1483 static void thermal_release(struct device
*dev
)
1485 struct thermal_zone_device
*tz
;
1486 struct thermal_cooling_device
*cdev
;
1488 if (!strncmp(dev_name(dev
), "thermal_zone",
1489 sizeof("thermal_zone") - 1)) {
1490 tz
= to_thermal_zone(dev
);
1492 } else if(!strncmp(dev_name(dev
), "cooling_device",
1493 sizeof("cooling_device") - 1)){
1494 cdev
= to_cooling_device(dev
);
1499 static struct class thermal_class
= {
1501 .dev_release
= thermal_release
,
1505 * __thermal_cooling_device_register() - register a new thermal cooling device
1506 * @np: a pointer to a device tree node.
1507 * @type: the thermal cooling device type.
1508 * @devdata: device private data.
1509 * @ops: standard thermal cooling devices callbacks.
1511 * This interface function adds a new thermal cooling device (fan/processor/...)
1512 * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
1513 * to all the thermal zone devices registered at the same time.
1514 * It also gives the opportunity to link the cooling device to a device tree
1515 * node, so that it can be bound to a thermal zone created out of device tree.
1517 * Return: a pointer to the created struct thermal_cooling_device or an
1518 * ERR_PTR. Caller must check return value with IS_ERR*() helpers.
1520 static struct thermal_cooling_device
*
1521 __thermal_cooling_device_register(struct device_node
*np
,
1522 char *type
, void *devdata
,
1523 const struct thermal_cooling_device_ops
*ops
)
1525 struct thermal_cooling_device
*cdev
;
1526 struct thermal_zone_device
*pos
= NULL
;
1529 if (type
&& strlen(type
) >= THERMAL_NAME_LENGTH
)
1530 return ERR_PTR(-EINVAL
);
1532 if (!ops
|| !ops
->get_max_state
|| !ops
->get_cur_state
||
1533 !ops
->set_cur_state
)
1534 return ERR_PTR(-EINVAL
);
1536 cdev
= kzalloc(sizeof(struct thermal_cooling_device
), GFP_KERNEL
);
1538 return ERR_PTR(-ENOMEM
);
1540 result
= get_idr(&thermal_cdev_idr
, &thermal_idr_lock
, &cdev
->id
);
1543 return ERR_PTR(result
);
1546 strlcpy(cdev
->type
, type
? : "", sizeof(cdev
->type
));
1547 mutex_init(&cdev
->lock
);
1548 INIT_LIST_HEAD(&cdev
->thermal_instances
);
1551 cdev
->updated
= false;
1552 cdev
->device
.class = &thermal_class
;
1553 cdev
->device
.groups
= cooling_device_attr_groups
;
1554 cdev
->devdata
= devdata
;
1555 dev_set_name(&cdev
->device
, "cooling_device%d", cdev
->id
);
1556 result
= device_register(&cdev
->device
);
1558 release_idr(&thermal_cdev_idr
, &thermal_idr_lock
, cdev
->id
);
1560 return ERR_PTR(result
);
1563 /* Add 'this' new cdev to the global cdev list */
1564 mutex_lock(&thermal_list_lock
);
1565 list_add(&cdev
->node
, &thermal_cdev_list
);
1566 mutex_unlock(&thermal_list_lock
);
1568 /* Update binding information for 'this' new cdev */
1571 mutex_lock(&thermal_list_lock
);
1572 list_for_each_entry(pos
, &thermal_tz_list
, node
)
1573 if (atomic_cmpxchg(&pos
->need_update
, 1, 0))
1574 thermal_zone_device_update(pos
,
1575 THERMAL_EVENT_UNSPECIFIED
);
1576 mutex_unlock(&thermal_list_lock
);
1582 * thermal_cooling_device_register() - register a new thermal cooling device
1583 * @type: the thermal cooling device type.
1584 * @devdata: device private data.
1585 * @ops: standard thermal cooling devices callbacks.
1587 * This interface function adds a new thermal cooling device (fan/processor/...)
1588 * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
1589 * to all the thermal zone devices registered at the same time.
1591 * Return: a pointer to the created struct thermal_cooling_device or an
1592 * ERR_PTR. Caller must check return value with IS_ERR*() helpers.
1594 struct thermal_cooling_device
*
1595 thermal_cooling_device_register(char *type
, void *devdata
,
1596 const struct thermal_cooling_device_ops
*ops
)
1598 return __thermal_cooling_device_register(NULL
, type
, devdata
, ops
);
1600 EXPORT_SYMBOL_GPL(thermal_cooling_device_register
);
1603 * thermal_of_cooling_device_register() - register an OF thermal cooling device
1604 * @np: a pointer to a device tree node.
1605 * @type: the thermal cooling device type.
1606 * @devdata: device private data.
1607 * @ops: standard thermal cooling devices callbacks.
1609 * This function will register a cooling device with device tree node reference.
1610 * This interface function adds a new thermal cooling device (fan/processor/...)
1611 * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
1612 * to all the thermal zone devices registered at the same time.
1614 * Return: a pointer to the created struct thermal_cooling_device or an
1615 * ERR_PTR. Caller must check return value with IS_ERR*() helpers.
1617 struct thermal_cooling_device
*
1618 thermal_of_cooling_device_register(struct device_node
*np
,
1619 char *type
, void *devdata
,
1620 const struct thermal_cooling_device_ops
*ops
)
1622 return __thermal_cooling_device_register(np
, type
, devdata
, ops
);
1624 EXPORT_SYMBOL_GPL(thermal_of_cooling_device_register
);
1627 * thermal_cooling_device_unregister - removes the registered thermal cooling device
1628 * @cdev: the thermal cooling device to remove.
1630 * thermal_cooling_device_unregister() must be called when the device is no
1633 void thermal_cooling_device_unregister(struct thermal_cooling_device
*cdev
)
1636 const struct thermal_zone_params
*tzp
;
1637 struct thermal_zone_device
*tz
;
1638 struct thermal_cooling_device
*pos
= NULL
;
1643 mutex_lock(&thermal_list_lock
);
1644 list_for_each_entry(pos
, &thermal_cdev_list
, node
)
1648 /* thermal cooling device not found */
1649 mutex_unlock(&thermal_list_lock
);
1652 list_del(&cdev
->node
);
1654 /* Unbind all thermal zones associated with 'this' cdev */
1655 list_for_each_entry(tz
, &thermal_tz_list
, node
) {
1656 if (tz
->ops
->unbind
) {
1657 tz
->ops
->unbind(tz
, cdev
);
1661 if (!tz
->tzp
|| !tz
->tzp
->tbp
)
1665 for (i
= 0; i
< tzp
->num_tbps
; i
++) {
1666 if (tzp
->tbp
[i
].cdev
== cdev
) {
1667 __unbind(tz
, tzp
->tbp
[i
].trip_mask
, cdev
);
1668 tzp
->tbp
[i
].cdev
= NULL
;
1673 mutex_unlock(&thermal_list_lock
);
1676 device_remove_file(&cdev
->device
, &dev_attr_cdev_type
);
1677 device_remove_file(&cdev
->device
, &dev_attr_max_state
);
1678 device_remove_file(&cdev
->device
, &dev_attr_cur_state
);
1680 release_idr(&thermal_cdev_idr
, &thermal_idr_lock
, cdev
->id
);
1681 device_unregister(&cdev
->device
);
1684 EXPORT_SYMBOL_GPL(thermal_cooling_device_unregister
);
1686 void thermal_cdev_update(struct thermal_cooling_device
*cdev
)
1688 struct thermal_instance
*instance
;
1689 unsigned long target
= 0;
1691 mutex_lock(&cdev
->lock
);
1692 /* cooling device is updated*/
1693 if (cdev
->updated
) {
1694 mutex_unlock(&cdev
->lock
);
1698 /* Make sure cdev enters the deepest cooling state */
1699 list_for_each_entry(instance
, &cdev
->thermal_instances
, cdev_node
) {
1700 dev_dbg(&cdev
->device
, "zone%d->target=%lu\n",
1701 instance
->tz
->id
, instance
->target
);
1702 if (instance
->target
== THERMAL_NO_TARGET
)
1704 if (instance
->target
> target
)
1705 target
= instance
->target
;
1707 cdev
->ops
->set_cur_state(cdev
, target
);
1708 cdev
->updated
= true;
1709 mutex_unlock(&cdev
->lock
);
1710 trace_cdev_update(cdev
, target
);
1711 dev_dbg(&cdev
->device
, "set to state %lu\n", target
);
1713 EXPORT_SYMBOL(thermal_cdev_update
);
1716 * thermal_notify_framework - Sensor drivers use this API to notify framework
1717 * @tz: thermal zone device
1718 * @trip: indicates which trip point has been crossed
1720 * This function handles the trip events from sensor drivers. It starts
1721 * throttling the cooling devices according to the policy configured.
1722 * For CRITICAL and HOT trip points, this notifies the respective drivers,
1723 * and does actual throttling for other trip points i.e ACTIVE and PASSIVE.
1724 * The throttling policy is based on the configured platform data; if no
1725 * platform data is provided, this uses the step_wise throttling policy.
1727 void thermal_notify_framework(struct thermal_zone_device
*tz
, int trip
)
1729 handle_thermal_trip(tz
, trip
);
1731 EXPORT_SYMBOL_GPL(thermal_notify_framework
);
1734 * create_trip_attrs() - create attributes for trip points
1735 * @tz: the thermal zone device
1736 * @mask: Writeable trip point bitmap.
1738 * helper function to instantiate sysfs entries for every trip
1739 * point and its properties of a struct thermal_zone_device.
1741 * Return: 0 on success, the proper error value otherwise.
1743 static int create_trip_attrs(struct thermal_zone_device
*tz
, int mask
)
1746 int size
= sizeof(struct thermal_attr
) * tz
->trips
;
1748 tz
->trip_type_attrs
= kzalloc(size
, GFP_KERNEL
);
1749 if (!tz
->trip_type_attrs
)
1752 tz
->trip_temp_attrs
= kzalloc(size
, GFP_KERNEL
);
1753 if (!tz
->trip_temp_attrs
) {
1754 kfree(tz
->trip_type_attrs
);
1758 if (tz
->ops
->get_trip_hyst
) {
1759 tz
->trip_hyst_attrs
= kzalloc(size
, GFP_KERNEL
);
1760 if (!tz
->trip_hyst_attrs
) {
1761 kfree(tz
->trip_type_attrs
);
1762 kfree(tz
->trip_temp_attrs
);
1768 for (indx
= 0; indx
< tz
->trips
; indx
++) {
1769 /* create trip type attribute */
1770 snprintf(tz
->trip_type_attrs
[indx
].name
, THERMAL_NAME_LENGTH
,
1771 "trip_point_%d_type", indx
);
1773 sysfs_attr_init(&tz
->trip_type_attrs
[indx
].attr
.attr
);
1774 tz
->trip_type_attrs
[indx
].attr
.attr
.name
=
1775 tz
->trip_type_attrs
[indx
].name
;
1776 tz
->trip_type_attrs
[indx
].attr
.attr
.mode
= S_IRUGO
;
1777 tz
->trip_type_attrs
[indx
].attr
.show
= trip_point_type_show
;
1779 device_create_file(&tz
->device
,
1780 &tz
->trip_type_attrs
[indx
].attr
);
1782 /* create trip temp attribute */
1783 snprintf(tz
->trip_temp_attrs
[indx
].name
, THERMAL_NAME_LENGTH
,
1784 "trip_point_%d_temp", indx
);
1786 sysfs_attr_init(&tz
->trip_temp_attrs
[indx
].attr
.attr
);
1787 tz
->trip_temp_attrs
[indx
].attr
.attr
.name
=
1788 tz
->trip_temp_attrs
[indx
].name
;
1789 tz
->trip_temp_attrs
[indx
].attr
.attr
.mode
= S_IRUGO
;
1790 tz
->trip_temp_attrs
[indx
].attr
.show
= trip_point_temp_show
;
1791 if (IS_ENABLED(CONFIG_THERMAL_WRITABLE_TRIPS
) &&
1792 mask
& (1 << indx
)) {
1793 tz
->trip_temp_attrs
[indx
].attr
.attr
.mode
|= S_IWUSR
;
1794 tz
->trip_temp_attrs
[indx
].attr
.store
=
1795 trip_point_temp_store
;
1798 device_create_file(&tz
->device
,
1799 &tz
->trip_temp_attrs
[indx
].attr
);
1801 /* create Optional trip hyst attribute */
1802 if (!tz
->ops
->get_trip_hyst
)
1804 snprintf(tz
->trip_hyst_attrs
[indx
].name
, THERMAL_NAME_LENGTH
,
1805 "trip_point_%d_hyst", indx
);
1807 sysfs_attr_init(&tz
->trip_hyst_attrs
[indx
].attr
.attr
);
1808 tz
->trip_hyst_attrs
[indx
].attr
.attr
.name
=
1809 tz
->trip_hyst_attrs
[indx
].name
;
1810 tz
->trip_hyst_attrs
[indx
].attr
.attr
.mode
= S_IRUGO
;
1811 tz
->trip_hyst_attrs
[indx
].attr
.show
= trip_point_hyst_show
;
1812 if (tz
->ops
->set_trip_hyst
) {
1813 tz
->trip_hyst_attrs
[indx
].attr
.attr
.mode
|= S_IWUSR
;
1814 tz
->trip_hyst_attrs
[indx
].attr
.store
=
1815 trip_point_hyst_store
;
1818 device_create_file(&tz
->device
,
1819 &tz
->trip_hyst_attrs
[indx
].attr
);
1824 static void remove_trip_attrs(struct thermal_zone_device
*tz
)
1828 for (indx
= 0; indx
< tz
->trips
; indx
++) {
1829 device_remove_file(&tz
->device
,
1830 &tz
->trip_type_attrs
[indx
].attr
);
1831 device_remove_file(&tz
->device
,
1832 &tz
->trip_temp_attrs
[indx
].attr
);
1833 if (tz
->ops
->get_trip_hyst
)
1834 device_remove_file(&tz
->device
,
1835 &tz
->trip_hyst_attrs
[indx
].attr
);
1837 kfree(tz
->trip_type_attrs
);
1838 kfree(tz
->trip_temp_attrs
);
1839 kfree(tz
->trip_hyst_attrs
);
1843 * thermal_zone_device_register() - register a new thermal zone device
1844 * @type: the thermal zone device type
1845 * @trips: the number of trip points the thermal zone support
1846 * @mask: a bit string indicating the writeablility of trip points
1847 * @devdata: private device data
1848 * @ops: standard thermal zone device callbacks
1849 * @tzp: thermal zone platform parameters
1850 * @passive_delay: number of milliseconds to wait between polls when
1851 * performing passive cooling
1852 * @polling_delay: number of milliseconds to wait between polls when checking
1853 * whether trip points have been crossed (0 for interrupt
1856 * This interface function adds a new thermal zone device (sensor) to
1857 * /sys/class/thermal folder as thermal_zone[0-*]. It tries to bind all the
1858 * thermal cooling devices registered at the same time.
1859 * thermal_zone_device_unregister() must be called when the device is no
1860 * longer needed. The passive cooling depends on the .get_trend() return value.
1862 * Return: a pointer to the created struct thermal_zone_device or an
1863 * in case of error, an ERR_PTR. Caller must check return value with
1864 * IS_ERR*() helpers.
1866 struct thermal_zone_device
*thermal_zone_device_register(const char *type
,
1867 int trips
, int mask
, void *devdata
,
1868 struct thermal_zone_device_ops
*ops
,
1869 struct thermal_zone_params
*tzp
,
1870 int passive_delay
, int polling_delay
)
1872 struct thermal_zone_device
*tz
;
1873 enum thermal_trip_type trip_type
;
1878 struct thermal_governor
*governor
;
1880 if (type
&& strlen(type
) >= THERMAL_NAME_LENGTH
)
1881 return ERR_PTR(-EINVAL
);
1883 if (trips
> THERMAL_MAX_TRIPS
|| trips
< 0 || mask
>> trips
)
1884 return ERR_PTR(-EINVAL
);
1887 return ERR_PTR(-EINVAL
);
1889 if (trips
> 0 && (!ops
->get_trip_type
|| !ops
->get_trip_temp
))
1890 return ERR_PTR(-EINVAL
);
1892 tz
= kzalloc(sizeof(struct thermal_zone_device
), GFP_KERNEL
);
1894 return ERR_PTR(-ENOMEM
);
1896 INIT_LIST_HEAD(&tz
->thermal_instances
);
1898 mutex_init(&tz
->lock
);
1899 result
= get_idr(&thermal_tz_idr
, &thermal_idr_lock
, &tz
->id
);
1902 return ERR_PTR(result
);
1905 strlcpy(tz
->type
, type
? : "", sizeof(tz
->type
));
1908 tz
->device
.class = &thermal_class
;
1909 tz
->devdata
= devdata
;
1911 tz
->passive_delay
= passive_delay
;
1912 tz
->polling_delay
= polling_delay
;
1913 /* A new thermal zone needs to be updated anyway. */
1914 atomic_set(&tz
->need_update
, 1);
1916 dev_set_name(&tz
->device
, "thermal_zone%d", tz
->id
);
1917 result
= device_register(&tz
->device
);
1919 release_idr(&thermal_tz_idr
, &thermal_idr_lock
, tz
->id
);
1921 return ERR_PTR(result
);
1926 result
= device_create_file(&tz
->device
, &dev_attr_type
);
1931 result
= device_create_file(&tz
->device
, &dev_attr_temp
);
1935 if (ops
->get_mode
) {
1936 result
= device_create_file(&tz
->device
, &dev_attr_mode
);
1941 result
= create_trip_attrs(tz
, mask
);
1945 for (count
= 0; count
< trips
; count
++) {
1946 if (tz
->ops
->get_trip_type(tz
, count
, &trip_type
))
1947 set_bit(count
, &tz
->trips_disabled
);
1948 if (trip_type
== THERMAL_TRIP_PASSIVE
)
1950 if (tz
->ops
->get_trip_temp(tz
, count
, &trip_temp
))
1951 set_bit(count
, &tz
->trips_disabled
);
1952 /* Check for bogus trip points */
1954 set_bit(count
, &tz
->trips_disabled
);
1958 result
= device_create_file(&tz
->device
, &dev_attr_passive
);
1963 if (IS_ENABLED(CONFIG_THERMAL_EMULATION
)) {
1964 result
= device_create_file(&tz
->device
, &dev_attr_emul_temp
);
1969 /* Create policy attribute */
1970 result
= device_create_file(&tz
->device
, &dev_attr_policy
);
1974 /* Add thermal zone params */
1975 result
= create_tzp_attrs(&tz
->device
);
1979 /* Create available_policies attribute */
1980 result
= device_create_file(&tz
->device
, &dev_attr_available_policies
);
1984 /* Update 'this' zone's governor information */
1985 mutex_lock(&thermal_governor_lock
);
1988 governor
= __find_governor(tz
->tzp
->governor_name
);
1990 governor
= def_governor
;
1992 result
= thermal_set_governor(tz
, governor
);
1994 mutex_unlock(&thermal_governor_lock
);
1998 mutex_unlock(&thermal_governor_lock
);
2000 if (!tz
->tzp
|| !tz
->tzp
->no_hwmon
) {
2001 result
= thermal_add_hwmon_sysfs(tz
);
2006 mutex_lock(&thermal_list_lock
);
2007 list_add_tail(&tz
->node
, &thermal_tz_list
);
2008 mutex_unlock(&thermal_list_lock
);
2010 /* Bind cooling devices for this zone */
2013 INIT_DELAYED_WORK(&(tz
->poll_queue
), thermal_zone_device_check
);
2015 thermal_zone_device_reset(tz
);
2016 /* Update the new thermal zone and mark it as already updated. */
2017 if (atomic_cmpxchg(&tz
->need_update
, 1, 0))
2018 thermal_zone_device_update(tz
, THERMAL_EVENT_UNSPECIFIED
);
2023 release_idr(&thermal_tz_idr
, &thermal_idr_lock
, tz
->id
);
2024 device_unregister(&tz
->device
);
2025 return ERR_PTR(result
);
2027 EXPORT_SYMBOL_GPL(thermal_zone_device_register
);
2030 * thermal_device_unregister - removes the registered thermal zone device
2031 * @tz: the thermal zone device to remove
2033 void thermal_zone_device_unregister(struct thermal_zone_device
*tz
)
2036 const struct thermal_zone_params
*tzp
;
2037 struct thermal_cooling_device
*cdev
;
2038 struct thermal_zone_device
*pos
= NULL
;
2045 mutex_lock(&thermal_list_lock
);
2046 list_for_each_entry(pos
, &thermal_tz_list
, node
)
2050 /* thermal zone device not found */
2051 mutex_unlock(&thermal_list_lock
);
2054 list_del(&tz
->node
);
2056 /* Unbind all cdevs associated with 'this' thermal zone */
2057 list_for_each_entry(cdev
, &thermal_cdev_list
, node
) {
2058 if (tz
->ops
->unbind
) {
2059 tz
->ops
->unbind(tz
, cdev
);
2063 if (!tzp
|| !tzp
->tbp
)
2066 for (i
= 0; i
< tzp
->num_tbps
; i
++) {
2067 if (tzp
->tbp
[i
].cdev
== cdev
) {
2068 __unbind(tz
, tzp
->tbp
[i
].trip_mask
, cdev
);
2069 tzp
->tbp
[i
].cdev
= NULL
;
2074 mutex_unlock(&thermal_list_lock
);
2076 cancel_delayed_work_sync(&tz
->poll_queue
);
2079 device_remove_file(&tz
->device
, &dev_attr_type
);
2080 device_remove_file(&tz
->device
, &dev_attr_temp
);
2081 if (tz
->ops
->get_mode
)
2082 device_remove_file(&tz
->device
, &dev_attr_mode
);
2083 device_remove_file(&tz
->device
, &dev_attr_policy
);
2084 device_remove_file(&tz
->device
, &dev_attr_available_policies
);
2085 remove_trip_attrs(tz
);
2086 thermal_set_governor(tz
, NULL
);
2088 thermal_remove_hwmon_sysfs(tz
);
2089 release_idr(&thermal_tz_idr
, &thermal_idr_lock
, tz
->id
);
2090 idr_destroy(&tz
->idr
);
2091 mutex_destroy(&tz
->lock
);
2092 device_unregister(&tz
->device
);
2095 EXPORT_SYMBOL_GPL(thermal_zone_device_unregister
);
2098 * thermal_zone_get_zone_by_name() - search for a zone and returns its ref
2099 * @name: thermal zone name to fetch the temperature
2101 * When only one zone is found with the passed name, returns a reference to it.
2103 * Return: On success returns a reference to an unique thermal zone with
2104 * matching name equals to @name, an ERR_PTR otherwise (-EINVAL for invalid
2105 * paramenters, -ENODEV for not found and -EEXIST for multiple matches).
2107 struct thermal_zone_device
*thermal_zone_get_zone_by_name(const char *name
)
2109 struct thermal_zone_device
*pos
= NULL
, *ref
= ERR_PTR(-EINVAL
);
2110 unsigned int found
= 0;
2115 mutex_lock(&thermal_list_lock
);
2116 list_for_each_entry(pos
, &thermal_tz_list
, node
)
2117 if (!strncasecmp(name
, pos
->type
, THERMAL_NAME_LENGTH
)) {
2121 mutex_unlock(&thermal_list_lock
);
2123 /* nothing has been found, thus an error code for it */
2125 ref
= ERR_PTR(-ENODEV
);
2127 /* Success only when an unique zone is found */
2128 ref
= ERR_PTR(-EEXIST
);
2133 EXPORT_SYMBOL_GPL(thermal_zone_get_zone_by_name
);
2136 * thermal_zone_get_slope - return the slope attribute of the thermal zone
2137 * @tz: thermal zone device with the slope attribute
2139 * Return: If the thermal zone device has a slope attribute, return it, else
2142 int thermal_zone_get_slope(struct thermal_zone_device
*tz
)
2145 return tz
->tzp
->slope
;
2148 EXPORT_SYMBOL_GPL(thermal_zone_get_slope
);
2151 * thermal_zone_get_offset - return the offset attribute of the thermal zone
2152 * @tz: thermal zone device with the offset attribute
2154 * Return: If the thermal zone device has a offset attribute, return it, else
2157 int thermal_zone_get_offset(struct thermal_zone_device
*tz
)
2160 return tz
->tzp
->offset
;
2163 EXPORT_SYMBOL_GPL(thermal_zone_get_offset
);
2166 static const struct genl_multicast_group thermal_event_mcgrps
[] = {
2167 { .name
= THERMAL_GENL_MCAST_GROUP_NAME
, },
2170 static struct genl_family thermal_event_genl_family
= {
2171 .id
= GENL_ID_GENERATE
,
2172 .name
= THERMAL_GENL_FAMILY_NAME
,
2173 .version
= THERMAL_GENL_VERSION
,
2174 .maxattr
= THERMAL_GENL_ATTR_MAX
,
2175 .mcgrps
= thermal_event_mcgrps
,
2176 .n_mcgrps
= ARRAY_SIZE(thermal_event_mcgrps
),
2179 int thermal_generate_netlink_event(struct thermal_zone_device
*tz
,
2182 struct sk_buff
*skb
;
2183 struct nlattr
*attr
;
2184 struct thermal_genl_event
*thermal_event
;
2188 static unsigned int thermal_event_seqnum
;
2193 /* allocate memory */
2194 size
= nla_total_size(sizeof(struct thermal_genl_event
)) +
2197 skb
= genlmsg_new(size
, GFP_ATOMIC
);
2201 /* add the genetlink message header */
2202 msg_header
= genlmsg_put(skb
, 0, thermal_event_seqnum
++,
2203 &thermal_event_genl_family
, 0,
2204 THERMAL_GENL_CMD_EVENT
);
2211 attr
= nla_reserve(skb
, THERMAL_GENL_ATTR_EVENT
,
2212 sizeof(struct thermal_genl_event
));
2219 thermal_event
= nla_data(attr
);
2220 if (!thermal_event
) {
2225 memset(thermal_event
, 0, sizeof(struct thermal_genl_event
));
2227 thermal_event
->orig
= tz
->id
;
2228 thermal_event
->event
= event
;
2230 /* send multicast genetlink message */
2231 genlmsg_end(skb
, msg_header
);
2233 result
= genlmsg_multicast(&thermal_event_genl_family
, skb
, 0,
2236 dev_err(&tz
->device
, "Failed to send netlink event:%d", result
);
2240 EXPORT_SYMBOL_GPL(thermal_generate_netlink_event
);
2242 static int genetlink_init(void)
2244 return genl_register_family(&thermal_event_genl_family
);
2247 static void genetlink_exit(void)
2249 genl_unregister_family(&thermal_event_genl_family
);
2251 #else /* !CONFIG_NET */
2252 static inline int genetlink_init(void) { return 0; }
2253 static inline void genetlink_exit(void) {}
2254 #endif /* !CONFIG_NET */
2256 static int __init
thermal_register_governors(void)
2260 result
= thermal_gov_step_wise_register();
2264 result
= thermal_gov_fair_share_register();
2268 result
= thermal_gov_bang_bang_register();
2272 result
= thermal_gov_user_space_register();
2276 return thermal_gov_power_allocator_register();
2279 static void thermal_unregister_governors(void)
2281 thermal_gov_step_wise_unregister();
2282 thermal_gov_fair_share_unregister();
2283 thermal_gov_bang_bang_unregister();
2284 thermal_gov_user_space_unregister();
2285 thermal_gov_power_allocator_unregister();
2288 static int thermal_pm_notify(struct notifier_block
*nb
,
2289 unsigned long mode
, void *_unused
)
2291 struct thermal_zone_device
*tz
;
2294 case PM_HIBERNATION_PREPARE
:
2295 case PM_RESTORE_PREPARE
:
2296 case PM_SUSPEND_PREPARE
:
2297 atomic_set(&in_suspend
, 1);
2299 case PM_POST_HIBERNATION
:
2300 case PM_POST_RESTORE
:
2301 case PM_POST_SUSPEND
:
2302 atomic_set(&in_suspend
, 0);
2303 list_for_each_entry(tz
, &thermal_tz_list
, node
) {
2304 thermal_zone_device_init(tz
);
2305 thermal_zone_device_update(tz
,
2306 THERMAL_EVENT_UNSPECIFIED
);
2315 static struct notifier_block thermal_pm_nb
= {
2316 .notifier_call
= thermal_pm_notify
,
2319 static int __init
thermal_init(void)
2323 result
= thermal_register_governors();
2327 result
= class_register(&thermal_class
);
2329 goto unregister_governors
;
2331 result
= genetlink_init();
2333 goto unregister_class
;
2335 result
= of_parse_thermal_zones();
2339 result
= register_pm_notifier(&thermal_pm_nb
);
2341 pr_warn("Thermal: Can not register suspend notifier, return %d\n",
2349 class_unregister(&thermal_class
);
2350 unregister_governors
:
2351 thermal_unregister_governors();
2353 idr_destroy(&thermal_tz_idr
);
2354 idr_destroy(&thermal_cdev_idr
);
2355 mutex_destroy(&thermal_idr_lock
);
2356 mutex_destroy(&thermal_list_lock
);
2357 mutex_destroy(&thermal_governor_lock
);
2361 static void __exit
thermal_exit(void)
2363 unregister_pm_notifier(&thermal_pm_nb
);
2364 of_thermal_destroy_zones();
2366 class_unregister(&thermal_class
);
2367 thermal_unregister_governors();
2368 idr_destroy(&thermal_tz_idr
);
2369 idr_destroy(&thermal_cdev_idr
);
2370 mutex_destroy(&thermal_idr_lock
);
2371 mutex_destroy(&thermal_list_lock
);
2372 mutex_destroy(&thermal_governor_lock
);
2375 fs_initcall(thermal_init
);
2376 module_exit(thermal_exit
);