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