2 * acpi_thermal.c - ACPI Thermal Zone Driver ($Revision: 41 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 * This driver fully implements the ACPI thermal policy as described in the
26 * ACPI 2.0 Specification.
28 * TBD: 1. Implement passive cooling hysteresis.
29 * 2. Enhance passive cooling (CPU) states/limit interface to support
30 * concepts of 'multiple limiters', upper/lower limits, etc.
34 #include <linux/kernel.h>
35 #include <linux/module.h>
36 #include <linux/dmi.h>
37 #include <linux/init.h>
38 #include <linux/types.h>
39 #include <linux/proc_fs.h>
40 #include <linux/timer.h>
41 #include <linux/jiffies.h>
42 #include <linux/kmod.h>
43 #include <linux/seq_file.h>
44 #include <linux/reboot.h>
45 #include <asm/uaccess.h>
46 #include <linux/thermal.h>
47 #include <acpi/acpi_bus.h>
48 #include <acpi/acpi_drivers.h>
50 #define ACPI_THERMAL_CLASS "thermal_zone"
51 #define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
52 #define ACPI_THERMAL_FILE_STATE "state"
53 #define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
54 #define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
55 #define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
56 #define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
57 #define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
58 #define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
59 #define ACPI_THERMAL_NOTIFY_DEVICES 0x82
60 #define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
61 #define ACPI_THERMAL_NOTIFY_HOT 0xF1
62 #define ACPI_THERMAL_MODE_ACTIVE 0x00
64 #define ACPI_THERMAL_MAX_ACTIVE 10
65 #define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
67 #define _COMPONENT ACPI_THERMAL_COMPONENT
68 ACPI_MODULE_NAME("thermal");
70 MODULE_AUTHOR("Paul Diefenbaugh");
71 MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
72 MODULE_LICENSE("GPL");
75 module_param(act
, int, 0644);
76 MODULE_PARM_DESC(act
, "Disable or override all lowest active trip points.");
79 module_param(crt
, int, 0644);
80 MODULE_PARM_DESC(crt
, "Disable or lower all critical trip points.");
83 module_param(tzp
, int, 0444);
84 MODULE_PARM_DESC(tzp
, "Thermal zone polling frequency, in 1/10 seconds.");
87 module_param(nocrt
, int, 0);
88 MODULE_PARM_DESC(nocrt
, "Set to take no action upon ACPI thermal zone critical trips points.");
91 module_param(off
, int, 0);
92 MODULE_PARM_DESC(off
, "Set to disable ACPI thermal support.");
95 module_param(psv
, int, 0644);
96 MODULE_PARM_DESC(psv
, "Disable or override all passive trip points.");
98 static int acpi_thermal_add(struct acpi_device
*device
);
99 static int acpi_thermal_remove(struct acpi_device
*device
, int type
);
100 static int acpi_thermal_resume(struct acpi_device
*device
);
101 static int acpi_thermal_state_open_fs(struct inode
*inode
, struct file
*file
);
102 static int acpi_thermal_temp_open_fs(struct inode
*inode
, struct file
*file
);
103 static int acpi_thermal_trip_open_fs(struct inode
*inode
, struct file
*file
);
104 static int acpi_thermal_cooling_open_fs(struct inode
*inode
, struct file
*file
);
105 static ssize_t
acpi_thermal_write_cooling_mode(struct file
*,
106 const char __user
*, size_t,
108 static int acpi_thermal_polling_open_fs(struct inode
*inode
, struct file
*file
);
109 static ssize_t
acpi_thermal_write_polling(struct file
*, const char __user
*,
112 static const struct acpi_device_id thermal_device_ids
[] = {
113 {ACPI_THERMAL_HID
, 0},
116 MODULE_DEVICE_TABLE(acpi
, thermal_device_ids
);
118 static struct acpi_driver acpi_thermal_driver
= {
120 .class = ACPI_THERMAL_CLASS
,
121 .ids
= thermal_device_ids
,
123 .add
= acpi_thermal_add
,
124 .remove
= acpi_thermal_remove
,
125 .resume
= acpi_thermal_resume
,
129 struct acpi_thermal_state
{
138 struct acpi_thermal_state_flags
{
144 struct acpi_thermal_critical
{
145 struct acpi_thermal_state_flags flags
;
146 unsigned long temperature
;
149 struct acpi_thermal_hot
{
150 struct acpi_thermal_state_flags flags
;
151 unsigned long temperature
;
154 struct acpi_thermal_passive
{
155 struct acpi_thermal_state_flags flags
;
156 unsigned long temperature
;
160 struct acpi_handle_list devices
;
163 struct acpi_thermal_active
{
164 struct acpi_thermal_state_flags flags
;
165 unsigned long temperature
;
166 struct acpi_handle_list devices
;
169 struct acpi_thermal_trips
{
170 struct acpi_thermal_critical critical
;
171 struct acpi_thermal_hot hot
;
172 struct acpi_thermal_passive passive
;
173 struct acpi_thermal_active active
[ACPI_THERMAL_MAX_ACTIVE
];
176 struct acpi_thermal_flags
{
177 u8 cooling_mode
:1; /* _SCP */
178 u8 devices
:1; /* _TZD */
182 struct acpi_thermal
{
183 struct acpi_device
* device
;
185 unsigned long temperature
;
186 unsigned long last_temperature
;
187 unsigned long polling_frequency
;
189 struct acpi_thermal_flags flags
;
190 struct acpi_thermal_state state
;
191 struct acpi_thermal_trips trips
;
192 struct acpi_handle_list devices
;
193 struct timer_list timer
;
194 struct thermal_zone_device
*thermal_zone
;
199 static const struct file_operations acpi_thermal_state_fops
= {
200 .owner
= THIS_MODULE
,
201 .open
= acpi_thermal_state_open_fs
,
204 .release
= single_release
,
207 static const struct file_operations acpi_thermal_temp_fops
= {
208 .owner
= THIS_MODULE
,
209 .open
= acpi_thermal_temp_open_fs
,
212 .release
= single_release
,
215 static const struct file_operations acpi_thermal_trip_fops
= {
216 .owner
= THIS_MODULE
,
217 .open
= acpi_thermal_trip_open_fs
,
220 .release
= single_release
,
223 static const struct file_operations acpi_thermal_cooling_fops
= {
224 .owner
= THIS_MODULE
,
225 .open
= acpi_thermal_cooling_open_fs
,
227 .write
= acpi_thermal_write_cooling_mode
,
229 .release
= single_release
,
232 static const struct file_operations acpi_thermal_polling_fops
= {
233 .owner
= THIS_MODULE
,
234 .open
= acpi_thermal_polling_open_fs
,
236 .write
= acpi_thermal_write_polling
,
238 .release
= single_release
,
241 /* --------------------------------------------------------------------------
242 Thermal Zone Management
243 -------------------------------------------------------------------------- */
245 static int acpi_thermal_get_temperature(struct acpi_thermal
*tz
)
247 acpi_status status
= AE_OK
;
248 unsigned long long tmp
;
253 tz
->last_temperature
= tz
->temperature
;
255 status
= acpi_evaluate_integer(tz
->device
->handle
, "_TMP", NULL
, &tmp
);
256 if (ACPI_FAILURE(status
))
259 tz
->temperature
= tmp
;
260 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Temperature is %lu dK\n",
266 static int acpi_thermal_get_polling_frequency(struct acpi_thermal
*tz
)
268 acpi_status status
= AE_OK
;
269 unsigned long long tmp
;
274 status
= acpi_evaluate_integer(tz
->device
->handle
, "_TZP", NULL
, &tmp
);
275 if (ACPI_FAILURE(status
))
278 tz
->polling_frequency
= tmp
;
279 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Polling frequency is %lu dS\n",
280 tz
->polling_frequency
));
285 static int acpi_thermal_set_polling(struct acpi_thermal
*tz
, int seconds
)
291 tz
->polling_frequency
= seconds
* 10; /* Convert value to deci-seconds */
293 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
294 "Polling frequency set to %lu seconds\n",
295 tz
->polling_frequency
/10));
300 static int acpi_thermal_set_cooling_mode(struct acpi_thermal
*tz
, int mode
)
302 acpi_status status
= AE_OK
;
303 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
304 struct acpi_object_list arg_list
= { 1, &arg0
};
305 acpi_handle handle
= NULL
;
311 status
= acpi_get_handle(tz
->device
->handle
, "_SCP", &handle
);
312 if (ACPI_FAILURE(status
)) {
313 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "_SCP not present\n"));
317 arg0
.integer
.value
= mode
;
319 status
= acpi_evaluate_object(handle
, NULL
, &arg_list
, NULL
);
320 if (ACPI_FAILURE(status
))
326 #define ACPI_TRIPS_CRITICAL 0x01
327 #define ACPI_TRIPS_HOT 0x02
328 #define ACPI_TRIPS_PASSIVE 0x04
329 #define ACPI_TRIPS_ACTIVE 0x08
330 #define ACPI_TRIPS_DEVICES 0x10
332 #define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
333 #define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
335 #define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
336 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
340 * This exception is thrown out in two cases:
341 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
342 * when re-evaluating the AML code.
343 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
344 * We need to re-bind the cooling devices of a thermal zone when this occurs.
346 #define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
348 if (flags != ACPI_TRIPS_INIT) \
349 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
350 "ACPI thermal trip point %s changed\n" \
351 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
354 static int acpi_thermal_trips_update(struct acpi_thermal
*tz
, int flag
)
356 acpi_status status
= AE_OK
;
357 unsigned long long tmp
;
358 struct acpi_handle_list devices
;
362 /* Critical Shutdown (required) */
363 if (flag
& ACPI_TRIPS_CRITICAL
) {
364 status
= acpi_evaluate_integer(tz
->device
->handle
,
366 tz
->trips
.critical
.temperature
= tmp
;
368 * Treat freezing temperatures as invalid as well; some
369 * BIOSes return really low values and cause reboots at startup.
370 * Below zero (Celcius) values clearly aren't right for sure..
371 * ... so lets discard those as invalid.
373 if (ACPI_FAILURE(status
) ||
374 tz
->trips
.critical
.temperature
<= 2732) {
375 tz
->trips
.critical
.flags
.valid
= 0;
376 ACPI_EXCEPTION((AE_INFO
, status
,
377 "No or invalid critical threshold"));
380 tz
->trips
.critical
.flags
.valid
= 1;
381 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
382 "Found critical threshold [%lu]\n",
383 tz
->trips
.critical
.temperature
));
385 if (tz
->trips
.critical
.flags
.valid
== 1) {
387 tz
->trips
.critical
.flags
.valid
= 0;
388 } else if (crt
> 0) {
389 unsigned long crt_k
= CELSIUS_TO_KELVIN(crt
);
391 * Allow override critical threshold
393 if (crt_k
> tz
->trips
.critical
.temperature
)
394 printk(KERN_WARNING PREFIX
395 "Critical threshold %d C\n", crt
);
396 tz
->trips
.critical
.temperature
= crt_k
;
401 /* Critical Sleep (optional) */
402 if (flag
& ACPI_TRIPS_HOT
) {
403 status
= acpi_evaluate_integer(tz
->device
->handle
,
405 if (ACPI_FAILURE(status
)) {
406 tz
->trips
.hot
.flags
.valid
= 0;
407 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
408 "No hot threshold\n"));
410 tz
->trips
.hot
.temperature
= tmp
;
411 tz
->trips
.hot
.flags
.valid
= 1;
412 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
413 "Found hot threshold [%lu]\n",
414 tz
->trips
.critical
.temperature
));
418 /* Passive (optional) */
419 if (((flag
& ACPI_TRIPS_PASSIVE
) && tz
->trips
.passive
.flags
.valid
) ||
420 (flag
== ACPI_TRIPS_INIT
)) {
421 valid
= tz
->trips
.passive
.flags
.valid
;
424 } else if (psv
> 0) {
425 tmp
= CELSIUS_TO_KELVIN(psv
);
428 status
= acpi_evaluate_integer(tz
->device
->handle
,
432 if (ACPI_FAILURE(status
))
433 tz
->trips
.passive
.flags
.valid
= 0;
435 tz
->trips
.passive
.temperature
= tmp
;
436 tz
->trips
.passive
.flags
.valid
= 1;
437 if (flag
== ACPI_TRIPS_INIT
) {
438 status
= acpi_evaluate_integer(
439 tz
->device
->handle
, "_TC1",
441 if (ACPI_FAILURE(status
))
442 tz
->trips
.passive
.flags
.valid
= 0;
444 tz
->trips
.passive
.tc1
= tmp
;
445 status
= acpi_evaluate_integer(
446 tz
->device
->handle
, "_TC2",
448 if (ACPI_FAILURE(status
))
449 tz
->trips
.passive
.flags
.valid
= 0;
451 tz
->trips
.passive
.tc2
= tmp
;
452 status
= acpi_evaluate_integer(
453 tz
->device
->handle
, "_TSP",
455 if (ACPI_FAILURE(status
))
456 tz
->trips
.passive
.flags
.valid
= 0;
458 tz
->trips
.passive
.tsp
= tmp
;
462 if ((flag
& ACPI_TRIPS_DEVICES
) && tz
->trips
.passive
.flags
.valid
) {
463 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
464 status
= acpi_evaluate_reference(tz
->device
->handle
, "_PSL",
466 if (ACPI_FAILURE(status
)) {
467 printk(KERN_WARNING PREFIX
468 "Invalid passive threshold\n");
469 tz
->trips
.passive
.flags
.valid
= 0;
472 tz
->trips
.passive
.flags
.valid
= 1;
474 if (memcmp(&tz
->trips
.passive
.devices
, &devices
,
475 sizeof(struct acpi_handle_list
))) {
476 memcpy(&tz
->trips
.passive
.devices
, &devices
,
477 sizeof(struct acpi_handle_list
));
478 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
481 if ((flag
& ACPI_TRIPS_PASSIVE
) || (flag
& ACPI_TRIPS_DEVICES
)) {
482 if (valid
!= tz
->trips
.passive
.flags
.valid
)
483 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "state");
486 /* Active (optional) */
487 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
488 char name
[5] = { '_', 'A', 'C', ('0' + i
), '\0' };
489 valid
= tz
->trips
.active
[i
].flags
.valid
;
492 break; /* disable all active trip points */
494 if ((flag
== ACPI_TRIPS_INIT
) || ((flag
& ACPI_TRIPS_ACTIVE
) &&
495 tz
->trips
.active
[i
].flags
.valid
)) {
496 status
= acpi_evaluate_integer(tz
->device
->handle
,
498 if (ACPI_FAILURE(status
)) {
499 tz
->trips
.active
[i
].flags
.valid
= 0;
505 tz
->trips
.active
[0].temperature
=
506 CELSIUS_TO_KELVIN(act
);
509 * Don't allow override higher than
510 * the next higher trip point
512 tz
->trips
.active
[i
- 1].temperature
=
513 (tz
->trips
.active
[i
- 2].temperature
<
514 CELSIUS_TO_KELVIN(act
) ?
515 tz
->trips
.active
[i
- 2].temperature
:
516 CELSIUS_TO_KELVIN(act
));
519 tz
->trips
.active
[i
].temperature
= tmp
;
520 tz
->trips
.active
[i
].flags
.valid
= 1;
525 if ((flag
& ACPI_TRIPS_DEVICES
) && tz
->trips
.active
[i
].flags
.valid
) {
526 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
527 status
= acpi_evaluate_reference(tz
->device
->handle
,
528 name
, NULL
, &devices
);
529 if (ACPI_FAILURE(status
)) {
530 printk(KERN_WARNING PREFIX
531 "Invalid active%d threshold\n", i
);
532 tz
->trips
.active
[i
].flags
.valid
= 0;
535 tz
->trips
.active
[i
].flags
.valid
= 1;
537 if (memcmp(&tz
->trips
.active
[i
].devices
, &devices
,
538 sizeof(struct acpi_handle_list
))) {
539 memcpy(&tz
->trips
.active
[i
].devices
, &devices
,
540 sizeof(struct acpi_handle_list
));
541 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
544 if ((flag
& ACPI_TRIPS_ACTIVE
) || (flag
& ACPI_TRIPS_DEVICES
))
545 if (valid
!= tz
->trips
.active
[i
].flags
.valid
)
546 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "state");
548 if (!tz
->trips
.active
[i
].flags
.valid
)
552 if (flag
& ACPI_TRIPS_DEVICES
) {
553 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
554 status
= acpi_evaluate_reference(tz
->device
->handle
, "_TZD",
556 if (memcmp(&tz
->devices
, &devices
,
557 sizeof(struct acpi_handle_list
))) {
558 memcpy(&tz
->devices
, &devices
,
559 sizeof(struct acpi_handle_list
));
560 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
567 static int acpi_thermal_get_trip_points(struct acpi_thermal
*tz
)
569 return acpi_thermal_trips_update(tz
, ACPI_TRIPS_INIT
);
572 static int acpi_thermal_critical(struct acpi_thermal
*tz
)
574 if (!tz
|| !tz
->trips
.critical
.flags
.valid
)
577 if (tz
->temperature
>= tz
->trips
.critical
.temperature
) {
578 printk(KERN_WARNING PREFIX
"Critical trip point\n");
579 tz
->trips
.critical
.flags
.enabled
= 1;
580 } else if (tz
->trips
.critical
.flags
.enabled
)
581 tz
->trips
.critical
.flags
.enabled
= 0;
583 acpi_bus_generate_proc_event(tz
->device
, ACPI_THERMAL_NOTIFY_CRITICAL
,
584 tz
->trips
.critical
.flags
.enabled
);
585 acpi_bus_generate_netlink_event(tz
->device
->pnp
.device_class
,
586 dev_name(&tz
->device
->dev
),
587 ACPI_THERMAL_NOTIFY_CRITICAL
,
588 tz
->trips
.critical
.flags
.enabled
);
590 /* take no action if nocrt is set */
593 "Critical temperature reached (%ld C), shutting down.\n",
594 KELVIN_TO_CELSIUS(tz
->temperature
));
595 orderly_poweroff(true);
601 static int acpi_thermal_hot(struct acpi_thermal
*tz
)
603 if (!tz
|| !tz
->trips
.hot
.flags
.valid
)
606 if (tz
->temperature
>= tz
->trips
.hot
.temperature
) {
607 printk(KERN_WARNING PREFIX
"Hot trip point\n");
608 tz
->trips
.hot
.flags
.enabled
= 1;
609 } else if (tz
->trips
.hot
.flags
.enabled
)
610 tz
->trips
.hot
.flags
.enabled
= 0;
612 acpi_bus_generate_proc_event(tz
->device
, ACPI_THERMAL_NOTIFY_HOT
,
613 tz
->trips
.hot
.flags
.enabled
);
614 acpi_bus_generate_netlink_event(tz
->device
->pnp
.device_class
,
615 dev_name(&tz
->device
->dev
),
616 ACPI_THERMAL_NOTIFY_HOT
,
617 tz
->trips
.hot
.flags
.enabled
);
619 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
624 static void acpi_thermal_passive(struct acpi_thermal
*tz
)
627 struct acpi_thermal_passive
*passive
= NULL
;
632 if (!tz
|| !tz
->trips
.passive
.flags
.valid
)
635 passive
= &(tz
->trips
.passive
);
640 * Calculate the thermal trend (using the passive cooling equation)
641 * and modify the performance limit for all passive cooling devices
642 * accordingly. Note that we assume symmetry.
644 if (tz
->temperature
>= passive
->temperature
) {
646 (passive
->tc1
* (tz
->temperature
- tz
->last_temperature
)) +
647 (passive
->tc2
* (tz
->temperature
- passive
->temperature
));
648 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
649 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
650 trend
, passive
->tc1
, tz
->temperature
,
651 tz
->last_temperature
, passive
->tc2
,
652 tz
->temperature
, passive
->temperature
));
653 passive
->flags
.enabled
= 1;
656 for (i
= 0; i
< passive
->devices
.count
; i
++)
657 acpi_processor_set_thermal_limit(passive
->
660 ACPI_PROCESSOR_LIMIT_INCREMENT
);
662 else if (trend
< 0) {
663 for (i
= 0; i
< passive
->devices
.count
; i
++)
665 * assume that we are on highest
666 * freq/lowest thrott and can leave
667 * passive mode, even in error case
669 if (!acpi_processor_set_thermal_limit
670 (passive
->devices
.handles
[i
],
671 ACPI_PROCESSOR_LIMIT_DECREMENT
))
674 * Leave cooling mode, even if the temp might
675 * higher than trip point This is because some
676 * machines might have long thermal polling
677 * frequencies (tsp) defined. We will fall back
678 * into passive mode in next cycle (probably quicker)
681 passive
->flags
.enabled
= 0;
682 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
683 "Disabling passive cooling, still above threshold,"
684 " but we are cooling down\n"));
693 * Implement passive cooling hysteresis to slowly increase performance
694 * and avoid thrashing around the passive trip point. Note that we
697 if (!passive
->flags
.enabled
)
699 for (i
= 0; i
< passive
->devices
.count
; i
++)
700 if (!acpi_processor_set_thermal_limit
701 (passive
->devices
.handles
[i
],
702 ACPI_PROCESSOR_LIMIT_DECREMENT
))
705 passive
->flags
.enabled
= 0;
706 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
707 "Disabling passive cooling (zone is cool)\n"));
711 static void acpi_thermal_active(struct acpi_thermal
*tz
)
714 struct acpi_thermal_active
*active
= NULL
;
717 unsigned long maxtemp
= 0;
723 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
724 active
= &(tz
->trips
.active
[i
]);
725 if (!active
|| !active
->flags
.valid
)
727 if (tz
->temperature
>= active
->temperature
) {
731 * If not already enabled, turn ON all cooling devices
732 * associated with this active threshold.
734 if (active
->temperature
> maxtemp
)
735 tz
->state
.active_index
= i
;
736 maxtemp
= active
->temperature
;
737 if (active
->flags
.enabled
)
739 for (j
= 0; j
< active
->devices
.count
; j
++) {
741 acpi_bus_set_power(active
->devices
.
745 printk(KERN_WARNING PREFIX
746 "Unable to turn cooling device [%p] 'on'\n",
751 active
->flags
.enabled
= 1;
752 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
753 "Cooling device [%p] now 'on'\n",
754 active
->devices
.handles
[j
]));
758 if (!active
->flags
.enabled
)
763 * Turn OFF all cooling devices associated with this
766 for (j
= 0; j
< active
->devices
.count
; j
++) {
767 result
= acpi_bus_set_power(active
->devices
.handles
[j
],
770 printk(KERN_WARNING PREFIX
771 "Unable to turn cooling device [%p] 'off'\n",
772 active
->devices
.handles
[j
]);
775 active
->flags
.enabled
= 0;
776 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
777 "Cooling device [%p] now 'off'\n",
778 active
->devices
.handles
[j
]));
783 static void acpi_thermal_check(void *context
);
785 static void acpi_thermal_run(unsigned long data
)
787 struct acpi_thermal
*tz
= (struct acpi_thermal
*)data
;
789 acpi_os_execute(OSL_GPE_HANDLER
, acpi_thermal_check
, (void *)data
);
792 static void acpi_thermal_active_off(void *data
)
795 struct acpi_thermal
*tz
= data
;
798 struct acpi_thermal_active
*active
= NULL
;
801 printk(KERN_ERR PREFIX
"Invalid (NULL) context\n");
805 result
= acpi_thermal_get_temperature(tz
);
809 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
810 active
= &(tz
->trips
.active
[i
]);
811 if (!active
|| !active
->flags
.valid
)
813 if (tz
->temperature
>= active
->temperature
) {
815 * If the thermal temperature is greater than the
816 * active threshod, unnecessary to turn off the
817 * the active cooling device.
824 * Turn OFF all cooling devices associated with this
827 for (j
= 0; j
< active
->devices
.count
; j
++)
828 result
= acpi_bus_set_power(active
->devices
.handles
[j
],
833 static void acpi_thermal_check(void *data
)
836 struct acpi_thermal
*tz
= data
;
837 unsigned long sleep_time
= 0;
838 unsigned long timeout_jiffies
= 0;
840 struct acpi_thermal_state state
;
844 printk(KERN_ERR PREFIX
"Invalid (NULL) context\n");
848 /* Check if someone else is already running */
849 if (!mutex_trylock(&tz
->lock
))
854 result
= acpi_thermal_get_temperature(tz
);
861 memset(&tz
->state
, 0, sizeof(tz
->state
));
866 * Compare the current temperature to the trip point values to see
867 * if we've entered one of the thermal policy states. Note that
868 * this function determines when a state is entered, but the
869 * individual policy decides when it is exited (e.g. hysteresis).
871 if (tz
->trips
.critical
.flags
.valid
)
873 (tz
->temperature
>= tz
->trips
.critical
.temperature
);
874 if (tz
->trips
.hot
.flags
.valid
)
875 state
.hot
|= (tz
->temperature
>= tz
->trips
.hot
.temperature
);
876 if (tz
->trips
.passive
.flags
.valid
)
878 (tz
->temperature
>= tz
->trips
.passive
.temperature
);
879 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++)
880 if (tz
->trips
.active
[i
].flags
.valid
)
883 tz
->trips
.active
[i
].temperature
);
888 * Separated from the above check to allow individual policy to
889 * determine when to exit a given state.
892 acpi_thermal_critical(tz
);
894 acpi_thermal_hot(tz
);
896 acpi_thermal_passive(tz
);
898 acpi_thermal_active(tz
);
903 * Again, separated from the above two to allow independent policy
906 tz
->state
.critical
= tz
->trips
.critical
.flags
.enabled
;
907 tz
->state
.hot
= tz
->trips
.hot
.flags
.enabled
;
908 tz
->state
.passive
= tz
->trips
.passive
.flags
.enabled
;
909 tz
->state
.active
= 0;
910 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++)
911 tz
->state
.active
|= tz
->trips
.active
[i
].flags
.enabled
;
914 * Calculate Sleep Time
915 * --------------------
916 * If we're in the passive state, use _TSP's value. Otherwise
917 * use the default polling frequency (e.g. _TZP). If no polling
918 * frequency is specified then we'll wait forever (at least until
919 * a thermal event occurs). Note that _TSP and _TZD values are
920 * given in 1/10th seconds (we must covert to milliseconds).
922 if (tz
->state
.passive
) {
923 sleep_time
= tz
->trips
.passive
.tsp
* 100;
924 timeout_jiffies
= jiffies
+ (HZ
* sleep_time
) / 1000;
925 } else if (tz
->polling_frequency
> 0) {
926 sleep_time
= tz
->polling_frequency
* 100;
927 timeout_jiffies
= round_jiffies(jiffies
+ (HZ
* sleep_time
) / 1000);
930 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "%s: temperature[%lu] sleep[%lu]\n",
931 tz
->name
, tz
->temperature
, sleep_time
));
938 if (timer_pending(&(tz
->timer
)))
939 del_timer(&(tz
->timer
));
941 if (timer_pending(&(tz
->timer
)))
942 mod_timer(&(tz
->timer
), timeout_jiffies
);
944 tz
->timer
.data
= (unsigned long)tz
;
945 tz
->timer
.function
= acpi_thermal_run
;
946 tz
->timer
.expires
= timeout_jiffies
;
947 add_timer(&(tz
->timer
));
951 mutex_unlock(&tz
->lock
);
954 /* sys I/F for generic thermal sysfs support */
955 #define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
957 static int thermal_get_temp(struct thermal_zone_device
*thermal
, char *buf
)
959 struct acpi_thermal
*tz
= thermal
->devdata
;
965 result
= acpi_thermal_get_temperature(tz
);
969 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(tz
->temperature
));
972 static const char enabled
[] = "kernel";
973 static const char disabled
[] = "user";
974 static int thermal_get_mode(struct thermal_zone_device
*thermal
,
977 struct acpi_thermal
*tz
= thermal
->devdata
;
982 return sprintf(buf
, "%s\n", tz
->tz_enabled
?
986 static int thermal_set_mode(struct thermal_zone_device
*thermal
,
989 struct acpi_thermal
*tz
= thermal
->devdata
;
996 * enable/disable thermal management from ACPI thermal driver
998 if (!strncmp(buf
, enabled
, sizeof enabled
- 1))
1000 else if (!strncmp(buf
, disabled
, sizeof disabled
- 1))
1005 if (enable
!= tz
->tz_enabled
) {
1006 tz
->tz_enabled
= enable
;
1007 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1008 "%s ACPI thermal control\n",
1009 tz
->tz_enabled
? enabled
: disabled
));
1010 acpi_thermal_check(tz
);
1015 static int thermal_get_trip_type(struct thermal_zone_device
*thermal
,
1016 int trip
, char *buf
)
1018 struct acpi_thermal
*tz
= thermal
->devdata
;
1021 if (!tz
|| trip
< 0)
1024 if (tz
->trips
.critical
.flags
.valid
) {
1026 return sprintf(buf
, "critical\n");
1030 if (tz
->trips
.hot
.flags
.valid
) {
1032 return sprintf(buf
, "hot\n");
1036 if (tz
->trips
.passive
.flags
.valid
) {
1038 return sprintf(buf
, "passive\n");
1042 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
1043 tz
->trips
.active
[i
].flags
.valid
; i
++) {
1045 return sprintf(buf
, "active%d\n", i
);
1052 static int thermal_get_trip_temp(struct thermal_zone_device
*thermal
,
1053 int trip
, char *buf
)
1055 struct acpi_thermal
*tz
= thermal
->devdata
;
1058 if (!tz
|| trip
< 0)
1061 if (tz
->trips
.critical
.flags
.valid
) {
1063 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1064 tz
->trips
.critical
.temperature
));
1068 if (tz
->trips
.hot
.flags
.valid
) {
1070 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1071 tz
->trips
.hot
.temperature
));
1075 if (tz
->trips
.passive
.flags
.valid
) {
1077 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1078 tz
->trips
.passive
.temperature
));
1082 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
1083 tz
->trips
.active
[i
].flags
.valid
; i
++) {
1085 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1086 tz
->trips
.active
[i
].temperature
));
1093 static int thermal_get_crit_temp(struct thermal_zone_device
*thermal
,
1094 unsigned long *temperature
) {
1095 struct acpi_thermal
*tz
= thermal
->devdata
;
1097 if (tz
->trips
.critical
.flags
.valid
) {
1098 *temperature
= KELVIN_TO_MILLICELSIUS(
1099 tz
->trips
.critical
.temperature
);
1105 typedef int (*cb
)(struct thermal_zone_device
*, int,
1106 struct thermal_cooling_device
*);
1107 static int acpi_thermal_cooling_device_cb(struct thermal_zone_device
*thermal
,
1108 struct thermal_cooling_device
*cdev
,
1111 struct acpi_device
*device
= cdev
->devdata
;
1112 struct acpi_thermal
*tz
= thermal
->devdata
;
1113 struct acpi_device
*dev
;
1121 if (tz
->trips
.critical
.flags
.valid
)
1124 if (tz
->trips
.hot
.flags
.valid
)
1127 if (tz
->trips
.passive
.flags
.valid
) {
1129 for (i
= 0; i
< tz
->trips
.passive
.devices
.count
;
1131 handle
= tz
->trips
.passive
.devices
.handles
[i
];
1132 status
= acpi_bus_get_device(handle
, &dev
);
1133 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1134 result
= action(thermal
, trip
, cdev
);
1141 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1142 if (!tz
->trips
.active
[i
].flags
.valid
)
1146 j
< tz
->trips
.active
[i
].devices
.count
;
1148 handle
= tz
->trips
.active
[i
].devices
.handles
[j
];
1149 status
= acpi_bus_get_device(handle
, &dev
);
1150 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1151 result
= action(thermal
, trip
, cdev
);
1158 for (i
= 0; i
< tz
->devices
.count
; i
++) {
1159 handle
= tz
->devices
.handles
[i
];
1160 status
= acpi_bus_get_device(handle
, &dev
);
1161 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1162 result
= action(thermal
, -1, cdev
);
1173 acpi_thermal_bind_cooling_device(struct thermal_zone_device
*thermal
,
1174 struct thermal_cooling_device
*cdev
)
1176 return acpi_thermal_cooling_device_cb(thermal
, cdev
,
1177 thermal_zone_bind_cooling_device
);
1181 acpi_thermal_unbind_cooling_device(struct thermal_zone_device
*thermal
,
1182 struct thermal_cooling_device
*cdev
)
1184 return acpi_thermal_cooling_device_cb(thermal
, cdev
,
1185 thermal_zone_unbind_cooling_device
);
1188 static struct thermal_zone_device_ops acpi_thermal_zone_ops
= {
1189 .bind
= acpi_thermal_bind_cooling_device
,
1190 .unbind
= acpi_thermal_unbind_cooling_device
,
1191 .get_temp
= thermal_get_temp
,
1192 .get_mode
= thermal_get_mode
,
1193 .set_mode
= thermal_set_mode
,
1194 .get_trip_type
= thermal_get_trip_type
,
1195 .get_trip_temp
= thermal_get_trip_temp
,
1196 .get_crit_temp
= thermal_get_crit_temp
,
1199 static int acpi_thermal_register_thermal_zone(struct acpi_thermal
*tz
)
1206 if (tz
->trips
.critical
.flags
.valid
)
1209 if (tz
->trips
.hot
.flags
.valid
)
1212 if (tz
->trips
.passive
.flags
.valid
)
1215 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
1216 tz
->trips
.active
[i
].flags
.valid
; i
++, trips
++);
1217 tz
->thermal_zone
= thermal_zone_device_register("acpitz",
1218 trips
, tz
, &acpi_thermal_zone_ops
);
1219 if (IS_ERR(tz
->thermal_zone
))
1222 result
= sysfs_create_link(&tz
->device
->dev
.kobj
,
1223 &tz
->thermal_zone
->device
.kobj
, "thermal_zone");
1227 result
= sysfs_create_link(&tz
->thermal_zone
->device
.kobj
,
1228 &tz
->device
->dev
.kobj
, "device");
1232 status
= acpi_attach_data(tz
->device
->handle
,
1233 acpi_bus_private_data_handler
,
1235 if (ACPI_FAILURE(status
)) {
1236 printk(KERN_ERR PREFIX
1237 "Error attaching device data\n");
1243 dev_info(&tz
->device
->dev
, "registered as thermal_zone%d\n",
1244 tz
->thermal_zone
->id
);
1248 static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal
*tz
)
1250 sysfs_remove_link(&tz
->device
->dev
.kobj
, "thermal_zone");
1251 sysfs_remove_link(&tz
->thermal_zone
->device
.kobj
, "device");
1252 thermal_zone_device_unregister(tz
->thermal_zone
);
1253 tz
->thermal_zone
= NULL
;
1254 acpi_detach_data(tz
->device
->handle
, acpi_bus_private_data_handler
);
1258 /* --------------------------------------------------------------------------
1259 FS Interface (/proc)
1260 -------------------------------------------------------------------------- */
1262 static struct proc_dir_entry
*acpi_thermal_dir
;
1264 static int acpi_thermal_state_seq_show(struct seq_file
*seq
, void *offset
)
1266 struct acpi_thermal
*tz
= seq
->private;
1272 seq_puts(seq
, "state: ");
1274 if (!tz
->state
.critical
&& !tz
->state
.hot
&& !tz
->state
.passive
1275 && !tz
->state
.active
)
1276 seq_puts(seq
, "ok\n");
1278 if (tz
->state
.critical
)
1279 seq_puts(seq
, "critical ");
1281 seq_puts(seq
, "hot ");
1282 if (tz
->state
.passive
)
1283 seq_puts(seq
, "passive ");
1284 if (tz
->state
.active
)
1285 seq_printf(seq
, "active[%d]", tz
->state
.active_index
);
1286 seq_puts(seq
, "\n");
1293 static int acpi_thermal_state_open_fs(struct inode
*inode
, struct file
*file
)
1295 return single_open(file
, acpi_thermal_state_seq_show
, PDE(inode
)->data
);
1298 static int acpi_thermal_temp_seq_show(struct seq_file
*seq
, void *offset
)
1301 struct acpi_thermal
*tz
= seq
->private;
1307 result
= acpi_thermal_get_temperature(tz
);
1311 seq_printf(seq
, "temperature: %ld C\n",
1312 KELVIN_TO_CELSIUS(tz
->temperature
));
1318 static int acpi_thermal_temp_open_fs(struct inode
*inode
, struct file
*file
)
1320 return single_open(file
, acpi_thermal_temp_seq_show
, PDE(inode
)->data
);
1323 static int acpi_thermal_trip_seq_show(struct seq_file
*seq
, void *offset
)
1325 struct acpi_thermal
*tz
= seq
->private;
1326 struct acpi_device
*device
;
1336 if (tz
->trips
.critical
.flags
.valid
)
1337 seq_printf(seq
, "critical (S5): %ld C%s",
1338 KELVIN_TO_CELSIUS(tz
->trips
.critical
.temperature
),
1339 nocrt
? " <disabled>\n" : "\n");
1341 if (tz
->trips
.hot
.flags
.valid
)
1342 seq_printf(seq
, "hot (S4): %ld C%s",
1343 KELVIN_TO_CELSIUS(tz
->trips
.hot
.temperature
),
1344 nocrt
? " <disabled>\n" : "\n");
1346 if (tz
->trips
.passive
.flags
.valid
) {
1348 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1349 KELVIN_TO_CELSIUS(tz
->trips
.passive
.temperature
),
1350 tz
->trips
.passive
.tc1
, tz
->trips
.passive
.tc2
,
1351 tz
->trips
.passive
.tsp
);
1352 for (j
= 0; j
< tz
->trips
.passive
.devices
.count
; j
++) {
1353 status
= acpi_bus_get_device(tz
->trips
.passive
.devices
.
1354 handles
[j
], &device
);
1355 seq_printf(seq
, "%4.4s ", status
? "" :
1356 acpi_device_bid(device
));
1358 seq_puts(seq
, "\n");
1361 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1362 if (!(tz
->trips
.active
[i
].flags
.valid
))
1364 seq_printf(seq
, "active[%d]: %ld C: devices=",
1366 KELVIN_TO_CELSIUS(tz
->trips
.active
[i
].temperature
));
1367 for (j
= 0; j
< tz
->trips
.active
[i
].devices
.count
; j
++){
1368 status
= acpi_bus_get_device(tz
->trips
.active
[i
].
1371 seq_printf(seq
, "%4.4s ", status
? "" :
1372 acpi_device_bid(device
));
1374 seq_puts(seq
, "\n");
1381 static int acpi_thermal_trip_open_fs(struct inode
*inode
, struct file
*file
)
1383 return single_open(file
, acpi_thermal_trip_seq_show
, PDE(inode
)->data
);
1386 static int acpi_thermal_cooling_seq_show(struct seq_file
*seq
, void *offset
)
1388 struct acpi_thermal
*tz
= seq
->private;
1394 if (!tz
->flags
.cooling_mode
)
1395 seq_puts(seq
, "<setting not supported>\n");
1397 seq_puts(seq
, "0 - Active; 1 - Passive\n");
1403 static int acpi_thermal_cooling_open_fs(struct inode
*inode
, struct file
*file
)
1405 return single_open(file
, acpi_thermal_cooling_seq_show
,
1410 acpi_thermal_write_cooling_mode(struct file
*file
,
1411 const char __user
* buffer
,
1412 size_t count
, loff_t
* ppos
)
1414 struct seq_file
*m
= file
->private_data
;
1415 struct acpi_thermal
*tz
= m
->private;
1417 char mode_string
[12] = { '\0' };
1420 if (!tz
|| (count
> sizeof(mode_string
) - 1))
1423 if (!tz
->flags
.cooling_mode
)
1426 if (copy_from_user(mode_string
, buffer
, count
))
1429 mode_string
[count
] = '\0';
1431 result
= acpi_thermal_set_cooling_mode(tz
,
1432 simple_strtoul(mode_string
, NULL
,
1437 acpi_thermal_check(tz
);
1442 static int acpi_thermal_polling_seq_show(struct seq_file
*seq
, void *offset
)
1444 struct acpi_thermal
*tz
= seq
->private;
1450 if (!tz
->polling_frequency
) {
1451 seq_puts(seq
, "<polling disabled>\n");
1455 seq_printf(seq
, "polling frequency: %lu seconds\n",
1456 (tz
->polling_frequency
/ 10));
1462 static int acpi_thermal_polling_open_fs(struct inode
*inode
, struct file
*file
)
1464 return single_open(file
, acpi_thermal_polling_seq_show
,
1469 acpi_thermal_write_polling(struct file
*file
,
1470 const char __user
* buffer
,
1471 size_t count
, loff_t
* ppos
)
1473 struct seq_file
*m
= file
->private_data
;
1474 struct acpi_thermal
*tz
= m
->private;
1476 char polling_string
[12] = { '\0' };
1480 if (!tz
|| (count
> sizeof(polling_string
) - 1))
1483 if (copy_from_user(polling_string
, buffer
, count
))
1486 polling_string
[count
] = '\0';
1488 seconds
= simple_strtoul(polling_string
, NULL
, 0);
1490 result
= acpi_thermal_set_polling(tz
, seconds
);
1494 acpi_thermal_check(tz
);
1499 static int acpi_thermal_add_fs(struct acpi_device
*device
)
1501 struct proc_dir_entry
*entry
= NULL
;
1504 if (!acpi_device_dir(device
)) {
1505 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
1507 if (!acpi_device_dir(device
))
1509 acpi_device_dir(device
)->owner
= THIS_MODULE
;
1513 entry
= proc_create_data(ACPI_THERMAL_FILE_STATE
,
1514 S_IRUGO
, acpi_device_dir(device
),
1515 &acpi_thermal_state_fops
,
1516 acpi_driver_data(device
));
1520 /* 'temperature' [R] */
1521 entry
= proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE
,
1522 S_IRUGO
, acpi_device_dir(device
),
1523 &acpi_thermal_temp_fops
,
1524 acpi_driver_data(device
));
1528 /* 'trip_points' [R] */
1529 entry
= proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS
,
1531 acpi_device_dir(device
),
1532 &acpi_thermal_trip_fops
,
1533 acpi_driver_data(device
));
1537 /* 'cooling_mode' [R/W] */
1538 entry
= proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE
,
1539 S_IFREG
| S_IRUGO
| S_IWUSR
,
1540 acpi_device_dir(device
),
1541 &acpi_thermal_cooling_fops
,
1542 acpi_driver_data(device
));
1546 /* 'polling_frequency' [R/W] */
1547 entry
= proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ
,
1548 S_IFREG
| S_IRUGO
| S_IWUSR
,
1549 acpi_device_dir(device
),
1550 &acpi_thermal_polling_fops
,
1551 acpi_driver_data(device
));
1557 static int acpi_thermal_remove_fs(struct acpi_device
*device
)
1560 if (acpi_device_dir(device
)) {
1561 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ
,
1562 acpi_device_dir(device
));
1563 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE
,
1564 acpi_device_dir(device
));
1565 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS
,
1566 acpi_device_dir(device
));
1567 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE
,
1568 acpi_device_dir(device
));
1569 remove_proc_entry(ACPI_THERMAL_FILE_STATE
,
1570 acpi_device_dir(device
));
1571 remove_proc_entry(acpi_device_bid(device
), acpi_thermal_dir
);
1572 acpi_device_dir(device
) = NULL
;
1578 /* --------------------------------------------------------------------------
1580 -------------------------------------------------------------------------- */
1582 static void acpi_thermal_notify(acpi_handle handle
, u32 event
, void *data
)
1584 struct acpi_thermal
*tz
= data
;
1585 struct acpi_device
*device
= NULL
;
1591 device
= tz
->device
;
1594 case ACPI_THERMAL_NOTIFY_TEMPERATURE
:
1595 acpi_thermal_check(tz
);
1597 case ACPI_THERMAL_NOTIFY_THRESHOLDS
:
1598 acpi_thermal_trips_update(tz
, ACPI_TRIPS_REFRESH_THRESHOLDS
);
1599 acpi_thermal_check(tz
);
1600 acpi_bus_generate_proc_event(device
, event
, 0);
1601 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
1602 dev_name(&device
->dev
), event
, 0);
1604 case ACPI_THERMAL_NOTIFY_DEVICES
:
1605 acpi_thermal_trips_update(tz
, ACPI_TRIPS_REFRESH_DEVICES
);
1606 acpi_thermal_check(tz
);
1607 acpi_bus_generate_proc_event(device
, event
, 0);
1608 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
1609 dev_name(&device
->dev
), event
, 0);
1612 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1613 "Unsupported event [0x%x]\n", event
));
1620 static int acpi_thermal_get_info(struct acpi_thermal
*tz
)
1628 /* Get temperature [_TMP] (required) */
1629 result
= acpi_thermal_get_temperature(tz
);
1633 /* Get trip points [_CRT, _PSV, etc.] (required) */
1634 result
= acpi_thermal_get_trip_points(tz
);
1638 /* Set the cooling mode [_SCP] to active cooling (default) */
1639 result
= acpi_thermal_set_cooling_mode(tz
, ACPI_THERMAL_MODE_ACTIVE
);
1641 tz
->flags
.cooling_mode
= 1;
1643 /* Get default polling frequency [_TZP] (optional) */
1645 tz
->polling_frequency
= tzp
;
1647 acpi_thermal_get_polling_frequency(tz
);
1652 static int acpi_thermal_add(struct acpi_device
*device
)
1655 acpi_status status
= AE_OK
;
1656 struct acpi_thermal
*tz
= NULL
;
1662 tz
= kzalloc(sizeof(struct acpi_thermal
), GFP_KERNEL
);
1666 tz
->device
= device
;
1667 strcpy(tz
->name
, device
->pnp
.bus_id
);
1668 strcpy(acpi_device_name(device
), ACPI_THERMAL_DEVICE_NAME
);
1669 strcpy(acpi_device_class(device
), ACPI_THERMAL_CLASS
);
1670 device
->driver_data
= tz
;
1671 mutex_init(&tz
->lock
);
1674 result
= acpi_thermal_get_info(tz
);
1678 result
= acpi_thermal_register_thermal_zone(tz
);
1682 result
= acpi_thermal_add_fs(device
);
1684 goto unregister_thermal_zone
;
1686 init_timer(&tz
->timer
);
1688 acpi_thermal_active_off(tz
);
1690 acpi_thermal_check(tz
);
1692 status
= acpi_install_notify_handler(device
->handle
,
1694 acpi_thermal_notify
, tz
);
1695 if (ACPI_FAILURE(status
)) {
1700 printk(KERN_INFO PREFIX
"%s [%s] (%ld C)\n",
1701 acpi_device_name(device
), acpi_device_bid(device
),
1702 KELVIN_TO_CELSIUS(tz
->temperature
));
1706 acpi_thermal_remove_fs(device
);
1707 unregister_thermal_zone
:
1708 thermal_zone_device_unregister(tz
->thermal_zone
);
1715 static int acpi_thermal_remove(struct acpi_device
*device
, int type
)
1717 acpi_status status
= AE_OK
;
1718 struct acpi_thermal
*tz
= NULL
;
1721 if (!device
|| !acpi_driver_data(device
))
1724 tz
= acpi_driver_data(device
);
1726 /* avoid timer adding new defer task */
1728 /* wait for running timer (on other CPUs) finish */
1729 del_timer_sync(&(tz
->timer
));
1730 /* synchronize deferred task */
1731 acpi_os_wait_events_complete(NULL
);
1732 /* deferred task may reinsert timer */
1733 del_timer_sync(&(tz
->timer
));
1735 status
= acpi_remove_notify_handler(device
->handle
,
1737 acpi_thermal_notify
);
1739 /* Terminate policy */
1740 if (tz
->trips
.passive
.flags
.valid
&& tz
->trips
.passive
.flags
.enabled
) {
1741 tz
->trips
.passive
.flags
.enabled
= 0;
1742 acpi_thermal_passive(tz
);
1744 if (tz
->trips
.active
[0].flags
.valid
1745 && tz
->trips
.active
[0].flags
.enabled
) {
1746 tz
->trips
.active
[0].flags
.enabled
= 0;
1747 acpi_thermal_active(tz
);
1750 acpi_thermal_remove_fs(device
);
1751 acpi_thermal_unregister_thermal_zone(tz
);
1752 mutex_destroy(&tz
->lock
);
1757 static int acpi_thermal_resume(struct acpi_device
*device
)
1759 struct acpi_thermal
*tz
= NULL
;
1760 int i
, j
, power_state
, result
;
1763 if (!device
|| !acpi_driver_data(device
))
1766 tz
= acpi_driver_data(device
);
1768 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1769 if (!(&tz
->trips
.active
[i
]))
1771 if (!tz
->trips
.active
[i
].flags
.valid
)
1773 tz
->trips
.active
[i
].flags
.enabled
= 1;
1774 for (j
= 0; j
< tz
->trips
.active
[i
].devices
.count
; j
++) {
1775 result
= acpi_bus_get_power(tz
->trips
.active
[i
].devices
.
1776 handles
[j
], &power_state
);
1777 if (result
|| (power_state
!= ACPI_STATE_D0
)) {
1778 tz
->trips
.active
[i
].flags
.enabled
= 0;
1782 tz
->state
.active
|= tz
->trips
.active
[i
].flags
.enabled
;
1785 acpi_thermal_check(tz
);
1790 static int thermal_act(const struct dmi_system_id
*d
) {
1793 printk(KERN_NOTICE
"ACPI: %s detected: "
1794 "disabling all active thermal trip points\n", d
->ident
);
1799 static int thermal_nocrt(const struct dmi_system_id
*d
) {
1801 printk(KERN_NOTICE
"ACPI: %s detected: "
1802 "disabling all critical thermal trip point actions.\n", d
->ident
);
1806 static int thermal_tzp(const struct dmi_system_id
*d
) {
1809 printk(KERN_NOTICE
"ACPI: %s detected: "
1810 "enabling thermal zone polling\n", d
->ident
);
1811 tzp
= 300; /* 300 dS = 30 Seconds */
1815 static int thermal_psv(const struct dmi_system_id
*d
) {
1818 printk(KERN_NOTICE
"ACPI: %s detected: "
1819 "disabling all passive thermal trip points\n", d
->ident
);
1825 static struct dmi_system_id thermal_dmi_table
[] __initdata
= {
1827 * Award BIOS on this AOpen makes thermal control almost worthless.
1828 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1831 .callback
= thermal_act
,
1832 .ident
= "AOpen i915GMm-HFS",
1834 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1835 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1839 .callback
= thermal_psv
,
1840 .ident
= "AOpen i915GMm-HFS",
1842 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1843 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1847 .callback
= thermal_tzp
,
1848 .ident
= "AOpen i915GMm-HFS",
1850 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1851 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1855 .callback
= thermal_nocrt
,
1856 .ident
= "Gigabyte GA-7ZX",
1858 DMI_MATCH(DMI_BOARD_VENDOR
, "Gigabyte Technology Co., Ltd."),
1859 DMI_MATCH(DMI_BOARD_NAME
, "7ZX"),
1865 static int __init
acpi_thermal_init(void)
1869 dmi_check_system(thermal_dmi_table
);
1872 printk(KERN_NOTICE
"ACPI: thermal control disabled\n");
1875 acpi_thermal_dir
= proc_mkdir(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1876 if (!acpi_thermal_dir
)
1878 acpi_thermal_dir
->owner
= THIS_MODULE
;
1880 result
= acpi_bus_register_driver(&acpi_thermal_driver
);
1882 remove_proc_entry(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1889 static void __exit
acpi_thermal_exit(void)
1892 acpi_bus_unregister_driver(&acpi_thermal_driver
);
1894 remove_proc_entry(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1899 module_init(acpi_thermal_init
);
1900 module_exit(acpi_thermal_exit
);