]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/thermal.c
Merge branches 'release', 'acpica', 'bugzilla-10224', 'bugzilla-9772', 'bugzilla...
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / thermal.c
CommitLineData
1da177e4
LT
1/*
2 * acpi_thermal.c - ACPI Thermal Zone Driver ($Revision: 41 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
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.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 *
25 * This driver fully implements the ACPI thermal policy as described in the
26 * ACPI 2.0 Specification.
27 *
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.
31 *
32 */
33
34#include <linux/kernel.h>
35#include <linux/module.h>
0b5bfa1c 36#include <linux/dmi.h>
1da177e4
LT
37#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/proc_fs.h>
cd354f1a
TS
40#include <linux/timer.h>
41#include <linux/jiffies.h>
1da177e4
LT
42#include <linux/kmod.h>
43#include <linux/seq_file.h>
10a0a8d4 44#include <linux/reboot.h>
1da177e4 45#include <asm/uaccess.h>
3f655ef8 46#include <linux/thermal.h>
1da177e4
LT
47#include <acpi/acpi_bus.h>
48#include <acpi/acpi_drivers.h>
49
50#define ACPI_THERMAL_COMPONENT 0x04000000
51#define ACPI_THERMAL_CLASS "thermal_zone"
1da177e4
LT
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
1da177e4
LT
64
65#define ACPI_THERMAL_MAX_ACTIVE 10
66#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
67
1da177e4 68#define _COMPONENT ACPI_THERMAL_COMPONENT
f52fd66d 69ACPI_MODULE_NAME("thermal");
1da177e4 70
1cbf4c56 71MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 72MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
1da177e4
LT
73MODULE_LICENSE("GPL");
74
f8707ec9
LB
75static int act;
76module_param(act, int, 0644);
3c1d36da 77MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
f8707ec9 78
c52a7419
LB
79static int crt;
80module_param(crt, int, 0644);
81MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
82
1da177e4 83static int tzp;
730ff34d 84module_param(tzp, int, 0444);
3c1d36da 85MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
1da177e4 86
f5487145
LB
87static int nocrt;
88module_param(nocrt, int, 0);
8c99fdce 89MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
f5487145 90
72b33ef8
LB
91static int off;
92module_param(off, int, 0);
3c1d36da 93MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
72b33ef8 94
a70cdc52
LB
95static int psv;
96module_param(psv, int, 0644);
3c1d36da 97MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
a70cdc52 98
4be44fcd
LB
99static int acpi_thermal_add(struct acpi_device *device);
100static int acpi_thermal_remove(struct acpi_device *device, int type);
5d9464a4 101static int acpi_thermal_resume(struct acpi_device *device);
1da177e4
LT
102static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
103static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
104static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
1da177e4 105static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
4be44fcd
LB
106static ssize_t acpi_thermal_write_cooling_mode(struct file *,
107 const char __user *, size_t,
108 loff_t *);
1da177e4 109static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
4be44fcd
LB
110static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
111 size_t, loff_t *);
1da177e4 112
1ba90e3a
TR
113static const struct acpi_device_id thermal_device_ids[] = {
114 {ACPI_THERMAL_HID, 0},
115 {"", 0},
116};
117MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
118
1da177e4 119static struct acpi_driver acpi_thermal_driver = {
c2b6705b 120 .name = "thermal",
4be44fcd 121 .class = ACPI_THERMAL_CLASS,
1ba90e3a 122 .ids = thermal_device_ids,
4be44fcd
LB
123 .ops = {
124 .add = acpi_thermal_add,
125 .remove = acpi_thermal_remove,
74ce1468 126 .resume = acpi_thermal_resume,
4be44fcd 127 },
1da177e4
LT
128};
129
130struct acpi_thermal_state {
4be44fcd
LB
131 u8 critical:1;
132 u8 hot:1;
133 u8 passive:1;
134 u8 active:1;
135 u8 reserved:4;
136 int active_index;
1da177e4
LT
137};
138
139struct acpi_thermal_state_flags {
4be44fcd
LB
140 u8 valid:1;
141 u8 enabled:1;
142 u8 reserved:6;
1da177e4
LT
143};
144
145struct acpi_thermal_critical {
146 struct acpi_thermal_state_flags flags;
4be44fcd 147 unsigned long temperature;
1da177e4
LT
148};
149
150struct acpi_thermal_hot {
151 struct acpi_thermal_state_flags flags;
4be44fcd 152 unsigned long temperature;
1da177e4
LT
153};
154
155struct acpi_thermal_passive {
156 struct acpi_thermal_state_flags flags;
4be44fcd
LB
157 unsigned long temperature;
158 unsigned long tc1;
159 unsigned long tc2;
160 unsigned long tsp;
161 struct acpi_handle_list devices;
1da177e4
LT
162};
163
164struct acpi_thermal_active {
165 struct acpi_thermal_state_flags flags;
4be44fcd
LB
166 unsigned long temperature;
167 struct acpi_handle_list devices;
1da177e4
LT
168};
169
170struct acpi_thermal_trips {
171 struct acpi_thermal_critical critical;
4be44fcd 172 struct acpi_thermal_hot hot;
1da177e4
LT
173 struct acpi_thermal_passive passive;
174 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
175};
176
177struct acpi_thermal_flags {
4be44fcd
LB
178 u8 cooling_mode:1; /* _SCP */
179 u8 devices:1; /* _TZD */
180 u8 reserved:6;
1da177e4
LT
181};
182
183struct acpi_thermal {
8348e1b1 184 struct acpi_device * device;
4be44fcd
LB
185 acpi_bus_id name;
186 unsigned long temperature;
187 unsigned long last_temperature;
188 unsigned long polling_frequency;
4be44fcd 189 volatile u8 zombie;
1da177e4
LT
190 struct acpi_thermal_flags flags;
191 struct acpi_thermal_state state;
192 struct acpi_thermal_trips trips;
4be44fcd
LB
193 struct acpi_handle_list devices;
194 struct timer_list timer;
3f655ef8
ZR
195 struct thermal_zone_device *thermal_zone;
196 int tz_enabled;
6e215785 197 struct mutex lock;
1da177e4
LT
198};
199
d7508032 200static const struct file_operations acpi_thermal_state_fops = {
4be44fcd
LB
201 .open = acpi_thermal_state_open_fs,
202 .read = seq_read,
203 .llseek = seq_lseek,
204 .release = single_release,
1da177e4
LT
205};
206
d7508032 207static const struct file_operations acpi_thermal_temp_fops = {
4be44fcd
LB
208 .open = acpi_thermal_temp_open_fs,
209 .read = seq_read,
210 .llseek = seq_lseek,
211 .release = single_release,
1da177e4
LT
212};
213
d7508032 214static const struct file_operations acpi_thermal_trip_fops = {
4be44fcd
LB
215 .open = acpi_thermal_trip_open_fs,
216 .read = seq_read,
4be44fcd
LB
217 .llseek = seq_lseek,
218 .release = single_release,
1da177e4
LT
219};
220
d7508032 221static const struct file_operations acpi_thermal_cooling_fops = {
4be44fcd
LB
222 .open = acpi_thermal_cooling_open_fs,
223 .read = seq_read,
224 .write = acpi_thermal_write_cooling_mode,
225 .llseek = seq_lseek,
226 .release = single_release,
1da177e4
LT
227};
228
d7508032 229static const struct file_operations acpi_thermal_polling_fops = {
4be44fcd
LB
230 .open = acpi_thermal_polling_open_fs,
231 .read = seq_read,
232 .write = acpi_thermal_write_polling,
233 .llseek = seq_lseek,
234 .release = single_release,
1da177e4
LT
235};
236
237/* --------------------------------------------------------------------------
238 Thermal Zone Management
239 -------------------------------------------------------------------------- */
240
4be44fcd 241static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
1da177e4 242{
4be44fcd 243 acpi_status status = AE_OK;
1da177e4 244
1da177e4
LT
245
246 if (!tz)
d550d98d 247 return -EINVAL;
1da177e4
LT
248
249 tz->last_temperature = tz->temperature;
250
4be44fcd 251 status =
38ba7c9e 252 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
1da177e4 253 if (ACPI_FAILURE(status))
d550d98d 254 return -ENODEV;
1da177e4 255
4be44fcd
LB
256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
257 tz->temperature));
1da177e4 258
d550d98d 259 return 0;
1da177e4
LT
260}
261
4be44fcd 262static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
1da177e4 263{
4be44fcd 264 acpi_status status = AE_OK;
1da177e4 265
1da177e4
LT
266
267 if (!tz)
d550d98d 268 return -EINVAL;
1da177e4 269
4be44fcd 270 status =
38ba7c9e 271 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
4be44fcd 272 &tz->polling_frequency);
1da177e4 273 if (ACPI_FAILURE(status))
d550d98d 274 return -ENODEV;
1da177e4 275
4be44fcd
LB
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
277 tz->polling_frequency));
1da177e4 278
d550d98d 279 return 0;
1da177e4
LT
280}
281
4be44fcd 282static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
1da177e4 283{
1da177e4
LT
284
285 if (!tz)
d550d98d 286 return -EINVAL;
1da177e4
LT
287
288 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
289
4be44fcd
LB
290 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
291 "Polling frequency set to %lu seconds\n",
636cedf9 292 tz->polling_frequency/10));
1da177e4 293
d550d98d 294 return 0;
1da177e4
LT
295}
296
4be44fcd 297static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
1da177e4 298{
4be44fcd
LB
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;
1da177e4 303
1da177e4
LT
304
305 if (!tz)
d550d98d 306 return -EINVAL;
1da177e4 307
38ba7c9e 308 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
1da177e4
LT
309 if (ACPI_FAILURE(status)) {
310 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
d550d98d 311 return -ENODEV;
1da177e4
LT
312 }
313
314 arg0.integer.value = mode;
315
316 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
317 if (ACPI_FAILURE(status))
d550d98d 318 return -ENODEV;
1da177e4 319
d550d98d 320 return 0;
1da177e4
LT
321}
322
ce44e197
ZR
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
1da177e4 328
ce44e197
ZR
329#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
330#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
1da177e4 331
ce44e197
ZR
332#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
333 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
334 ACPI_TRIPS_DEVICES)
1da177e4 335
ce44e197
ZR
336/*
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.
342 */
343#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
344do { \
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)); \
349} while (0)
350
351static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
352{
353 acpi_status status = AE_OK;
354 struct acpi_handle_list devices;
355 int valid = 0;
356 int i;
1da177e4 357
ce44e197
ZR
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)) {
c52a7419 363 tz->trips.critical.flags.valid = 0;
ce44e197
ZR
364 ACPI_EXCEPTION((AE_INFO, status,
365 "No critical threshold"));
366 return -ENODEV;
367 } else {
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));
372 }
373 if (tz->trips.critical.flags.valid == 1) {
374 if (crt == -1) {
375 tz->trips.critical.flags.valid = 0;
376 } else if (crt > 0) {
377 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
378 /*
379 * Allow override to lower critical threshold
380 */
381 if (crt_k < tz->trips.critical.temperature)
382 tz->trips.critical.temperature = crt_k;
383 }
c52a7419
LB
384 }
385 }
386
1da177e4 387 /* Critical Sleep (optional) */
ce44e197 388 if (flag & ACPI_TRIPS_HOT) {
a70cdc52 389 status = acpi_evaluate_integer(tz->device->handle,
ce44e197
ZR
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"));
395 } else {
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));
400 }
a70cdc52
LB
401 }
402
ce44e197
ZR
403 /* Passive (optional) */
404 if (flag & ACPI_TRIPS_PASSIVE) {
405 valid = tz->trips.passive.flags.valid;
406 if (psv == -1) {
407 status = AE_SUPPORT;
408 } else if (psv > 0) {
409 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
410 status = AE_OK;
411 } else {
412 status = acpi_evaluate_integer(tz->device->handle,
413 "_PSV", NULL, &tz->trips.passive.temperature);
414 }
1da177e4 415
1da177e4
LT
416 if (ACPI_FAILURE(status))
417 tz->trips.passive.flags.valid = 0;
ce44e197
ZR
418 else {
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;
436 }
437 }
438 }
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",
442 NULL, &devices);
1da177e4
LT
443 if (ACPI_FAILURE(status))
444 tz->trips.passive.flags.valid = 0;
1da177e4 445 else
ce44e197 446 tz->trips.passive.flags.valid = 1;
1da177e4 447
ce44e197
ZR
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");
453 }
454 }
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");
458 }
1da177e4 459
ce44e197 460 /* Active (optional) */
4be44fcd 461 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
4be44fcd 462 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
ce44e197 463 valid = tz->trips.active[i].flags.valid;
1da177e4 464
f8707ec9 465 if (act == -1)
ce44e197
ZR
466 break; /* disable all active trip points */
467
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;
473 if (i == 0)
474 break;
475 if (act <= 0)
476 break;
477 if (i == 1)
478 tz->trips.active[0].temperature =
479 CELSIUS_TO_KELVIN(act);
480 else
481 /*
482 * Don't allow override higher than
483 * the next higher trip point
484 */
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));
f8707ec9 490 break;
ce44e197
ZR
491 } else
492 tz->trips.active[i].flags.valid = 1;
f8707ec9 493 }
1da177e4
LT
494
495 name[2] = 'L';
ce44e197
ZR
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;
502 else
503 tz->trips.active[i].flags.valid = 1;
504
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");
510 }
511 }
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");
515
516 if (!tz->trips.active[i].flags.valid)
517 break;
518 }
519
520 if (flag & ACPI_TRIPS_DEVICES) {
521 memset(&devices, 0, sizeof(struct acpi_handle_list));
522 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
523 NULL, &devices);
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");
529 }
1da177e4
LT
530 }
531
d550d98d 532 return 0;
1da177e4
LT
533}
534
ce44e197 535static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
1da177e4 536{
ce44e197 537 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
1da177e4
LT
538}
539
4be44fcd 540static int acpi_thermal_critical(struct acpi_thermal *tz)
1da177e4 541{
223630fe 542 if (!tz || !tz->trips.critical.flags.valid)
d550d98d 543 return -EINVAL;
1da177e4
LT
544
545 if (tz->temperature >= tz->trips.critical.temperature) {
cece9296 546 printk(KERN_WARNING PREFIX "Critical trip point\n");
1da177e4 547 tz->trips.critical.flags.enabled = 1;
4be44fcd 548 } else if (tz->trips.critical.flags.enabled)
1da177e4
LT
549 tz->trips.critical.flags.enabled = 0;
550
14e04fb3 551 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
4be44fcd 552 tz->trips.critical.flags.enabled);
962ce8ca
ZR
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);
1da177e4 557
223630fe
ZR
558 /* take no action if nocrt is set */
559 if(!nocrt) {
560 printk(KERN_EMERG
561 "Critical temperature reached (%ld C), shutting down.\n",
562 KELVIN_TO_CELSIUS(tz->temperature));
563 orderly_poweroff(true);
564 }
1da177e4 565
d550d98d 566 return 0;
1da177e4
LT
567}
568
4be44fcd 569static int acpi_thermal_hot(struct acpi_thermal *tz)
1da177e4 570{
223630fe 571 if (!tz || !tz->trips.hot.flags.valid)
d550d98d 572 return -EINVAL;
1da177e4
LT
573
574 if (tz->temperature >= tz->trips.hot.temperature) {
cece9296 575 printk(KERN_WARNING PREFIX "Hot trip point\n");
1da177e4 576 tz->trips.hot.flags.enabled = 1;
4be44fcd 577 } else if (tz->trips.hot.flags.enabled)
1da177e4
LT
578 tz->trips.hot.flags.enabled = 0;
579
14e04fb3 580 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
4be44fcd 581 tz->trips.hot.flags.enabled);
962ce8ca
ZR
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);
1da177e4 586
223630fe 587 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
1da177e4 588
d550d98d 589 return 0;
1da177e4
LT
590}
591
1cbf4c56 592static void acpi_thermal_passive(struct acpi_thermal *tz)
1da177e4 593{
1cbf4c56 594 int result = 1;
1da177e4 595 struct acpi_thermal_passive *passive = NULL;
4be44fcd
LB
596 int trend = 0;
597 int i = 0;
1da177e4 598
1da177e4
LT
599
600 if (!tz || !tz->trips.passive.flags.valid)
1cbf4c56 601 return;
1da177e4
LT
602
603 passive = &(tz->trips.passive);
604
605 /*
606 * Above Trip?
607 * -----------
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.
611 */
612 if (tz->temperature >= passive->temperature) {
4be44fcd
LB
613 trend =
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));
1cbf4c56 621 passive->flags.enabled = 1;
1da177e4
LT
622 /* Heating up? */
623 if (trend > 0)
4be44fcd
LB
624 for (i = 0; i < passive->devices.count; i++)
625 acpi_processor_set_thermal_limit(passive->
626 devices.
627 handles[i],
628 ACPI_PROCESSOR_LIMIT_INCREMENT);
1da177e4 629 /* Cooling off? */
1cbf4c56 630 else if (trend < 0) {
4be44fcd 631 for (i = 0; i < passive->devices.count; i++)
1cbf4c56
TR
632 /*
633 * assume that we are on highest
634 * freq/lowest thrott and can leave
635 * passive mode, even in error case
636 */
637 if (!acpi_processor_set_thermal_limit
638 (passive->devices.handles[i],
639 ACPI_PROCESSOR_LIMIT_DECREMENT))
640 result = 0;
641 /*
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)
647 */
648 if (result) {
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"));
653 }
654 }
655 return;
1da177e4
LT
656 }
657
658 /*
659 * Below Trip?
660 * -----------
661 * Implement passive cooling hysteresis to slowly increase performance
662 * and avoid thrashing around the passive trip point. Note that we
663 * assume symmetry.
664 */
1cbf4c56
TR
665 if (!passive->flags.enabled)
666 return;
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))
671 result = 0;
672 if (result) {
673 passive->flags.enabled = 0;
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
675 "Disabling passive cooling (zone is cool)\n"));
1da177e4 676 }
1da177e4
LT
677}
678
1cbf4c56 679static void acpi_thermal_active(struct acpi_thermal *tz)
1da177e4 680{
4be44fcd 681 int result = 0;
1da177e4 682 struct acpi_thermal_active *active = NULL;
4be44fcd
LB
683 int i = 0;
684 int j = 0;
685 unsigned long maxtemp = 0;
1da177e4 686
1da177e4
LT
687
688 if (!tz)
1cbf4c56 689 return;
1da177e4 690
4be44fcd 691 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1da177e4
LT
692 active = &(tz->trips.active[i]);
693 if (!active || !active->flags.valid)
694 break;
1da177e4 695 if (tz->temperature >= active->temperature) {
1cbf4c56
TR
696 /*
697 * Above Threshold?
698 * ----------------
699 * If not already enabled, turn ON all cooling devices
700 * associated with this active threshold.
701 */
1da177e4 702 if (active->temperature > maxtemp)
1cbf4c56
TR
703 tz->state.active_index = i;
704 maxtemp = active->temperature;
705 if (active->flags.enabled)
706 continue;
1da177e4 707 for (j = 0; j < active->devices.count; j++) {
4be44fcd
LB
708 result =
709 acpi_bus_set_power(active->devices.
710 handles[j],
1cbf4c56 711 ACPI_STATE_D0);
1da177e4 712 if (result) {
cece9296
LB
713 printk(KERN_WARNING PREFIX
714 "Unable to turn cooling device [%p] 'on'\n",
a6fc6720 715 active->devices.
cece9296 716 handles[j]);
1da177e4
LT
717 continue;
718 }
1cbf4c56 719 active->flags.enabled = 1;
4be44fcd 720 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1cbf4c56 721 "Cooling device [%p] now 'on'\n",
4be44fcd 722 active->devices.handles[j]));
1da177e4 723 }
1cbf4c56
TR
724 continue;
725 }
726 if (!active->flags.enabled)
727 continue;
728 /*
729 * Below Threshold?
730 * ----------------
731 * Turn OFF all cooling devices associated with this
732 * threshold.
733 */
734 for (j = 0; j < active->devices.count; j++) {
735 result = acpi_bus_set_power(active->devices.handles[j],
736 ACPI_STATE_D3);
737 if (result) {
cece9296
LB
738 printk(KERN_WARNING PREFIX
739 "Unable to turn cooling device [%p] 'off'\n",
740 active->devices.handles[j]);
1cbf4c56
TR
741 continue;
742 }
743 active->flags.enabled = 0;
744 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
745 "Cooling device [%p] now 'off'\n",
746 active->devices.handles[j]));
1da177e4
LT
747 }
748 }
1da177e4
LT
749}
750
4be44fcd 751static void acpi_thermal_check(void *context);
1da177e4 752
4be44fcd 753static void acpi_thermal_run(unsigned long data)
1da177e4
LT
754{
755 struct acpi_thermal *tz = (struct acpi_thermal *)data;
756 if (!tz->zombie)
b8d35192 757 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
1da177e4
LT
758}
759
4be44fcd 760static void acpi_thermal_check(void *data)
1da177e4 761{
4be44fcd 762 int result = 0;
50dd0969 763 struct acpi_thermal *tz = data;
4be44fcd 764 unsigned long sleep_time = 0;
21bc42ab 765 unsigned long timeout_jiffies = 0;
4be44fcd 766 int i = 0;
1da177e4
LT
767 struct acpi_thermal_state state;
768
1da177e4
LT
769
770 if (!tz) {
6468463a 771 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
d550d98d 772 return;
1da177e4
LT
773 }
774
6e215785
AS
775 /* Check if someone else is already running */
776 if (!mutex_trylock(&tz->lock))
777 return;
778
1da177e4
LT
779 state = tz->state;
780
781 result = acpi_thermal_get_temperature(tz);
782 if (result)
6e215785 783 goto unlock;
4be44fcd 784
3f655ef8
ZR
785 if (!tz->tz_enabled)
786 goto unlock;
787
1da177e4 788 memset(&tz->state, 0, sizeof(tz->state));
4be44fcd 789
1da177e4
LT
790 /*
791 * Check Trip Points
792 * -----------------
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).
797 */
798 if (tz->trips.critical.flags.valid)
4be44fcd
LB
799 state.critical |=
800 (tz->temperature >= tz->trips.critical.temperature);
1da177e4
LT
801 if (tz->trips.hot.flags.valid)
802 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
803 if (tz->trips.passive.flags.valid)
4be44fcd
LB
804 state.passive |=
805 (tz->temperature >= tz->trips.passive.temperature);
806 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
1da177e4 807 if (tz->trips.active[i].flags.valid)
4be44fcd
LB
808 state.active |=
809 (tz->temperature >=
810 tz->trips.active[i].temperature);
1da177e4
LT
811
812 /*
813 * Invoke Policy
814 * -------------
815 * Separated from the above check to allow individual policy to
816 * determine when to exit a given state.
817 */
818 if (state.critical)
819 acpi_thermal_critical(tz);
820 if (state.hot)
821 acpi_thermal_hot(tz);
822 if (state.passive)
823 acpi_thermal_passive(tz);
824 if (state.active)
825 acpi_thermal_active(tz);
826
827 /*
828 * Calculate State
829 * ---------------
830 * Again, separated from the above two to allow independent policy
831 * decisions.
832 */
1cbf4c56
TR
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;
4be44fcd 837 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
1cbf4c56 838 tz->state.active |= tz->trips.active[i].flags.enabled;
1da177e4
LT
839
840 /*
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).
848 */
21bc42ab 849 if (tz->state.passive) {
1da177e4 850 sleep_time = tz->trips.passive.tsp * 100;
21bc42ab
LB
851 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
852 } else if (tz->polling_frequency > 0) {
1da177e4 853 sleep_time = tz->polling_frequency * 100;
21bc42ab
LB
854 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
855 }
1da177e4 856
4be44fcd
LB
857 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
858 tz->name, tz->temperature, sleep_time));
1da177e4
LT
859
860 /*
861 * Schedule Next Poll
862 * ------------------
863 */
864 if (!sleep_time) {
865 if (timer_pending(&(tz->timer)))
866 del_timer(&(tz->timer));
4be44fcd 867 } else {
1da177e4 868 if (timer_pending(&(tz->timer)))
21bc42ab 869 mod_timer(&(tz->timer), timeout_jiffies);
1da177e4 870 else {
4be44fcd 871 tz->timer.data = (unsigned long)tz;
1da177e4 872 tz->timer.function = acpi_thermal_run;
21bc42ab 873 tz->timer.expires = timeout_jiffies;
1da177e4
LT
874 add_timer(&(tz->timer));
875 }
876 }
6e215785
AS
877 unlock:
878 mutex_unlock(&tz->lock);
1da177e4
LT
879}
880
3f655ef8 881/* sys I/F for generic thermal sysfs support */
5e012760
ZR
882#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
883
3f655ef8
ZR
884static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
885{
886 struct acpi_thermal *tz = thermal->devdata;
76ecb4f2 887 int result;
3f655ef8
ZR
888
889 if (!tz)
890 return -EINVAL;
891
76ecb4f2
ZR
892 result = acpi_thermal_get_temperature(tz);
893 if (result)
894 return result;
895
5e012760 896 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
3f655ef8
ZR
897}
898
899static const char enabled[] = "kernel";
900static const char disabled[] = "user";
901static int thermal_get_mode(struct thermal_zone_device *thermal,
902 char *buf)
903{
904 struct acpi_thermal *tz = thermal->devdata;
905
906 if (!tz)
907 return -EINVAL;
908
909 return sprintf(buf, "%s\n", tz->tz_enabled ?
910 enabled : disabled);
911}
912
913static int thermal_set_mode(struct thermal_zone_device *thermal,
914 const char *buf)
915{
916 struct acpi_thermal *tz = thermal->devdata;
917 int enable;
918
919 if (!tz)
920 return -EINVAL;
921
922 /*
923 * enable/disable thermal management from ACPI thermal driver
924 */
925 if (!strncmp(buf, enabled, sizeof enabled - 1))
926 enable = 1;
927 else if (!strncmp(buf, disabled, sizeof disabled - 1))
928 enable = 0;
929 else
930 return -EINVAL;
931
932 if (enable != tz->tz_enabled) {
933 tz->tz_enabled = enable;
934 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
935 "%s ACPI thermal control\n",
936 tz->tz_enabled ? enabled : disabled));
937 acpi_thermal_check(tz);
938 }
939 return 0;
940}
941
942static int thermal_get_trip_type(struct thermal_zone_device *thermal,
943 int trip, char *buf)
944{
945 struct acpi_thermal *tz = thermal->devdata;
946 int i;
947
948 if (!tz || trip < 0)
949 return -EINVAL;
950
951 if (tz->trips.critical.flags.valid) {
952 if (!trip)
953 return sprintf(buf, "critical\n");
954 trip--;
955 }
956
957 if (tz->trips.hot.flags.valid) {
958 if (!trip)
959 return sprintf(buf, "hot\n");
960 trip--;
961 }
962
963 if (tz->trips.passive.flags.valid) {
964 if (!trip)
965 return sprintf(buf, "passive\n");
966 trip--;
967 }
968
969 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
970 tz->trips.active[i].flags.valid; i++) {
971 if (!trip)
972 return sprintf(buf, "active%d\n", i);
973 trip--;
974 }
975
976 return -EINVAL;
977}
978
979static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
980 int trip, char *buf)
981{
982 struct acpi_thermal *tz = thermal->devdata;
983 int i;
984
985 if (!tz || trip < 0)
986 return -EINVAL;
987
988 if (tz->trips.critical.flags.valid) {
989 if (!trip)
5e012760 990 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
3f655ef8
ZR
991 tz->trips.critical.temperature));
992 trip--;
993 }
994
995 if (tz->trips.hot.flags.valid) {
996 if (!trip)
5e012760 997 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
3f655ef8
ZR
998 tz->trips.hot.temperature));
999 trip--;
1000 }
1001
1002 if (tz->trips.passive.flags.valid) {
1003 if (!trip)
5e012760 1004 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
3f655ef8
ZR
1005 tz->trips.passive.temperature));
1006 trip--;
1007 }
1008
1009 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1010 tz->trips.active[i].flags.valid; i++) {
1011 if (!trip)
5e012760 1012 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
3f655ef8
ZR
1013 tz->trips.active[i].temperature));
1014 trip--;
1015 }
1016
1017 return -EINVAL;
1018}
1019
9ec732ff
ZR
1020static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
1021 unsigned long *temperature) {
1022 struct acpi_thermal *tz = thermal->devdata;
1023
1024 if (tz->trips.critical.flags.valid) {
1025 *temperature = KELVIN_TO_MILLICELSIUS(
1026 tz->trips.critical.temperature);
1027 return 0;
1028 } else
1029 return -EINVAL;
1030}
1031
3f655ef8
ZR
1032typedef int (*cb)(struct thermal_zone_device *, int,
1033 struct thermal_cooling_device *);
1034static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1035 struct thermal_cooling_device *cdev,
1036 cb action)
1037{
1038 struct acpi_device *device = cdev->devdata;
1039 struct acpi_thermal *tz = thermal->devdata;
653a00c9
ZR
1040 struct acpi_device *dev;
1041 acpi_status status;
1042 acpi_handle handle;
3f655ef8
ZR
1043 int i;
1044 int j;
1045 int trip = -1;
1046 int result = 0;
1047
1048 if (tz->trips.critical.flags.valid)
1049 trip++;
1050
1051 if (tz->trips.hot.flags.valid)
1052 trip++;
1053
1054 if (tz->trips.passive.flags.valid) {
1055 trip++;
1056 for (i = 0; i < tz->trips.passive.devices.count;
1057 i++) {
653a00c9
ZR
1058 handle = tz->trips.passive.devices.handles[i];
1059 status = acpi_bus_get_device(handle, &dev);
1060 if (ACPI_SUCCESS(status) && (dev == device)) {
1061 result = action(thermal, trip, cdev);
1062 if (result)
1063 goto failed;
1064 }
3f655ef8
ZR
1065 }
1066 }
1067
1068 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1069 if (!tz->trips.active[i].flags.valid)
1070 break;
1071 trip++;
1072 for (j = 0;
1073 j < tz->trips.active[i].devices.count;
1074 j++) {
653a00c9
ZR
1075 handle = tz->trips.active[i].devices.handles[j];
1076 status = acpi_bus_get_device(handle, &dev);
1077 if (ACPI_SUCCESS(status) && (dev == device)) {
1078 result = action(thermal, trip, cdev);
1079 if (result)
1080 goto failed;
1081 }
3f655ef8
ZR
1082 }
1083 }
1084
1085 for (i = 0; i < tz->devices.count; i++) {
653a00c9
ZR
1086 handle = tz->devices.handles[i];
1087 status = acpi_bus_get_device(handle, &dev);
1088 if (ACPI_SUCCESS(status) && (dev == device)) {
1089 result = action(thermal, -1, cdev);
1090 if (result)
1091 goto failed;
1092 }
3f655ef8
ZR
1093 }
1094
1095failed:
1096 return result;
1097}
1098
1099static int
1100acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1101 struct thermal_cooling_device *cdev)
1102{
1103 return acpi_thermal_cooling_device_cb(thermal, cdev,
1104 thermal_zone_bind_cooling_device);
1105}
1106
1107static int
1108acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1109 struct thermal_cooling_device *cdev)
1110{
1111 return acpi_thermal_cooling_device_cb(thermal, cdev,
1112 thermal_zone_unbind_cooling_device);
1113}
1114
1115static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1116 .bind = acpi_thermal_bind_cooling_device,
1117 .unbind = acpi_thermal_unbind_cooling_device,
1118 .get_temp = thermal_get_temp,
1119 .get_mode = thermal_get_mode,
1120 .set_mode = thermal_set_mode,
1121 .get_trip_type = thermal_get_trip_type,
1122 .get_trip_temp = thermal_get_trip_temp,
9ec732ff 1123 .get_crit_temp = thermal_get_crit_temp,
3f655ef8
ZR
1124};
1125
1126static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1127{
1128 int trips = 0;
1129 int result;
20733939 1130 acpi_status status;
3f655ef8
ZR
1131 int i;
1132
1133 if (tz->trips.critical.flags.valid)
1134 trips++;
1135
1136 if (tz->trips.hot.flags.valid)
1137 trips++;
1138
1139 if (tz->trips.passive.flags.valid)
1140 trips++;
1141
1142 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1143 tz->trips.active[i].flags.valid; i++, trips++);
e9ae7107 1144 tz->thermal_zone = thermal_zone_device_register("acpitz",
3f655ef8 1145 trips, tz, &acpi_thermal_zone_ops);
bb070e43 1146 if (IS_ERR(tz->thermal_zone))
3f655ef8
ZR
1147 return -ENODEV;
1148
1149 result = sysfs_create_link(&tz->device->dev.kobj,
1150 &tz->thermal_zone->device.kobj, "thermal_zone");
1151 if (result)
1152 return result;
1153
1154 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1155 &tz->device->dev.kobj, "device");
1156 if (result)
1157 return result;
1158
20733939
ZR
1159 status = acpi_attach_data(tz->device->handle,
1160 acpi_bus_private_data_handler,
1161 tz->thermal_zone);
1162 if (ACPI_FAILURE(status)) {
1163 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1164 "Error attaching device data\n"));
1165 return -ENODEV;
1166 }
1167
3f655ef8
ZR
1168 tz->tz_enabled = 1;
1169
1170 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1171 tz->device->dev.bus_id, tz->thermal_zone->id);
1172 return 0;
1173}
1174
1175static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1176{
1177 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1178 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1179 thermal_zone_device_unregister(tz->thermal_zone);
1180 tz->thermal_zone = NULL;
20733939 1181 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
3f655ef8
ZR
1182}
1183
1184
1da177e4
LT
1185/* --------------------------------------------------------------------------
1186 FS Interface (/proc)
1187 -------------------------------------------------------------------------- */
1188
4be44fcd 1189static struct proc_dir_entry *acpi_thermal_dir;
1da177e4
LT
1190
1191static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1192{
50dd0969 1193 struct acpi_thermal *tz = seq->private;
1da177e4 1194
1da177e4
LT
1195
1196 if (!tz)
1197 goto end;
1198
1199 seq_puts(seq, "state: ");
1200
4be44fcd
LB
1201 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1202 && !tz->state.active)
1da177e4
LT
1203 seq_puts(seq, "ok\n");
1204 else {
1205 if (tz->state.critical)
1206 seq_puts(seq, "critical ");
1207 if (tz->state.hot)
1208 seq_puts(seq, "hot ");
1209 if (tz->state.passive)
1210 seq_puts(seq, "passive ");
1211 if (tz->state.active)
1212 seq_printf(seq, "active[%d]", tz->state.active_index);
1213 seq_puts(seq, "\n");
1214 }
1215
4be44fcd 1216 end:
d550d98d 1217 return 0;
1da177e4
LT
1218}
1219
1220static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1221{
1222 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1223}
1224
1da177e4
LT
1225static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1226{
4be44fcd 1227 int result = 0;
50dd0969 1228 struct acpi_thermal *tz = seq->private;
1da177e4 1229
1da177e4
LT
1230
1231 if (!tz)
1232 goto end;
1233
1234 result = acpi_thermal_get_temperature(tz);
1235 if (result)
1236 goto end;
1237
4be44fcd
LB
1238 seq_printf(seq, "temperature: %ld C\n",
1239 KELVIN_TO_CELSIUS(tz->temperature));
1da177e4 1240
4be44fcd 1241 end:
d550d98d 1242 return 0;
1da177e4
LT
1243}
1244
1245static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1246{
1247 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1248}
1249
1da177e4
LT
1250static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1251{
50dd0969 1252 struct acpi_thermal *tz = seq->private;
68ccfaa8 1253 struct acpi_device *device;
e7c746ef
TR
1254 acpi_status status;
1255
4be44fcd
LB
1256 int i = 0;
1257 int j = 0;
1da177e4 1258
1da177e4
LT
1259
1260 if (!tz)
1261 goto end;
1262
1263 if (tz->trips.critical.flags.valid)
f5487145
LB
1264 seq_printf(seq, "critical (S5): %ld C%s",
1265 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1266 nocrt ? " <disabled>\n" : "\n");
1da177e4
LT
1267
1268 if (tz->trips.hot.flags.valid)
f5487145
LB
1269 seq_printf(seq, "hot (S4): %ld C%s",
1270 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1271 nocrt ? " <disabled>\n" : "\n");
1da177e4
LT
1272
1273 if (tz->trips.passive.flags.valid) {
4be44fcd
LB
1274 seq_printf(seq,
1275 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1276 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1277 tz->trips.passive.tc1, tz->trips.passive.tc2,
1278 tz->trips.passive.tsp);
1279 for (j = 0; j < tz->trips.passive.devices.count; j++) {
e7c746ef
TR
1280 status = acpi_bus_get_device(tz->trips.passive.devices.
1281 handles[j], &device);
1282 seq_printf(seq, "%4.4s ", status ? "" :
1283 acpi_device_bid(device));
1da177e4
LT
1284 }
1285 seq_puts(seq, "\n");
1286 }
1287
1288 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1289 if (!(tz->trips.active[i].flags.valid))
1290 break;
1291 seq_printf(seq, "active[%d]: %ld C: devices=",
4be44fcd
LB
1292 i,
1293 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
68ccfaa8 1294 for (j = 0; j < tz->trips.active[i].devices.count; j++){
e7c746ef
TR
1295 status = acpi_bus_get_device(tz->trips.active[i].
1296 devices.handles[j],
1297 &device);
1298 seq_printf(seq, "%4.4s ", status ? "" :
1299 acpi_device_bid(device));
68ccfaa8 1300 }
1da177e4
LT
1301 seq_puts(seq, "\n");
1302 }
1303
4be44fcd 1304 end:
d550d98d 1305 return 0;
1da177e4
LT
1306}
1307
1308static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1309{
1310 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1311}
1312
1da177e4
LT
1313static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1314{
50dd0969 1315 struct acpi_thermal *tz = seq->private;
1da177e4 1316
1da177e4
LT
1317
1318 if (!tz)
1319 goto end;
1320
eaca2d3f 1321 if (!tz->flags.cooling_mode)
1da177e4 1322 seq_puts(seq, "<setting not supported>\n");
1da177e4 1323 else
eaca2d3f 1324 seq_puts(seq, "0 - Active; 1 - Passive\n");
1da177e4 1325
4be44fcd 1326 end:
d550d98d 1327 return 0;
1da177e4
LT
1328}
1329
1330static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1331{
1332 return single_open(file, acpi_thermal_cooling_seq_show,
4be44fcd 1333 PDE(inode)->data);
1da177e4
LT
1334}
1335
1336static ssize_t
4be44fcd
LB
1337acpi_thermal_write_cooling_mode(struct file *file,
1338 const char __user * buffer,
1339 size_t count, loff_t * ppos)
1da177e4 1340{
50dd0969
JE
1341 struct seq_file *m = file->private_data;
1342 struct acpi_thermal *tz = m->private;
4be44fcd
LB
1343 int result = 0;
1344 char mode_string[12] = { '\0' };
1da177e4 1345
1da177e4
LT
1346
1347 if (!tz || (count > sizeof(mode_string) - 1))
d550d98d 1348 return -EINVAL;
1da177e4
LT
1349
1350 if (!tz->flags.cooling_mode)
d550d98d 1351 return -ENODEV;
1da177e4
LT
1352
1353 if (copy_from_user(mode_string, buffer, count))
d550d98d 1354 return -EFAULT;
4be44fcd 1355
1da177e4 1356 mode_string[count] = '\0';
4be44fcd
LB
1357
1358 result = acpi_thermal_set_cooling_mode(tz,
1359 simple_strtoul(mode_string, NULL,
1360 0));
1da177e4 1361 if (result)
d550d98d 1362 return result;
1da177e4
LT
1363
1364 acpi_thermal_check(tz);
1365
d550d98d 1366 return count;
1da177e4
LT
1367}
1368
1da177e4
LT
1369static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1370{
50dd0969 1371 struct acpi_thermal *tz = seq->private;
1da177e4 1372
1da177e4
LT
1373
1374 if (!tz)
1375 goto end;
1376
1377 if (!tz->polling_frequency) {
1378 seq_puts(seq, "<polling disabled>\n");
1379 goto end;
1380 }
1381
1382 seq_printf(seq, "polling frequency: %lu seconds\n",
4be44fcd 1383 (tz->polling_frequency / 10));
1da177e4 1384
4be44fcd 1385 end:
d550d98d 1386 return 0;
1da177e4
LT
1387}
1388
1389static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1390{
1391 return single_open(file, acpi_thermal_polling_seq_show,
4be44fcd 1392 PDE(inode)->data);
1da177e4
LT
1393}
1394
1395static ssize_t
4be44fcd
LB
1396acpi_thermal_write_polling(struct file *file,
1397 const char __user * buffer,
1398 size_t count, loff_t * ppos)
1da177e4 1399{
50dd0969
JE
1400 struct seq_file *m = file->private_data;
1401 struct acpi_thermal *tz = m->private;
4be44fcd
LB
1402 int result = 0;
1403 char polling_string[12] = { '\0' };
1404 int seconds = 0;
1da177e4 1405
1da177e4
LT
1406
1407 if (!tz || (count > sizeof(polling_string) - 1))
d550d98d 1408 return -EINVAL;
4be44fcd 1409
1da177e4 1410 if (copy_from_user(polling_string, buffer, count))
d550d98d 1411 return -EFAULT;
4be44fcd 1412
1da177e4
LT
1413 polling_string[count] = '\0';
1414
1415 seconds = simple_strtoul(polling_string, NULL, 0);
4be44fcd 1416
1da177e4
LT
1417 result = acpi_thermal_set_polling(tz, seconds);
1418 if (result)
d550d98d 1419 return result;
1da177e4
LT
1420
1421 acpi_thermal_check(tz);
1422
d550d98d 1423 return count;
1da177e4
LT
1424}
1425
4be44fcd 1426static int acpi_thermal_add_fs(struct acpi_device *device)
1da177e4 1427{
4be44fcd 1428 struct proc_dir_entry *entry = NULL;
1da177e4 1429
1da177e4
LT
1430
1431 if (!acpi_device_dir(device)) {
1432 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 1433 acpi_thermal_dir);
1da177e4 1434 if (!acpi_device_dir(device))
d550d98d 1435 return -ENODEV;
1da177e4
LT
1436 acpi_device_dir(device)->owner = THIS_MODULE;
1437 }
1438
1439 /* 'state' [R] */
1440 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
4be44fcd 1441 S_IRUGO, acpi_device_dir(device));
1da177e4 1442 if (!entry)
d550d98d 1443 return -ENODEV;
1da177e4
LT
1444 else {
1445 entry->proc_fops = &acpi_thermal_state_fops;
1446 entry->data = acpi_driver_data(device);
1447 entry->owner = THIS_MODULE;
1448 }
1449
1450 /* 'temperature' [R] */
1451 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
4be44fcd 1452 S_IRUGO, acpi_device_dir(device));
1da177e4 1453 if (!entry)
d550d98d 1454 return -ENODEV;
1da177e4
LT
1455 else {
1456 entry->proc_fops = &acpi_thermal_temp_fops;
1457 entry->data = acpi_driver_data(device);
1458 entry->owner = THIS_MODULE;
1459 }
1460
2db9ccba 1461 /* 'trip_points' [R] */
1da177e4 1462 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
2db9ccba 1463 S_IRUGO,
4be44fcd 1464 acpi_device_dir(device));
1da177e4 1465 if (!entry)
d550d98d 1466 return -ENODEV;
1da177e4
LT
1467 else {
1468 entry->proc_fops = &acpi_thermal_trip_fops;
1469 entry->data = acpi_driver_data(device);
1470 entry->owner = THIS_MODULE;
1471 }
1472
1473 /* 'cooling_mode' [R/W] */
1474 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
4be44fcd
LB
1475 S_IFREG | S_IRUGO | S_IWUSR,
1476 acpi_device_dir(device));
1da177e4 1477 if (!entry)
d550d98d 1478 return -ENODEV;
1da177e4
LT
1479 else {
1480 entry->proc_fops = &acpi_thermal_cooling_fops;
1481 entry->data = acpi_driver_data(device);
1482 entry->owner = THIS_MODULE;
1483 }
1484
1485 /* 'polling_frequency' [R/W] */
1486 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
4be44fcd
LB
1487 S_IFREG | S_IRUGO | S_IWUSR,
1488 acpi_device_dir(device));
1da177e4 1489 if (!entry)
d550d98d 1490 return -ENODEV;
1da177e4
LT
1491 else {
1492 entry->proc_fops = &acpi_thermal_polling_fops;
1493 entry->data = acpi_driver_data(device);
1494 entry->owner = THIS_MODULE;
1495 }
1496
d550d98d 1497 return 0;
1da177e4
LT
1498}
1499
4be44fcd 1500static int acpi_thermal_remove_fs(struct acpi_device *device)
1da177e4 1501{
1da177e4
LT
1502
1503 if (acpi_device_dir(device)) {
1504 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1505 acpi_device_dir(device));
1506 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1507 acpi_device_dir(device));
1508 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1509 acpi_device_dir(device));
1510 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1511 acpi_device_dir(device));
1512 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1513 acpi_device_dir(device));
1514 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1515 acpi_device_dir(device) = NULL;
1516 }
1517
d550d98d 1518 return 0;
1da177e4
LT
1519}
1520
1da177e4
LT
1521/* --------------------------------------------------------------------------
1522 Driver Interface
1523 -------------------------------------------------------------------------- */
1524
4be44fcd 1525static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
1da177e4 1526{
50dd0969 1527 struct acpi_thermal *tz = data;
4be44fcd 1528 struct acpi_device *device = NULL;
1da177e4 1529
1da177e4
LT
1530
1531 if (!tz)
d550d98d 1532 return;
1da177e4 1533
8348e1b1 1534 device = tz->device;
1da177e4
LT
1535
1536 switch (event) {
1537 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1538 acpi_thermal_check(tz);
1539 break;
1540 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
ce44e197 1541 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
1da177e4 1542 acpi_thermal_check(tz);
14e04fb3 1543 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca
ZR
1544 acpi_bus_generate_netlink_event(device->pnp.device_class,
1545 device->dev.bus_id, event, 0);
1da177e4
LT
1546 break;
1547 case ACPI_THERMAL_NOTIFY_DEVICES:
ce44e197
ZR
1548 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1549 acpi_thermal_check(tz);
14e04fb3 1550 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca
ZR
1551 acpi_bus_generate_netlink_event(device->pnp.device_class,
1552 device->dev.bus_id, event, 0);
1da177e4
LT
1553 break;
1554 default:
1555 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 1556 "Unsupported event [0x%x]\n", event));
1da177e4
LT
1557 break;
1558 }
1559
d550d98d 1560 return;
1da177e4
LT
1561}
1562
4be44fcd 1563static int acpi_thermal_get_info(struct acpi_thermal *tz)
1da177e4 1564{
4be44fcd 1565 int result = 0;
1da177e4 1566
1da177e4
LT
1567
1568 if (!tz)
d550d98d 1569 return -EINVAL;
1da177e4
LT
1570
1571 /* Get temperature [_TMP] (required) */
1572 result = acpi_thermal_get_temperature(tz);
1573 if (result)
d550d98d 1574 return result;
1da177e4
LT
1575
1576 /* Get trip points [_CRT, _PSV, etc.] (required) */
1577 result = acpi_thermal_get_trip_points(tz);
1578 if (result)
d550d98d 1579 return result;
1da177e4
LT
1580
1581 /* Set the cooling mode [_SCP] to active cooling (default) */
1582 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
4be44fcd 1583 if (!result)
1da177e4 1584 tz->flags.cooling_mode = 1;
1da177e4
LT
1585
1586 /* Get default polling frequency [_TZP] (optional) */
1587 if (tzp)
1588 tz->polling_frequency = tzp;
1589 else
1590 acpi_thermal_get_polling_frequency(tz);
1591
d550d98d 1592 return 0;
1da177e4
LT
1593}
1594
4be44fcd 1595static int acpi_thermal_add(struct acpi_device *device)
1da177e4 1596{
4be44fcd
LB
1597 int result = 0;
1598 acpi_status status = AE_OK;
1599 struct acpi_thermal *tz = NULL;
1da177e4 1600
1da177e4
LT
1601
1602 if (!device)
d550d98d 1603 return -EINVAL;
1da177e4 1604
36bcbec7 1605 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
1da177e4 1606 if (!tz)
d550d98d 1607 return -ENOMEM;
1da177e4 1608
8348e1b1 1609 tz->device = device;
1da177e4
LT
1610 strcpy(tz->name, device->pnp.bus_id);
1611 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1612 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1613 acpi_driver_data(device) = tz;
6e215785 1614 mutex_init(&tz->lock);
3f655ef8
ZR
1615
1616
1da177e4
LT
1617 result = acpi_thermal_get_info(tz);
1618 if (result)
3f655ef8
ZR
1619 goto free_memory;
1620
1621 result = acpi_thermal_register_thermal_zone(tz);
1622 if (result)
1623 goto free_memory;
1da177e4
LT
1624
1625 result = acpi_thermal_add_fs(device);
1626 if (result)
3f655ef8 1627 goto unregister_thermal_zone;
1da177e4
LT
1628
1629 init_timer(&tz->timer);
1630
1631 acpi_thermal_check(tz);
1632
38ba7c9e 1633 status = acpi_install_notify_handler(device->handle,
4be44fcd
LB
1634 ACPI_DEVICE_NOTIFY,
1635 acpi_thermal_notify, tz);
1da177e4 1636 if (ACPI_FAILURE(status)) {
1da177e4 1637 result = -ENODEV;
3f655ef8 1638 goto remove_fs;
1da177e4
LT
1639 }
1640
1641 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
4be44fcd
LB
1642 acpi_device_name(device), acpi_device_bid(device),
1643 KELVIN_TO_CELSIUS(tz->temperature));
3f655ef8 1644 goto end;
1da177e4 1645
3f655ef8
ZR
1646remove_fs:
1647 acpi_thermal_remove_fs(device);
1648unregister_thermal_zone:
1649 thermal_zone_device_unregister(tz->thermal_zone);
1650free_memory:
1651 kfree(tz);
1652end:
d550d98d 1653 return result;
1da177e4
LT
1654}
1655
4be44fcd 1656static int acpi_thermal_remove(struct acpi_device *device, int type)
1da177e4 1657{
4be44fcd
LB
1658 acpi_status status = AE_OK;
1659 struct acpi_thermal *tz = NULL;
1da177e4 1660
1da177e4
LT
1661
1662 if (!device || !acpi_driver_data(device))
d550d98d 1663 return -EINVAL;
1da177e4 1664
50dd0969 1665 tz = acpi_driver_data(device);
1da177e4
LT
1666
1667 /* avoid timer adding new defer task */
1668 tz->zombie = 1;
1669 /* wait for running timer (on other CPUs) finish */
1670 del_timer_sync(&(tz->timer));
1671 /* synchronize deferred task */
1672 acpi_os_wait_events_complete(NULL);
1673 /* deferred task may reinsert timer */
1674 del_timer_sync(&(tz->timer));
1675
38ba7c9e 1676 status = acpi_remove_notify_handler(device->handle,
4be44fcd
LB
1677 ACPI_DEVICE_NOTIFY,
1678 acpi_thermal_notify);
1da177e4
LT
1679
1680 /* Terminate policy */
4be44fcd 1681 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
1da177e4
LT
1682 tz->trips.passive.flags.enabled = 0;
1683 acpi_thermal_passive(tz);
1684 }
1685 if (tz->trips.active[0].flags.valid
4be44fcd 1686 && tz->trips.active[0].flags.enabled) {
1da177e4
LT
1687 tz->trips.active[0].flags.enabled = 0;
1688 acpi_thermal_active(tz);
1689 }
1690
1691 acpi_thermal_remove_fs(device);
3f655ef8 1692 acpi_thermal_unregister_thermal_zone(tz);
6e215785 1693 mutex_destroy(&tz->lock);
1da177e4 1694 kfree(tz);
d550d98d 1695 return 0;
1da177e4
LT
1696}
1697
5d9464a4 1698static int acpi_thermal_resume(struct acpi_device *device)
74ce1468
KK
1699{
1700 struct acpi_thermal *tz = NULL;
b1028c54
KK
1701 int i, j, power_state, result;
1702
74ce1468
KK
1703
1704 if (!device || !acpi_driver_data(device))
d550d98d 1705 return -EINVAL;
74ce1468 1706
50dd0969 1707 tz = acpi_driver_data(device);
74ce1468 1708
bed936f7 1709 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
b1028c54
KK
1710 if (!(&tz->trips.active[i]))
1711 break;
1712 if (!tz->trips.active[i].flags.valid)
1713 break;
1714 tz->trips.active[i].flags.enabled = 1;
1715 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1716 result = acpi_bus_get_power(tz->trips.active[i].devices.
1717 handles[j], &power_state);
1718 if (result || (power_state != ACPI_STATE_D0)) {
1719 tz->trips.active[i].flags.enabled = 0;
1720 break;
1721 }
bed936f7 1722 }
b1028c54 1723 tz->state.active |= tz->trips.active[i].flags.enabled;
bed936f7
KK
1724 }
1725
b1028c54 1726 acpi_thermal_check(tz);
74ce1468
KK
1727
1728 return AE_OK;
1729}
1730
1855256c 1731static int thermal_act(const struct dmi_system_id *d) {
0b5bfa1c
LB
1732
1733 if (act == 0) {
1734 printk(KERN_NOTICE "ACPI: %s detected: "
1735 "disabling all active thermal trip points\n", d->ident);
1736 act = -1;
1737 }
1738 return 0;
1739}
1855256c 1740static int thermal_nocrt(const struct dmi_system_id *d) {
8c99fdce
LB
1741
1742 printk(KERN_NOTICE "ACPI: %s detected: "
1743 "disabling all critical thermal trip point actions.\n", d->ident);
1744 nocrt = 1;
1745 return 0;
1746}
1855256c 1747static int thermal_tzp(const struct dmi_system_id *d) {
0b5bfa1c
LB
1748
1749 if (tzp == 0) {
1750 printk(KERN_NOTICE "ACPI: %s detected: "
1751 "enabling thermal zone polling\n", d->ident);
1752 tzp = 300; /* 300 dS = 30 Seconds */
1753 }
1754 return 0;
1755}
1855256c 1756static int thermal_psv(const struct dmi_system_id *d) {
0b5bfa1c
LB
1757
1758 if (psv == 0) {
1759 printk(KERN_NOTICE "ACPI: %s detected: "
1760 "disabling all passive thermal trip points\n", d->ident);
1761 psv = -1;
1762 }
1763 return 0;
1764}
1765
1766static struct dmi_system_id thermal_dmi_table[] __initdata = {
1767 /*
1768 * Award BIOS on this AOpen makes thermal control almost worthless.
1769 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1770 */
1771 {
1772 .callback = thermal_act,
1773 .ident = "AOpen i915GMm-HFS",
1774 .matches = {
1775 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1776 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1777 },
1778 },
1779 {
1780 .callback = thermal_psv,
1781 .ident = "AOpen i915GMm-HFS",
1782 .matches = {
1783 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1784 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1785 },
1786 },
1787 {
1788 .callback = thermal_tzp,
1789 .ident = "AOpen i915GMm-HFS",
1790 .matches = {
1791 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1792 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1793 },
1794 },
8c99fdce
LB
1795 {
1796 .callback = thermal_nocrt,
1797 .ident = "Gigabyte GA-7ZX",
1798 .matches = {
1799 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1800 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1801 },
1802 },
0b5bfa1c
LB
1803 {}
1804};
0b5bfa1c 1805
4be44fcd 1806static int __init acpi_thermal_init(void)
1da177e4 1807{
4be44fcd 1808 int result = 0;
1da177e4 1809
0b5bfa1c
LB
1810 dmi_check_system(thermal_dmi_table);
1811
72b33ef8
LB
1812 if (off) {
1813 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1814 return -ENODEV;
1815 }
1da177e4
LT
1816 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1817 if (!acpi_thermal_dir)
d550d98d 1818 return -ENODEV;
1da177e4
LT
1819 acpi_thermal_dir->owner = THIS_MODULE;
1820
1821 result = acpi_bus_register_driver(&acpi_thermal_driver);
1822 if (result < 0) {
1823 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
d550d98d 1824 return -ENODEV;
1da177e4
LT
1825 }
1826
d550d98d 1827 return 0;
1da177e4
LT
1828}
1829
4be44fcd 1830static void __exit acpi_thermal_exit(void)
1da177e4 1831{
1da177e4
LT
1832
1833 acpi_bus_unregister_driver(&acpi_thermal_driver);
1834
1835 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1836
d550d98d 1837 return;
1da177e4
LT
1838}
1839
1da177e4
LT
1840module_init(acpi_thermal_init);
1841module_exit(acpi_thermal_exit);