Thermal: Introduce .get_trend() callback.
[deliverable/linux.git] / drivers / thermal / thermal_sys.c
CommitLineData
203d3d4a
ZR
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
c5a01dd5
JP
26#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
203d3d4a
ZR
28#include <linux/module.h>
29#include <linux/device.h>
30#include <linux/err.h>
5a0e3ad6 31#include <linux/slab.h>
203d3d4a
ZR
32#include <linux/kdev_t.h>
33#include <linux/idr.h>
34#include <linux/thermal.h>
35#include <linux/spinlock.h>
b1569e99 36#include <linux/reboot.h>
4cb18728
D
37#include <net/netlink.h>
38#include <net/genetlink.h>
203d3d4a 39
63c4ec90 40MODULE_AUTHOR("Zhang Rui");
203d3d4a
ZR
41MODULE_DESCRIPTION("Generic thermal management sysfs support");
42MODULE_LICENSE("GPL");
43
74051ba5
ZR
44/*
45 * This structure is used to describe the behavior of
46 * a certain cooling device on a certain trip point
47 * in a certain thermal zone
48 */
203d3d4a
ZR
49struct thermal_cooling_device_instance {
50 int id;
51 char name[THERMAL_NAME_LENGTH];
52 struct thermal_zone_device *tz;
53 struct thermal_cooling_device *cdev;
54 int trip;
74051ba5
ZR
55 unsigned long upper; /* Highest cooling state for this trip point */
56 unsigned long lower; /* Lowest cooling state for this trip point */
203d3d4a
ZR
57 char attr_name[THERMAL_NAME_LENGTH];
58 struct device_attribute attr;
59 struct list_head node;
60};
61
62static DEFINE_IDR(thermal_tz_idr);
63static DEFINE_IDR(thermal_cdev_idr);
64static DEFINE_MUTEX(thermal_idr_lock);
65
66static LIST_HEAD(thermal_tz_list);
67static LIST_HEAD(thermal_cdev_list);
68static DEFINE_MUTEX(thermal_list_lock);
69
70static int get_idr(struct idr *idr, struct mutex *lock, int *id)
71{
72 int err;
73
caca8b80 74again:
203d3d4a
ZR
75 if (unlikely(idr_pre_get(idr, GFP_KERNEL) == 0))
76 return -ENOMEM;
77
78 if (lock)
79 mutex_lock(lock);
80 err = idr_get_new(idr, NULL, id);
81 if (lock)
82 mutex_unlock(lock);
83 if (unlikely(err == -EAGAIN))
84 goto again;
85 else if (unlikely(err))
86 return err;
87
88 *id = *id & MAX_ID_MASK;
89 return 0;
90}
91
92static void release_idr(struct idr *idr, struct mutex *lock, int id)
93{
94 if (lock)
95 mutex_lock(lock);
96 idr_remove(idr, id);
97 if (lock)
98 mutex_unlock(lock);
99}
100
101/* sys I/F for thermal zone */
102
103#define to_thermal_zone(_dev) \
104 container_of(_dev, struct thermal_zone_device, device)
105
106static ssize_t
107type_show(struct device *dev, struct device_attribute *attr, char *buf)
108{
109 struct thermal_zone_device *tz = to_thermal_zone(dev);
110
111 return sprintf(buf, "%s\n", tz->type);
112}
113
114static ssize_t
115temp_show(struct device *dev, struct device_attribute *attr, char *buf)
116{
117 struct thermal_zone_device *tz = to_thermal_zone(dev);
6503e5df
MG
118 long temperature;
119 int ret;
203d3d4a
ZR
120
121 if (!tz->ops->get_temp)
122 return -EPERM;
123
6503e5df
MG
124 ret = tz->ops->get_temp(tz, &temperature);
125
126 if (ret)
127 return ret;
128
129 return sprintf(buf, "%ld\n", temperature);
203d3d4a
ZR
130}
131
132static ssize_t
133mode_show(struct device *dev, struct device_attribute *attr, char *buf)
134{
135 struct thermal_zone_device *tz = to_thermal_zone(dev);
6503e5df
MG
136 enum thermal_device_mode mode;
137 int result;
203d3d4a
ZR
138
139 if (!tz->ops->get_mode)
140 return -EPERM;
141
6503e5df
MG
142 result = tz->ops->get_mode(tz, &mode);
143 if (result)
144 return result;
145
146 return sprintf(buf, "%s\n", mode == THERMAL_DEVICE_ENABLED ? "enabled"
147 : "disabled");
203d3d4a
ZR
148}
149
150static ssize_t
151mode_store(struct device *dev, struct device_attribute *attr,
152 const char *buf, size_t count)
153{
154 struct thermal_zone_device *tz = to_thermal_zone(dev);
155 int result;
156
157 if (!tz->ops->set_mode)
158 return -EPERM;
159
f1f0e2ac 160 if (!strncmp(buf, "enabled", sizeof("enabled") - 1))
6503e5df 161 result = tz->ops->set_mode(tz, THERMAL_DEVICE_ENABLED);
f1f0e2ac 162 else if (!strncmp(buf, "disabled", sizeof("disabled") - 1))
6503e5df
MG
163 result = tz->ops->set_mode(tz, THERMAL_DEVICE_DISABLED);
164 else
165 result = -EINVAL;
166
203d3d4a
ZR
167 if (result)
168 return result;
169
170 return count;
171}
172
173static ssize_t
174trip_point_type_show(struct device *dev, struct device_attribute *attr,
175 char *buf)
176{
177 struct thermal_zone_device *tz = to_thermal_zone(dev);
6503e5df
MG
178 enum thermal_trip_type type;
179 int trip, result;
203d3d4a
ZR
180
181 if (!tz->ops->get_trip_type)
182 return -EPERM;
183
184 if (!sscanf(attr->attr.name, "trip_point_%d_type", &trip))
185 return -EINVAL;
186
6503e5df
MG
187 result = tz->ops->get_trip_type(tz, trip, &type);
188 if (result)
189 return result;
190
191 switch (type) {
192 case THERMAL_TRIP_CRITICAL:
625120a4 193 return sprintf(buf, "critical\n");
6503e5df 194 case THERMAL_TRIP_HOT:
625120a4 195 return sprintf(buf, "hot\n");
6503e5df 196 case THERMAL_TRIP_PASSIVE:
625120a4 197 return sprintf(buf, "passive\n");
6503e5df 198 case THERMAL_TRIP_ACTIVE:
625120a4 199 return sprintf(buf, "active\n");
6503e5df 200 default:
625120a4 201 return sprintf(buf, "unknown\n");
6503e5df 202 }
203d3d4a
ZR
203}
204
c56f5c03
D
205static ssize_t
206trip_point_temp_store(struct device *dev, struct device_attribute *attr,
207 const char *buf, size_t count)
208{
209 struct thermal_zone_device *tz = to_thermal_zone(dev);
210 int trip, ret;
211 unsigned long temperature;
212
213 if (!tz->ops->set_trip_temp)
214 return -EPERM;
215
216 if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip))
217 return -EINVAL;
218
219 if (kstrtoul(buf, 10, &temperature))
220 return -EINVAL;
221
222 ret = tz->ops->set_trip_temp(tz, trip, temperature);
223
224 return ret ? ret : count;
225}
226
203d3d4a
ZR
227static ssize_t
228trip_point_temp_show(struct device *dev, struct device_attribute *attr,
229 char *buf)
230{
231 struct thermal_zone_device *tz = to_thermal_zone(dev);
6503e5df
MG
232 int trip, ret;
233 long temperature;
203d3d4a
ZR
234
235 if (!tz->ops->get_trip_temp)
236 return -EPERM;
237
238 if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip))
239 return -EINVAL;
240
6503e5df
MG
241 ret = tz->ops->get_trip_temp(tz, trip, &temperature);
242
243 if (ret)
244 return ret;
245
246 return sprintf(buf, "%ld\n", temperature);
203d3d4a
ZR
247}
248
27365a6c
D
249static ssize_t
250trip_point_hyst_store(struct device *dev, struct device_attribute *attr,
251 const char *buf, size_t count)
252{
253 struct thermal_zone_device *tz = to_thermal_zone(dev);
254 int trip, ret;
255 unsigned long temperature;
256
257 if (!tz->ops->set_trip_hyst)
258 return -EPERM;
259
260 if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip))
261 return -EINVAL;
262
263 if (kstrtoul(buf, 10, &temperature))
264 return -EINVAL;
265
266 /*
267 * We are not doing any check on the 'temperature' value
268 * here. The driver implementing 'set_trip_hyst' has to
269 * take care of this.
270 */
271 ret = tz->ops->set_trip_hyst(tz, trip, temperature);
272
273 return ret ? ret : count;
274}
275
276static ssize_t
277trip_point_hyst_show(struct device *dev, struct device_attribute *attr,
278 char *buf)
279{
280 struct thermal_zone_device *tz = to_thermal_zone(dev);
281 int trip, ret;
282 unsigned long temperature;
283
284 if (!tz->ops->get_trip_hyst)
285 return -EPERM;
286
287 if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip))
288 return -EINVAL;
289
290 ret = tz->ops->get_trip_hyst(tz, trip, &temperature);
291
292 return ret ? ret : sprintf(buf, "%ld\n", temperature);
293}
294
03a971a2
MG
295static ssize_t
296passive_store(struct device *dev, struct device_attribute *attr,
297 const char *buf, size_t count)
298{
299 struct thermal_zone_device *tz = to_thermal_zone(dev);
300 struct thermal_cooling_device *cdev = NULL;
301 int state;
302
303 if (!sscanf(buf, "%d\n", &state))
304 return -EINVAL;
305
3d8e3ad8
FP
306 /* sanity check: values below 1000 millicelcius don't make sense
307 * and can cause the system to go into a thermal heart attack
308 */
309 if (state && state < 1000)
310 return -EINVAL;
311
03a971a2
MG
312 if (state && !tz->forced_passive) {
313 mutex_lock(&thermal_list_lock);
314 list_for_each_entry(cdev, &thermal_cdev_list, node) {
315 if (!strncmp("Processor", cdev->type,
316 sizeof("Processor")))
317 thermal_zone_bind_cooling_device(tz,
9d99842f
ZR
318 THERMAL_TRIPS_NONE, cdev,
319 THERMAL_NO_LIMIT,
320 THERMAL_NO_LIMIT);
03a971a2
MG
321 }
322 mutex_unlock(&thermal_list_lock);
e4143b03
FP
323 if (!tz->passive_delay)
324 tz->passive_delay = 1000;
03a971a2
MG
325 } else if (!state && tz->forced_passive) {
326 mutex_lock(&thermal_list_lock);
327 list_for_each_entry(cdev, &thermal_cdev_list, node) {
328 if (!strncmp("Processor", cdev->type,
329 sizeof("Processor")))
330 thermal_zone_unbind_cooling_device(tz,
331 THERMAL_TRIPS_NONE,
332 cdev);
333 }
334 mutex_unlock(&thermal_list_lock);
e4143b03 335 tz->passive_delay = 0;
03a971a2
MG
336 }
337
338 tz->tc1 = 1;
339 tz->tc2 = 1;
340
03a971a2
MG
341 tz->forced_passive = state;
342
343 thermal_zone_device_update(tz);
344
345 return count;
346}
347
348static ssize_t
349passive_show(struct device *dev, struct device_attribute *attr,
350 char *buf)
351{
352 struct thermal_zone_device *tz = to_thermal_zone(dev);
353
354 return sprintf(buf, "%d\n", tz->forced_passive);
355}
356
203d3d4a
ZR
357static DEVICE_ATTR(type, 0444, type_show, NULL);
358static DEVICE_ATTR(temp, 0444, temp_show, NULL);
359static DEVICE_ATTR(mode, 0644, mode_show, mode_store);
886ee546 360static DEVICE_ATTR(passive, S_IRUGO | S_IWUSR, passive_show, passive_store);
203d3d4a 361
203d3d4a
ZR
362/* sys I/F for cooling device */
363#define to_cooling_device(_dev) \
364 container_of(_dev, struct thermal_cooling_device, device)
365
366static ssize_t
367thermal_cooling_device_type_show(struct device *dev,
368 struct device_attribute *attr, char *buf)
369{
370 struct thermal_cooling_device *cdev = to_cooling_device(dev);
371
372 return sprintf(buf, "%s\n", cdev->type);
373}
374
375static ssize_t
376thermal_cooling_device_max_state_show(struct device *dev,
377 struct device_attribute *attr, char *buf)
378{
379 struct thermal_cooling_device *cdev = to_cooling_device(dev);
6503e5df
MG
380 unsigned long state;
381 int ret;
203d3d4a 382
6503e5df
MG
383 ret = cdev->ops->get_max_state(cdev, &state);
384 if (ret)
385 return ret;
386 return sprintf(buf, "%ld\n", state);
203d3d4a
ZR
387}
388
389static ssize_t
390thermal_cooling_device_cur_state_show(struct device *dev,
391 struct device_attribute *attr, char *buf)
392{
393 struct thermal_cooling_device *cdev = to_cooling_device(dev);
6503e5df
MG
394 unsigned long state;
395 int ret;
203d3d4a 396
6503e5df
MG
397 ret = cdev->ops->get_cur_state(cdev, &state);
398 if (ret)
399 return ret;
400 return sprintf(buf, "%ld\n", state);
203d3d4a
ZR
401}
402
403static ssize_t
404thermal_cooling_device_cur_state_store(struct device *dev,
405 struct device_attribute *attr,
406 const char *buf, size_t count)
407{
408 struct thermal_cooling_device *cdev = to_cooling_device(dev);
6503e5df 409 unsigned long state;
203d3d4a
ZR
410 int result;
411
6503e5df 412 if (!sscanf(buf, "%ld\n", &state))
203d3d4a
ZR
413 return -EINVAL;
414
edb94918 415 if ((long)state < 0)
203d3d4a
ZR
416 return -EINVAL;
417
418 result = cdev->ops->set_cur_state(cdev, state);
419 if (result)
420 return result;
421 return count;
422}
423
424static struct device_attribute dev_attr_cdev_type =
543a9561 425__ATTR(type, 0444, thermal_cooling_device_type_show, NULL);
203d3d4a
ZR
426static DEVICE_ATTR(max_state, 0444,
427 thermal_cooling_device_max_state_show, NULL);
428static DEVICE_ATTR(cur_state, 0644,
429 thermal_cooling_device_cur_state_show,
430 thermal_cooling_device_cur_state_store);
431
432static ssize_t
433thermal_cooling_device_trip_point_show(struct device *dev,
543a9561 434 struct device_attribute *attr, char *buf)
203d3d4a
ZR
435{
436 struct thermal_cooling_device_instance *instance;
437
438 instance =
439 container_of(attr, struct thermal_cooling_device_instance, attr);
440
441 if (instance->trip == THERMAL_TRIPS_NONE)
442 return sprintf(buf, "-1\n");
443 else
444 return sprintf(buf, "%d\n", instance->trip);
445}
446
447/* Device management */
448
16d75239
RH
449#if defined(CONFIG_THERMAL_HWMON)
450
e68b16ab
ZR
451/* hwmon sys I/F */
452#include <linux/hwmon.h>
31f5396a
JD
453
454/* thermal zone devices with the same type share one hwmon device */
455struct thermal_hwmon_device {
456 char type[THERMAL_NAME_LENGTH];
457 struct device *device;
458 int count;
459 struct list_head tz_list;
460 struct list_head node;
461};
462
463struct thermal_hwmon_attr {
464 struct device_attribute attr;
465 char name[16];
466};
467
468/* one temperature input for each thermal zone */
469struct thermal_hwmon_temp {
470 struct list_head hwmon_node;
471 struct thermal_zone_device *tz;
472 struct thermal_hwmon_attr temp_input; /* hwmon sys attr */
473 struct thermal_hwmon_attr temp_crit; /* hwmon sys attr */
474};
475
e68b16ab
ZR
476static LIST_HEAD(thermal_hwmon_list);
477
478static ssize_t
479name_show(struct device *dev, struct device_attribute *attr, char *buf)
480{
0e968a3b 481 struct thermal_hwmon_device *hwmon = dev_get_drvdata(dev);
e68b16ab
ZR
482 return sprintf(buf, "%s\n", hwmon->type);
483}
484static DEVICE_ATTR(name, 0444, name_show, NULL);
485
486static ssize_t
487temp_input_show(struct device *dev, struct device_attribute *attr, char *buf)
488{
6503e5df
MG
489 long temperature;
490 int ret;
e68b16ab
ZR
491 struct thermal_hwmon_attr *hwmon_attr
492 = container_of(attr, struct thermal_hwmon_attr, attr);
31f5396a
JD
493 struct thermal_hwmon_temp *temp
494 = container_of(hwmon_attr, struct thermal_hwmon_temp,
e68b16ab 495 temp_input);
31f5396a 496 struct thermal_zone_device *tz = temp->tz;
e68b16ab 497
6503e5df
MG
498 ret = tz->ops->get_temp(tz, &temperature);
499
500 if (ret)
501 return ret;
502
503 return sprintf(buf, "%ld\n", temperature);
e68b16ab
ZR
504}
505
506static ssize_t
507temp_crit_show(struct device *dev, struct device_attribute *attr,
508 char *buf)
509{
510 struct thermal_hwmon_attr *hwmon_attr
511 = container_of(attr, struct thermal_hwmon_attr, attr);
31f5396a
JD
512 struct thermal_hwmon_temp *temp
513 = container_of(hwmon_attr, struct thermal_hwmon_temp,
e68b16ab 514 temp_crit);
31f5396a 515 struct thermal_zone_device *tz = temp->tz;
6503e5df
MG
516 long temperature;
517 int ret;
518
519 ret = tz->ops->get_trip_temp(tz, 0, &temperature);
520 if (ret)
521 return ret;
e68b16ab 522
6503e5df 523 return sprintf(buf, "%ld\n", temperature);
e68b16ab
ZR
524}
525
526
0d97d7a4
JD
527static struct thermal_hwmon_device *
528thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz)
e68b16ab
ZR
529{
530 struct thermal_hwmon_device *hwmon;
e68b16ab
ZR
531
532 mutex_lock(&thermal_list_lock);
533 list_for_each_entry(hwmon, &thermal_hwmon_list, node)
534 if (!strcmp(hwmon->type, tz->type)) {
e68b16ab 535 mutex_unlock(&thermal_list_lock);
0d97d7a4 536 return hwmon;
e68b16ab
ZR
537 }
538 mutex_unlock(&thermal_list_lock);
539
0d97d7a4
JD
540 return NULL;
541}
542
31f5396a
JD
543/* Find the temperature input matching a given thermal zone */
544static struct thermal_hwmon_temp *
545thermal_hwmon_lookup_temp(const struct thermal_hwmon_device *hwmon,
546 const struct thermal_zone_device *tz)
547{
548 struct thermal_hwmon_temp *temp;
549
550 mutex_lock(&thermal_list_lock);
551 list_for_each_entry(temp, &hwmon->tz_list, hwmon_node)
552 if (temp->tz == tz) {
553 mutex_unlock(&thermal_list_lock);
554 return temp;
555 }
556 mutex_unlock(&thermal_list_lock);
557
558 return NULL;
559}
560
0d97d7a4
JD
561static int
562thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
563{
564 struct thermal_hwmon_device *hwmon;
31f5396a 565 struct thermal_hwmon_temp *temp;
0d97d7a4
JD
566 int new_hwmon_device = 1;
567 int result;
568
569 hwmon = thermal_hwmon_lookup_by_type(tz);
570 if (hwmon) {
571 new_hwmon_device = 0;
572 goto register_sys_interface;
573 }
574
e68b16ab
ZR
575 hwmon = kzalloc(sizeof(struct thermal_hwmon_device), GFP_KERNEL);
576 if (!hwmon)
577 return -ENOMEM;
578
579 INIT_LIST_HEAD(&hwmon->tz_list);
580 strlcpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH);
581 hwmon->device = hwmon_device_register(NULL);
582 if (IS_ERR(hwmon->device)) {
583 result = PTR_ERR(hwmon->device);
584 goto free_mem;
585 }
0e968a3b 586 dev_set_drvdata(hwmon->device, hwmon);
e68b16ab
ZR
587 result = device_create_file(hwmon->device, &dev_attr_name);
588 if (result)
b299eb5c 589 goto free_mem;
e68b16ab
ZR
590
591 register_sys_interface:
31f5396a
JD
592 temp = kzalloc(sizeof(struct thermal_hwmon_temp), GFP_KERNEL);
593 if (!temp) {
594 result = -ENOMEM;
595 goto unregister_name;
596 }
597
598 temp->tz = tz;
e68b16ab
ZR
599 hwmon->count++;
600
31f5396a 601 snprintf(temp->temp_input.name, THERMAL_NAME_LENGTH,
e68b16ab 602 "temp%d_input", hwmon->count);
31f5396a
JD
603 temp->temp_input.attr.attr.name = temp->temp_input.name;
604 temp->temp_input.attr.attr.mode = 0444;
605 temp->temp_input.attr.show = temp_input_show;
606 sysfs_attr_init(&temp->temp_input.attr.attr);
607 result = device_create_file(hwmon->device, &temp->temp_input.attr);
e68b16ab 608 if (result)
31f5396a 609 goto free_temp_mem;
e68b16ab
ZR
610
611 if (tz->ops->get_crit_temp) {
612 unsigned long temperature;
613 if (!tz->ops->get_crit_temp(tz, &temperature)) {
31f5396a 614 snprintf(temp->temp_crit.name, THERMAL_NAME_LENGTH,
e68b16ab 615 "temp%d_crit", hwmon->count);
31f5396a
JD
616 temp->temp_crit.attr.attr.name = temp->temp_crit.name;
617 temp->temp_crit.attr.attr.mode = 0444;
618 temp->temp_crit.attr.show = temp_crit_show;
619 sysfs_attr_init(&temp->temp_crit.attr.attr);
e68b16ab 620 result = device_create_file(hwmon->device,
31f5396a 621 &temp->temp_crit.attr);
e68b16ab 622 if (result)
b299eb5c 623 goto unregister_input;
e68b16ab
ZR
624 }
625 }
626
627 mutex_lock(&thermal_list_lock);
628 if (new_hwmon_device)
629 list_add_tail(&hwmon->node, &thermal_hwmon_list);
31f5396a 630 list_add_tail(&temp->hwmon_node, &hwmon->tz_list);
e68b16ab
ZR
631 mutex_unlock(&thermal_list_lock);
632
633 return 0;
634
b299eb5c 635 unregister_input:
31f5396a
JD
636 device_remove_file(hwmon->device, &temp->temp_input.attr);
637 free_temp_mem:
638 kfree(temp);
b299eb5c 639 unregister_name:
e68b16ab
ZR
640 if (new_hwmon_device) {
641 device_remove_file(hwmon->device, &dev_attr_name);
642 hwmon_device_unregister(hwmon->device);
643 }
644 free_mem:
645 if (new_hwmon_device)
646 kfree(hwmon);
647
648 return result;
649}
650
651static void
652thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
653{
31f5396a
JD
654 struct thermal_hwmon_device *hwmon;
655 struct thermal_hwmon_temp *temp;
656
657 hwmon = thermal_hwmon_lookup_by_type(tz);
658 if (unlikely(!hwmon)) {
659 /* Should never happen... */
660 dev_dbg(&tz->device, "hwmon device lookup failed!\n");
661 return;
662 }
663
664 temp = thermal_hwmon_lookup_temp(hwmon, tz);
665 if (unlikely(!temp)) {
666 /* Should never happen... */
667 dev_dbg(&tz->device, "temperature input lookup failed!\n");
668 return;
669 }
e68b16ab 670
31f5396a 671 device_remove_file(hwmon->device, &temp->temp_input.attr);
b299eb5c 672 if (tz->ops->get_crit_temp)
31f5396a 673 device_remove_file(hwmon->device, &temp->temp_crit.attr);
e68b16ab
ZR
674
675 mutex_lock(&thermal_list_lock);
31f5396a
JD
676 list_del(&temp->hwmon_node);
677 kfree(temp);
e68b16ab
ZR
678 if (!list_empty(&hwmon->tz_list)) {
679 mutex_unlock(&thermal_list_lock);
680 return;
681 }
682 list_del(&hwmon->node);
683 mutex_unlock(&thermal_list_lock);
684
685 device_remove_file(hwmon->device, &dev_attr_name);
686 hwmon_device_unregister(hwmon->device);
687 kfree(hwmon);
688}
689#else
690static int
691thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
692{
693 return 0;
694}
695
696static void
697thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
698{
699}
700#endif
701
b1569e99
MG
702static void thermal_zone_device_set_polling(struct thermal_zone_device *tz,
703 int delay)
704{
705 cancel_delayed_work(&(tz->poll_queue));
706
707 if (!delay)
708 return;
709
710 if (delay > 1000)
51e20d0e 711 queue_delayed_work(system_freezable_wq, &(tz->poll_queue),
b1569e99
MG
712 round_jiffies(msecs_to_jiffies(delay)));
713 else
51e20d0e 714 queue_delayed_work(system_freezable_wq, &(tz->poll_queue),
b1569e99
MG
715 msecs_to_jiffies(delay));
716}
717
718static void thermal_zone_device_passive(struct thermal_zone_device *tz,
719 int temp, int trip_temp, int trip)
720{
721 int trend = 0;
722 struct thermal_cooling_device_instance *instance;
723 struct thermal_cooling_device *cdev;
724 long state, max_state;
725
601f3d42
ZR
726 if (!tz->ops->get_trend ||
727 tz->ops->get_trend(tz, trip, (enum thermal_trend *)&trend)) {
728 /*
729 * compare the current temperature and previous temperature
730 * to get the thermal trend, if no special requirement
731 */
732 if (tz->temperature > tz->last_temperature)
733 trend = THERMAL_TREND_RAISING;
734 else if (tz->temperature < tz->last_temperature)
735 trend = THERMAL_TREND_DROPPING;
736 else
737 trend = THERMAL_TREND_STABLE;
738 }
739
b1569e99
MG
740 /*
741 * Above Trip?
742 * -----------
743 * Calculate the thermal trend (using the passive cooling equation)
744 * and modify the performance limit for all passive cooling devices
745 * accordingly. Note that we assume symmetry.
746 */
747 if (temp >= trip_temp) {
748 tz->passive = true;
749
750 trend = (tz->tc1 * (temp - tz->last_temperature)) +
751 (tz->tc2 * (temp - trip_temp));
752
753 /* Heating up? */
754 if (trend > 0) {
755 list_for_each_entry(instance, &tz->cooling_devices,
756 node) {
757 if (instance->trip != trip)
758 continue;
759 cdev = instance->cdev;
760 cdev->ops->get_cur_state(cdev, &state);
761 cdev->ops->get_max_state(cdev, &max_state);
762 if (state++ < max_state)
763 cdev->ops->set_cur_state(cdev, state);
764 }
765 } else if (trend < 0) { /* Cooling off? */
766 list_for_each_entry(instance, &tz->cooling_devices,
767 node) {
768 if (instance->trip != trip)
769 continue;
770 cdev = instance->cdev;
771 cdev->ops->get_cur_state(cdev, &state);
772 cdev->ops->get_max_state(cdev, &max_state);
773 if (state > 0)
774 cdev->ops->set_cur_state(cdev, --state);
775 }
776 }
777 return;
778 }
779
780 /*
781 * Below Trip?
782 * -----------
783 * Implement passive cooling hysteresis to slowly increase performance
784 * and avoid thrashing around the passive trip point. Note that we
785 * assume symmetry.
786 */
787 list_for_each_entry(instance, &tz->cooling_devices, node) {
788 if (instance->trip != trip)
789 continue;
790 cdev = instance->cdev;
791 cdev->ops->get_cur_state(cdev, &state);
792 cdev->ops->get_max_state(cdev, &max_state);
793 if (state > 0)
794 cdev->ops->set_cur_state(cdev, --state);
795 if (state == 0)
796 tz->passive = false;
797 }
798}
799
800static void thermal_zone_device_check(struct work_struct *work)
801{
802 struct thermal_zone_device *tz = container_of(work, struct
803 thermal_zone_device,
804 poll_queue.work);
805 thermal_zone_device_update(tz);
806}
e68b16ab 807
203d3d4a
ZR
808/**
809 * thermal_zone_bind_cooling_device - bind a cooling device to a thermal zone
203d3d4a
ZR
810 * @tz: thermal zone device
811 * @trip: indicates which trip point the cooling devices is
812 * associated with in this thermal zone.
813 * @cdev: thermal cooling device
543a9561
LB
814 *
815 * This function is usually called in the thermal zone device .bind callback.
203d3d4a
ZR
816 */
817int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
818 int trip,
9d99842f
ZR
819 struct thermal_cooling_device *cdev,
820 unsigned long upper, unsigned long lower)
203d3d4a
ZR
821{
822 struct thermal_cooling_device_instance *dev;
823 struct thermal_cooling_device_instance *pos;
c7516709
TS
824 struct thermal_zone_device *pos1;
825 struct thermal_cooling_device *pos2;
74051ba5 826 unsigned long max_state;
203d3d4a
ZR
827 int result;
828
543a9561 829 if (trip >= tz->trips || (trip < 0 && trip != THERMAL_TRIPS_NONE))
203d3d4a
ZR
830 return -EINVAL;
831
c7516709
TS
832 list_for_each_entry(pos1, &thermal_tz_list, node) {
833 if (pos1 == tz)
834 break;
835 }
836 list_for_each_entry(pos2, &thermal_cdev_list, node) {
837 if (pos2 == cdev)
838 break;
839 }
840
841 if (tz != pos1 || cdev != pos2)
203d3d4a
ZR
842 return -EINVAL;
843
9d99842f
ZR
844 cdev->ops->get_max_state(cdev, &max_state);
845
846 /* lower default 0, upper default max_state */
847 lower = lower == THERMAL_NO_LIMIT ? 0 : lower;
848 upper = upper == THERMAL_NO_LIMIT ? max_state : upper;
849
850 if (lower > upper || upper > max_state)
851 return -EINVAL;
852
203d3d4a
ZR
853 dev =
854 kzalloc(sizeof(struct thermal_cooling_device_instance), GFP_KERNEL);
855 if (!dev)
856 return -ENOMEM;
857 dev->tz = tz;
858 dev->cdev = cdev;
859 dev->trip = trip;
9d99842f
ZR
860 dev->upper = upper;
861 dev->lower = lower;
74051ba5 862
203d3d4a
ZR
863 result = get_idr(&tz->idr, &tz->lock, &dev->id);
864 if (result)
865 goto free_mem;
866
867 sprintf(dev->name, "cdev%d", dev->id);
868 result =
869 sysfs_create_link(&tz->device.kobj, &cdev->device.kobj, dev->name);
870 if (result)
871 goto release_idr;
872
873 sprintf(dev->attr_name, "cdev%d_trip_point", dev->id);
975f8c56 874 sysfs_attr_init(&dev->attr.attr);
203d3d4a
ZR
875 dev->attr.attr.name = dev->attr_name;
876 dev->attr.attr.mode = 0444;
877 dev->attr.show = thermal_cooling_device_trip_point_show;
878 result = device_create_file(&tz->device, &dev->attr);
879 if (result)
880 goto remove_symbol_link;
881
882 mutex_lock(&tz->lock);
883 list_for_each_entry(pos, &tz->cooling_devices, node)
884 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) {
885 result = -EEXIST;
886 break;
887 }
888 if (!result)
889 list_add_tail(&dev->node, &tz->cooling_devices);
890 mutex_unlock(&tz->lock);
891
892 if (!result)
893 return 0;
894
895 device_remove_file(&tz->device, &dev->attr);
caca8b80 896remove_symbol_link:
203d3d4a 897 sysfs_remove_link(&tz->device.kobj, dev->name);
caca8b80 898release_idr:
203d3d4a 899 release_idr(&tz->idr, &tz->lock, dev->id);
caca8b80 900free_mem:
203d3d4a
ZR
901 kfree(dev);
902 return result;
903}
904EXPORT_SYMBOL(thermal_zone_bind_cooling_device);
905
906/**
907 * thermal_zone_unbind_cooling_device - unbind a cooling device from a thermal zone
203d3d4a
ZR
908 * @tz: thermal zone device
909 * @trip: indicates which trip point the cooling devices is
910 * associated with in this thermal zone.
911 * @cdev: thermal cooling device
543a9561
LB
912 *
913 * This function is usually called in the thermal zone device .unbind callback.
203d3d4a
ZR
914 */
915int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
916 int trip,
917 struct thermal_cooling_device *cdev)
918{
919 struct thermal_cooling_device_instance *pos, *next;
920
921 mutex_lock(&tz->lock);
922 list_for_each_entry_safe(pos, next, &tz->cooling_devices, node) {
543a9561 923 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) {
203d3d4a
ZR
924 list_del(&pos->node);
925 mutex_unlock(&tz->lock);
926 goto unbind;
927 }
928 }
929 mutex_unlock(&tz->lock);
930
931 return -ENODEV;
932
caca8b80 933unbind:
203d3d4a
ZR
934 device_remove_file(&tz->device, &pos->attr);
935 sysfs_remove_link(&tz->device.kobj, pos->name);
936 release_idr(&tz->idr, &tz->lock, pos->id);
937 kfree(pos);
938 return 0;
939}
940EXPORT_SYMBOL(thermal_zone_unbind_cooling_device);
941
942static void thermal_release(struct device *dev)
943{
944 struct thermal_zone_device *tz;
945 struct thermal_cooling_device *cdev;
946
caca8b80
JP
947 if (!strncmp(dev_name(dev), "thermal_zone",
948 sizeof("thermal_zone") - 1)) {
203d3d4a
ZR
949 tz = to_thermal_zone(dev);
950 kfree(tz);
951 } else {
952 cdev = to_cooling_device(dev);
953 kfree(cdev);
954 }
955}
956
957static struct class thermal_class = {
958 .name = "thermal",
959 .dev_release = thermal_release,
960};
961
962/**
963 * thermal_cooling_device_register - register a new thermal cooling device
964 * @type: the thermal cooling device type.
965 * @devdata: device private data.
966 * @ops: standard thermal cooling devices callbacks.
967 */
caca8b80
JP
968struct thermal_cooling_device *
969thermal_cooling_device_register(char *type, void *devdata,
970 const struct thermal_cooling_device_ops *ops)
203d3d4a
ZR
971{
972 struct thermal_cooling_device *cdev;
973 struct thermal_zone_device *pos;
974 int result;
975
976 if (strlen(type) >= THERMAL_NAME_LENGTH)
3e6fda5c 977 return ERR_PTR(-EINVAL);
203d3d4a
ZR
978
979 if (!ops || !ops->get_max_state || !ops->get_cur_state ||
543a9561 980 !ops->set_cur_state)
3e6fda5c 981 return ERR_PTR(-EINVAL);
203d3d4a
ZR
982
983 cdev = kzalloc(sizeof(struct thermal_cooling_device), GFP_KERNEL);
984 if (!cdev)
3e6fda5c 985 return ERR_PTR(-ENOMEM);
203d3d4a
ZR
986
987 result = get_idr(&thermal_cdev_idr, &thermal_idr_lock, &cdev->id);
988 if (result) {
989 kfree(cdev);
3e6fda5c 990 return ERR_PTR(result);
203d3d4a
ZR
991 }
992
993 strcpy(cdev->type, type);
994 cdev->ops = ops;
995 cdev->device.class = &thermal_class;
996 cdev->devdata = devdata;
354655ea 997 dev_set_name(&cdev->device, "cooling_device%d", cdev->id);
203d3d4a
ZR
998 result = device_register(&cdev->device);
999 if (result) {
1000 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1001 kfree(cdev);
3e6fda5c 1002 return ERR_PTR(result);
203d3d4a
ZR
1003 }
1004
1005 /* sys I/F */
1006 if (type) {
543a9561 1007 result = device_create_file(&cdev->device, &dev_attr_cdev_type);
203d3d4a
ZR
1008 if (result)
1009 goto unregister;
1010 }
1011
1012 result = device_create_file(&cdev->device, &dev_attr_max_state);
1013 if (result)
1014 goto unregister;
1015
1016 result = device_create_file(&cdev->device, &dev_attr_cur_state);
1017 if (result)
1018 goto unregister;
1019
1020 mutex_lock(&thermal_list_lock);
1021 list_add(&cdev->node, &thermal_cdev_list);
1022 list_for_each_entry(pos, &thermal_tz_list, node) {
1023 if (!pos->ops->bind)
1024 continue;
1025 result = pos->ops->bind(pos, cdev);
1026 if (result)
1027 break;
1028
1029 }
1030 mutex_unlock(&thermal_list_lock);
1031
1032 if (!result)
1033 return cdev;
1034
caca8b80 1035unregister:
203d3d4a
ZR
1036 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1037 device_unregister(&cdev->device);
3e6fda5c 1038 return ERR_PTR(result);
203d3d4a
ZR
1039}
1040EXPORT_SYMBOL(thermal_cooling_device_register);
1041
1042/**
1043 * thermal_cooling_device_unregister - removes the registered thermal cooling device
203d3d4a
ZR
1044 * @cdev: the thermal cooling device to remove.
1045 *
1046 * thermal_cooling_device_unregister() must be called when the device is no
1047 * longer needed.
1048 */
1049void thermal_cooling_device_unregister(struct
1050 thermal_cooling_device
1051 *cdev)
1052{
1053 struct thermal_zone_device *tz;
1054 struct thermal_cooling_device *pos = NULL;
1055
1056 if (!cdev)
1057 return;
1058
1059 mutex_lock(&thermal_list_lock);
1060 list_for_each_entry(pos, &thermal_cdev_list, node)
1061 if (pos == cdev)
1062 break;
1063 if (pos != cdev) {
1064 /* thermal cooling device not found */
1065 mutex_unlock(&thermal_list_lock);
1066 return;
1067 }
1068 list_del(&cdev->node);
1069 list_for_each_entry(tz, &thermal_tz_list, node) {
1070 if (!tz->ops->unbind)
1071 continue;
1072 tz->ops->unbind(tz, cdev);
1073 }
1074 mutex_unlock(&thermal_list_lock);
1075 if (cdev->type[0])
543a9561 1076 device_remove_file(&cdev->device, &dev_attr_cdev_type);
203d3d4a
ZR
1077 device_remove_file(&cdev->device, &dev_attr_max_state);
1078 device_remove_file(&cdev->device, &dev_attr_cur_state);
1079
1080 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1081 device_unregister(&cdev->device);
1082 return;
1083}
1084EXPORT_SYMBOL(thermal_cooling_device_unregister);
1085
b1569e99
MG
1086/**
1087 * thermal_zone_device_update - force an update of a thermal zone's state
1088 * @ttz: the thermal zone to update
1089 */
1090
1091void thermal_zone_device_update(struct thermal_zone_device *tz)
1092{
1093 int count, ret = 0;
1094 long temp, trip_temp;
1095 enum thermal_trip_type trip_type;
1096 struct thermal_cooling_device_instance *instance;
1097 struct thermal_cooling_device *cdev;
e3f25e6e 1098 unsigned long cur_state, max_state;
b1569e99
MG
1099
1100 mutex_lock(&tz->lock);
1101
0d288162
MB
1102 if (tz->ops->get_temp(tz, &temp)) {
1103 /* get_temp failed - retry it later */
c5a01dd5 1104 pr_warn("failed to read out thermal zone %d\n", tz->id);
0d288162
MB
1105 goto leave;
1106 }
b1569e99 1107
601f3d42
ZR
1108 tz->last_temperature = tz->temperature;
1109 tz->temperature = temp;
1110
b1569e99
MG
1111 for (count = 0; count < tz->trips; count++) {
1112 tz->ops->get_trip_type(tz, count, &trip_type);
1113 tz->ops->get_trip_temp(tz, count, &trip_temp);
1114
1115 switch (trip_type) {
1116 case THERMAL_TRIP_CRITICAL:
29321357 1117 if (temp >= trip_temp) {
b1569e99
MG
1118 if (tz->ops->notify)
1119 ret = tz->ops->notify(tz, count,
1120 trip_type);
1121 if (!ret) {
c5a01dd5
JP
1122 pr_emerg("Critical temperature reached (%ld C), shutting down\n",
1123 temp/1000);
b1569e99
MG
1124 orderly_poweroff(true);
1125 }
1126 }
1127 break;
1128 case THERMAL_TRIP_HOT:
29321357 1129 if (temp >= trip_temp)
b1569e99
MG
1130 if (tz->ops->notify)
1131 tz->ops->notify(tz, count, trip_type);
1132 break;
1133 case THERMAL_TRIP_ACTIVE:
1134 list_for_each_entry(instance, &tz->cooling_devices,
1135 node) {
1136 if (instance->trip != count)
1137 continue;
1138
1139 cdev = instance->cdev;
1140
e3f25e6e
ZR
1141 cdev->ops->get_cur_state(cdev, &cur_state);
1142 cdev->ops->get_max_state(cdev, &max_state);
1143
29321357 1144 if (temp >= trip_temp)
74051ba5
ZR
1145 cur_state =
1146 cur_state < instance->upper ?
1147 (cur_state + 1) :
1148 instance->upper;
b1569e99 1149 else
74051ba5
ZR
1150 cur_state =
1151 cur_state > instance->lower ?
1152 (cur_state - 1) :
1153 instance->lower;
e3f25e6e
ZR
1154
1155 cdev->ops->set_cur_state(cdev, cur_state);
b1569e99
MG
1156 }
1157 break;
1158 case THERMAL_TRIP_PASSIVE:
29321357 1159 if (temp >= trip_temp || tz->passive)
b1569e99
MG
1160 thermal_zone_device_passive(tz, temp,
1161 trip_temp, count);
1162 break;
1163 }
1164 }
03a971a2
MG
1165
1166 if (tz->forced_passive)
1167 thermal_zone_device_passive(tz, temp, tz->forced_passive,
1168 THERMAL_TRIPS_NONE);
1169
caca8b80 1170leave:
b1569e99
MG
1171 if (tz->passive)
1172 thermal_zone_device_set_polling(tz, tz->passive_delay);
1173 else if (tz->polling_delay)
1174 thermal_zone_device_set_polling(tz, tz->polling_delay);
3767cb54
FP
1175 else
1176 thermal_zone_device_set_polling(tz, 0);
b1569e99
MG
1177 mutex_unlock(&tz->lock);
1178}
1179EXPORT_SYMBOL(thermal_zone_device_update);
1180
c56f5c03
D
1181/**
1182 * create_trip_attrs - create attributes for trip points
1183 * @tz: the thermal zone device
1184 * @mask: Writeable trip point bitmap.
1185 */
1186static int create_trip_attrs(struct thermal_zone_device *tz, int mask)
1187{
1188 int indx;
27365a6c 1189 int size = sizeof(struct thermal_attr) * tz->trips;
c56f5c03 1190
27365a6c 1191 tz->trip_type_attrs = kzalloc(size, GFP_KERNEL);
c56f5c03
D
1192 if (!tz->trip_type_attrs)
1193 return -ENOMEM;
1194
27365a6c 1195 tz->trip_temp_attrs = kzalloc(size, GFP_KERNEL);
c56f5c03
D
1196 if (!tz->trip_temp_attrs) {
1197 kfree(tz->trip_type_attrs);
1198 return -ENOMEM;
1199 }
1200
27365a6c
D
1201 if (tz->ops->get_trip_hyst) {
1202 tz->trip_hyst_attrs = kzalloc(size, GFP_KERNEL);
1203 if (!tz->trip_hyst_attrs) {
1204 kfree(tz->trip_type_attrs);
1205 kfree(tz->trip_temp_attrs);
1206 return -ENOMEM;
1207 }
1208 }
c56f5c03 1209
27365a6c
D
1210
1211 for (indx = 0; indx < tz->trips; indx++) {
c56f5c03
D
1212 /* create trip type attribute */
1213 snprintf(tz->trip_type_attrs[indx].name, THERMAL_NAME_LENGTH,
1214 "trip_point_%d_type", indx);
1215
1216 sysfs_attr_init(&tz->trip_type_attrs[indx].attr.attr);
1217 tz->trip_type_attrs[indx].attr.attr.name =
1218 tz->trip_type_attrs[indx].name;
1219 tz->trip_type_attrs[indx].attr.attr.mode = S_IRUGO;
1220 tz->trip_type_attrs[indx].attr.show = trip_point_type_show;
1221
1222 device_create_file(&tz->device,
1223 &tz->trip_type_attrs[indx].attr);
1224
1225 /* create trip temp attribute */
1226 snprintf(tz->trip_temp_attrs[indx].name, THERMAL_NAME_LENGTH,
1227 "trip_point_%d_temp", indx);
1228
1229 sysfs_attr_init(&tz->trip_temp_attrs[indx].attr.attr);
1230 tz->trip_temp_attrs[indx].attr.attr.name =
1231 tz->trip_temp_attrs[indx].name;
1232 tz->trip_temp_attrs[indx].attr.attr.mode = S_IRUGO;
1233 tz->trip_temp_attrs[indx].attr.show = trip_point_temp_show;
1234 if (mask & (1 << indx)) {
1235 tz->trip_temp_attrs[indx].attr.attr.mode |= S_IWUSR;
1236 tz->trip_temp_attrs[indx].attr.store =
1237 trip_point_temp_store;
1238 }
1239
1240 device_create_file(&tz->device,
1241 &tz->trip_temp_attrs[indx].attr);
27365a6c
D
1242
1243 /* create Optional trip hyst attribute */
1244 if (!tz->ops->get_trip_hyst)
1245 continue;
1246 snprintf(tz->trip_hyst_attrs[indx].name, THERMAL_NAME_LENGTH,
1247 "trip_point_%d_hyst", indx);
1248
1249 sysfs_attr_init(&tz->trip_hyst_attrs[indx].attr.attr);
1250 tz->trip_hyst_attrs[indx].attr.attr.name =
1251 tz->trip_hyst_attrs[indx].name;
1252 tz->trip_hyst_attrs[indx].attr.attr.mode = S_IRUGO;
1253 tz->trip_hyst_attrs[indx].attr.show = trip_point_hyst_show;
1254 if (tz->ops->set_trip_hyst) {
1255 tz->trip_hyst_attrs[indx].attr.attr.mode |= S_IWUSR;
1256 tz->trip_hyst_attrs[indx].attr.store =
1257 trip_point_hyst_store;
1258 }
1259
1260 device_create_file(&tz->device,
1261 &tz->trip_hyst_attrs[indx].attr);
c56f5c03
D
1262 }
1263 return 0;
1264}
1265
1266static void remove_trip_attrs(struct thermal_zone_device *tz)
1267{
1268 int indx;
1269
1270 for (indx = 0; indx < tz->trips; indx++) {
1271 device_remove_file(&tz->device,
1272 &tz->trip_type_attrs[indx].attr);
1273 device_remove_file(&tz->device,
1274 &tz->trip_temp_attrs[indx].attr);
27365a6c
D
1275 if (tz->ops->get_trip_hyst)
1276 device_remove_file(&tz->device,
1277 &tz->trip_hyst_attrs[indx].attr);
c56f5c03
D
1278 }
1279 kfree(tz->trip_type_attrs);
1280 kfree(tz->trip_temp_attrs);
27365a6c 1281 kfree(tz->trip_hyst_attrs);
c56f5c03
D
1282}
1283
203d3d4a
ZR
1284/**
1285 * thermal_zone_device_register - register a new thermal zone device
1286 * @type: the thermal zone device type
1287 * @trips: the number of trip points the thermal zone support
c56f5c03 1288 * @mask: a bit string indicating the writeablility of trip points
203d3d4a
ZR
1289 * @devdata: private device data
1290 * @ops: standard thermal zone device callbacks
b1569e99
MG
1291 * @tc1: thermal coefficient 1 for passive calculations
1292 * @tc2: thermal coefficient 2 for passive calculations
1293 * @passive_delay: number of milliseconds to wait between polls when
1294 * performing passive cooling
1295 * @polling_delay: number of milliseconds to wait between polls when checking
1296 * whether trip points have been crossed (0 for interrupt
1297 * driven systems)
203d3d4a
ZR
1298 *
1299 * thermal_zone_device_unregister() must be called when the device is no
b1569e99
MG
1300 * longer needed. The passive cooling formula uses tc1 and tc2 as described in
1301 * section 11.1.5.1 of the ACPI specification 3.0.
203d3d4a 1302 */
4b1bf587 1303struct thermal_zone_device *thermal_zone_device_register(const char *type,
c56f5c03 1304 int trips, int mask, void *devdata,
5b275ce2
AC
1305 const struct thermal_zone_device_ops *ops,
1306 int tc1, int tc2, int passive_delay, int polling_delay)
203d3d4a
ZR
1307{
1308 struct thermal_zone_device *tz;
1309 struct thermal_cooling_device *pos;
03a971a2 1310 enum thermal_trip_type trip_type;
203d3d4a
ZR
1311 int result;
1312 int count;
03a971a2 1313 int passive = 0;
203d3d4a
ZR
1314
1315 if (strlen(type) >= THERMAL_NAME_LENGTH)
3e6fda5c 1316 return ERR_PTR(-EINVAL);
203d3d4a 1317
c56f5c03 1318 if (trips > THERMAL_MAX_TRIPS || trips < 0 || mask >> trips)
3e6fda5c 1319 return ERR_PTR(-EINVAL);
203d3d4a
ZR
1320
1321 if (!ops || !ops->get_temp)
3e6fda5c 1322 return ERR_PTR(-EINVAL);
203d3d4a
ZR
1323
1324 tz = kzalloc(sizeof(struct thermal_zone_device), GFP_KERNEL);
1325 if (!tz)
3e6fda5c 1326 return ERR_PTR(-ENOMEM);
203d3d4a
ZR
1327
1328 INIT_LIST_HEAD(&tz->cooling_devices);
1329 idr_init(&tz->idr);
1330 mutex_init(&tz->lock);
1331 result = get_idr(&thermal_tz_idr, &thermal_idr_lock, &tz->id);
1332 if (result) {
1333 kfree(tz);
3e6fda5c 1334 return ERR_PTR(result);
203d3d4a
ZR
1335 }
1336
1337 strcpy(tz->type, type);
1338 tz->ops = ops;
1339 tz->device.class = &thermal_class;
1340 tz->devdata = devdata;
1341 tz->trips = trips;
b1569e99
MG
1342 tz->tc1 = tc1;
1343 tz->tc2 = tc2;
1344 tz->passive_delay = passive_delay;
1345 tz->polling_delay = polling_delay;
1346
354655ea 1347 dev_set_name(&tz->device, "thermal_zone%d", tz->id);
203d3d4a
ZR
1348 result = device_register(&tz->device);
1349 if (result) {
1350 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1351 kfree(tz);
3e6fda5c 1352 return ERR_PTR(result);
203d3d4a
ZR
1353 }
1354
1355 /* sys I/F */
1356 if (type) {
1357 result = device_create_file(&tz->device, &dev_attr_type);
1358 if (result)
1359 goto unregister;
1360 }
1361
1362 result = device_create_file(&tz->device, &dev_attr_temp);
1363 if (result)
1364 goto unregister;
1365
1366 if (ops->get_mode) {
1367 result = device_create_file(&tz->device, &dev_attr_mode);
1368 if (result)
1369 goto unregister;
1370 }
1371
c56f5c03
D
1372 result = create_trip_attrs(tz, mask);
1373 if (result)
1374 goto unregister;
1375
203d3d4a 1376 for (count = 0; count < trips; count++) {
03a971a2
MG
1377 tz->ops->get_trip_type(tz, count, &trip_type);
1378 if (trip_type == THERMAL_TRIP_PASSIVE)
1379 passive = 1;
203d3d4a
ZR
1380 }
1381
03a971a2
MG
1382 if (!passive)
1383 result = device_create_file(&tz->device,
1384 &dev_attr_passive);
1385
1386 if (result)
1387 goto unregister;
1388
e68b16ab
ZR
1389 result = thermal_add_hwmon_sysfs(tz);
1390 if (result)
1391 goto unregister;
1392
203d3d4a
ZR
1393 mutex_lock(&thermal_list_lock);
1394 list_add_tail(&tz->node, &thermal_tz_list);
1395 if (ops->bind)
1396 list_for_each_entry(pos, &thermal_cdev_list, node) {
543a9561
LB
1397 result = ops->bind(tz, pos);
1398 if (result)
1399 break;
203d3d4a
ZR
1400 }
1401 mutex_unlock(&thermal_list_lock);
1402
b1569e99
MG
1403 INIT_DELAYED_WORK(&(tz->poll_queue), thermal_zone_device_check);
1404
1405 thermal_zone_device_update(tz);
1406
203d3d4a
ZR
1407 if (!result)
1408 return tz;
1409
caca8b80 1410unregister:
203d3d4a
ZR
1411 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1412 device_unregister(&tz->device);
3e6fda5c 1413 return ERR_PTR(result);
203d3d4a
ZR
1414}
1415EXPORT_SYMBOL(thermal_zone_device_register);
1416
1417/**
1418 * thermal_device_unregister - removes the registered thermal zone device
203d3d4a
ZR
1419 * @tz: the thermal zone device to remove
1420 */
1421void thermal_zone_device_unregister(struct thermal_zone_device *tz)
1422{
1423 struct thermal_cooling_device *cdev;
1424 struct thermal_zone_device *pos = NULL;
203d3d4a
ZR
1425
1426 if (!tz)
1427 return;
1428
1429 mutex_lock(&thermal_list_lock);
1430 list_for_each_entry(pos, &thermal_tz_list, node)
1431 if (pos == tz)
1432 break;
1433 if (pos != tz) {
1434 /* thermal zone device not found */
1435 mutex_unlock(&thermal_list_lock);
1436 return;
1437 }
1438 list_del(&tz->node);
1439 if (tz->ops->unbind)
1440 list_for_each_entry(cdev, &thermal_cdev_list, node)
1441 tz->ops->unbind(tz, cdev);
1442 mutex_unlock(&thermal_list_lock);
1443
b1569e99
MG
1444 thermal_zone_device_set_polling(tz, 0);
1445
203d3d4a
ZR
1446 if (tz->type[0])
1447 device_remove_file(&tz->device, &dev_attr_type);
1448 device_remove_file(&tz->device, &dev_attr_temp);
1449 if (tz->ops->get_mode)
1450 device_remove_file(&tz->device, &dev_attr_mode);
c56f5c03 1451 remove_trip_attrs(tz);
203d3d4a 1452
e68b16ab 1453 thermal_remove_hwmon_sysfs(tz);
203d3d4a
ZR
1454 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1455 idr_destroy(&tz->idr);
1456 mutex_destroy(&tz->lock);
1457 device_unregister(&tz->device);
1458 return;
1459}
1460EXPORT_SYMBOL(thermal_zone_device_unregister);
1461
af06216a
RW
1462#ifdef CONFIG_NET
1463static struct genl_family thermal_event_genl_family = {
1464 .id = GENL_ID_GENERATE,
1465 .name = THERMAL_GENL_FAMILY_NAME,
1466 .version = THERMAL_GENL_VERSION,
1467 .maxattr = THERMAL_GENL_ATTR_MAX,
1468};
1469
1470static struct genl_multicast_group thermal_event_mcgrp = {
1471 .name = THERMAL_GENL_MCAST_GROUP_NAME,
1472};
1473
2d58d7ea 1474int thermal_generate_netlink_event(u32 orig, enum events event)
4cb18728
D
1475{
1476 struct sk_buff *skb;
1477 struct nlattr *attr;
1478 struct thermal_genl_event *thermal_event;
1479 void *msg_header;
1480 int size;
1481 int result;
b11de07c 1482 static unsigned int thermal_event_seqnum;
4cb18728
D
1483
1484 /* allocate memory */
886ee546
JP
1485 size = nla_total_size(sizeof(struct thermal_genl_event)) +
1486 nla_total_size(0);
4cb18728
D
1487
1488 skb = genlmsg_new(size, GFP_ATOMIC);
1489 if (!skb)
1490 return -ENOMEM;
1491
1492 /* add the genetlink message header */
1493 msg_header = genlmsg_put(skb, 0, thermal_event_seqnum++,
1494 &thermal_event_genl_family, 0,
1495 THERMAL_GENL_CMD_EVENT);
1496 if (!msg_header) {
1497 nlmsg_free(skb);
1498 return -ENOMEM;
1499 }
1500
1501 /* fill the data */
886ee546
JP
1502 attr = nla_reserve(skb, THERMAL_GENL_ATTR_EVENT,
1503 sizeof(struct thermal_genl_event));
4cb18728
D
1504
1505 if (!attr) {
1506 nlmsg_free(skb);
1507 return -EINVAL;
1508 }
1509
1510 thermal_event = nla_data(attr);
1511 if (!thermal_event) {
1512 nlmsg_free(skb);
1513 return -EINVAL;
1514 }
1515
1516 memset(thermal_event, 0, sizeof(struct thermal_genl_event));
1517
1518 thermal_event->orig = orig;
1519 thermal_event->event = event;
1520
1521 /* send multicast genetlink message */
1522 result = genlmsg_end(skb, msg_header);
1523 if (result < 0) {
1524 nlmsg_free(skb);
1525 return result;
1526 }
1527
1528 result = genlmsg_multicast(skb, 0, thermal_event_mcgrp.id, GFP_ATOMIC);
1529 if (result)
c5a01dd5 1530 pr_info("failed to send netlink event:%d\n", result);
4cb18728
D
1531
1532 return result;
1533}
2d58d7ea 1534EXPORT_SYMBOL(thermal_generate_netlink_event);
4cb18728
D
1535
1536static int genetlink_init(void)
1537{
1538 int result;
1539
1540 result = genl_register_family(&thermal_event_genl_family);
1541 if (result)
1542 return result;
1543
1544 result = genl_register_mc_group(&thermal_event_genl_family,
1545 &thermal_event_mcgrp);
1546 if (result)
1547 genl_unregister_family(&thermal_event_genl_family);
1548 return result;
1549}
1550
af06216a
RW
1551static void genetlink_exit(void)
1552{
1553 genl_unregister_family(&thermal_event_genl_family);
1554}
1555#else /* !CONFIG_NET */
1556static inline int genetlink_init(void) { return 0; }
1557static inline void genetlink_exit(void) {}
1558#endif /* !CONFIG_NET */
1559
203d3d4a
ZR
1560static int __init thermal_init(void)
1561{
1562 int result = 0;
1563
1564 result = class_register(&thermal_class);
1565 if (result) {
1566 idr_destroy(&thermal_tz_idr);
1567 idr_destroy(&thermal_cdev_idr);
1568 mutex_destroy(&thermal_idr_lock);
1569 mutex_destroy(&thermal_list_lock);
1570 }
4cb18728 1571 result = genetlink_init();
203d3d4a
ZR
1572 return result;
1573}
1574
1575static void __exit thermal_exit(void)
1576{
1577 class_unregister(&thermal_class);
1578 idr_destroy(&thermal_tz_idr);
1579 idr_destroy(&thermal_cdev_idr);
1580 mutex_destroy(&thermal_idr_lock);
1581 mutex_destroy(&thermal_list_lock);
4cb18728 1582 genetlink_exit();
203d3d4a
ZR
1583}
1584
4cb18728 1585fs_initcall(thermal_init);
203d3d4a 1586module_exit(thermal_exit);
This page took 0.548125 seconds and 5 git commands to generate.