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/jiffies.h>
41 #include <linux/kmod.h>
42 #include <linux/seq_file.h>
43 #include <linux/reboot.h>
44 #include <linux/device.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 thermal_zone_device *thermal_zone;
198 static const struct file_operations acpi_thermal_state_fops = {
199 .owner = THIS_MODULE,
200 .open = acpi_thermal_state_open_fs,
203 .release = single_release,
206 static const struct file_operations acpi_thermal_temp_fops = {
207 .owner = THIS_MODULE,
208 .open = acpi_thermal_temp_open_fs,
211 .release = single_release,
214 static const struct file_operations acpi_thermal_trip_fops = {
215 .owner = THIS_MODULE,
216 .open = acpi_thermal_trip_open_fs,
219 .release = single_release,
222 static const struct file_operations acpi_thermal_cooling_fops = {
223 .owner = THIS_MODULE,
224 .open = acpi_thermal_cooling_open_fs,
226 .write = acpi_thermal_write_cooling_mode,
228 .release = single_release,
231 static const struct file_operations acpi_thermal_polling_fops = {
232 .owner = THIS_MODULE,
233 .open = acpi_thermal_polling_open_fs,
235 .write = acpi_thermal_write_polling,
237 .release = single_release,
240 /* --------------------------------------------------------------------------
241 Thermal Zone Management
242 -------------------------------------------------------------------------- */
244 static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
246 acpi_status status = AE_OK;
247 unsigned long long tmp;
252 tz->last_temperature = tz->temperature;
254 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
255 if (ACPI_FAILURE(status))
258 tz->temperature = tmp;
259 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
265 static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
267 acpi_status status = AE_OK;
268 unsigned long long tmp;
273 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
274 if (ACPI_FAILURE(status))
277 tz->polling_frequency = tmp;
278 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
279 tz->polling_frequency));
284 static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
290 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
292 tz->thermal_zone->polling_delay = seconds * 1000;
295 thermal_zone_device_update(tz->thermal_zone);
297 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
298 "Polling frequency set to %lu seconds\n",
299 tz->polling_frequency/10));
304 static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
306 acpi_status status = AE_OK;
307 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
308 struct acpi_object_list arg_list = { 1, &arg0 };
309 acpi_handle handle = NULL;
315 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
316 if (ACPI_FAILURE(status)) {
317 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
321 arg0.integer.value = mode;
323 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
324 if (ACPI_FAILURE(status))
330 #define ACPI_TRIPS_CRITICAL 0x01
331 #define ACPI_TRIPS_HOT 0x02
332 #define ACPI_TRIPS_PASSIVE 0x04
333 #define ACPI_TRIPS_ACTIVE 0x08
334 #define ACPI_TRIPS_DEVICES 0x10
336 #define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
337 #define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
339 #define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
340 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
344 * This exception is thrown out in two cases:
345 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
346 * when re-evaluating the AML code.
347 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
348 * We need to re-bind the cooling devices of a thermal zone when this occurs.
350 #define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
352 if (flags != ACPI_TRIPS_INIT) \
353 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
354 "ACPI thermal trip point %s changed\n" \
355 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
358 static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
360 acpi_status status = AE_OK;
361 unsigned long long tmp;
362 struct acpi_handle_list devices;
366 /* Critical Shutdown (required) */
367 if (flag & ACPI_TRIPS_CRITICAL) {
368 status = acpi_evaluate_integer(tz->device->handle,
370 tz->trips.critical.temperature = tmp;
372 * Treat freezing temperatures as invalid as well; some
373 * BIOSes return really low values and cause reboots at startup.
374 * Below zero (Celsius) values clearly aren't right for sure..
375 * ... so lets discard those as invalid.
377 if (ACPI_FAILURE(status) ||
378 tz->trips.critical.temperature <= 2732) {
379 tz->trips.critical.flags.valid = 0;
380 ACPI_EXCEPTION((AE_INFO, status,
381 "No or invalid critical threshold"));
384 tz->trips.critical.flags.valid = 1;
385 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
386 "Found critical threshold [%lu]\n",
387 tz->trips.critical.temperature));
389 if (tz->trips.critical.flags.valid == 1) {
391 tz->trips.critical.flags.valid = 0;
392 } else if (crt > 0) {
393 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
395 * Allow override critical threshold
397 if (crt_k > tz->trips.critical.temperature)
398 printk(KERN_WARNING PREFIX
399 "Critical threshold %d C\n", crt);
400 tz->trips.critical.temperature = crt_k;
405 /* Critical Sleep (optional) */
406 if (flag & ACPI_TRIPS_HOT) {
407 status = acpi_evaluate_integer(tz->device->handle,
409 if (ACPI_FAILURE(status)) {
410 tz->trips.hot.flags.valid = 0;
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
412 "No hot threshold\n"));
414 tz->trips.hot.temperature = tmp;
415 tz->trips.hot.flags.valid = 1;
416 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
417 "Found hot threshold [%lu]\n",
418 tz->trips.critical.temperature));
422 /* Passive (optional) */
423 if (((flag & ACPI_TRIPS_PASSIVE) && tz->trips.passive.flags.valid) ||
424 (flag == ACPI_TRIPS_INIT)) {
425 valid = tz->trips.passive.flags.valid;
428 } else if (psv > 0) {
429 tmp = CELSIUS_TO_KELVIN(psv);
432 status = acpi_evaluate_integer(tz->device->handle,
436 if (ACPI_FAILURE(status))
437 tz->trips.passive.flags.valid = 0;
439 tz->trips.passive.temperature = tmp;
440 tz->trips.passive.flags.valid = 1;
441 if (flag == ACPI_TRIPS_INIT) {
442 status = acpi_evaluate_integer(
443 tz->device->handle, "_TC1",
445 if (ACPI_FAILURE(status))
446 tz->trips.passive.flags.valid = 0;
448 tz->trips.passive.tc1 = tmp;
449 status = acpi_evaluate_integer(
450 tz->device->handle, "_TC2",
452 if (ACPI_FAILURE(status))
453 tz->trips.passive.flags.valid = 0;
455 tz->trips.passive.tc2 = tmp;
456 status = acpi_evaluate_integer(
457 tz->device->handle, "_TSP",
459 if (ACPI_FAILURE(status))
460 tz->trips.passive.flags.valid = 0;
462 tz->trips.passive.tsp = tmp;
466 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
467 memset(&devices, 0, sizeof(struct acpi_handle_list));
468 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
470 if (ACPI_FAILURE(status)) {
471 printk(KERN_WARNING PREFIX
472 "Invalid passive threshold\n");
473 tz->trips.passive.flags.valid = 0;
476 tz->trips.passive.flags.valid = 1;
478 if (memcmp(&tz->trips.passive.devices, &devices,
479 sizeof(struct acpi_handle_list))) {
480 memcpy(&tz->trips.passive.devices, &devices,
481 sizeof(struct acpi_handle_list));
482 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
485 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
486 if (valid != tz->trips.passive.flags.valid)
487 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
490 /* Active (optional) */
491 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
492 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
493 valid = tz->trips.active[i].flags.valid;
496 break; /* disable all active trip points */
498 if ((flag == ACPI_TRIPS_INIT) || ((flag & ACPI_TRIPS_ACTIVE) &&
499 tz->trips.active[i].flags.valid)) {
500 status = acpi_evaluate_integer(tz->device->handle,
502 if (ACPI_FAILURE(status)) {
503 tz->trips.active[i].flags.valid = 0;
509 tz->trips.active[0].temperature =
510 CELSIUS_TO_KELVIN(act);
513 * Don't allow override higher than
514 * the next higher trip point
516 tz->trips.active[i - 1].temperature =
517 (tz->trips.active[i - 2].temperature <
518 CELSIUS_TO_KELVIN(act) ?
519 tz->trips.active[i - 2].temperature :
520 CELSIUS_TO_KELVIN(act));
523 tz->trips.active[i].temperature = tmp;
524 tz->trips.active[i].flags.valid = 1;
529 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
530 memset(&devices, 0, sizeof(struct acpi_handle_list));
531 status = acpi_evaluate_reference(tz->device->handle,
532 name, NULL, &devices);
533 if (ACPI_FAILURE(status)) {
534 printk(KERN_WARNING PREFIX
535 "Invalid active%d threshold\n", i);
536 tz->trips.active[i].flags.valid = 0;
539 tz->trips.active[i].flags.valid = 1;
541 if (memcmp(&tz->trips.active[i].devices, &devices,
542 sizeof(struct acpi_handle_list))) {
543 memcpy(&tz->trips.active[i].devices, &devices,
544 sizeof(struct acpi_handle_list));
545 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
548 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
549 if (valid != tz->trips.active[i].flags.valid)
550 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
552 if (!tz->trips.active[i].flags.valid)
556 if (flag & ACPI_TRIPS_DEVICES) {
557 memset(&devices, 0, sizeof(struct acpi_handle_list));
558 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
560 if (memcmp(&tz->devices, &devices,
561 sizeof(struct acpi_handle_list))) {
562 memcpy(&tz->devices, &devices,
563 sizeof(struct acpi_handle_list));
564 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
571 static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
573 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
576 static void acpi_thermal_check(void *data)
578 struct acpi_thermal *tz = data;
580 thermal_zone_device_update(tz->thermal_zone);
583 /* sys I/F for generic thermal sysfs support */
584 #define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
586 static int thermal_get_temp(struct thermal_zone_device *thermal,
589 struct acpi_thermal *tz = thermal->devdata;
595 result = acpi_thermal_get_temperature(tz);
599 *temp = KELVIN_TO_MILLICELSIUS(tz->temperature);
603 static const char enabled[] = "kernel";
604 static const char disabled[] = "user";
605 static int thermal_get_mode(struct thermal_zone_device *thermal,
606 enum thermal_device_mode *mode)
608 struct acpi_thermal *tz = thermal->devdata;
613 *mode = tz->tz_enabled ? THERMAL_DEVICE_ENABLED :
614 THERMAL_DEVICE_DISABLED;
619 static int thermal_set_mode(struct thermal_zone_device *thermal,
620 enum thermal_device_mode mode)
622 struct acpi_thermal *tz = thermal->devdata;
629 * enable/disable thermal management from ACPI thermal driver
631 if (mode == THERMAL_DEVICE_ENABLED)
633 else if (mode == THERMAL_DEVICE_DISABLED)
638 if (enable != tz->tz_enabled) {
639 tz->tz_enabled = enable;
640 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
641 "%s ACPI thermal control\n",
642 tz->tz_enabled ? enabled : disabled));
643 acpi_thermal_check(tz);
648 static int thermal_get_trip_type(struct thermal_zone_device *thermal,
649 int trip, enum thermal_trip_type *type)
651 struct acpi_thermal *tz = thermal->devdata;
657 if (tz->trips.critical.flags.valid) {
659 *type = THERMAL_TRIP_CRITICAL;
665 if (tz->trips.hot.flags.valid) {
667 *type = THERMAL_TRIP_HOT;
673 if (tz->trips.passive.flags.valid) {
675 *type = THERMAL_TRIP_PASSIVE;
681 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
682 tz->trips.active[i].flags.valid; i++) {
684 *type = THERMAL_TRIP_ACTIVE;
693 static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
694 int trip, unsigned long *temp)
696 struct acpi_thermal *tz = thermal->devdata;
702 if (tz->trips.critical.flags.valid) {
704 *temp = KELVIN_TO_MILLICELSIUS(
705 tz->trips.critical.temperature);
711 if (tz->trips.hot.flags.valid) {
713 *temp = KELVIN_TO_MILLICELSIUS(
714 tz->trips.hot.temperature);
720 if (tz->trips.passive.flags.valid) {
722 *temp = KELVIN_TO_MILLICELSIUS(
723 tz->trips.passive.temperature);
729 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
730 tz->trips.active[i].flags.valid; i++) {
732 *temp = KELVIN_TO_MILLICELSIUS(
733 tz->trips.active[i].temperature);
742 static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
743 unsigned long *temperature) {
744 struct acpi_thermal *tz = thermal->devdata;
746 if (tz->trips.critical.flags.valid) {
747 *temperature = KELVIN_TO_MILLICELSIUS(
748 tz->trips.critical.temperature);
754 static int thermal_notify(struct thermal_zone_device *thermal, int trip,
755 enum thermal_trip_type trip_type)
758 struct acpi_thermal *tz = thermal->devdata;
760 if (trip_type == THERMAL_TRIP_CRITICAL)
761 type = ACPI_THERMAL_NOTIFY_CRITICAL;
762 else if (trip_type == THERMAL_TRIP_HOT)
763 type = ACPI_THERMAL_NOTIFY_HOT;
767 acpi_bus_generate_proc_event(tz->device, type, 1);
768 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
769 dev_name(&tz->device->dev), type, 1);
771 if (trip_type == THERMAL_TRIP_CRITICAL && nocrt)
777 typedef int (*cb)(struct thermal_zone_device *, int,
778 struct thermal_cooling_device *);
779 static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
780 struct thermal_cooling_device *cdev,
783 struct acpi_device *device = cdev->devdata;
784 struct acpi_thermal *tz = thermal->devdata;
785 struct acpi_device *dev;
793 if (tz->trips.critical.flags.valid)
796 if (tz->trips.hot.flags.valid)
799 if (tz->trips.passive.flags.valid) {
801 for (i = 0; i < tz->trips.passive.devices.count;
803 handle = tz->trips.passive.devices.handles[i];
804 status = acpi_bus_get_device(handle, &dev);
805 if (ACPI_SUCCESS(status) && (dev == device)) {
806 result = action(thermal, trip, cdev);
813 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
814 if (!tz->trips.active[i].flags.valid)
818 j < tz->trips.active[i].devices.count;
820 handle = tz->trips.active[i].devices.handles[j];
821 status = acpi_bus_get_device(handle, &dev);
822 if (ACPI_SUCCESS(status) && (dev == device)) {
823 result = action(thermal, trip, cdev);
830 for (i = 0; i < tz->devices.count; i++) {
831 handle = tz->devices.handles[i];
832 status = acpi_bus_get_device(handle, &dev);
833 if (ACPI_SUCCESS(status) && (dev == device)) {
834 result = action(thermal, -1, cdev);
845 acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
846 struct thermal_cooling_device *cdev)
848 return acpi_thermal_cooling_device_cb(thermal, cdev,
849 thermal_zone_bind_cooling_device);
853 acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
854 struct thermal_cooling_device *cdev)
856 return acpi_thermal_cooling_device_cb(thermal, cdev,
857 thermal_zone_unbind_cooling_device);
860 static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
861 .bind = acpi_thermal_bind_cooling_device,
862 .unbind = acpi_thermal_unbind_cooling_device,
863 .get_temp = thermal_get_temp,
864 .get_mode = thermal_get_mode,
865 .set_mode = thermal_set_mode,
866 .get_trip_type = thermal_get_trip_type,
867 .get_trip_temp = thermal_get_trip_temp,
868 .get_crit_temp = thermal_get_crit_temp,
869 .notify = thermal_notify,
872 static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
879 if (tz->trips.critical.flags.valid)
882 if (tz->trips.hot.flags.valid)
885 if (tz->trips.passive.flags.valid)
888 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
889 tz->trips.active[i].flags.valid; i++, trips++);
891 if (tz->trips.passive.flags.valid)
893 thermal_zone_device_register("acpitz", trips, tz,
894 &acpi_thermal_zone_ops,
895 tz->trips.passive.tc1,
896 tz->trips.passive.tc2,
897 tz->trips.passive.tsp*100,
898 tz->polling_frequency*100);
901 thermal_zone_device_register("acpitz", trips, tz,
902 &acpi_thermal_zone_ops,
904 tz->polling_frequency);
905 if (IS_ERR(tz->thermal_zone))
908 result = sysfs_create_link(&tz->device->dev.kobj,
909 &tz->thermal_zone->device.kobj, "thermal_zone");
913 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
914 &tz->device->dev.kobj, "device");
918 status = acpi_attach_data(tz->device->handle,
919 acpi_bus_private_data_handler,
921 if (ACPI_FAILURE(status)) {
922 printk(KERN_ERR PREFIX
923 "Error attaching device data\n");
929 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
930 tz->thermal_zone->id);
934 static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
936 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
937 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
938 thermal_zone_device_unregister(tz->thermal_zone);
939 tz->thermal_zone = NULL;
940 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
944 /* --------------------------------------------------------------------------
946 -------------------------------------------------------------------------- */
948 static struct proc_dir_entry *acpi_thermal_dir;
950 static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
952 struct acpi_thermal *tz = seq->private;
958 seq_puts(seq, "state: ");
960 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
961 && !tz->state.active)
962 seq_puts(seq, "ok\n");
964 if (tz->state.critical)
965 seq_puts(seq, "critical ");
967 seq_puts(seq, "hot ");
968 if (tz->state.passive)
969 seq_puts(seq, "passive ");
970 if (tz->state.active)
971 seq_printf(seq, "active[%d]", tz->state.active_index);
979 static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
981 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
984 static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
987 struct acpi_thermal *tz = seq->private;
993 result = acpi_thermal_get_temperature(tz);
997 seq_printf(seq, "temperature: %ld C\n",
998 KELVIN_TO_CELSIUS(tz->temperature));
1004 static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1006 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1009 static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1011 struct acpi_thermal *tz = seq->private;
1012 struct acpi_device *device;
1022 if (tz->trips.critical.flags.valid)
1023 seq_printf(seq, "critical (S5): %ld C%s",
1024 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1025 nocrt ? " <disabled>\n" : "\n");
1027 if (tz->trips.hot.flags.valid)
1028 seq_printf(seq, "hot (S4): %ld C%s",
1029 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1030 nocrt ? " <disabled>\n" : "\n");
1032 if (tz->trips.passive.flags.valid) {
1034 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1035 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1036 tz->trips.passive.tc1, tz->trips.passive.tc2,
1037 tz->trips.passive.tsp);
1038 for (j = 0; j < tz->trips.passive.devices.count; j++) {
1039 status = acpi_bus_get_device(tz->trips.passive.devices.
1040 handles[j], &device);
1041 seq_printf(seq, "%4.4s ", status ? "" :
1042 acpi_device_bid(device));
1044 seq_puts(seq, "\n");
1047 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1048 if (!(tz->trips.active[i].flags.valid))
1050 seq_printf(seq, "active[%d]: %ld C: devices=",
1052 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
1053 for (j = 0; j < tz->trips.active[i].devices.count; j++){
1054 status = acpi_bus_get_device(tz->trips.active[i].
1057 seq_printf(seq, "%4.4s ", status ? "" :
1058 acpi_device_bid(device));
1060 seq_puts(seq, "\n");
1067 static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1069 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1072 static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1074 struct acpi_thermal *tz = seq->private;
1080 if (!tz->flags.cooling_mode)
1081 seq_puts(seq, "<setting not supported>\n");
1083 seq_puts(seq, "0 - Active; 1 - Passive\n");
1089 static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1091 return single_open(file, acpi_thermal_cooling_seq_show,
1096 acpi_thermal_write_cooling_mode(struct file *file,
1097 const char __user * buffer,
1098 size_t count, loff_t * ppos)
1100 struct seq_file *m = file->private_data;
1101 struct acpi_thermal *tz = m->private;
1103 char mode_string[12] = { '\0' };
1106 if (!tz || (count > sizeof(mode_string) - 1))
1109 if (!tz->flags.cooling_mode)
1112 if (copy_from_user(mode_string, buffer, count))
1115 mode_string[count] = '\0';
1117 result = acpi_thermal_set_cooling_mode(tz,
1118 simple_strtoul(mode_string, NULL,
1123 acpi_thermal_check(tz);
1128 static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1130 struct acpi_thermal *tz = seq->private;
1136 if (!tz->thermal_zone->polling_delay) {
1137 seq_puts(seq, "<polling disabled>\n");
1141 seq_printf(seq, "polling frequency: %d seconds\n",
1142 (tz->thermal_zone->polling_delay / 1000));
1148 static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1150 return single_open(file, acpi_thermal_polling_seq_show,
1155 acpi_thermal_write_polling(struct file *file,
1156 const char __user * buffer,
1157 size_t count, loff_t * ppos)
1159 struct seq_file *m = file->private_data;
1160 struct acpi_thermal *tz = m->private;
1162 char polling_string[12] = { '\0' };
1166 if (!tz || (count > sizeof(polling_string) - 1))
1169 if (copy_from_user(polling_string, buffer, count))
1172 polling_string[count] = '\0';
1174 seconds = simple_strtoul(polling_string, NULL, 0);
1176 result = acpi_thermal_set_polling(tz, seconds);
1180 acpi_thermal_check(tz);
1185 static int acpi_thermal_add_fs(struct acpi_device *device)
1187 struct proc_dir_entry *entry = NULL;
1190 if (!acpi_device_dir(device)) {
1191 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
1193 if (!acpi_device_dir(device))
1198 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1199 S_IRUGO, acpi_device_dir(device),
1200 &acpi_thermal_state_fops,
1201 acpi_driver_data(device));
1205 /* 'temperature' [R] */
1206 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1207 S_IRUGO, acpi_device_dir(device),
1208 &acpi_thermal_temp_fops,
1209 acpi_driver_data(device));
1213 /* 'trip_points' [R] */
1214 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1216 acpi_device_dir(device),
1217 &acpi_thermal_trip_fops,
1218 acpi_driver_data(device));
1222 /* 'cooling_mode' [R/W] */
1223 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1224 S_IFREG | S_IRUGO | S_IWUSR,
1225 acpi_device_dir(device),
1226 &acpi_thermal_cooling_fops,
1227 acpi_driver_data(device));
1231 /* 'polling_frequency' [R/W] */
1232 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1233 S_IFREG | S_IRUGO | S_IWUSR,
1234 acpi_device_dir(device),
1235 &acpi_thermal_polling_fops,
1236 acpi_driver_data(device));
1242 static int acpi_thermal_remove_fs(struct acpi_device *device)
1245 if (acpi_device_dir(device)) {
1246 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1247 acpi_device_dir(device));
1248 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1249 acpi_device_dir(device));
1250 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1251 acpi_device_dir(device));
1252 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1253 acpi_device_dir(device));
1254 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1255 acpi_device_dir(device));
1256 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1257 acpi_device_dir(device) = NULL;
1263 /* --------------------------------------------------------------------------
1265 -------------------------------------------------------------------------- */
1267 static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
1269 struct acpi_thermal *tz = data;
1270 struct acpi_device *device = NULL;
1276 device = tz->device;
1279 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1280 acpi_thermal_check(tz);
1282 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
1283 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
1284 acpi_thermal_check(tz);
1285 acpi_bus_generate_proc_event(device, event, 0);
1286 acpi_bus_generate_netlink_event(device->pnp.device_class,
1287 dev_name(&device->dev), event, 0);
1289 case ACPI_THERMAL_NOTIFY_DEVICES:
1290 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1291 acpi_thermal_check(tz);
1292 acpi_bus_generate_proc_event(device, event, 0);
1293 acpi_bus_generate_netlink_event(device->pnp.device_class,
1294 dev_name(&device->dev), event, 0);
1297 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1298 "Unsupported event [0x%x]\n", event));
1305 static int acpi_thermal_get_info(struct acpi_thermal *tz)
1313 /* Get temperature [_TMP] (required) */
1314 result = acpi_thermal_get_temperature(tz);
1318 /* Get trip points [_CRT, _PSV, etc.] (required) */
1319 result = acpi_thermal_get_trip_points(tz);
1323 /* Set the cooling mode [_SCP] to active cooling (default) */
1324 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
1326 tz->flags.cooling_mode = 1;
1328 /* Get default polling frequency [_TZP] (optional) */
1330 tz->polling_frequency = tzp;
1332 acpi_thermal_get_polling_frequency(tz);
1337 static int acpi_thermal_add(struct acpi_device *device)
1340 acpi_status status = AE_OK;
1341 struct acpi_thermal *tz = NULL;
1347 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
1351 tz->device = device;
1352 strcpy(tz->name, device->pnp.bus_id);
1353 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1354 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1355 device->driver_data = tz;
1356 mutex_init(&tz->lock);
1359 result = acpi_thermal_get_info(tz);
1363 result = acpi_thermal_register_thermal_zone(tz);
1367 result = acpi_thermal_add_fs(device);
1369 goto unregister_thermal_zone;
1371 status = acpi_install_notify_handler(device->handle,
1373 acpi_thermal_notify, tz);
1374 if (ACPI_FAILURE(status)) {
1379 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
1380 acpi_device_name(device), acpi_device_bid(device),
1381 KELVIN_TO_CELSIUS(tz->temperature));
1385 acpi_thermal_remove_fs(device);
1386 unregister_thermal_zone:
1387 thermal_zone_device_unregister(tz->thermal_zone);
1394 static int acpi_thermal_remove(struct acpi_device *device, int type)
1396 acpi_status status = AE_OK;
1397 struct acpi_thermal *tz = NULL;
1399 if (!device || !acpi_driver_data(device))
1402 tz = acpi_driver_data(device);
1404 status = acpi_remove_notify_handler(device->handle,
1406 acpi_thermal_notify);
1408 acpi_thermal_remove_fs(device);
1409 acpi_thermal_unregister_thermal_zone(tz);
1410 mutex_destroy(&tz->lock);
1415 static int acpi_thermal_resume(struct acpi_device *device)
1417 struct acpi_thermal *tz = NULL;
1418 int i, j, power_state, result;
1421 if (!device || !acpi_driver_data(device))
1424 tz = acpi_driver_data(device);
1426 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1427 if (!(&tz->trips.active[i]))
1429 if (!tz->trips.active[i].flags.valid)
1431 tz->trips.active[i].flags.enabled = 1;
1432 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1433 result = acpi_bus_get_power(tz->trips.active[i].devices.
1434 handles[j], &power_state);
1435 if (result || (power_state != ACPI_STATE_D0)) {
1436 tz->trips.active[i].flags.enabled = 0;
1440 tz->state.active |= tz->trips.active[i].flags.enabled;
1443 acpi_thermal_check(tz);
1448 static int thermal_act(const struct dmi_system_id *d) {
1451 printk(KERN_NOTICE "ACPI: %s detected: "
1452 "disabling all active thermal trip points\n", d->ident);
1457 static int thermal_nocrt(const struct dmi_system_id *d) {
1459 printk(KERN_NOTICE "ACPI: %s detected: "
1460 "disabling all critical thermal trip point actions.\n", d->ident);
1464 static int thermal_tzp(const struct dmi_system_id *d) {
1467 printk(KERN_NOTICE "ACPI: %s detected: "
1468 "enabling thermal zone polling\n", d->ident);
1469 tzp = 300; /* 300 dS = 30 Seconds */
1473 static int thermal_psv(const struct dmi_system_id *d) {
1476 printk(KERN_NOTICE "ACPI: %s detected: "
1477 "disabling all passive thermal trip points\n", d->ident);
1483 static struct dmi_system_id thermal_dmi_table[] __initdata = {
1485 * Award BIOS on this AOpen makes thermal control almost worthless.
1486 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1489 .callback = thermal_act,
1490 .ident = "AOpen i915GMm-HFS",
1492 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1493 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1497 .callback = thermal_psv,
1498 .ident = "AOpen i915GMm-HFS",
1500 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1501 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1505 .callback = thermal_tzp,
1506 .ident = "AOpen i915GMm-HFS",
1508 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1509 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1513 .callback = thermal_nocrt,
1514 .ident = "Gigabyte GA-7ZX",
1516 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1517 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1523 static int __init acpi_thermal_init(void)
1527 dmi_check_system(thermal_dmi_table);
1530 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1533 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1534 if (!acpi_thermal_dir)
1537 result = acpi_bus_register_driver(&acpi_thermal_driver);
1539 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1546 static void __exit acpi_thermal_exit(void)
1549 acpi_bus_unregister_driver(&acpi_thermal_driver);
1551 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1556 module_init(acpi_thermal_init);
1557 module_exit(acpi_thermal_exit);