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_COMPONENT 0x04000000
51 #define ACPI_THERMAL_CLASS "thermal_zone"
52 #define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
53 #define ACPI_THERMAL_FILE_STATE "state"
54 #define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
55 #define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
56 #define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
57 #define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
58 #define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
59 #define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
60 #define ACPI_THERMAL_NOTIFY_DEVICES 0x82
61 #define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
62 #define ACPI_THERMAL_NOTIFY_HOT 0xF1
63 #define ACPI_THERMAL_MODE_ACTIVE 0x00
65 #define ACPI_THERMAL_MAX_ACTIVE 10
66 #define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
68 #define _COMPONENT ACPI_THERMAL_COMPONENT
69 ACPI_MODULE_NAME("thermal");
71 MODULE_AUTHOR("Paul Diefenbaugh");
72 MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
73 MODULE_LICENSE("GPL");
76 module_param(act
, int, 0644);
77 MODULE_PARM_DESC(act
, "Disable or override all lowest active trip points.");
80 module_param(crt
, int, 0644);
81 MODULE_PARM_DESC(crt
, "Disable or lower all critical trip points.");
84 module_param(tzp
, int, 0444);
85 MODULE_PARM_DESC(tzp
, "Thermal zone polling frequency, in 1/10 seconds.");
88 module_param(nocrt
, int, 0);
89 MODULE_PARM_DESC(nocrt
, "Set to take no action upon ACPI thermal zone critical trips points.");
92 module_param(off
, int, 0);
93 MODULE_PARM_DESC(off
, "Set to disable ACPI thermal support.");
96 module_param(psv
, int, 0644);
97 MODULE_PARM_DESC(psv
, "Disable or override all passive trip points.");
99 static int acpi_thermal_add(struct acpi_device
*device
);
100 static int acpi_thermal_remove(struct acpi_device
*device
, int type
);
101 static int acpi_thermal_resume(struct acpi_device
*device
);
102 static int acpi_thermal_state_open_fs(struct inode
*inode
, struct file
*file
);
103 static int acpi_thermal_temp_open_fs(struct inode
*inode
, struct file
*file
);
104 static int acpi_thermal_trip_open_fs(struct inode
*inode
, struct file
*file
);
105 static int acpi_thermal_cooling_open_fs(struct inode
*inode
, struct file
*file
);
106 static ssize_t
acpi_thermal_write_cooling_mode(struct file
*,
107 const char __user
*, size_t,
109 static int acpi_thermal_polling_open_fs(struct inode
*inode
, struct file
*file
);
110 static ssize_t
acpi_thermal_write_polling(struct file
*, const char __user
*,
113 static const struct acpi_device_id thermal_device_ids
[] = {
114 {ACPI_THERMAL_HID
, 0},
117 MODULE_DEVICE_TABLE(acpi
, thermal_device_ids
);
119 static struct acpi_driver acpi_thermal_driver
= {
121 .class = ACPI_THERMAL_CLASS
,
122 .ids
= thermal_device_ids
,
124 .add
= acpi_thermal_add
,
125 .remove
= acpi_thermal_remove
,
126 .resume
= acpi_thermal_resume
,
130 struct acpi_thermal_state
{
139 struct acpi_thermal_state_flags
{
145 struct acpi_thermal_critical
{
146 struct acpi_thermal_state_flags flags
;
147 unsigned long temperature
;
150 struct acpi_thermal_hot
{
151 struct acpi_thermal_state_flags flags
;
152 unsigned long temperature
;
155 struct acpi_thermal_passive
{
156 struct acpi_thermal_state_flags flags
;
157 unsigned long temperature
;
161 struct acpi_handle_list devices
;
164 struct acpi_thermal_active
{
165 struct acpi_thermal_state_flags flags
;
166 unsigned long temperature
;
167 struct acpi_handle_list devices
;
170 struct acpi_thermal_trips
{
171 struct acpi_thermal_critical critical
;
172 struct acpi_thermal_hot hot
;
173 struct acpi_thermal_passive passive
;
174 struct acpi_thermal_active active
[ACPI_THERMAL_MAX_ACTIVE
];
177 struct acpi_thermal_flags
{
178 u8 cooling_mode
:1; /* _SCP */
179 u8 devices
:1; /* _TZD */
183 struct acpi_thermal
{
184 struct acpi_device
* device
;
186 unsigned long temperature
;
187 unsigned long last_temperature
;
188 unsigned long polling_frequency
;
190 struct acpi_thermal_flags flags
;
191 struct acpi_thermal_state state
;
192 struct acpi_thermal_trips trips
;
193 struct acpi_handle_list devices
;
194 struct timer_list timer
;
195 struct thermal_zone_device
*thermal_zone
;
200 static const struct file_operations acpi_thermal_state_fops
= {
201 .open
= acpi_thermal_state_open_fs
,
204 .release
= single_release
,
207 static const struct file_operations acpi_thermal_temp_fops
= {
208 .open
= acpi_thermal_temp_open_fs
,
211 .release
= single_release
,
214 static const struct file_operations acpi_thermal_trip_fops
= {
215 .open
= acpi_thermal_trip_open_fs
,
218 .release
= single_release
,
221 static const struct file_operations acpi_thermal_cooling_fops
= {
222 .open
= acpi_thermal_cooling_open_fs
,
224 .write
= acpi_thermal_write_cooling_mode
,
226 .release
= single_release
,
229 static const struct file_operations acpi_thermal_polling_fops
= {
230 .open
= acpi_thermal_polling_open_fs
,
232 .write
= acpi_thermal_write_polling
,
234 .release
= single_release
,
237 /* --------------------------------------------------------------------------
238 Thermal Zone Management
239 -------------------------------------------------------------------------- */
241 static int acpi_thermal_get_temperature(struct acpi_thermal
*tz
)
243 acpi_status status
= AE_OK
;
249 tz
->last_temperature
= tz
->temperature
;
252 acpi_evaluate_integer(tz
->device
->handle
, "_TMP", NULL
, &tz
->temperature
);
253 if (ACPI_FAILURE(status
))
256 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Temperature is %lu dK\n",
262 static int acpi_thermal_get_polling_frequency(struct acpi_thermal
*tz
)
264 acpi_status status
= AE_OK
;
271 acpi_evaluate_integer(tz
->device
->handle
, "_TZP", NULL
,
272 &tz
->polling_frequency
);
273 if (ACPI_FAILURE(status
))
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Polling frequency is %lu dS\n",
277 tz
->polling_frequency
));
282 static int acpi_thermal_set_polling(struct acpi_thermal
*tz
, int seconds
)
288 tz
->polling_frequency
= seconds
* 10; /* Convert value to deci-seconds */
290 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
291 "Polling frequency set to %lu seconds\n",
292 tz
->polling_frequency
/10));
297 static int acpi_thermal_set_cooling_mode(struct acpi_thermal
*tz
, int mode
)
299 acpi_status status
= AE_OK
;
300 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
301 struct acpi_object_list arg_list
= { 1, &arg0
};
302 acpi_handle handle
= NULL
;
308 status
= acpi_get_handle(tz
->device
->handle
, "_SCP", &handle
);
309 if (ACPI_FAILURE(status
)) {
310 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "_SCP not present\n"));
314 arg0
.integer
.value
= mode
;
316 status
= acpi_evaluate_object(handle
, NULL
, &arg_list
, NULL
);
317 if (ACPI_FAILURE(status
))
323 #define ACPI_TRIPS_CRITICAL 0x01
324 #define ACPI_TRIPS_HOT 0x02
325 #define ACPI_TRIPS_PASSIVE 0x04
326 #define ACPI_TRIPS_ACTIVE 0x08
327 #define ACPI_TRIPS_DEVICES 0x10
329 #define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
330 #define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
332 #define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
333 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
337 * This exception is thrown out in two cases:
338 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
339 * when re-evaluating the AML code.
340 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
341 * We need to re-bind the cooling devices of a thermal zone when this occurs.
343 #define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
345 if (flags != ACPI_TRIPS_INIT) \
346 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
347 "ACPI thermal trip point %s changed\n" \
348 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
351 static int acpi_thermal_trips_update(struct acpi_thermal
*tz
, int flag
)
353 acpi_status status
= AE_OK
;
354 struct acpi_handle_list devices
;
358 /* Critical Shutdown (required) */
359 if (flag
& ACPI_TRIPS_CRITICAL
) {
360 status
= acpi_evaluate_integer(tz
->device
->handle
,
361 "_CRT", NULL
, &tz
->trips
.critical
.temperature
);
362 if (ACPI_FAILURE(status
)) {
363 tz
->trips
.critical
.flags
.valid
= 0;
364 ACPI_EXCEPTION((AE_INFO
, status
,
365 "No critical threshold"));
368 tz
->trips
.critical
.flags
.valid
= 1;
369 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
370 "Found critical threshold [%lu]\n",
371 tz
->trips
.critical
.temperature
));
373 if (tz
->trips
.critical
.flags
.valid
== 1) {
375 tz
->trips
.critical
.flags
.valid
= 0;
376 } else if (crt
> 0) {
377 unsigned long crt_k
= CELSIUS_TO_KELVIN(crt
);
379 * Allow override to lower critical threshold
381 if (crt_k
< tz
->trips
.critical
.temperature
)
382 tz
->trips
.critical
.temperature
= crt_k
;
387 /* Critical Sleep (optional) */
388 if (flag
& ACPI_TRIPS_HOT
) {
389 status
= acpi_evaluate_integer(tz
->device
->handle
,
390 "_HOT", NULL
, &tz
->trips
.hot
.temperature
);
391 if (ACPI_FAILURE(status
)) {
392 tz
->trips
.hot
.flags
.valid
= 0;
393 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
394 "No hot threshold\n"));
396 tz
->trips
.hot
.flags
.valid
= 1;
397 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
398 "Found hot threshold [%lu]\n",
399 tz
->trips
.critical
.temperature
));
403 /* Passive (optional) */
404 if (flag
& ACPI_TRIPS_PASSIVE
) {
405 valid
= tz
->trips
.passive
.flags
.valid
;
408 } else if (psv
> 0) {
409 tz
->trips
.passive
.temperature
= CELSIUS_TO_KELVIN(psv
);
412 status
= acpi_evaluate_integer(tz
->device
->handle
,
413 "_PSV", NULL
, &tz
->trips
.passive
.temperature
);
416 if (ACPI_FAILURE(status
))
417 tz
->trips
.passive
.flags
.valid
= 0;
419 tz
->trips
.passive
.flags
.valid
= 1;
420 if (flag
== ACPI_TRIPS_INIT
) {
421 status
= acpi_evaluate_integer(
422 tz
->device
->handle
, "_TC1",
423 NULL
, &tz
->trips
.passive
.tc1
);
424 if (ACPI_FAILURE(status
))
425 tz
->trips
.passive
.flags
.valid
= 0;
426 status
= acpi_evaluate_integer(
427 tz
->device
->handle
, "_TC2",
428 NULL
, &tz
->trips
.passive
.tc2
);
429 if (ACPI_FAILURE(status
))
430 tz
->trips
.passive
.flags
.valid
= 0;
431 status
= acpi_evaluate_integer(
432 tz
->device
->handle
, "_TSP",
433 NULL
, &tz
->trips
.passive
.tsp
);
434 if (ACPI_FAILURE(status
))
435 tz
->trips
.passive
.flags
.valid
= 0;
439 if ((flag
& ACPI_TRIPS_DEVICES
) && tz
->trips
.passive
.flags
.valid
) {
440 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
441 status
= acpi_evaluate_reference(tz
->device
->handle
, "_PSL",
443 if (ACPI_FAILURE(status
))
444 tz
->trips
.passive
.flags
.valid
= 0;
446 tz
->trips
.passive
.flags
.valid
= 1;
448 if (memcmp(&tz
->trips
.passive
.devices
, &devices
,
449 sizeof(struct acpi_handle_list
))) {
450 memcpy(&tz
->trips
.passive
.devices
, &devices
,
451 sizeof(struct acpi_handle_list
));
452 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
455 if ((flag
& ACPI_TRIPS_PASSIVE
) || (flag
& ACPI_TRIPS_DEVICES
)) {
456 if (valid
!= tz
->trips
.passive
.flags
.valid
)
457 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "state");
460 /* Active (optional) */
461 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
462 char name
[5] = { '_', 'A', 'C', ('0' + i
), '\0' };
463 valid
= tz
->trips
.active
[i
].flags
.valid
;
466 break; /* disable all active trip points */
468 if (flag
& ACPI_TRIPS_ACTIVE
) {
469 status
= acpi_evaluate_integer(tz
->device
->handle
,
470 name
, NULL
, &tz
->trips
.active
[i
].temperature
);
471 if (ACPI_FAILURE(status
)) {
472 tz
->trips
.active
[i
].flags
.valid
= 0;
478 tz
->trips
.active
[0].temperature
=
479 CELSIUS_TO_KELVIN(act
);
482 * Don't allow override higher than
483 * the next higher trip point
485 tz
->trips
.active
[i
- 1].temperature
=
486 (tz
->trips
.active
[i
- 2].temperature
<
487 CELSIUS_TO_KELVIN(act
) ?
488 tz
->trips
.active
[i
- 2].temperature
:
489 CELSIUS_TO_KELVIN(act
));
492 tz
->trips
.active
[i
].flags
.valid
= 1;
496 if ((flag
& ACPI_TRIPS_DEVICES
) && tz
->trips
.active
[i
].flags
.valid
) {
497 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
498 status
= acpi_evaluate_reference(tz
->device
->handle
,
499 name
, NULL
, &devices
);
500 if (ACPI_FAILURE(status
))
501 tz
->trips
.active
[i
].flags
.valid
= 0;
503 tz
->trips
.active
[i
].flags
.valid
= 1;
505 if (memcmp(&tz
->trips
.active
[i
].devices
, &devices
,
506 sizeof(struct acpi_handle_list
))) {
507 memcpy(&tz
->trips
.active
[i
].devices
, &devices
,
508 sizeof(struct acpi_handle_list
));
509 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
512 if ((flag
& ACPI_TRIPS_ACTIVE
) || (flag
& ACPI_TRIPS_DEVICES
))
513 if (valid
!= tz
->trips
.active
[i
].flags
.valid
)
514 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "state");
516 if (!tz
->trips
.active
[i
].flags
.valid
)
520 if (flag
& ACPI_TRIPS_DEVICES
) {
521 memset(&devices
, 0, sizeof(struct acpi_handle_list
));
522 status
= acpi_evaluate_reference(tz
->device
->handle
, "_TZD",
524 if (memcmp(&tz
->devices
, &devices
,
525 sizeof(struct acpi_handle_list
))) {
526 memcpy(&tz
->devices
, &devices
,
527 sizeof(struct acpi_handle_list
));
528 ACPI_THERMAL_TRIPS_EXCEPTION(flag
, "device");
535 static int acpi_thermal_get_trip_points(struct acpi_thermal
*tz
)
537 return acpi_thermal_trips_update(tz
, ACPI_TRIPS_INIT
);
540 static int acpi_thermal_critical(struct acpi_thermal
*tz
)
542 if (!tz
|| !tz
->trips
.critical
.flags
.valid
)
545 if (tz
->temperature
>= tz
->trips
.critical
.temperature
) {
546 printk(KERN_WARNING PREFIX
"Critical trip point\n");
547 tz
->trips
.critical
.flags
.enabled
= 1;
548 } else if (tz
->trips
.critical
.flags
.enabled
)
549 tz
->trips
.critical
.flags
.enabled
= 0;
551 acpi_bus_generate_proc_event(tz
->device
, ACPI_THERMAL_NOTIFY_CRITICAL
,
552 tz
->trips
.critical
.flags
.enabled
);
553 acpi_bus_generate_netlink_event(tz
->device
->pnp
.device_class
,
554 tz
->device
->dev
.bus_id
,
555 ACPI_THERMAL_NOTIFY_CRITICAL
,
556 tz
->trips
.critical
.flags
.enabled
);
558 /* take no action if nocrt is set */
561 "Critical temperature reached (%ld C), shutting down.\n",
562 KELVIN_TO_CELSIUS(tz
->temperature
));
563 orderly_poweroff(true);
569 static int acpi_thermal_hot(struct acpi_thermal
*tz
)
571 if (!tz
|| !tz
->trips
.hot
.flags
.valid
)
574 if (tz
->temperature
>= tz
->trips
.hot
.temperature
) {
575 printk(KERN_WARNING PREFIX
"Hot trip point\n");
576 tz
->trips
.hot
.flags
.enabled
= 1;
577 } else if (tz
->trips
.hot
.flags
.enabled
)
578 tz
->trips
.hot
.flags
.enabled
= 0;
580 acpi_bus_generate_proc_event(tz
->device
, ACPI_THERMAL_NOTIFY_HOT
,
581 tz
->trips
.hot
.flags
.enabled
);
582 acpi_bus_generate_netlink_event(tz
->device
->pnp
.device_class
,
583 tz
->device
->dev
.bus_id
,
584 ACPI_THERMAL_NOTIFY_HOT
,
585 tz
->trips
.hot
.flags
.enabled
);
587 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
592 static void acpi_thermal_passive(struct acpi_thermal
*tz
)
595 struct acpi_thermal_passive
*passive
= NULL
;
600 if (!tz
|| !tz
->trips
.passive
.flags
.valid
)
603 passive
= &(tz
->trips
.passive
);
608 * Calculate the thermal trend (using the passive cooling equation)
609 * and modify the performance limit for all passive cooling devices
610 * accordingly. Note that we assume symmetry.
612 if (tz
->temperature
>= passive
->temperature
) {
614 (passive
->tc1
* (tz
->temperature
- tz
->last_temperature
)) +
615 (passive
->tc2
* (tz
->temperature
- passive
->temperature
));
616 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
617 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
618 trend
, passive
->tc1
, tz
->temperature
,
619 tz
->last_temperature
, passive
->tc2
,
620 tz
->temperature
, passive
->temperature
));
621 passive
->flags
.enabled
= 1;
624 for (i
= 0; i
< passive
->devices
.count
; i
++)
625 acpi_processor_set_thermal_limit(passive
->
628 ACPI_PROCESSOR_LIMIT_INCREMENT
);
630 else if (trend
< 0) {
631 for (i
= 0; i
< passive
->devices
.count
; i
++)
633 * assume that we are on highest
634 * freq/lowest thrott and can leave
635 * passive mode, even in error case
637 if (!acpi_processor_set_thermal_limit
638 (passive
->devices
.handles
[i
],
639 ACPI_PROCESSOR_LIMIT_DECREMENT
))
642 * Leave cooling mode, even if the temp might
643 * higher than trip point This is because some
644 * machines might have long thermal polling
645 * frequencies (tsp) defined. We will fall back
646 * into passive mode in next cycle (probably quicker)
649 passive
->flags
.enabled
= 0;
650 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
651 "Disabling passive cooling, still above threshold,"
652 " but we are cooling down\n"));
661 * Implement passive cooling hysteresis to slowly increase performance
662 * and avoid thrashing around the passive trip point. Note that we
665 if (!passive
->flags
.enabled
)
667 for (i
= 0; i
< passive
->devices
.count
; i
++)
668 if (!acpi_processor_set_thermal_limit
669 (passive
->devices
.handles
[i
],
670 ACPI_PROCESSOR_LIMIT_DECREMENT
))
673 passive
->flags
.enabled
= 0;
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
675 "Disabling passive cooling (zone is cool)\n"));
679 static void acpi_thermal_active(struct acpi_thermal
*tz
)
682 struct acpi_thermal_active
*active
= NULL
;
685 unsigned long maxtemp
= 0;
691 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
692 active
= &(tz
->trips
.active
[i
]);
693 if (!active
|| !active
->flags
.valid
)
695 if (tz
->temperature
>= active
->temperature
) {
699 * If not already enabled, turn ON all cooling devices
700 * associated with this active threshold.
702 if (active
->temperature
> maxtemp
)
703 tz
->state
.active_index
= i
;
704 maxtemp
= active
->temperature
;
705 if (active
->flags
.enabled
)
707 for (j
= 0; j
< active
->devices
.count
; j
++) {
709 acpi_bus_set_power(active
->devices
.
713 printk(KERN_WARNING PREFIX
714 "Unable to turn cooling device [%p] 'on'\n",
719 active
->flags
.enabled
= 1;
720 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
721 "Cooling device [%p] now 'on'\n",
722 active
->devices
.handles
[j
]));
726 if (!active
->flags
.enabled
)
731 * Turn OFF all cooling devices associated with this
734 for (j
= 0; j
< active
->devices
.count
; j
++) {
735 result
= acpi_bus_set_power(active
->devices
.handles
[j
],
738 printk(KERN_WARNING PREFIX
739 "Unable to turn cooling device [%p] 'off'\n",
740 active
->devices
.handles
[j
]);
743 active
->flags
.enabled
= 0;
744 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
745 "Cooling device [%p] now 'off'\n",
746 active
->devices
.handles
[j
]));
751 static void acpi_thermal_check(void *context
);
753 static void acpi_thermal_run(unsigned long data
)
755 struct acpi_thermal
*tz
= (struct acpi_thermal
*)data
;
757 acpi_os_execute(OSL_GPE_HANDLER
, acpi_thermal_check
, (void *)data
);
760 static void acpi_thermal_check(void *data
)
763 struct acpi_thermal
*tz
= data
;
764 unsigned long sleep_time
= 0;
765 unsigned long timeout_jiffies
= 0;
767 struct acpi_thermal_state state
;
771 printk(KERN_ERR PREFIX
"Invalid (NULL) context\n");
775 /* Check if someone else is already running */
776 if (!mutex_trylock(&tz
->lock
))
781 result
= acpi_thermal_get_temperature(tz
);
788 memset(&tz
->state
, 0, sizeof(tz
->state
));
793 * Compare the current temperature to the trip point values to see
794 * if we've entered one of the thermal policy states. Note that
795 * this function determines when a state is entered, but the
796 * individual policy decides when it is exited (e.g. hysteresis).
798 if (tz
->trips
.critical
.flags
.valid
)
800 (tz
->temperature
>= tz
->trips
.critical
.temperature
);
801 if (tz
->trips
.hot
.flags
.valid
)
802 state
.hot
|= (tz
->temperature
>= tz
->trips
.hot
.temperature
);
803 if (tz
->trips
.passive
.flags
.valid
)
805 (tz
->temperature
>= tz
->trips
.passive
.temperature
);
806 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++)
807 if (tz
->trips
.active
[i
].flags
.valid
)
810 tz
->trips
.active
[i
].temperature
);
815 * Separated from the above check to allow individual policy to
816 * determine when to exit a given state.
819 acpi_thermal_critical(tz
);
821 acpi_thermal_hot(tz
);
823 acpi_thermal_passive(tz
);
825 acpi_thermal_active(tz
);
830 * Again, separated from the above two to allow independent policy
833 tz
->state
.critical
= tz
->trips
.critical
.flags
.enabled
;
834 tz
->state
.hot
= tz
->trips
.hot
.flags
.enabled
;
835 tz
->state
.passive
= tz
->trips
.passive
.flags
.enabled
;
836 tz
->state
.active
= 0;
837 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++)
838 tz
->state
.active
|= tz
->trips
.active
[i
].flags
.enabled
;
841 * Calculate Sleep Time
842 * --------------------
843 * If we're in the passive state, use _TSP's value. Otherwise
844 * use the default polling frequency (e.g. _TZP). If no polling
845 * frequency is specified then we'll wait forever (at least until
846 * a thermal event occurs). Note that _TSP and _TZD values are
847 * given in 1/10th seconds (we must covert to milliseconds).
849 if (tz
->state
.passive
) {
850 sleep_time
= tz
->trips
.passive
.tsp
* 100;
851 timeout_jiffies
= jiffies
+ (HZ
* sleep_time
) / 1000;
852 } else if (tz
->polling_frequency
> 0) {
853 sleep_time
= tz
->polling_frequency
* 100;
854 timeout_jiffies
= round_jiffies(jiffies
+ (HZ
* sleep_time
) / 1000);
857 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "%s: temperature[%lu] sleep[%lu]\n",
858 tz
->name
, tz
->temperature
, sleep_time
));
865 if (timer_pending(&(tz
->timer
)))
866 del_timer(&(tz
->timer
));
868 if (timer_pending(&(tz
->timer
)))
869 mod_timer(&(tz
->timer
), timeout_jiffies
);
871 tz
->timer
.data
= (unsigned long)tz
;
872 tz
->timer
.function
= acpi_thermal_run
;
873 tz
->timer
.expires
= timeout_jiffies
;
874 add_timer(&(tz
->timer
));
878 mutex_unlock(&tz
->lock
);
881 /* sys I/F for generic thermal sysfs support */
882 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
884 #define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
886 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
887 static int thermal_get_temp(struct thermal_zone_device
*thermal
, char *buf
)
889 struct acpi_thermal
*tz
= thermal
->devdata
;
894 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
895 return sprintf(buf
, "%ld\n", KELVIN_TO_CELSIUS(tz
->temperature
));
897 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(tz
->temperature
));
898 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
901 static const char enabled
[] = "kernel";
902 static const char disabled
[] = "user";
903 static int thermal_get_mode(struct thermal_zone_device
*thermal
,
906 struct acpi_thermal
*tz
= thermal
->devdata
;
911 return sprintf(buf
, "%s\n", tz
->tz_enabled
?
915 static int thermal_set_mode(struct thermal_zone_device
*thermal
,
918 struct acpi_thermal
*tz
= thermal
->devdata
;
925 * enable/disable thermal management from ACPI thermal driver
927 if (!strncmp(buf
, enabled
, sizeof enabled
- 1))
929 else if (!strncmp(buf
, disabled
, sizeof disabled
- 1))
934 if (enable
!= tz
->tz_enabled
) {
935 tz
->tz_enabled
= enable
;
936 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
937 "%s ACPI thermal control\n",
938 tz
->tz_enabled
? enabled
: disabled
));
939 acpi_thermal_check(tz
);
944 static int thermal_get_trip_type(struct thermal_zone_device
*thermal
,
947 struct acpi_thermal
*tz
= thermal
->devdata
;
953 if (tz
->trips
.critical
.flags
.valid
) {
955 return sprintf(buf
, "critical\n");
959 if (tz
->trips
.hot
.flags
.valid
) {
961 return sprintf(buf
, "hot\n");
965 if (tz
->trips
.passive
.flags
.valid
) {
967 return sprintf(buf
, "passive\n");
971 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
972 tz
->trips
.active
[i
].flags
.valid
; i
++) {
974 return sprintf(buf
, "active%d\n", i
);
981 static int thermal_get_trip_temp(struct thermal_zone_device
*thermal
,
984 struct acpi_thermal
*tz
= thermal
->devdata
;
990 if (tz
->trips
.critical
.flags
.valid
) {
992 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
993 return sprintf(buf
, "%ld\n", KELVIN_TO_CELSIUS(
995 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
996 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
997 tz
->trips
.critical
.temperature
));
1001 if (tz
->trips
.hot
.flags
.valid
) {
1003 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
1004 return sprintf(buf
, "%ld\n", KELVIN_TO_CELSIUS(
1006 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1007 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
1008 tz
->trips
.hot
.temperature
));
1012 if (tz
->trips
.passive
.flags
.valid
) {
1014 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
1015 return sprintf(buf
, "%ld\n", KELVIN_TO_CELSIUS(
1017 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1018 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
1019 tz
->trips
.passive
.temperature
));
1023 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
1024 tz
->trips
.active
[i
].flags
.valid
; i
++) {
1026 <<<<<<< HEAD
:drivers
/acpi
/thermal
.c
1027 return sprintf(buf
, "%ld\n", KELVIN_TO_CELSIUS(
1029 return sprintf(buf
, "%ld\n", KELVIN_TO_MILLICELSIUS(
1030 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/acpi
/thermal
.c
1031 tz
->trips
.active
[i
].temperature
));
1038 typedef int (*cb
)(struct thermal_zone_device
*, int,
1039 struct thermal_cooling_device
*);
1040 static int acpi_thermal_cooling_device_cb(struct thermal_zone_device
*thermal
,
1041 struct thermal_cooling_device
*cdev
,
1044 struct acpi_device
*device
= cdev
->devdata
;
1045 struct acpi_thermal
*tz
= thermal
->devdata
;
1046 struct acpi_device
*dev
;
1054 if (tz
->trips
.critical
.flags
.valid
)
1057 if (tz
->trips
.hot
.flags
.valid
)
1060 if (tz
->trips
.passive
.flags
.valid
) {
1062 for (i
= 0; i
< tz
->trips
.passive
.devices
.count
;
1064 handle
= tz
->trips
.passive
.devices
.handles
[i
];
1065 status
= acpi_bus_get_device(handle
, &dev
);
1066 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1067 result
= action(thermal
, trip
, cdev
);
1074 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1075 if (!tz
->trips
.active
[i
].flags
.valid
)
1079 j
< tz
->trips
.active
[i
].devices
.count
;
1081 handle
= tz
->trips
.active
[i
].devices
.handles
[j
];
1082 status
= acpi_bus_get_device(handle
, &dev
);
1083 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1084 result
= action(thermal
, trip
, cdev
);
1091 for (i
= 0; i
< tz
->devices
.count
; i
++) {
1092 handle
= tz
->devices
.handles
[i
];
1093 status
= acpi_bus_get_device(handle
, &dev
);
1094 if (ACPI_SUCCESS(status
) && (dev
== device
)) {
1095 result
= action(thermal
, -1, cdev
);
1106 acpi_thermal_bind_cooling_device(struct thermal_zone_device
*thermal
,
1107 struct thermal_cooling_device
*cdev
)
1109 return acpi_thermal_cooling_device_cb(thermal
, cdev
,
1110 thermal_zone_bind_cooling_device
);
1114 acpi_thermal_unbind_cooling_device(struct thermal_zone_device
*thermal
,
1115 struct thermal_cooling_device
*cdev
)
1117 return acpi_thermal_cooling_device_cb(thermal
, cdev
,
1118 thermal_zone_unbind_cooling_device
);
1121 static struct thermal_zone_device_ops acpi_thermal_zone_ops
= {
1122 .bind
= acpi_thermal_bind_cooling_device
,
1123 .unbind
= acpi_thermal_unbind_cooling_device
,
1124 .get_temp
= thermal_get_temp
,
1125 .get_mode
= thermal_get_mode
,
1126 .set_mode
= thermal_set_mode
,
1127 .get_trip_type
= thermal_get_trip_type
,
1128 .get_trip_temp
= thermal_get_trip_temp
,
1131 static int acpi_thermal_register_thermal_zone(struct acpi_thermal
*tz
)
1138 if (tz
->trips
.critical
.flags
.valid
)
1141 if (tz
->trips
.hot
.flags
.valid
)
1144 if (tz
->trips
.passive
.flags
.valid
)
1147 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
&&
1148 tz
->trips
.active
[i
].flags
.valid
; i
++, trips
++);
1149 tz
->thermal_zone
= thermal_zone_device_register("ACPI thermal zone",
1150 trips
, tz
, &acpi_thermal_zone_ops
);
1151 if (!tz
->thermal_zone
)
1154 result
= sysfs_create_link(&tz
->device
->dev
.kobj
,
1155 &tz
->thermal_zone
->device
.kobj
, "thermal_zone");
1159 result
= sysfs_create_link(&tz
->thermal_zone
->device
.kobj
,
1160 &tz
->device
->dev
.kobj
, "device");
1164 status
= acpi_attach_data(tz
->device
->handle
,
1165 acpi_bus_private_data_handler
,
1167 if (ACPI_FAILURE(status
)) {
1168 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
1169 "Error attaching device data\n"));
1175 printk(KERN_INFO PREFIX
"%s is registered as thermal_zone%d\n",
1176 tz
->device
->dev
.bus_id
, tz
->thermal_zone
->id
);
1180 static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal
*tz
)
1182 sysfs_remove_link(&tz
->device
->dev
.kobj
, "thermal_zone");
1183 sysfs_remove_link(&tz
->thermal_zone
->device
.kobj
, "device");
1184 thermal_zone_device_unregister(tz
->thermal_zone
);
1185 tz
->thermal_zone
= NULL
;
1186 acpi_detach_data(tz
->device
->handle
, acpi_bus_private_data_handler
);
1190 /* --------------------------------------------------------------------------
1191 FS Interface (/proc)
1192 -------------------------------------------------------------------------- */
1194 static struct proc_dir_entry
*acpi_thermal_dir
;
1196 static int acpi_thermal_state_seq_show(struct seq_file
*seq
, void *offset
)
1198 struct acpi_thermal
*tz
= seq
->private;
1204 seq_puts(seq
, "state: ");
1206 if (!tz
->state
.critical
&& !tz
->state
.hot
&& !tz
->state
.passive
1207 && !tz
->state
.active
)
1208 seq_puts(seq
, "ok\n");
1210 if (tz
->state
.critical
)
1211 seq_puts(seq
, "critical ");
1213 seq_puts(seq
, "hot ");
1214 if (tz
->state
.passive
)
1215 seq_puts(seq
, "passive ");
1216 if (tz
->state
.active
)
1217 seq_printf(seq
, "active[%d]", tz
->state
.active_index
);
1218 seq_puts(seq
, "\n");
1225 static int acpi_thermal_state_open_fs(struct inode
*inode
, struct file
*file
)
1227 return single_open(file
, acpi_thermal_state_seq_show
, PDE(inode
)->data
);
1230 static int acpi_thermal_temp_seq_show(struct seq_file
*seq
, void *offset
)
1233 struct acpi_thermal
*tz
= seq
->private;
1239 result
= acpi_thermal_get_temperature(tz
);
1243 seq_printf(seq
, "temperature: %ld C\n",
1244 KELVIN_TO_CELSIUS(tz
->temperature
));
1250 static int acpi_thermal_temp_open_fs(struct inode
*inode
, struct file
*file
)
1252 return single_open(file
, acpi_thermal_temp_seq_show
, PDE(inode
)->data
);
1255 static int acpi_thermal_trip_seq_show(struct seq_file
*seq
, void *offset
)
1257 struct acpi_thermal
*tz
= seq
->private;
1258 struct acpi_device
*device
;
1268 if (tz
->trips
.critical
.flags
.valid
)
1269 seq_printf(seq
, "critical (S5): %ld C%s",
1270 KELVIN_TO_CELSIUS(tz
->trips
.critical
.temperature
),
1271 nocrt
? " <disabled>\n" : "\n");
1273 if (tz
->trips
.hot
.flags
.valid
)
1274 seq_printf(seq
, "hot (S4): %ld C%s",
1275 KELVIN_TO_CELSIUS(tz
->trips
.hot
.temperature
),
1276 nocrt
? " <disabled>\n" : "\n");
1278 if (tz
->trips
.passive
.flags
.valid
) {
1280 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1281 KELVIN_TO_CELSIUS(tz
->trips
.passive
.temperature
),
1282 tz
->trips
.passive
.tc1
, tz
->trips
.passive
.tc2
,
1283 tz
->trips
.passive
.tsp
);
1284 for (j
= 0; j
< tz
->trips
.passive
.devices
.count
; j
++) {
1285 status
= acpi_bus_get_device(tz
->trips
.passive
.devices
.
1286 handles
[j
], &device
);
1287 seq_printf(seq
, "%4.4s ", status
? "" :
1288 acpi_device_bid(device
));
1290 seq_puts(seq
, "\n");
1293 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1294 if (!(tz
->trips
.active
[i
].flags
.valid
))
1296 seq_printf(seq
, "active[%d]: %ld C: devices=",
1298 KELVIN_TO_CELSIUS(tz
->trips
.active
[i
].temperature
));
1299 for (j
= 0; j
< tz
->trips
.active
[i
].devices
.count
; j
++){
1300 status
= acpi_bus_get_device(tz
->trips
.active
[i
].
1303 seq_printf(seq
, "%4.4s ", status
? "" :
1304 acpi_device_bid(device
));
1306 seq_puts(seq
, "\n");
1313 static int acpi_thermal_trip_open_fs(struct inode
*inode
, struct file
*file
)
1315 return single_open(file
, acpi_thermal_trip_seq_show
, PDE(inode
)->data
);
1318 static int acpi_thermal_cooling_seq_show(struct seq_file
*seq
, void *offset
)
1320 struct acpi_thermal
*tz
= seq
->private;
1326 if (!tz
->flags
.cooling_mode
)
1327 seq_puts(seq
, "<setting not supported>\n");
1329 seq_puts(seq
, "0 - Active; 1 - Passive\n");
1335 static int acpi_thermal_cooling_open_fs(struct inode
*inode
, struct file
*file
)
1337 return single_open(file
, acpi_thermal_cooling_seq_show
,
1342 acpi_thermal_write_cooling_mode(struct file
*file
,
1343 const char __user
* buffer
,
1344 size_t count
, loff_t
* ppos
)
1346 struct seq_file
*m
= file
->private_data
;
1347 struct acpi_thermal
*tz
= m
->private;
1349 char mode_string
[12] = { '\0' };
1352 if (!tz
|| (count
> sizeof(mode_string
) - 1))
1355 if (!tz
->flags
.cooling_mode
)
1358 if (copy_from_user(mode_string
, buffer
, count
))
1361 mode_string
[count
] = '\0';
1363 result
= acpi_thermal_set_cooling_mode(tz
,
1364 simple_strtoul(mode_string
, NULL
,
1369 acpi_thermal_check(tz
);
1374 static int acpi_thermal_polling_seq_show(struct seq_file
*seq
, void *offset
)
1376 struct acpi_thermal
*tz
= seq
->private;
1382 if (!tz
->polling_frequency
) {
1383 seq_puts(seq
, "<polling disabled>\n");
1387 seq_printf(seq
, "polling frequency: %lu seconds\n",
1388 (tz
->polling_frequency
/ 10));
1394 static int acpi_thermal_polling_open_fs(struct inode
*inode
, struct file
*file
)
1396 return single_open(file
, acpi_thermal_polling_seq_show
,
1401 acpi_thermal_write_polling(struct file
*file
,
1402 const char __user
* buffer
,
1403 size_t count
, loff_t
* ppos
)
1405 struct seq_file
*m
= file
->private_data
;
1406 struct acpi_thermal
*tz
= m
->private;
1408 char polling_string
[12] = { '\0' };
1412 if (!tz
|| (count
> sizeof(polling_string
) - 1))
1415 if (copy_from_user(polling_string
, buffer
, count
))
1418 polling_string
[count
] = '\0';
1420 seconds
= simple_strtoul(polling_string
, NULL
, 0);
1422 result
= acpi_thermal_set_polling(tz
, seconds
);
1426 acpi_thermal_check(tz
);
1431 static int acpi_thermal_add_fs(struct acpi_device
*device
)
1433 struct proc_dir_entry
*entry
= NULL
;
1436 if (!acpi_device_dir(device
)) {
1437 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
1439 if (!acpi_device_dir(device
))
1441 acpi_device_dir(device
)->owner
= THIS_MODULE
;
1445 entry
= create_proc_entry(ACPI_THERMAL_FILE_STATE
,
1446 S_IRUGO
, acpi_device_dir(device
));
1450 entry
->proc_fops
= &acpi_thermal_state_fops
;
1451 entry
->data
= acpi_driver_data(device
);
1452 entry
->owner
= THIS_MODULE
;
1455 /* 'temperature' [R] */
1456 entry
= create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE
,
1457 S_IRUGO
, acpi_device_dir(device
));
1461 entry
->proc_fops
= &acpi_thermal_temp_fops
;
1462 entry
->data
= acpi_driver_data(device
);
1463 entry
->owner
= THIS_MODULE
;
1466 /* 'trip_points' [R] */
1467 entry
= create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS
,
1469 acpi_device_dir(device
));
1473 entry
->proc_fops
= &acpi_thermal_trip_fops
;
1474 entry
->data
= acpi_driver_data(device
);
1475 entry
->owner
= THIS_MODULE
;
1478 /* 'cooling_mode' [R/W] */
1479 entry
= create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE
,
1480 S_IFREG
| S_IRUGO
| S_IWUSR
,
1481 acpi_device_dir(device
));
1485 entry
->proc_fops
= &acpi_thermal_cooling_fops
;
1486 entry
->data
= acpi_driver_data(device
);
1487 entry
->owner
= THIS_MODULE
;
1490 /* 'polling_frequency' [R/W] */
1491 entry
= create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ
,
1492 S_IFREG
| S_IRUGO
| S_IWUSR
,
1493 acpi_device_dir(device
));
1497 entry
->proc_fops
= &acpi_thermal_polling_fops
;
1498 entry
->data
= acpi_driver_data(device
);
1499 entry
->owner
= THIS_MODULE
;
1505 static int acpi_thermal_remove_fs(struct acpi_device
*device
)
1508 if (acpi_device_dir(device
)) {
1509 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ
,
1510 acpi_device_dir(device
));
1511 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE
,
1512 acpi_device_dir(device
));
1513 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS
,
1514 acpi_device_dir(device
));
1515 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE
,
1516 acpi_device_dir(device
));
1517 remove_proc_entry(ACPI_THERMAL_FILE_STATE
,
1518 acpi_device_dir(device
));
1519 remove_proc_entry(acpi_device_bid(device
), acpi_thermal_dir
);
1520 acpi_device_dir(device
) = NULL
;
1526 /* --------------------------------------------------------------------------
1528 -------------------------------------------------------------------------- */
1530 static void acpi_thermal_notify(acpi_handle handle
, u32 event
, void *data
)
1532 struct acpi_thermal
*tz
= data
;
1533 struct acpi_device
*device
= NULL
;
1539 device
= tz
->device
;
1542 case ACPI_THERMAL_NOTIFY_TEMPERATURE
:
1543 acpi_thermal_check(tz
);
1545 case ACPI_THERMAL_NOTIFY_THRESHOLDS
:
1546 acpi_thermal_trips_update(tz
, ACPI_TRIPS_REFRESH_THRESHOLDS
);
1547 acpi_thermal_check(tz
);
1548 acpi_bus_generate_proc_event(device
, event
, 0);
1549 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
1550 device
->dev
.bus_id
, event
, 0);
1552 case ACPI_THERMAL_NOTIFY_DEVICES
:
1553 acpi_thermal_trips_update(tz
, ACPI_TRIPS_REFRESH_DEVICES
);
1554 acpi_thermal_check(tz
);
1555 acpi_bus_generate_proc_event(device
, event
, 0);
1556 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
1557 device
->dev
.bus_id
, event
, 0);
1560 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1561 "Unsupported event [0x%x]\n", event
));
1568 static int acpi_thermal_get_info(struct acpi_thermal
*tz
)
1576 /* Get temperature [_TMP] (required) */
1577 result
= acpi_thermal_get_temperature(tz
);
1581 /* Get trip points [_CRT, _PSV, etc.] (required) */
1582 result
= acpi_thermal_get_trip_points(tz
);
1586 /* Set the cooling mode [_SCP] to active cooling (default) */
1587 result
= acpi_thermal_set_cooling_mode(tz
, ACPI_THERMAL_MODE_ACTIVE
);
1589 tz
->flags
.cooling_mode
= 1;
1591 /* Get default polling frequency [_TZP] (optional) */
1593 tz
->polling_frequency
= tzp
;
1595 acpi_thermal_get_polling_frequency(tz
);
1600 static int acpi_thermal_add(struct acpi_device
*device
)
1603 acpi_status status
= AE_OK
;
1604 struct acpi_thermal
*tz
= NULL
;
1610 tz
= kzalloc(sizeof(struct acpi_thermal
), GFP_KERNEL
);
1614 tz
->device
= device
;
1615 strcpy(tz
->name
, device
->pnp
.bus_id
);
1616 strcpy(acpi_device_name(device
), ACPI_THERMAL_DEVICE_NAME
);
1617 strcpy(acpi_device_class(device
), ACPI_THERMAL_CLASS
);
1618 acpi_driver_data(device
) = tz
;
1619 mutex_init(&tz
->lock
);
1622 result
= acpi_thermal_get_info(tz
);
1626 result
= acpi_thermal_register_thermal_zone(tz
);
1630 result
= acpi_thermal_add_fs(device
);
1632 goto unregister_thermal_zone
;
1634 init_timer(&tz
->timer
);
1636 acpi_thermal_check(tz
);
1638 status
= acpi_install_notify_handler(device
->handle
,
1640 acpi_thermal_notify
, tz
);
1641 if (ACPI_FAILURE(status
)) {
1646 printk(KERN_INFO PREFIX
"%s [%s] (%ld C)\n",
1647 acpi_device_name(device
), acpi_device_bid(device
),
1648 KELVIN_TO_CELSIUS(tz
->temperature
));
1652 acpi_thermal_remove_fs(device
);
1653 unregister_thermal_zone
:
1654 thermal_zone_device_unregister(tz
->thermal_zone
);
1661 static int acpi_thermal_remove(struct acpi_device
*device
, int type
)
1663 acpi_status status
= AE_OK
;
1664 struct acpi_thermal
*tz
= NULL
;
1667 if (!device
|| !acpi_driver_data(device
))
1670 tz
= acpi_driver_data(device
);
1672 /* avoid timer adding new defer task */
1674 /* wait for running timer (on other CPUs) finish */
1675 del_timer_sync(&(tz
->timer
));
1676 /* synchronize deferred task */
1677 acpi_os_wait_events_complete(NULL
);
1678 /* deferred task may reinsert timer */
1679 del_timer_sync(&(tz
->timer
));
1681 status
= acpi_remove_notify_handler(device
->handle
,
1683 acpi_thermal_notify
);
1685 /* Terminate policy */
1686 if (tz
->trips
.passive
.flags
.valid
&& tz
->trips
.passive
.flags
.enabled
) {
1687 tz
->trips
.passive
.flags
.enabled
= 0;
1688 acpi_thermal_passive(tz
);
1690 if (tz
->trips
.active
[0].flags
.valid
1691 && tz
->trips
.active
[0].flags
.enabled
) {
1692 tz
->trips
.active
[0].flags
.enabled
= 0;
1693 acpi_thermal_active(tz
);
1696 acpi_thermal_remove_fs(device
);
1697 acpi_thermal_unregister_thermal_zone(tz
);
1698 mutex_destroy(&tz
->lock
);
1703 static int acpi_thermal_resume(struct acpi_device
*device
)
1705 struct acpi_thermal
*tz
= NULL
;
1706 int i
, j
, power_state
, result
;
1709 if (!device
|| !acpi_driver_data(device
))
1712 tz
= acpi_driver_data(device
);
1714 for (i
= 0; i
< ACPI_THERMAL_MAX_ACTIVE
; i
++) {
1715 if (!(&tz
->trips
.active
[i
]))
1717 if (!tz
->trips
.active
[i
].flags
.valid
)
1719 tz
->trips
.active
[i
].flags
.enabled
= 1;
1720 for (j
= 0; j
< tz
->trips
.active
[i
].devices
.count
; j
++) {
1721 result
= acpi_bus_get_power(tz
->trips
.active
[i
].devices
.
1722 handles
[j
], &power_state
);
1723 if (result
|| (power_state
!= ACPI_STATE_D0
)) {
1724 tz
->trips
.active
[i
].flags
.enabled
= 0;
1728 tz
->state
.active
|= tz
->trips
.active
[i
].flags
.enabled
;
1731 acpi_thermal_check(tz
);
1737 static int thermal_act(const struct dmi_system_id
*d
) {
1740 printk(KERN_NOTICE
"ACPI: %s detected: "
1741 "disabling all active thermal trip points\n", d
->ident
);
1746 static int thermal_nocrt(const struct dmi_system_id
*d
) {
1748 printk(KERN_NOTICE
"ACPI: %s detected: "
1749 "disabling all critical thermal trip point actions.\n", d
->ident
);
1753 static int thermal_tzp(const struct dmi_system_id
*d
) {
1756 printk(KERN_NOTICE
"ACPI: %s detected: "
1757 "enabling thermal zone polling\n", d
->ident
);
1758 tzp
= 300; /* 300 dS = 30 Seconds */
1762 static int thermal_psv(const struct dmi_system_id
*d
) {
1765 printk(KERN_NOTICE
"ACPI: %s detected: "
1766 "disabling all passive thermal trip points\n", d
->ident
);
1772 static struct dmi_system_id thermal_dmi_table
[] __initdata
= {
1774 * Award BIOS on this AOpen makes thermal control almost worthless.
1775 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1778 .callback
= thermal_act
,
1779 .ident
= "AOpen i915GMm-HFS",
1781 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1782 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1786 .callback
= thermal_psv
,
1787 .ident
= "AOpen i915GMm-HFS",
1789 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1790 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1794 .callback
= thermal_tzp
,
1795 .ident
= "AOpen i915GMm-HFS",
1797 DMI_MATCH(DMI_BOARD_VENDOR
, "AOpen"),
1798 DMI_MATCH(DMI_BOARD_NAME
, "i915GMm-HFS"),
1802 .callback
= thermal_nocrt
,
1803 .ident
= "Gigabyte GA-7ZX",
1805 DMI_MATCH(DMI_BOARD_VENDOR
, "Gigabyte Technology Co., Ltd."),
1806 DMI_MATCH(DMI_BOARD_NAME
, "7ZX"),
1811 #endif /* CONFIG_DMI */
1813 static int __init
acpi_thermal_init(void)
1817 dmi_check_system(thermal_dmi_table
);
1820 printk(KERN_NOTICE
"ACPI: thermal control disabled\n");
1823 acpi_thermal_dir
= proc_mkdir(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1824 if (!acpi_thermal_dir
)
1826 acpi_thermal_dir
->owner
= THIS_MODULE
;
1828 result
= acpi_bus_register_driver(&acpi_thermal_driver
);
1830 remove_proc_entry(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1837 static void __exit
acpi_thermal_exit(void)
1840 acpi_bus_unregister_driver(&acpi_thermal_driver
);
1842 remove_proc_entry(ACPI_THERMAL_CLASS
, acpi_root_dir
);
1847 module_init(acpi_thermal_init
);
1848 module_exit(acpi_thermal_exit
);