blob: 9d21f82986eed8fa71d6e352775ac6e587a3da3c [file] [log] [blame]
Zhang Rui203d3d42008-01-17 15:51:08 +08001/*
2 * thermal.c - Generic Thermal Management Sysfs support.
3 *
4 * Copyright (C) 2008 Intel Corp
5 * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
6 * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
Joe Perchesc5a01dd2012-03-21 12:55:02 -070026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Zhang Rui203d3d42008-01-17 15:51:08 +080028#include <linux/module.h>
29#include <linux/device.h>
30#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Zhang Rui203d3d42008-01-17 15:51:08 +080032#include <linux/kdev_t.h>
33#include <linux/idr.h>
34#include <linux/thermal.h>
35#include <linux/spinlock.h>
Matthew Garrettb1569e92008-12-03 17:55:32 +000036#include <linux/reboot.h>
R.Durgadoss4cb18722010-10-27 03:33:29 +053037#include <net/netlink.h>
38#include <net/genetlink.h>
Zhang Rui203d3d42008-01-17 15:51:08 +080039
Durgadoss R71350db2012-09-18 11:04:53 +053040#include "thermal_core.h"
41
Zhang Rui63c4ec92008-04-21 16:07:13 +080042MODULE_AUTHOR("Zhang Rui");
Zhang Rui203d3d42008-01-17 15:51:08 +080043MODULE_DESCRIPTION("Generic thermal management sysfs support");
44MODULE_LICENSE("GPL");
45
Zhang Rui203d3d42008-01-17 15:51:08 +080046static DEFINE_IDR(thermal_tz_idr);
47static DEFINE_IDR(thermal_cdev_idr);
48static DEFINE_MUTEX(thermal_idr_lock);
49
50static LIST_HEAD(thermal_tz_list);
51static LIST_HEAD(thermal_cdev_list);
Durgadoss Ra4a15482012-09-18 11:04:57 +053052static LIST_HEAD(thermal_governor_list);
53
Zhang Rui203d3d42008-01-17 15:51:08 +080054static DEFINE_MUTEX(thermal_list_lock);
Durgadoss Ra4a15482012-09-18 11:04:57 +053055static DEFINE_MUTEX(thermal_governor_lock);
56
57static struct thermal_governor *__find_governor(const char *name)
58{
59 struct thermal_governor *pos;
60
61 list_for_each_entry(pos, &thermal_governor_list, governor_list)
62 if (!strnicmp(name, pos->name, THERMAL_NAME_LENGTH))
63 return pos;
64
65 return NULL;
66}
67
68int thermal_register_governor(struct thermal_governor *governor)
69{
70 int err;
71 const char *name;
72 struct thermal_zone_device *pos;
73
74 if (!governor)
75 return -EINVAL;
76
77 mutex_lock(&thermal_governor_lock);
78
79 err = -EBUSY;
80 if (__find_governor(governor->name) == NULL) {
81 err = 0;
82 list_add(&governor->governor_list, &thermal_governor_list);
83 }
84
85 mutex_lock(&thermal_list_lock);
86
87 list_for_each_entry(pos, &thermal_tz_list, node) {
88 if (pos->governor)
89 continue;
90 if (pos->tzp)
91 name = pos->tzp->governor_name;
92 else
93 name = DEFAULT_THERMAL_GOVERNOR;
94 if (!strnicmp(name, governor->name, THERMAL_NAME_LENGTH))
95 pos->governor = governor;
96 }
97
98 mutex_unlock(&thermal_list_lock);
99 mutex_unlock(&thermal_governor_lock);
100
101 return err;
102}
103EXPORT_SYMBOL_GPL(thermal_register_governor);
104
105void thermal_unregister_governor(struct thermal_governor *governor)
106{
107 struct thermal_zone_device *pos;
108
109 if (!governor)
110 return;
111
112 mutex_lock(&thermal_governor_lock);
113
114 if (__find_governor(governor->name) == NULL)
115 goto exit;
116
117 mutex_lock(&thermal_list_lock);
118
119 list_for_each_entry(pos, &thermal_tz_list, node) {
120 if (!strnicmp(pos->governor->name, governor->name,
121 THERMAL_NAME_LENGTH))
122 pos->governor = NULL;
123 }
124
125 mutex_unlock(&thermal_list_lock);
126 list_del(&governor->governor_list);
127exit:
128 mutex_unlock(&thermal_governor_lock);
129 return;
130}
131EXPORT_SYMBOL_GPL(thermal_unregister_governor);
Zhang Rui203d3d42008-01-17 15:51:08 +0800132
133static int get_idr(struct idr *idr, struct mutex *lock, int *id)
134{
135 int err;
136
Joe Perchescaca8b82012-03-21 12:55:02 -0700137again:
Zhang Rui203d3d42008-01-17 15:51:08 +0800138 if (unlikely(idr_pre_get(idr, GFP_KERNEL) == 0))
139 return -ENOMEM;
140
141 if (lock)
142 mutex_lock(lock);
143 err = idr_get_new(idr, NULL, id);
144 if (lock)
145 mutex_unlock(lock);
146 if (unlikely(err == -EAGAIN))
147 goto again;
148 else if (unlikely(err))
149 return err;
150
Fengguang Wu125c4c72012-10-04 17:13:15 -0700151 *id = *id & MAX_IDR_MASK;
Zhang Rui203d3d42008-01-17 15:51:08 +0800152 return 0;
153}
154
155static void release_idr(struct idr *idr, struct mutex *lock, int id)
156{
157 if (lock)
158 mutex_lock(lock);
159 idr_remove(idr, id);
160 if (lock)
161 mutex_unlock(lock);
162}
163
Durgadoss R9b4298a2012-09-18 11:04:54 +0530164int get_tz_trend(struct thermal_zone_device *tz, int trip)
165{
166 enum thermal_trend trend;
167
168 if (!tz->ops->get_trend || tz->ops->get_trend(tz, trip, &trend)) {
169 if (tz->temperature > tz->last_temperature)
170 trend = THERMAL_TREND_RAISING;
171 else if (tz->temperature < tz->last_temperature)
172 trend = THERMAL_TREND_DROPPING;
173 else
174 trend = THERMAL_TREND_STABLE;
175 }
176
177 return trend;
178}
179EXPORT_SYMBOL(get_tz_trend);
180
181struct thermal_instance *get_thermal_instance(struct thermal_zone_device *tz,
182 struct thermal_cooling_device *cdev, int trip)
183{
184 struct thermal_instance *pos = NULL;
185 struct thermal_instance *target_instance = NULL;
186
187 mutex_lock(&tz->lock);
188 mutex_lock(&cdev->lock);
189
190 list_for_each_entry(pos, &tz->thermal_instances, tz_node) {
191 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) {
192 target_instance = pos;
193 break;
194 }
195 }
196
197 mutex_unlock(&cdev->lock);
198 mutex_unlock(&tz->lock);
199
200 return target_instance;
201}
202EXPORT_SYMBOL(get_thermal_instance);
203
Durgadoss R7e8ee1e2012-09-18 11:04:59 +0530204static void print_bind_err_msg(struct thermal_zone_device *tz,
205 struct thermal_cooling_device *cdev, int ret)
206{
207 dev_err(&tz->device, "binding zone %s with cdev %s failed:%d\n",
208 tz->type, cdev->type, ret);
209}
210
211static void __bind(struct thermal_zone_device *tz, int mask,
212 struct thermal_cooling_device *cdev)
213{
214 int i, ret;
215
216 for (i = 0; i < tz->trips; i++) {
217 if (mask & (1 << i)) {
218 ret = thermal_zone_bind_cooling_device(tz, i, cdev,
219 THERMAL_NO_LIMIT, THERMAL_NO_LIMIT);
220 if (ret)
221 print_bind_err_msg(tz, cdev, ret);
222 }
223 }
224}
225
226static void __unbind(struct thermal_zone_device *tz, int mask,
227 struct thermal_cooling_device *cdev)
228{
229 int i;
230
231 for (i = 0; i < tz->trips; i++)
232 if (mask & (1 << i))
233 thermal_zone_unbind_cooling_device(tz, i, cdev);
234}
235
236static void bind_cdev(struct thermal_cooling_device *cdev)
237{
238 int i, ret;
239 const struct thermal_zone_params *tzp;
240 struct thermal_zone_device *pos = NULL;
241
242 mutex_lock(&thermal_list_lock);
243
244 list_for_each_entry(pos, &thermal_tz_list, node) {
245 if (!pos->tzp && !pos->ops->bind)
246 continue;
247
248 if (!pos->tzp && pos->ops->bind) {
249 ret = pos->ops->bind(pos, cdev);
250 if (ret)
251 print_bind_err_msg(pos, cdev, ret);
252 }
253
254 tzp = pos->tzp;
255 if (!tzp->tbp)
256 return;
257
258 for (i = 0; i < tzp->num_tbps; i++) {
259 if (tzp->tbp[i].cdev || !tzp->tbp[i].match)
260 continue;
261 if (tzp->tbp[i].match(pos, cdev))
262 continue;
263 tzp->tbp[i].cdev = cdev;
264 __bind(pos, tzp->tbp[i].trip_mask, cdev);
265 }
266 }
267
268 mutex_unlock(&thermal_list_lock);
269}
270
271static void bind_tz(struct thermal_zone_device *tz)
272{
273 int i, ret;
274 struct thermal_cooling_device *pos = NULL;
275 const struct thermal_zone_params *tzp = tz->tzp;
276
277 if (!tzp && !tz->ops->bind)
278 return;
279
280 mutex_lock(&thermal_list_lock);
281
282 /* If there is no platform data, try to use ops->bind */
283 if (!tzp && tz->ops->bind) {
284 list_for_each_entry(pos, &thermal_cdev_list, node) {
285 ret = tz->ops->bind(tz, pos);
286 if (ret)
287 print_bind_err_msg(tz, pos, ret);
288 }
289 goto exit;
290 }
291
292 if (!tzp->tbp)
293 goto exit;
294
295 list_for_each_entry(pos, &thermal_cdev_list, node) {
296 for (i = 0; i < tzp->num_tbps; i++) {
297 if (tzp->tbp[i].cdev || !tzp->tbp[i].match)
298 continue;
299 if (tzp->tbp[i].match(tz, pos))
300 continue;
301 tzp->tbp[i].cdev = pos;
302 __bind(tz, tzp->tbp[i].trip_mask, pos);
303 }
304 }
305exit:
306 mutex_unlock(&thermal_list_lock);
307}
308
Zhang Rui203d3d42008-01-17 15:51:08 +0800309/* sys I/F for thermal zone */
310
311#define to_thermal_zone(_dev) \
312 container_of(_dev, struct thermal_zone_device, device)
313
314static ssize_t
315type_show(struct device *dev, struct device_attribute *attr, char *buf)
316{
317 struct thermal_zone_device *tz = to_thermal_zone(dev);
318
319 return sprintf(buf, "%s\n", tz->type);
320}
321
322static ssize_t
323temp_show(struct device *dev, struct device_attribute *attr, char *buf)
324{
325 struct thermal_zone_device *tz = to_thermal_zone(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000326 long temperature;
327 int ret;
Zhang Rui203d3d42008-01-17 15:51:08 +0800328
329 if (!tz->ops->get_temp)
330 return -EPERM;
331
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000332 ret = tz->ops->get_temp(tz, &temperature);
333
334 if (ret)
335 return ret;
336
337 return sprintf(buf, "%ld\n", temperature);
Zhang Rui203d3d42008-01-17 15:51:08 +0800338}
339
340static ssize_t
341mode_show(struct device *dev, struct device_attribute *attr, char *buf)
342{
343 struct thermal_zone_device *tz = to_thermal_zone(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000344 enum thermal_device_mode mode;
345 int result;
Zhang Rui203d3d42008-01-17 15:51:08 +0800346
347 if (!tz->ops->get_mode)
348 return -EPERM;
349
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000350 result = tz->ops->get_mode(tz, &mode);
351 if (result)
352 return result;
353
354 return sprintf(buf, "%s\n", mode == THERMAL_DEVICE_ENABLED ? "enabled"
355 : "disabled");
Zhang Rui203d3d42008-01-17 15:51:08 +0800356}
357
358static ssize_t
359mode_store(struct device *dev, struct device_attribute *attr,
360 const char *buf, size_t count)
361{
362 struct thermal_zone_device *tz = to_thermal_zone(dev);
363 int result;
364
365 if (!tz->ops->set_mode)
366 return -EPERM;
367
Amit Daniel Kachhapf1f0e2a2012-03-21 16:40:01 +0530368 if (!strncmp(buf, "enabled", sizeof("enabled") - 1))
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000369 result = tz->ops->set_mode(tz, THERMAL_DEVICE_ENABLED);
Amit Daniel Kachhapf1f0e2a2012-03-21 16:40:01 +0530370 else if (!strncmp(buf, "disabled", sizeof("disabled") - 1))
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000371 result = tz->ops->set_mode(tz, THERMAL_DEVICE_DISABLED);
372 else
373 result = -EINVAL;
374
Zhang Rui203d3d42008-01-17 15:51:08 +0800375 if (result)
376 return result;
377
378 return count;
379}
380
381static ssize_t
382trip_point_type_show(struct device *dev, struct device_attribute *attr,
383 char *buf)
384{
385 struct thermal_zone_device *tz = to_thermal_zone(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000386 enum thermal_trip_type type;
387 int trip, result;
Zhang Rui203d3d42008-01-17 15:51:08 +0800388
389 if (!tz->ops->get_trip_type)
390 return -EPERM;
391
392 if (!sscanf(attr->attr.name, "trip_point_%d_type", &trip))
393 return -EINVAL;
394
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000395 result = tz->ops->get_trip_type(tz, trip, &type);
396 if (result)
397 return result;
398
399 switch (type) {
400 case THERMAL_TRIP_CRITICAL:
Amit Kucheria625120a42009-10-16 12:46:02 +0300401 return sprintf(buf, "critical\n");
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000402 case THERMAL_TRIP_HOT:
Amit Kucheria625120a42009-10-16 12:46:02 +0300403 return sprintf(buf, "hot\n");
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000404 case THERMAL_TRIP_PASSIVE:
Amit Kucheria625120a42009-10-16 12:46:02 +0300405 return sprintf(buf, "passive\n");
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000406 case THERMAL_TRIP_ACTIVE:
Amit Kucheria625120a42009-10-16 12:46:02 +0300407 return sprintf(buf, "active\n");
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000408 default:
Amit Kucheria625120a42009-10-16 12:46:02 +0300409 return sprintf(buf, "unknown\n");
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000410 }
Zhang Rui203d3d42008-01-17 15:51:08 +0800411}
412
413static ssize_t
Durgadoss Rc56f5c02012-07-25 10:10:58 +0800414trip_point_temp_store(struct device *dev, struct device_attribute *attr,
415 const char *buf, size_t count)
416{
417 struct thermal_zone_device *tz = to_thermal_zone(dev);
418 int trip, ret;
419 unsigned long temperature;
420
421 if (!tz->ops->set_trip_temp)
422 return -EPERM;
423
424 if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip))
425 return -EINVAL;
426
427 if (kstrtoul(buf, 10, &temperature))
428 return -EINVAL;
429
430 ret = tz->ops->set_trip_temp(tz, trip, temperature);
431
432 return ret ? ret : count;
433}
434
435static ssize_t
Zhang Rui203d3d42008-01-17 15:51:08 +0800436trip_point_temp_show(struct device *dev, struct device_attribute *attr,
437 char *buf)
438{
439 struct thermal_zone_device *tz = to_thermal_zone(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000440 int trip, ret;
441 long temperature;
Zhang Rui203d3d42008-01-17 15:51:08 +0800442
443 if (!tz->ops->get_trip_temp)
444 return -EPERM;
445
446 if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip))
447 return -EINVAL;
448
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000449 ret = tz->ops->get_trip_temp(tz, trip, &temperature);
450
451 if (ret)
452 return ret;
453
454 return sprintf(buf, "%ld\n", temperature);
Zhang Rui203d3d42008-01-17 15:51:08 +0800455}
456
Matthew Garrett03a971a2008-12-03 18:00:38 +0000457static ssize_t
Durgadoss R27365a62012-07-25 10:10:59 +0800458trip_point_hyst_store(struct device *dev, struct device_attribute *attr,
459 const char *buf, size_t count)
460{
461 struct thermal_zone_device *tz = to_thermal_zone(dev);
462 int trip, ret;
463 unsigned long temperature;
464
465 if (!tz->ops->set_trip_hyst)
466 return -EPERM;
467
468 if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip))
469 return -EINVAL;
470
471 if (kstrtoul(buf, 10, &temperature))
472 return -EINVAL;
473
474 /*
475 * We are not doing any check on the 'temperature' value
476 * here. The driver implementing 'set_trip_hyst' has to
477 * take care of this.
478 */
479 ret = tz->ops->set_trip_hyst(tz, trip, temperature);
480
481 return ret ? ret : count;
482}
483
484static ssize_t
485trip_point_hyst_show(struct device *dev, struct device_attribute *attr,
486 char *buf)
487{
488 struct thermal_zone_device *tz = to_thermal_zone(dev);
489 int trip, ret;
490 unsigned long temperature;
491
492 if (!tz->ops->get_trip_hyst)
493 return -EPERM;
494
495 if (!sscanf(attr->attr.name, "trip_point_%d_hyst", &trip))
496 return -EINVAL;
497
498 ret = tz->ops->get_trip_hyst(tz, trip, &temperature);
499
500 return ret ? ret : sprintf(buf, "%ld\n", temperature);
501}
502
503static ssize_t
Matthew Garrett03a971a2008-12-03 18:00:38 +0000504passive_store(struct device *dev, struct device_attribute *attr,
505 const char *buf, size_t count)
506{
507 struct thermal_zone_device *tz = to_thermal_zone(dev);
508 struct thermal_cooling_device *cdev = NULL;
509 int state;
510
511 if (!sscanf(buf, "%d\n", &state))
512 return -EINVAL;
513
Frans Pop3d8e3ad2009-10-26 08:39:02 +0100514 /* sanity check: values below 1000 millicelcius don't make sense
515 * and can cause the system to go into a thermal heart attack
516 */
517 if (state && state < 1000)
518 return -EINVAL;
519
Matthew Garrett03a971a2008-12-03 18:00:38 +0000520 if (state && !tz->forced_passive) {
521 mutex_lock(&thermal_list_lock);
522 list_for_each_entry(cdev, &thermal_cdev_list, node) {
523 if (!strncmp("Processor", cdev->type,
524 sizeof("Processor")))
525 thermal_zone_bind_cooling_device(tz,
Zhang Rui9d998422012-06-26 16:35:57 +0800526 THERMAL_TRIPS_NONE, cdev,
527 THERMAL_NO_LIMIT,
528 THERMAL_NO_LIMIT);
Matthew Garrett03a971a2008-12-03 18:00:38 +0000529 }
530 mutex_unlock(&thermal_list_lock);
Frans Pope4143b02009-10-26 08:39:03 +0100531 if (!tz->passive_delay)
532 tz->passive_delay = 1000;
Matthew Garrett03a971a2008-12-03 18:00:38 +0000533 } else if (!state && tz->forced_passive) {
534 mutex_lock(&thermal_list_lock);
535 list_for_each_entry(cdev, &thermal_cdev_list, node) {
536 if (!strncmp("Processor", cdev->type,
537 sizeof("Processor")))
538 thermal_zone_unbind_cooling_device(tz,
539 THERMAL_TRIPS_NONE,
540 cdev);
541 }
542 mutex_unlock(&thermal_list_lock);
Frans Pope4143b02009-10-26 08:39:03 +0100543 tz->passive_delay = 0;
Matthew Garrett03a971a2008-12-03 18:00:38 +0000544 }
545
Matthew Garrett03a971a2008-12-03 18:00:38 +0000546 tz->forced_passive = state;
547
548 thermal_zone_device_update(tz);
549
550 return count;
551}
552
553static ssize_t
554passive_show(struct device *dev, struct device_attribute *attr,
555 char *buf)
556{
557 struct thermal_zone_device *tz = to_thermal_zone(dev);
558
559 return sprintf(buf, "%d\n", tz->forced_passive);
560}
561
Durgadoss R5a2c0902012-09-18 11:04:58 +0530562static ssize_t
563policy_store(struct device *dev, struct device_attribute *attr,
564 const char *buf, size_t count)
565{
566 int ret = -EINVAL;
567 struct thermal_zone_device *tz = to_thermal_zone(dev);
568 struct thermal_governor *gov;
569
570 mutex_lock(&thermal_governor_lock);
571
572 gov = __find_governor(buf);
573 if (!gov)
574 goto exit;
575
576 tz->governor = gov;
577 ret = count;
578
579exit:
580 mutex_unlock(&thermal_governor_lock);
581 return ret;
582}
583
584static ssize_t
585policy_show(struct device *dev, struct device_attribute *devattr, char *buf)
586{
587 struct thermal_zone_device *tz = to_thermal_zone(dev);
588
589 return sprintf(buf, "%s\n", tz->governor->name);
590}
591
Zhang Rui203d3d42008-01-17 15:51:08 +0800592static DEVICE_ATTR(type, 0444, type_show, NULL);
593static DEVICE_ATTR(temp, 0444, temp_show, NULL);
594static DEVICE_ATTR(mode, 0644, mode_show, mode_store);
Joe Perches886ee542012-03-21 12:55:01 -0700595static DEVICE_ATTR(passive, S_IRUGO | S_IWUSR, passive_show, passive_store);
Durgadoss R5a2c0902012-09-18 11:04:58 +0530596static DEVICE_ATTR(policy, S_IRUGO | S_IWUSR, policy_show, policy_store);
Zhang Rui203d3d42008-01-17 15:51:08 +0800597
Zhang Rui203d3d42008-01-17 15:51:08 +0800598/* sys I/F for cooling device */
599#define to_cooling_device(_dev) \
600 container_of(_dev, struct thermal_cooling_device, device)
601
602static ssize_t
603thermal_cooling_device_type_show(struct device *dev,
604 struct device_attribute *attr, char *buf)
605{
606 struct thermal_cooling_device *cdev = to_cooling_device(dev);
607
608 return sprintf(buf, "%s\n", cdev->type);
609}
610
611static ssize_t
612thermal_cooling_device_max_state_show(struct device *dev,
613 struct device_attribute *attr, char *buf)
614{
615 struct thermal_cooling_device *cdev = to_cooling_device(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000616 unsigned long state;
617 int ret;
Zhang Rui203d3d42008-01-17 15:51:08 +0800618
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000619 ret = cdev->ops->get_max_state(cdev, &state);
620 if (ret)
621 return ret;
622 return sprintf(buf, "%ld\n", state);
Zhang Rui203d3d42008-01-17 15:51:08 +0800623}
624
625static ssize_t
626thermal_cooling_device_cur_state_show(struct device *dev,
627 struct device_attribute *attr, char *buf)
628{
629 struct thermal_cooling_device *cdev = to_cooling_device(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000630 unsigned long state;
631 int ret;
Zhang Rui203d3d42008-01-17 15:51:08 +0800632
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000633 ret = cdev->ops->get_cur_state(cdev, &state);
634 if (ret)
635 return ret;
636 return sprintf(buf, "%ld\n", state);
Zhang Rui203d3d42008-01-17 15:51:08 +0800637}
638
639static ssize_t
640thermal_cooling_device_cur_state_store(struct device *dev,
641 struct device_attribute *attr,
642 const char *buf, size_t count)
643{
644 struct thermal_cooling_device *cdev = to_cooling_device(dev);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000645 unsigned long state;
Zhang Rui203d3d42008-01-17 15:51:08 +0800646 int result;
647
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000648 if (!sscanf(buf, "%ld\n", &state))
Zhang Rui203d3d42008-01-17 15:51:08 +0800649 return -EINVAL;
650
Roel Kluinedb94912009-12-15 22:46:50 +0100651 if ((long)state < 0)
Zhang Rui203d3d42008-01-17 15:51:08 +0800652 return -EINVAL;
653
654 result = cdev->ops->set_cur_state(cdev, state);
655 if (result)
656 return result;
657 return count;
658}
659
660static struct device_attribute dev_attr_cdev_type =
Len Brown543a9562008-02-07 16:55:08 -0500661__ATTR(type, 0444, thermal_cooling_device_type_show, NULL);
Zhang Rui203d3d42008-01-17 15:51:08 +0800662static DEVICE_ATTR(max_state, 0444,
663 thermal_cooling_device_max_state_show, NULL);
664static DEVICE_ATTR(cur_state, 0644,
665 thermal_cooling_device_cur_state_show,
666 thermal_cooling_device_cur_state_store);
667
668static ssize_t
669thermal_cooling_device_trip_point_show(struct device *dev,
Len Brown543a9562008-02-07 16:55:08 -0500670 struct device_attribute *attr, char *buf)
Zhang Rui203d3d42008-01-17 15:51:08 +0800671{
Zhang Ruib81b6ba2012-06-27 10:08:19 +0800672 struct thermal_instance *instance;
Zhang Rui203d3d42008-01-17 15:51:08 +0800673
674 instance =
Zhang Ruib81b6ba2012-06-27 10:08:19 +0800675 container_of(attr, struct thermal_instance, attr);
Zhang Rui203d3d42008-01-17 15:51:08 +0800676
677 if (instance->trip == THERMAL_TRIPS_NONE)
678 return sprintf(buf, "-1\n");
679 else
680 return sprintf(buf, "%d\n", instance->trip);
681}
682
683/* Device management */
684
Rene Herman16d75232008-06-24 19:38:56 +0200685#if defined(CONFIG_THERMAL_HWMON)
686
Zhang Ruie68b16a2008-04-21 16:07:52 +0800687/* hwmon sys I/F */
688#include <linux/hwmon.h>
Jean Delvare31f53962011-07-28 13:48:42 -0700689
690/* thermal zone devices with the same type share one hwmon device */
691struct thermal_hwmon_device {
692 char type[THERMAL_NAME_LENGTH];
693 struct device *device;
694 int count;
695 struct list_head tz_list;
696 struct list_head node;
697};
698
699struct thermal_hwmon_attr {
700 struct device_attribute attr;
701 char name[16];
702};
703
704/* one temperature input for each thermal zone */
705struct thermal_hwmon_temp {
706 struct list_head hwmon_node;
707 struct thermal_zone_device *tz;
708 struct thermal_hwmon_attr temp_input; /* hwmon sys attr */
709 struct thermal_hwmon_attr temp_crit; /* hwmon sys attr */
710};
711
Zhang Ruie68b16a2008-04-21 16:07:52 +0800712static LIST_HEAD(thermal_hwmon_list);
713
714static ssize_t
715name_show(struct device *dev, struct device_attribute *attr, char *buf)
716{
Greg Kroah-Hartman0e968a32009-04-30 14:43:31 -0700717 struct thermal_hwmon_device *hwmon = dev_get_drvdata(dev);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800718 return sprintf(buf, "%s\n", hwmon->type);
719}
720static DEVICE_ATTR(name, 0444, name_show, NULL);
721
722static ssize_t
723temp_input_show(struct device *dev, struct device_attribute *attr, char *buf)
724{
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000725 long temperature;
726 int ret;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800727 struct thermal_hwmon_attr *hwmon_attr
728 = container_of(attr, struct thermal_hwmon_attr, attr);
Jean Delvare31f53962011-07-28 13:48:42 -0700729 struct thermal_hwmon_temp *temp
730 = container_of(hwmon_attr, struct thermal_hwmon_temp,
Zhang Ruie68b16a2008-04-21 16:07:52 +0800731 temp_input);
Jean Delvare31f53962011-07-28 13:48:42 -0700732 struct thermal_zone_device *tz = temp->tz;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800733
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000734 ret = tz->ops->get_temp(tz, &temperature);
735
736 if (ret)
737 return ret;
738
739 return sprintf(buf, "%ld\n", temperature);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800740}
741
742static ssize_t
743temp_crit_show(struct device *dev, struct device_attribute *attr,
744 char *buf)
745{
746 struct thermal_hwmon_attr *hwmon_attr
747 = container_of(attr, struct thermal_hwmon_attr, attr);
Jean Delvare31f53962011-07-28 13:48:42 -0700748 struct thermal_hwmon_temp *temp
749 = container_of(hwmon_attr, struct thermal_hwmon_temp,
Zhang Ruie68b16a2008-04-21 16:07:52 +0800750 temp_crit);
Jean Delvare31f53962011-07-28 13:48:42 -0700751 struct thermal_zone_device *tz = temp->tz;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000752 long temperature;
753 int ret;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800754
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000755 ret = tz->ops->get_trip_temp(tz, 0, &temperature);
756 if (ret)
757 return ret;
758
759 return sprintf(buf, "%ld\n", temperature);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800760}
761
762
Jean Delvare0d97d7a2011-07-28 13:48:41 -0700763static struct thermal_hwmon_device *
764thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz)
765{
766 struct thermal_hwmon_device *hwmon;
767
768 mutex_lock(&thermal_list_lock);
769 list_for_each_entry(hwmon, &thermal_hwmon_list, node)
770 if (!strcmp(hwmon->type, tz->type)) {
771 mutex_unlock(&thermal_list_lock);
772 return hwmon;
773 }
774 mutex_unlock(&thermal_list_lock);
775
776 return NULL;
777}
778
Jean Delvare31f53962011-07-28 13:48:42 -0700779/* Find the temperature input matching a given thermal zone */
780static struct thermal_hwmon_temp *
781thermal_hwmon_lookup_temp(const struct thermal_hwmon_device *hwmon,
782 const struct thermal_zone_device *tz)
783{
784 struct thermal_hwmon_temp *temp;
785
786 mutex_lock(&thermal_list_lock);
787 list_for_each_entry(temp, &hwmon->tz_list, hwmon_node)
788 if (temp->tz == tz) {
789 mutex_unlock(&thermal_list_lock);
790 return temp;
791 }
792 mutex_unlock(&thermal_list_lock);
793
794 return NULL;
795}
796
Zhang Ruie68b16a2008-04-21 16:07:52 +0800797static int
798thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
799{
800 struct thermal_hwmon_device *hwmon;
Jean Delvare31f53962011-07-28 13:48:42 -0700801 struct thermal_hwmon_temp *temp;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800802 int new_hwmon_device = 1;
803 int result;
804
Jean Delvare0d97d7a2011-07-28 13:48:41 -0700805 hwmon = thermal_hwmon_lookup_by_type(tz);
806 if (hwmon) {
807 new_hwmon_device = 0;
808 goto register_sys_interface;
809 }
Zhang Ruie68b16a2008-04-21 16:07:52 +0800810
811 hwmon = kzalloc(sizeof(struct thermal_hwmon_device), GFP_KERNEL);
812 if (!hwmon)
813 return -ENOMEM;
814
815 INIT_LIST_HEAD(&hwmon->tz_list);
816 strlcpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH);
817 hwmon->device = hwmon_device_register(NULL);
818 if (IS_ERR(hwmon->device)) {
819 result = PTR_ERR(hwmon->device);
820 goto free_mem;
821 }
Greg Kroah-Hartman0e968a32009-04-30 14:43:31 -0700822 dev_set_drvdata(hwmon->device, hwmon);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800823 result = device_create_file(hwmon->device, &dev_attr_name);
824 if (result)
Durgadoss Rb299eb52011-03-03 04:30:13 +0530825 goto free_mem;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800826
827 register_sys_interface:
Jean Delvare31f53962011-07-28 13:48:42 -0700828 temp = kzalloc(sizeof(struct thermal_hwmon_temp), GFP_KERNEL);
829 if (!temp) {
830 result = -ENOMEM;
831 goto unregister_name;
832 }
833
834 temp->tz = tz;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800835 hwmon->count++;
836
Guenter Roeck79a49162012-07-21 10:53:48 +1000837 snprintf(temp->temp_input.name, sizeof(temp->temp_input.name),
Zhang Ruie68b16a2008-04-21 16:07:52 +0800838 "temp%d_input", hwmon->count);
Jean Delvare31f53962011-07-28 13:48:42 -0700839 temp->temp_input.attr.attr.name = temp->temp_input.name;
840 temp->temp_input.attr.attr.mode = 0444;
841 temp->temp_input.attr.show = temp_input_show;
842 sysfs_attr_init(&temp->temp_input.attr.attr);
843 result = device_create_file(hwmon->device, &temp->temp_input.attr);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800844 if (result)
Jean Delvare31f53962011-07-28 13:48:42 -0700845 goto free_temp_mem;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800846
847 if (tz->ops->get_crit_temp) {
848 unsigned long temperature;
849 if (!tz->ops->get_crit_temp(tz, &temperature)) {
Guenter Roeck79a49162012-07-21 10:53:48 +1000850 snprintf(temp->temp_crit.name,
851 sizeof(temp->temp_crit.name),
Zhang Ruie68b16a2008-04-21 16:07:52 +0800852 "temp%d_crit", hwmon->count);
Jean Delvare31f53962011-07-28 13:48:42 -0700853 temp->temp_crit.attr.attr.name = temp->temp_crit.name;
854 temp->temp_crit.attr.attr.mode = 0444;
855 temp->temp_crit.attr.show = temp_crit_show;
856 sysfs_attr_init(&temp->temp_crit.attr.attr);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800857 result = device_create_file(hwmon->device,
Jean Delvare31f53962011-07-28 13:48:42 -0700858 &temp->temp_crit.attr);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800859 if (result)
Durgadoss Rb299eb52011-03-03 04:30:13 +0530860 goto unregister_input;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800861 }
862 }
863
864 mutex_lock(&thermal_list_lock);
865 if (new_hwmon_device)
866 list_add_tail(&hwmon->node, &thermal_hwmon_list);
Jean Delvare31f53962011-07-28 13:48:42 -0700867 list_add_tail(&temp->hwmon_node, &hwmon->tz_list);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800868 mutex_unlock(&thermal_list_lock);
869
870 return 0;
871
Durgadoss Rb299eb52011-03-03 04:30:13 +0530872 unregister_input:
Jean Delvare31f53962011-07-28 13:48:42 -0700873 device_remove_file(hwmon->device, &temp->temp_input.attr);
874 free_temp_mem:
875 kfree(temp);
Durgadoss Rb299eb52011-03-03 04:30:13 +0530876 unregister_name:
Zhang Ruie68b16a2008-04-21 16:07:52 +0800877 if (new_hwmon_device) {
878 device_remove_file(hwmon->device, &dev_attr_name);
879 hwmon_device_unregister(hwmon->device);
880 }
881 free_mem:
882 if (new_hwmon_device)
883 kfree(hwmon);
884
885 return result;
886}
887
888static void
889thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
890{
Jean Delvare31f53962011-07-28 13:48:42 -0700891 struct thermal_hwmon_device *hwmon;
892 struct thermal_hwmon_temp *temp;
Zhang Ruie68b16a2008-04-21 16:07:52 +0800893
Jean Delvare31f53962011-07-28 13:48:42 -0700894 hwmon = thermal_hwmon_lookup_by_type(tz);
895 if (unlikely(!hwmon)) {
896 /* Should never happen... */
897 dev_dbg(&tz->device, "hwmon device lookup failed!\n");
898 return;
899 }
900
901 temp = thermal_hwmon_lookup_temp(hwmon, tz);
902 if (unlikely(!temp)) {
903 /* Should never happen... */
904 dev_dbg(&tz->device, "temperature input lookup failed!\n");
905 return;
906 }
907
908 device_remove_file(hwmon->device, &temp->temp_input.attr);
Durgadoss Rb299eb52011-03-03 04:30:13 +0530909 if (tz->ops->get_crit_temp)
Jean Delvare31f53962011-07-28 13:48:42 -0700910 device_remove_file(hwmon->device, &temp->temp_crit.attr);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800911
912 mutex_lock(&thermal_list_lock);
Jean Delvare31f53962011-07-28 13:48:42 -0700913 list_del(&temp->hwmon_node);
914 kfree(temp);
Zhang Ruie68b16a2008-04-21 16:07:52 +0800915 if (!list_empty(&hwmon->tz_list)) {
916 mutex_unlock(&thermal_list_lock);
917 return;
918 }
919 list_del(&hwmon->node);
920 mutex_unlock(&thermal_list_lock);
921
922 device_remove_file(hwmon->device, &dev_attr_name);
923 hwmon_device_unregister(hwmon->device);
924 kfree(hwmon);
925}
926#else
927static int
928thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
929{
930 return 0;
931}
932
933static void
934thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
935{
936}
937#endif
938
Matthew Garrettb1569e92008-12-03 17:55:32 +0000939static void thermal_zone_device_set_polling(struct thermal_zone_device *tz,
940 int delay)
941{
Matthew Garrettb1569e92008-12-03 17:55:32 +0000942 if (delay > 1000)
Tejun Heo41f63c52012-08-03 10:30:47 -0700943 mod_delayed_work(system_freezable_wq, &tz->poll_queue,
944 round_jiffies(msecs_to_jiffies(delay)));
945 else if (delay)
946 mod_delayed_work(system_freezable_wq, &tz->poll_queue,
947 msecs_to_jiffies(delay));
Matthew Garrettb1569e92008-12-03 17:55:32 +0000948 else
Tejun Heo41f63c52012-08-03 10:30:47 -0700949 cancel_delayed_work(&tz->poll_queue);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000950}
951
Matthew Garrettb1569e92008-12-03 17:55:32 +0000952static void thermal_zone_device_check(struct work_struct *work)
953{
954 struct thermal_zone_device *tz = container_of(work, struct
955 thermal_zone_device,
956 poll_queue.work);
957 thermal_zone_device_update(tz);
958}
Zhang Ruie68b16a2008-04-21 16:07:52 +0800959
Zhang Rui203d3d42008-01-17 15:51:08 +0800960/**
961 * thermal_zone_bind_cooling_device - bind a cooling device to a thermal zone
Zhang Rui203d3d42008-01-17 15:51:08 +0800962 * @tz: thermal zone device
963 * @trip: indicates which trip point the cooling devices is
964 * associated with in this thermal zone.
965 * @cdev: thermal cooling device
Len Brown543a9562008-02-07 16:55:08 -0500966 *
967 * This function is usually called in the thermal zone device .bind callback.
Zhang Rui203d3d42008-01-17 15:51:08 +0800968 */
969int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
970 int trip,
Zhang Rui9d998422012-06-26 16:35:57 +0800971 struct thermal_cooling_device *cdev,
972 unsigned long upper, unsigned long lower)
Zhang Rui203d3d42008-01-17 15:51:08 +0800973{
Zhang Ruib81b6ba2012-06-27 10:08:19 +0800974 struct thermal_instance *dev;
975 struct thermal_instance *pos;
Thomas Sujithc7516702008-02-15 00:58:50 -0500976 struct thermal_zone_device *pos1;
977 struct thermal_cooling_device *pos2;
Zhang Rui74051ba2012-06-26 16:27:22 +0800978 unsigned long max_state;
Zhang Rui203d3d42008-01-17 15:51:08 +0800979 int result;
980
Len Brown543a9562008-02-07 16:55:08 -0500981 if (trip >= tz->trips || (trip < 0 && trip != THERMAL_TRIPS_NONE))
Zhang Rui203d3d42008-01-17 15:51:08 +0800982 return -EINVAL;
983
Thomas Sujithc7516702008-02-15 00:58:50 -0500984 list_for_each_entry(pos1, &thermal_tz_list, node) {
985 if (pos1 == tz)
986 break;
987 }
988 list_for_each_entry(pos2, &thermal_cdev_list, node) {
989 if (pos2 == cdev)
990 break;
991 }
992
993 if (tz != pos1 || cdev != pos2)
Zhang Rui203d3d42008-01-17 15:51:08 +0800994 return -EINVAL;
995
Zhang Rui9d998422012-06-26 16:35:57 +0800996 cdev->ops->get_max_state(cdev, &max_state);
997
998 /* lower default 0, upper default max_state */
999 lower = lower == THERMAL_NO_LIMIT ? 0 : lower;
1000 upper = upper == THERMAL_NO_LIMIT ? max_state : upper;
1001
1002 if (lower > upper || upper > max_state)
1003 return -EINVAL;
1004
Zhang Rui203d3d42008-01-17 15:51:08 +08001005 dev =
Zhang Ruib81b6ba2012-06-27 10:08:19 +08001006 kzalloc(sizeof(struct thermal_instance), GFP_KERNEL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001007 if (!dev)
1008 return -ENOMEM;
1009 dev->tz = tz;
1010 dev->cdev = cdev;
1011 dev->trip = trip;
Zhang Rui9d998422012-06-26 16:35:57 +08001012 dev->upper = upper;
1013 dev->lower = lower;
Zhang Ruice119f82012-06-27 14:13:04 +08001014 dev->target = THERMAL_NO_TARGET;
Zhang Rui74051ba2012-06-26 16:27:22 +08001015
Zhang Rui203d3d42008-01-17 15:51:08 +08001016 result = get_idr(&tz->idr, &tz->lock, &dev->id);
1017 if (result)
1018 goto free_mem;
1019
1020 sprintf(dev->name, "cdev%d", dev->id);
1021 result =
1022 sysfs_create_link(&tz->device.kobj, &cdev->device.kobj, dev->name);
1023 if (result)
1024 goto release_idr;
1025
1026 sprintf(dev->attr_name, "cdev%d_trip_point", dev->id);
Sergey Senozhatsky975f8c52010-04-06 14:34:51 -07001027 sysfs_attr_init(&dev->attr.attr);
Zhang Rui203d3d42008-01-17 15:51:08 +08001028 dev->attr.attr.name = dev->attr_name;
1029 dev->attr.attr.mode = 0444;
1030 dev->attr.show = thermal_cooling_device_trip_point_show;
1031 result = device_create_file(&tz->device, &dev->attr);
1032 if (result)
1033 goto remove_symbol_link;
1034
1035 mutex_lock(&tz->lock);
Zhang Ruif4a821c2012-07-24 16:56:21 +08001036 mutex_lock(&cdev->lock);
Zhang Ruicddf31b2012-06-27 10:09:36 +08001037 list_for_each_entry(pos, &tz->thermal_instances, tz_node)
Zhang Rui203d3d42008-01-17 15:51:08 +08001038 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) {
1039 result = -EEXIST;
1040 break;
1041 }
Zhang Ruib5e4ae62012-06-27 14:11:52 +08001042 if (!result) {
Zhang Ruicddf31b2012-06-27 10:09:36 +08001043 list_add_tail(&dev->tz_node, &tz->thermal_instances);
Zhang Ruib5e4ae62012-06-27 14:11:52 +08001044 list_add_tail(&dev->cdev_node, &cdev->thermal_instances);
1045 }
Zhang Ruif4a821c2012-07-24 16:56:21 +08001046 mutex_unlock(&cdev->lock);
Zhang Rui203d3d42008-01-17 15:51:08 +08001047 mutex_unlock(&tz->lock);
1048
1049 if (!result)
1050 return 0;
1051
1052 device_remove_file(&tz->device, &dev->attr);
Joe Perchescaca8b82012-03-21 12:55:02 -07001053remove_symbol_link:
Zhang Rui203d3d42008-01-17 15:51:08 +08001054 sysfs_remove_link(&tz->device.kobj, dev->name);
Joe Perchescaca8b82012-03-21 12:55:02 -07001055release_idr:
Zhang Rui203d3d42008-01-17 15:51:08 +08001056 release_idr(&tz->idr, &tz->lock, dev->id);
Joe Perchescaca8b82012-03-21 12:55:02 -07001057free_mem:
Zhang Rui203d3d42008-01-17 15:51:08 +08001058 kfree(dev);
1059 return result;
1060}
1061EXPORT_SYMBOL(thermal_zone_bind_cooling_device);
1062
1063/**
1064 * thermal_zone_unbind_cooling_device - unbind a cooling device from a thermal zone
Zhang Rui203d3d42008-01-17 15:51:08 +08001065 * @tz: thermal zone device
1066 * @trip: indicates which trip point the cooling devices is
1067 * associated with in this thermal zone.
1068 * @cdev: thermal cooling device
Len Brown543a9562008-02-07 16:55:08 -05001069 *
1070 * This function is usually called in the thermal zone device .unbind callback.
Zhang Rui203d3d42008-01-17 15:51:08 +08001071 */
1072int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
1073 int trip,
1074 struct thermal_cooling_device *cdev)
1075{
Zhang Ruib81b6ba2012-06-27 10:08:19 +08001076 struct thermal_instance *pos, *next;
Zhang Rui203d3d42008-01-17 15:51:08 +08001077
1078 mutex_lock(&tz->lock);
Zhang Ruif4a821c2012-07-24 16:56:21 +08001079 mutex_lock(&cdev->lock);
Zhang Ruicddf31b2012-06-27 10:09:36 +08001080 list_for_each_entry_safe(pos, next, &tz->thermal_instances, tz_node) {
Len Brown543a9562008-02-07 16:55:08 -05001081 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) {
Zhang Ruicddf31b2012-06-27 10:09:36 +08001082 list_del(&pos->tz_node);
Zhang Ruib5e4ae62012-06-27 14:11:52 +08001083 list_del(&pos->cdev_node);
Zhang Ruif4a821c2012-07-24 16:56:21 +08001084 mutex_unlock(&cdev->lock);
Zhang Rui203d3d42008-01-17 15:51:08 +08001085 mutex_unlock(&tz->lock);
1086 goto unbind;
1087 }
1088 }
Zhang Ruif4a821c2012-07-24 16:56:21 +08001089 mutex_unlock(&cdev->lock);
Zhang Rui203d3d42008-01-17 15:51:08 +08001090 mutex_unlock(&tz->lock);
1091
1092 return -ENODEV;
1093
Joe Perchescaca8b82012-03-21 12:55:02 -07001094unbind:
Zhang Rui203d3d42008-01-17 15:51:08 +08001095 device_remove_file(&tz->device, &pos->attr);
1096 sysfs_remove_link(&tz->device.kobj, pos->name);
1097 release_idr(&tz->idr, &tz->lock, pos->id);
1098 kfree(pos);
1099 return 0;
1100}
1101EXPORT_SYMBOL(thermal_zone_unbind_cooling_device);
1102
1103static void thermal_release(struct device *dev)
1104{
1105 struct thermal_zone_device *tz;
1106 struct thermal_cooling_device *cdev;
1107
Joe Perchescaca8b82012-03-21 12:55:02 -07001108 if (!strncmp(dev_name(dev), "thermal_zone",
1109 sizeof("thermal_zone") - 1)) {
Zhang Rui203d3d42008-01-17 15:51:08 +08001110 tz = to_thermal_zone(dev);
1111 kfree(tz);
1112 } else {
1113 cdev = to_cooling_device(dev);
1114 kfree(cdev);
1115 }
1116}
1117
1118static struct class thermal_class = {
1119 .name = "thermal",
1120 .dev_release = thermal_release,
1121};
1122
1123/**
1124 * thermal_cooling_device_register - register a new thermal cooling device
1125 * @type: the thermal cooling device type.
1126 * @devdata: device private data.
1127 * @ops: standard thermal cooling devices callbacks.
1128 */
Joe Perchescaca8b82012-03-21 12:55:02 -07001129struct thermal_cooling_device *
1130thermal_cooling_device_register(char *type, void *devdata,
1131 const struct thermal_cooling_device_ops *ops)
Zhang Rui203d3d42008-01-17 15:51:08 +08001132{
1133 struct thermal_cooling_device *cdev;
Zhang Rui203d3d42008-01-17 15:51:08 +08001134 int result;
1135
Guenter Roeck204dd1d2012-08-07 22:36:45 -07001136 if (type && strlen(type) >= THERMAL_NAME_LENGTH)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001137 return ERR_PTR(-EINVAL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001138
1139 if (!ops || !ops->get_max_state || !ops->get_cur_state ||
Len Brown543a9562008-02-07 16:55:08 -05001140 !ops->set_cur_state)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001141 return ERR_PTR(-EINVAL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001142
1143 cdev = kzalloc(sizeof(struct thermal_cooling_device), GFP_KERNEL);
1144 if (!cdev)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001145 return ERR_PTR(-ENOMEM);
Zhang Rui203d3d42008-01-17 15:51:08 +08001146
1147 result = get_idr(&thermal_cdev_idr, &thermal_idr_lock, &cdev->id);
1148 if (result) {
1149 kfree(cdev);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001150 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001151 }
1152
Guenter Roeck204dd1d2012-08-07 22:36:45 -07001153 strcpy(cdev->type, type ? : "");
Zhang Ruif4a821c2012-07-24 16:56:21 +08001154 mutex_init(&cdev->lock);
Zhang Ruib5e4ae62012-06-27 14:11:52 +08001155 INIT_LIST_HEAD(&cdev->thermal_instances);
Zhang Rui203d3d42008-01-17 15:51:08 +08001156 cdev->ops = ops;
Zhang Ruice119f82012-06-27 14:13:04 +08001157 cdev->updated = true;
Zhang Rui203d3d42008-01-17 15:51:08 +08001158 cdev->device.class = &thermal_class;
1159 cdev->devdata = devdata;
Kay Sievers354655e2009-01-06 10:44:37 -08001160 dev_set_name(&cdev->device, "cooling_device%d", cdev->id);
Zhang Rui203d3d42008-01-17 15:51:08 +08001161 result = device_register(&cdev->device);
1162 if (result) {
1163 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1164 kfree(cdev);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001165 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001166 }
1167
1168 /* sys I/F */
1169 if (type) {
Len Brown543a9562008-02-07 16:55:08 -05001170 result = device_create_file(&cdev->device, &dev_attr_cdev_type);
Zhang Rui203d3d42008-01-17 15:51:08 +08001171 if (result)
1172 goto unregister;
1173 }
1174
1175 result = device_create_file(&cdev->device, &dev_attr_max_state);
1176 if (result)
1177 goto unregister;
1178
1179 result = device_create_file(&cdev->device, &dev_attr_cur_state);
1180 if (result)
1181 goto unregister;
1182
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301183 /* Add 'this' new cdev to the global cdev list */
Zhang Rui203d3d42008-01-17 15:51:08 +08001184 mutex_lock(&thermal_list_lock);
1185 list_add(&cdev->node, &thermal_cdev_list);
Zhang Rui203d3d42008-01-17 15:51:08 +08001186 mutex_unlock(&thermal_list_lock);
1187
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301188 /* Update binding information for 'this' new cdev */
1189 bind_cdev(cdev);
1190
1191 return cdev;
Zhang Rui203d3d42008-01-17 15:51:08 +08001192
Joe Perchescaca8b82012-03-21 12:55:02 -07001193unregister:
Zhang Rui203d3d42008-01-17 15:51:08 +08001194 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1195 device_unregister(&cdev->device);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001196 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001197}
1198EXPORT_SYMBOL(thermal_cooling_device_register);
1199
1200/**
1201 * thermal_cooling_device_unregister - removes the registered thermal cooling device
Zhang Rui203d3d42008-01-17 15:51:08 +08001202 * @cdev: the thermal cooling device to remove.
1203 *
1204 * thermal_cooling_device_unregister() must be called when the device is no
1205 * longer needed.
1206 */
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301207void thermal_cooling_device_unregister(struct thermal_cooling_device *cdev)
Zhang Rui203d3d42008-01-17 15:51:08 +08001208{
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301209 int i;
1210 const struct thermal_zone_params *tzp;
Zhang Rui203d3d42008-01-17 15:51:08 +08001211 struct thermal_zone_device *tz;
1212 struct thermal_cooling_device *pos = NULL;
1213
1214 if (!cdev)
1215 return;
1216
1217 mutex_lock(&thermal_list_lock);
1218 list_for_each_entry(pos, &thermal_cdev_list, node)
1219 if (pos == cdev)
1220 break;
1221 if (pos != cdev) {
1222 /* thermal cooling device not found */
1223 mutex_unlock(&thermal_list_lock);
1224 return;
1225 }
1226 list_del(&cdev->node);
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301227
1228 /* Unbind all thermal zones associated with 'this' cdev */
Zhang Rui203d3d42008-01-17 15:51:08 +08001229 list_for_each_entry(tz, &thermal_tz_list, node) {
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301230 if (tz->ops->unbind) {
1231 tz->ops->unbind(tz, cdev);
Zhang Rui203d3d42008-01-17 15:51:08 +08001232 continue;
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301233 }
1234
1235 if (!tz->tzp || !tz->tzp->tbp)
1236 continue;
1237
1238 tzp = tz->tzp;
1239 for (i = 0; i < tzp->num_tbps; i++) {
1240 if (tzp->tbp[i].cdev == cdev) {
1241 __unbind(tz, tzp->tbp[i].trip_mask, cdev);
1242 tzp->tbp[i].cdev = NULL;
1243 }
1244 }
Zhang Rui203d3d42008-01-17 15:51:08 +08001245 }
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301246
Zhang Rui203d3d42008-01-17 15:51:08 +08001247 mutex_unlock(&thermal_list_lock);
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301248
Zhang Rui203d3d42008-01-17 15:51:08 +08001249 if (cdev->type[0])
Len Brown543a9562008-02-07 16:55:08 -05001250 device_remove_file(&cdev->device, &dev_attr_cdev_type);
Zhang Rui203d3d42008-01-17 15:51:08 +08001251 device_remove_file(&cdev->device, &dev_attr_max_state);
1252 device_remove_file(&cdev->device, &dev_attr_cur_state);
1253
1254 release_idr(&thermal_cdev_idr, &thermal_idr_lock, cdev->id);
1255 device_unregister(&cdev->device);
1256 return;
1257}
1258EXPORT_SYMBOL(thermal_cooling_device_unregister);
1259
Durgadoss Rdc765482012-09-18 11:05:00 +05301260void thermal_cdev_update(struct thermal_cooling_device *cdev)
Zhang Ruice119f82012-06-27 14:13:04 +08001261{
1262 struct thermal_instance *instance;
1263 unsigned long target = 0;
1264
1265 /* cooling device is updated*/
1266 if (cdev->updated)
1267 return;
1268
Zhang Ruif4a821c2012-07-24 16:56:21 +08001269 mutex_lock(&cdev->lock);
Zhang Ruice119f82012-06-27 14:13:04 +08001270 /* Make sure cdev enters the deepest cooling state */
1271 list_for_each_entry(instance, &cdev->thermal_instances, cdev_node) {
1272 if (instance->target == THERMAL_NO_TARGET)
1273 continue;
1274 if (instance->target > target)
1275 target = instance->target;
1276 }
Zhang Ruif4a821c2012-07-24 16:56:21 +08001277 mutex_unlock(&cdev->lock);
Zhang Ruice119f82012-06-27 14:13:04 +08001278 cdev->ops->set_cur_state(cdev, target);
1279 cdev->updated = true;
1280}
Durgadoss Rdc765482012-09-18 11:05:00 +05301281EXPORT_SYMBOL(thermal_cdev_update);
Zhang Ruice119f82012-06-27 14:13:04 +08001282
1283static void thermal_zone_do_update(struct thermal_zone_device *tz)
1284{
1285 struct thermal_instance *instance;
1286
1287 list_for_each_entry(instance, &tz->thermal_instances, tz_node)
Durgadoss Rdc765482012-09-18 11:05:00 +05301288 thermal_cdev_update(instance->cdev);
Zhang Ruice119f82012-06-27 14:13:04 +08001289}
1290
Zhang Rui4ae46be2012-06-27 10:05:39 +08001291/*
Zhang Rui908b9fb2012-06-27 14:14:05 +08001292 * Cooling algorithm for both active and passive cooling
Zhang Rui4ae46be2012-06-27 10:05:39 +08001293 *
1294 * 1. if the temperature is higher than a trip point,
1295 * a. if the trend is THERMAL_TREND_RAISING, use higher cooling
1296 * state for this trip point
1297 * b. if the trend is THERMAL_TREND_DROPPING, use lower cooling
1298 * state for this trip point
1299 *
1300 * 2. if the temperature is lower than a trip point, use lower
1301 * cooling state for this trip point
1302 *
1303 * Note that this behaves the same as the previous passive cooling
1304 * algorithm.
1305 */
1306
1307static void thermal_zone_trip_update(struct thermal_zone_device *tz,
1308 int trip, long temp)
1309{
Zhang Ruib81b6ba2012-06-27 10:08:19 +08001310 struct thermal_instance *instance;
Zhang Rui4ae46be2012-06-27 10:05:39 +08001311 struct thermal_cooling_device *cdev = NULL;
1312 unsigned long cur_state, max_state;
1313 long trip_temp;
Zhang Rui908b9fb2012-06-27 14:14:05 +08001314 enum thermal_trip_type trip_type;
Zhang Rui4ae46be2012-06-27 10:05:39 +08001315 enum thermal_trend trend;
1316
Zhang Rui908b9fb2012-06-27 14:14:05 +08001317 if (trip == THERMAL_TRIPS_NONE) {
1318 trip_temp = tz->forced_passive;
1319 trip_type = THERMAL_TRIPS_NONE;
1320 } else {
1321 tz->ops->get_trip_temp(tz, trip, &trip_temp);
1322 tz->ops->get_trip_type(tz, trip, &trip_type);
1323 }
Zhang Rui4ae46be2012-06-27 10:05:39 +08001324
1325 if (!tz->ops->get_trend || tz->ops->get_trend(tz, trip, &trend)) {
1326 /*
1327 * compare the current temperature and previous temperature
1328 * to get the thermal trend, if no special requirement
1329 */
1330 if (tz->temperature > tz->last_temperature)
1331 trend = THERMAL_TREND_RAISING;
1332 else if (tz->temperature < tz->last_temperature)
1333 trend = THERMAL_TREND_DROPPING;
1334 else
1335 trend = THERMAL_TREND_STABLE;
1336 }
1337
1338 if (temp >= trip_temp) {
Zhang Ruicddf31b2012-06-27 10:09:36 +08001339 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
Zhang Rui4ae46be2012-06-27 10:05:39 +08001340 if (instance->trip != trip)
1341 continue;
1342
1343 cdev = instance->cdev;
1344
1345 cdev->ops->get_cur_state(cdev, &cur_state);
1346 cdev->ops->get_max_state(cdev, &max_state);
1347
1348 if (trend == THERMAL_TREND_RAISING) {
1349 cur_state = cur_state < instance->upper ?
1350 (cur_state + 1) : instance->upper;
1351 } else if (trend == THERMAL_TREND_DROPPING) {
1352 cur_state = cur_state > instance->lower ?
1353 (cur_state - 1) : instance->lower;
1354 }
Zhang Rui908b9fb2012-06-27 14:14:05 +08001355
1356 /* activate a passive thermal instance */
1357 if ((trip_type == THERMAL_TRIP_PASSIVE ||
1358 trip_type == THERMAL_TRIPS_NONE) &&
1359 instance->target == THERMAL_NO_TARGET)
1360 tz->passive++;
1361
Zhang Ruice119f82012-06-27 14:13:04 +08001362 instance->target = cur_state;
1363 cdev->updated = false; /* cooling device needs update */
Zhang Rui4ae46be2012-06-27 10:05:39 +08001364 }
1365 } else { /* below trip */
Zhang Ruicddf31b2012-06-27 10:09:36 +08001366 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
Zhang Rui4ae46be2012-06-27 10:05:39 +08001367 if (instance->trip != trip)
1368 continue;
1369
Zhang Ruice119f82012-06-27 14:13:04 +08001370 /* Do not use the inactive thermal instance */
1371 if (instance->target == THERMAL_NO_TARGET)
1372 continue;
Zhang Rui4ae46be2012-06-27 10:05:39 +08001373 cdev = instance->cdev;
1374 cdev->ops->get_cur_state(cdev, &cur_state);
1375
1376 cur_state = cur_state > instance->lower ?
Zhang Ruice119f82012-06-27 14:13:04 +08001377 (cur_state - 1) : THERMAL_NO_TARGET;
Zhang Rui908b9fb2012-06-27 14:14:05 +08001378
1379 /* deactivate a passive thermal instance */
1380 if ((trip_type == THERMAL_TRIP_PASSIVE ||
1381 trip_type == THERMAL_TRIPS_NONE) &&
1382 cur_state == THERMAL_NO_TARGET)
1383 tz->passive--;
Zhang Ruice119f82012-06-27 14:13:04 +08001384 instance->target = cur_state;
1385 cdev->updated = false; /* cooling device needs update */
Zhang Rui4ae46be2012-06-27 10:05:39 +08001386 }
1387 }
1388
1389 return;
1390}
Zhang Rui203d3d42008-01-17 15:51:08 +08001391/**
Matthew Garrettb1569e92008-12-03 17:55:32 +00001392 * thermal_zone_device_update - force an update of a thermal zone's state
1393 * @ttz: the thermal zone to update
1394 */
1395
1396void thermal_zone_device_update(struct thermal_zone_device *tz)
1397{
1398 int count, ret = 0;
1399 long temp, trip_temp;
1400 enum thermal_trip_type trip_type;
Matthew Garrettb1569e92008-12-03 17:55:32 +00001401
1402 mutex_lock(&tz->lock);
1403
Michael Brunner0d288162009-08-26 14:29:25 -07001404 if (tz->ops->get_temp(tz, &temp)) {
1405 /* get_temp failed - retry it later */
Joe Perchesc5a01dd2012-03-21 12:55:02 -07001406 pr_warn("failed to read out thermal zone %d\n", tz->id);
Michael Brunner0d288162009-08-26 14:29:25 -07001407 goto leave;
1408 }
Matthew Garrettb1569e92008-12-03 17:55:32 +00001409
Zhang Rui601f3d42012-06-27 09:54:33 +08001410 tz->last_temperature = tz->temperature;
1411 tz->temperature = temp;
1412
Matthew Garrettb1569e92008-12-03 17:55:32 +00001413 for (count = 0; count < tz->trips; count++) {
1414 tz->ops->get_trip_type(tz, count, &trip_type);
1415 tz->ops->get_trip_temp(tz, count, &trip_temp);
1416
1417 switch (trip_type) {
1418 case THERMAL_TRIP_CRITICAL:
Vladimir Zajac29321352009-05-06 19:34:21 +02001419 if (temp >= trip_temp) {
Matthew Garrettb1569e92008-12-03 17:55:32 +00001420 if (tz->ops->notify)
1421 ret = tz->ops->notify(tz, count,
1422 trip_type);
1423 if (!ret) {
Joe Perchesc5a01dd2012-03-21 12:55:02 -07001424 pr_emerg("Critical temperature reached (%ld C), shutting down\n",
1425 temp/1000);
Matthew Garrettb1569e92008-12-03 17:55:32 +00001426 orderly_poweroff(true);
1427 }
1428 }
1429 break;
1430 case THERMAL_TRIP_HOT:
Vladimir Zajac29321352009-05-06 19:34:21 +02001431 if (temp >= trip_temp)
Matthew Garrettb1569e92008-12-03 17:55:32 +00001432 if (tz->ops->notify)
1433 tz->ops->notify(tz, count, trip_type);
1434 break;
1435 case THERMAL_TRIP_ACTIVE:
Zhang Rui4ae46be2012-06-27 10:05:39 +08001436 thermal_zone_trip_update(tz, count, temp);
Matthew Garrettb1569e92008-12-03 17:55:32 +00001437 break;
1438 case THERMAL_TRIP_PASSIVE:
Vladimir Zajac29321352009-05-06 19:34:21 +02001439 if (temp >= trip_temp || tz->passive)
Zhang Rui908b9fb2012-06-27 14:14:05 +08001440 thermal_zone_trip_update(tz, count, temp);
Matthew Garrettb1569e92008-12-03 17:55:32 +00001441 break;
1442 }
1443 }
Matthew Garrett03a971a2008-12-03 18:00:38 +00001444
1445 if (tz->forced_passive)
Zhang Rui908b9fb2012-06-27 14:14:05 +08001446 thermal_zone_trip_update(tz, THERMAL_TRIPS_NONE, temp);
1447 thermal_zone_do_update(tz);
Michael Brunner0d288162009-08-26 14:29:25 -07001448
Joe Perchescaca8b82012-03-21 12:55:02 -07001449leave:
Matthew Garrettb1569e92008-12-03 17:55:32 +00001450 if (tz->passive)
1451 thermal_zone_device_set_polling(tz, tz->passive_delay);
1452 else if (tz->polling_delay)
1453 thermal_zone_device_set_polling(tz, tz->polling_delay);
Frans Pop3767cb52009-10-26 08:39:04 +01001454 else
1455 thermal_zone_device_set_polling(tz, 0);
Matthew Garrettb1569e92008-12-03 17:55:32 +00001456 mutex_unlock(&tz->lock);
1457}
1458EXPORT_SYMBOL(thermal_zone_device_update);
1459
1460/**
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001461 * create_trip_attrs - create attributes for trip points
1462 * @tz: the thermal zone device
1463 * @mask: Writeable trip point bitmap.
1464 */
1465static int create_trip_attrs(struct thermal_zone_device *tz, int mask)
1466{
1467 int indx;
Durgadoss R27365a62012-07-25 10:10:59 +08001468 int size = sizeof(struct thermal_attr) * tz->trips;
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001469
Durgadoss R27365a62012-07-25 10:10:59 +08001470 tz->trip_type_attrs = kzalloc(size, GFP_KERNEL);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001471 if (!tz->trip_type_attrs)
1472 return -ENOMEM;
1473
Durgadoss R27365a62012-07-25 10:10:59 +08001474 tz->trip_temp_attrs = kzalloc(size, GFP_KERNEL);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001475 if (!tz->trip_temp_attrs) {
1476 kfree(tz->trip_type_attrs);
1477 return -ENOMEM;
1478 }
1479
Durgadoss R27365a62012-07-25 10:10:59 +08001480 if (tz->ops->get_trip_hyst) {
1481 tz->trip_hyst_attrs = kzalloc(size, GFP_KERNEL);
1482 if (!tz->trip_hyst_attrs) {
1483 kfree(tz->trip_type_attrs);
1484 kfree(tz->trip_temp_attrs);
1485 return -ENOMEM;
1486 }
1487 }
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001488
Durgadoss R27365a62012-07-25 10:10:59 +08001489
1490 for (indx = 0; indx < tz->trips; indx++) {
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001491 /* create trip type attribute */
1492 snprintf(tz->trip_type_attrs[indx].name, THERMAL_NAME_LENGTH,
1493 "trip_point_%d_type", indx);
1494
1495 sysfs_attr_init(&tz->trip_type_attrs[indx].attr.attr);
1496 tz->trip_type_attrs[indx].attr.attr.name =
1497 tz->trip_type_attrs[indx].name;
1498 tz->trip_type_attrs[indx].attr.attr.mode = S_IRUGO;
1499 tz->trip_type_attrs[indx].attr.show = trip_point_type_show;
1500
1501 device_create_file(&tz->device,
1502 &tz->trip_type_attrs[indx].attr);
1503
1504 /* create trip temp attribute */
1505 snprintf(tz->trip_temp_attrs[indx].name, THERMAL_NAME_LENGTH,
1506 "trip_point_%d_temp", indx);
1507
1508 sysfs_attr_init(&tz->trip_temp_attrs[indx].attr.attr);
1509 tz->trip_temp_attrs[indx].attr.attr.name =
1510 tz->trip_temp_attrs[indx].name;
1511 tz->trip_temp_attrs[indx].attr.attr.mode = S_IRUGO;
1512 tz->trip_temp_attrs[indx].attr.show = trip_point_temp_show;
1513 if (mask & (1 << indx)) {
1514 tz->trip_temp_attrs[indx].attr.attr.mode |= S_IWUSR;
1515 tz->trip_temp_attrs[indx].attr.store =
1516 trip_point_temp_store;
1517 }
1518
1519 device_create_file(&tz->device,
1520 &tz->trip_temp_attrs[indx].attr);
Durgadoss R27365a62012-07-25 10:10:59 +08001521
1522 /* create Optional trip hyst attribute */
1523 if (!tz->ops->get_trip_hyst)
1524 continue;
1525 snprintf(tz->trip_hyst_attrs[indx].name, THERMAL_NAME_LENGTH,
1526 "trip_point_%d_hyst", indx);
1527
1528 sysfs_attr_init(&tz->trip_hyst_attrs[indx].attr.attr);
1529 tz->trip_hyst_attrs[indx].attr.attr.name =
1530 tz->trip_hyst_attrs[indx].name;
1531 tz->trip_hyst_attrs[indx].attr.attr.mode = S_IRUGO;
1532 tz->trip_hyst_attrs[indx].attr.show = trip_point_hyst_show;
1533 if (tz->ops->set_trip_hyst) {
1534 tz->trip_hyst_attrs[indx].attr.attr.mode |= S_IWUSR;
1535 tz->trip_hyst_attrs[indx].attr.store =
1536 trip_point_hyst_store;
1537 }
1538
1539 device_create_file(&tz->device,
1540 &tz->trip_hyst_attrs[indx].attr);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001541 }
1542 return 0;
1543}
1544
1545static void remove_trip_attrs(struct thermal_zone_device *tz)
1546{
1547 int indx;
1548
1549 for (indx = 0; indx < tz->trips; indx++) {
1550 device_remove_file(&tz->device,
1551 &tz->trip_type_attrs[indx].attr);
1552 device_remove_file(&tz->device,
1553 &tz->trip_temp_attrs[indx].attr);
Durgadoss R27365a62012-07-25 10:10:59 +08001554 if (tz->ops->get_trip_hyst)
1555 device_remove_file(&tz->device,
1556 &tz->trip_hyst_attrs[indx].attr);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001557 }
1558 kfree(tz->trip_type_attrs);
1559 kfree(tz->trip_temp_attrs);
Durgadoss R27365a62012-07-25 10:10:59 +08001560 kfree(tz->trip_hyst_attrs);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001561}
1562
1563/**
Zhang Rui203d3d42008-01-17 15:51:08 +08001564 * thermal_zone_device_register - register a new thermal zone device
1565 * @type: the thermal zone device type
1566 * @trips: the number of trip points the thermal zone support
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001567 * @mask: a bit string indicating the writeablility of trip points
Zhang Rui203d3d42008-01-17 15:51:08 +08001568 * @devdata: private device data
1569 * @ops: standard thermal zone device callbacks
Durgadoss R50125a92012-09-18 11:04:56 +05301570 * @tzp: thermal zone platform parameters
Matthew Garrettb1569e92008-12-03 17:55:32 +00001571 * @passive_delay: number of milliseconds to wait between polls when
1572 * performing passive cooling
1573 * @polling_delay: number of milliseconds to wait between polls when checking
1574 * whether trip points have been crossed (0 for interrupt
1575 * driven systems)
Zhang Rui203d3d42008-01-17 15:51:08 +08001576 *
1577 * thermal_zone_device_unregister() must be called when the device is no
Zhang Rui1b7ddb82012-06-27 09:51:12 +08001578 * longer needed. The passive cooling depends on the .get_trend() return value.
Zhang Rui203d3d42008-01-17 15:51:08 +08001579 */
Anton Vorontsov4b1bf582012-07-31 04:39:30 -07001580struct thermal_zone_device *thermal_zone_device_register(const char *type,
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001581 int trips, int mask, void *devdata,
Alan Cox5b275ce2010-11-11 15:27:29 +00001582 const struct thermal_zone_device_ops *ops,
Durgadoss R50125a92012-09-18 11:04:56 +05301583 const struct thermal_zone_params *tzp,
Zhang Rui1b7ddb82012-06-27 09:51:12 +08001584 int passive_delay, int polling_delay)
Zhang Rui203d3d42008-01-17 15:51:08 +08001585{
1586 struct thermal_zone_device *tz;
Matthew Garrett03a971a2008-12-03 18:00:38 +00001587 enum thermal_trip_type trip_type;
Zhang Rui203d3d42008-01-17 15:51:08 +08001588 int result;
1589 int count;
Matthew Garrett03a971a2008-12-03 18:00:38 +00001590 int passive = 0;
Zhang Rui203d3d42008-01-17 15:51:08 +08001591
Guenter Roeck204dd1d2012-08-07 22:36:45 -07001592 if (type && strlen(type) >= THERMAL_NAME_LENGTH)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001593 return ERR_PTR(-EINVAL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001594
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001595 if (trips > THERMAL_MAX_TRIPS || trips < 0 || mask >> trips)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001596 return ERR_PTR(-EINVAL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001597
1598 if (!ops || !ops->get_temp)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001599 return ERR_PTR(-EINVAL);
Zhang Rui203d3d42008-01-17 15:51:08 +08001600
1601 tz = kzalloc(sizeof(struct thermal_zone_device), GFP_KERNEL);
1602 if (!tz)
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001603 return ERR_PTR(-ENOMEM);
Zhang Rui203d3d42008-01-17 15:51:08 +08001604
Zhang Rui2d374132012-06-27 10:09:00 +08001605 INIT_LIST_HEAD(&tz->thermal_instances);
Zhang Rui203d3d42008-01-17 15:51:08 +08001606 idr_init(&tz->idr);
1607 mutex_init(&tz->lock);
1608 result = get_idr(&thermal_tz_idr, &thermal_idr_lock, &tz->id);
1609 if (result) {
1610 kfree(tz);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001611 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001612 }
1613
Guenter Roeck204dd1d2012-08-07 22:36:45 -07001614 strcpy(tz->type, type ? : "");
Zhang Rui203d3d42008-01-17 15:51:08 +08001615 tz->ops = ops;
Durgadoss R50125a92012-09-18 11:04:56 +05301616 tz->tzp = tzp;
Zhang Rui203d3d42008-01-17 15:51:08 +08001617 tz->device.class = &thermal_class;
1618 tz->devdata = devdata;
1619 tz->trips = trips;
Matthew Garrettb1569e92008-12-03 17:55:32 +00001620 tz->passive_delay = passive_delay;
1621 tz->polling_delay = polling_delay;
1622
Kay Sievers354655e2009-01-06 10:44:37 -08001623 dev_set_name(&tz->device, "thermal_zone%d", tz->id);
Zhang Rui203d3d42008-01-17 15:51:08 +08001624 result = device_register(&tz->device);
1625 if (result) {
1626 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1627 kfree(tz);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001628 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001629 }
1630
1631 /* sys I/F */
1632 if (type) {
1633 result = device_create_file(&tz->device, &dev_attr_type);
1634 if (result)
1635 goto unregister;
1636 }
1637
1638 result = device_create_file(&tz->device, &dev_attr_temp);
1639 if (result)
1640 goto unregister;
1641
1642 if (ops->get_mode) {
1643 result = device_create_file(&tz->device, &dev_attr_mode);
1644 if (result)
1645 goto unregister;
1646 }
1647
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001648 result = create_trip_attrs(tz, mask);
1649 if (result)
1650 goto unregister;
1651
Zhang Rui203d3d42008-01-17 15:51:08 +08001652 for (count = 0; count < trips; count++) {
Matthew Garrett03a971a2008-12-03 18:00:38 +00001653 tz->ops->get_trip_type(tz, count, &trip_type);
1654 if (trip_type == THERMAL_TRIP_PASSIVE)
1655 passive = 1;
Zhang Rui203d3d42008-01-17 15:51:08 +08001656 }
1657
Durgadoss R5a2c0902012-09-18 11:04:58 +05301658 if (!passive) {
1659 result = device_create_file(&tz->device, &dev_attr_passive);
1660 if (result)
1661 goto unregister;
1662 }
Matthew Garrett03a971a2008-12-03 18:00:38 +00001663
Durgadoss R5a2c0902012-09-18 11:04:58 +05301664 /* Create policy attribute */
1665 result = device_create_file(&tz->device, &dev_attr_policy);
Matthew Garrett03a971a2008-12-03 18:00:38 +00001666 if (result)
1667 goto unregister;
1668
Durgadoss Ra4a15482012-09-18 11:04:57 +05301669 /* Update 'this' zone's governor information */
1670 mutex_lock(&thermal_governor_lock);
1671
1672 if (tz->tzp)
1673 tz->governor = __find_governor(tz->tzp->governor_name);
1674 else
1675 tz->governor = __find_governor(DEFAULT_THERMAL_GOVERNOR);
1676
1677 mutex_unlock(&thermal_governor_lock);
1678
Zhang Ruie68b16a2008-04-21 16:07:52 +08001679 result = thermal_add_hwmon_sysfs(tz);
1680 if (result)
1681 goto unregister;
1682
Zhang Rui203d3d42008-01-17 15:51:08 +08001683 mutex_lock(&thermal_list_lock);
1684 list_add_tail(&tz->node, &thermal_tz_list);
Zhang Rui203d3d42008-01-17 15:51:08 +08001685 mutex_unlock(&thermal_list_lock);
1686
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301687 /* Bind cooling devices for this zone */
1688 bind_tz(tz);
1689
Matthew Garrettb1569e92008-12-03 17:55:32 +00001690 INIT_DELAYED_WORK(&(tz->poll_queue), thermal_zone_device_check);
1691
1692 thermal_zone_device_update(tz);
1693
Zhang Rui203d3d42008-01-17 15:51:08 +08001694 if (!result)
1695 return tz;
1696
Joe Perchescaca8b82012-03-21 12:55:02 -07001697unregister:
Zhang Rui203d3d42008-01-17 15:51:08 +08001698 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1699 device_unregister(&tz->device);
Thomas Sujith3e6fda52008-02-15 00:59:50 -05001700 return ERR_PTR(result);
Zhang Rui203d3d42008-01-17 15:51:08 +08001701}
1702EXPORT_SYMBOL(thermal_zone_device_register);
1703
1704/**
1705 * thermal_device_unregister - removes the registered thermal zone device
Zhang Rui203d3d42008-01-17 15:51:08 +08001706 * @tz: the thermal zone device to remove
1707 */
1708void thermal_zone_device_unregister(struct thermal_zone_device *tz)
1709{
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301710 int i;
1711 const struct thermal_zone_params *tzp;
Zhang Rui203d3d42008-01-17 15:51:08 +08001712 struct thermal_cooling_device *cdev;
1713 struct thermal_zone_device *pos = NULL;
Zhang Rui203d3d42008-01-17 15:51:08 +08001714
1715 if (!tz)
1716 return;
1717
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301718 tzp = tz->tzp;
1719
Zhang Rui203d3d42008-01-17 15:51:08 +08001720 mutex_lock(&thermal_list_lock);
1721 list_for_each_entry(pos, &thermal_tz_list, node)
1722 if (pos == tz)
1723 break;
1724 if (pos != tz) {
1725 /* thermal zone device not found */
1726 mutex_unlock(&thermal_list_lock);
1727 return;
1728 }
1729 list_del(&tz->node);
Durgadoss R7e8ee1e2012-09-18 11:04:59 +05301730
1731 /* Unbind all cdevs associated with 'this' thermal zone */
1732 list_for_each_entry(cdev, &thermal_cdev_list, node) {
1733 if (tz->ops->unbind) {
1734 tz->ops->unbind(tz, cdev);
1735 continue;
1736 }
1737
1738 if (!tzp || !tzp->tbp)
1739 break;
1740
1741 for (i = 0; i < tzp->num_tbps; i++) {
1742 if (tzp->tbp[i].cdev == cdev) {
1743 __unbind(tz, tzp->tbp[i].trip_mask, cdev);
1744 tzp->tbp[i].cdev = NULL;
1745 }
1746 }
1747 }
1748
Zhang Rui203d3d42008-01-17 15:51:08 +08001749 mutex_unlock(&thermal_list_lock);
1750
Matthew Garrettb1569e92008-12-03 17:55:32 +00001751 thermal_zone_device_set_polling(tz, 0);
1752
Zhang Rui203d3d42008-01-17 15:51:08 +08001753 if (tz->type[0])
1754 device_remove_file(&tz->device, &dev_attr_type);
1755 device_remove_file(&tz->device, &dev_attr_temp);
1756 if (tz->ops->get_mode)
1757 device_remove_file(&tz->device, &dev_attr_mode);
Durgadoss R5a2c0902012-09-18 11:04:58 +05301758 device_remove_file(&tz->device, &dev_attr_policy);
Durgadoss Rc56f5c02012-07-25 10:10:58 +08001759 remove_trip_attrs(tz);
Durgadoss Ra4a15482012-09-18 11:04:57 +05301760 tz->governor = NULL;
Zhang Rui203d3d42008-01-17 15:51:08 +08001761
Zhang Ruie68b16a2008-04-21 16:07:52 +08001762 thermal_remove_hwmon_sysfs(tz);
Zhang Rui203d3d42008-01-17 15:51:08 +08001763 release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
1764 idr_destroy(&tz->idr);
1765 mutex_destroy(&tz->lock);
1766 device_unregister(&tz->device);
1767 return;
1768}
Zhang Rui203d3d42008-01-17 15:51:08 +08001769EXPORT_SYMBOL(thermal_zone_device_unregister);
1770
Rafael J. Wysockiaf062162011-03-01 01:12:19 +01001771#ifdef CONFIG_NET
1772static struct genl_family thermal_event_genl_family = {
1773 .id = GENL_ID_GENERATE,
1774 .name = THERMAL_GENL_FAMILY_NAME,
1775 .version = THERMAL_GENL_VERSION,
1776 .maxattr = THERMAL_GENL_ATTR_MAX,
1777};
1778
1779static struct genl_multicast_group thermal_event_mcgrp = {
1780 .name = THERMAL_GENL_MCAST_GROUP_NAME,
1781};
1782
Jean Delvare2d58d7e2011-11-04 10:31:04 +01001783int thermal_generate_netlink_event(u32 orig, enum events event)
R.Durgadoss4cb18722010-10-27 03:33:29 +05301784{
1785 struct sk_buff *skb;
1786 struct nlattr *attr;
1787 struct thermal_genl_event *thermal_event;
1788 void *msg_header;
1789 int size;
1790 int result;
Fabio Estevamb11de072012-03-21 12:55:00 -07001791 static unsigned int thermal_event_seqnum;
R.Durgadoss4cb18722010-10-27 03:33:29 +05301792
1793 /* allocate memory */
Joe Perches886ee542012-03-21 12:55:01 -07001794 size = nla_total_size(sizeof(struct thermal_genl_event)) +
1795 nla_total_size(0);
R.Durgadoss4cb18722010-10-27 03:33:29 +05301796
1797 skb = genlmsg_new(size, GFP_ATOMIC);
1798 if (!skb)
1799 return -ENOMEM;
1800
1801 /* add the genetlink message header */
1802 msg_header = genlmsg_put(skb, 0, thermal_event_seqnum++,
1803 &thermal_event_genl_family, 0,
1804 THERMAL_GENL_CMD_EVENT);
1805 if (!msg_header) {
1806 nlmsg_free(skb);
1807 return -ENOMEM;
1808 }
1809
1810 /* fill the data */
Joe Perches886ee542012-03-21 12:55:01 -07001811 attr = nla_reserve(skb, THERMAL_GENL_ATTR_EVENT,
1812 sizeof(struct thermal_genl_event));
R.Durgadoss4cb18722010-10-27 03:33:29 +05301813
1814 if (!attr) {
1815 nlmsg_free(skb);
1816 return -EINVAL;
1817 }
1818
1819 thermal_event = nla_data(attr);
1820 if (!thermal_event) {
1821 nlmsg_free(skb);
1822 return -EINVAL;
1823 }
1824
1825 memset(thermal_event, 0, sizeof(struct thermal_genl_event));
1826
1827 thermal_event->orig = orig;
1828 thermal_event->event = event;
1829
1830 /* send multicast genetlink message */
1831 result = genlmsg_end(skb, msg_header);
1832 if (result < 0) {
1833 nlmsg_free(skb);
1834 return result;
1835 }
1836
1837 result = genlmsg_multicast(skb, 0, thermal_event_mcgrp.id, GFP_ATOMIC);
1838 if (result)
Joe Perchesc5a01dd2012-03-21 12:55:02 -07001839 pr_info("failed to send netlink event:%d\n", result);
R.Durgadoss4cb18722010-10-27 03:33:29 +05301840
1841 return result;
1842}
Jean Delvare2d58d7e2011-11-04 10:31:04 +01001843EXPORT_SYMBOL(thermal_generate_netlink_event);
R.Durgadoss4cb18722010-10-27 03:33:29 +05301844
1845static int genetlink_init(void)
1846{
1847 int result;
1848
1849 result = genl_register_family(&thermal_event_genl_family);
1850 if (result)
1851 return result;
1852
1853 result = genl_register_mc_group(&thermal_event_genl_family,
1854 &thermal_event_mcgrp);
1855 if (result)
1856 genl_unregister_family(&thermal_event_genl_family);
1857 return result;
1858}
1859
Rafael J. Wysockiaf062162011-03-01 01:12:19 +01001860static void genetlink_exit(void)
1861{
1862 genl_unregister_family(&thermal_event_genl_family);
1863}
1864#else /* !CONFIG_NET */
1865static inline int genetlink_init(void) { return 0; }
1866static inline void genetlink_exit(void) {}
1867#endif /* !CONFIG_NET */
1868
Zhang Rui203d3d42008-01-17 15:51:08 +08001869static int __init thermal_init(void)
1870{
1871 int result = 0;
1872
1873 result = class_register(&thermal_class);
1874 if (result) {
1875 idr_destroy(&thermal_tz_idr);
1876 idr_destroy(&thermal_cdev_idr);
1877 mutex_destroy(&thermal_idr_lock);
1878 mutex_destroy(&thermal_list_lock);
1879 }
R.Durgadoss4cb18722010-10-27 03:33:29 +05301880 result = genetlink_init();
Zhang Rui203d3d42008-01-17 15:51:08 +08001881 return result;
1882}
1883
1884static void __exit thermal_exit(void)
1885{
1886 class_unregister(&thermal_class);
1887 idr_destroy(&thermal_tz_idr);
1888 idr_destroy(&thermal_cdev_idr);
1889 mutex_destroy(&thermal_idr_lock);
1890 mutex_destroy(&thermal_list_lock);
R.Durgadoss4cb18722010-10-27 03:33:29 +05301891 genetlink_exit();
Zhang Rui203d3d42008-01-17 15:51:08 +08001892}
1893
R.Durgadoss4cb18722010-10-27 03:33:29 +05301894fs_initcall(thermal_init);
Zhang Rui203d3d42008-01-17 15:51:08 +08001895module_exit(thermal_exit);