]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/acpi/thermal.c
Merge remote branch 'nouveau/for-airlied' of ../drm-nouveau-next into drm-linus
[mirror_ubuntu-jammy-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 40#include <linux/jiffies.h>
1da177e4
LT
41#include <linux/kmod.h>
42#include <linux/seq_file.h>
10a0a8d4 43#include <linux/reboot.h>
f6f5c45e 44#include <linux/device.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
a192a958
LB
50#define PREFIX "ACPI: "
51
1da177e4 52#define ACPI_THERMAL_CLASS "thermal_zone"
1da177e4
LT
53#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
54#define ACPI_THERMAL_FILE_STATE "state"
55#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
56#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
57#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
58#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
59#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
60#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
61#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
62#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
63#define ACPI_THERMAL_NOTIFY_HOT 0xF1
64#define ACPI_THERMAL_MODE_ACTIVE 0x00
1da177e4
LT
65
66#define ACPI_THERMAL_MAX_ACTIVE 10
67#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
68
1da177e4 69#define _COMPONENT ACPI_THERMAL_COMPONENT
f52fd66d 70ACPI_MODULE_NAME("thermal");
1da177e4 71
1cbf4c56 72MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 73MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
1da177e4
LT
74MODULE_LICENSE("GPL");
75
f8707ec9
LB
76static int act;
77module_param(act, int, 0644);
3c1d36da 78MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
f8707ec9 79
c52a7419
LB
80static int crt;
81module_param(crt, int, 0644);
82MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
83
1da177e4 84static int tzp;
730ff34d 85module_param(tzp, int, 0444);
3c1d36da 86MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
1da177e4 87
f5487145
LB
88static int nocrt;
89module_param(nocrt, int, 0);
8c99fdce 90MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
f5487145 91
72b33ef8
LB
92static int off;
93module_param(off, int, 0);
3c1d36da 94MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
72b33ef8 95
a70cdc52
LB
96static int psv;
97module_param(psv, int, 0644);
3c1d36da 98MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
a70cdc52 99
4be44fcd
LB
100static int acpi_thermal_add(struct acpi_device *device);
101static int acpi_thermal_remove(struct acpi_device *device, int type);
5d9464a4 102static int acpi_thermal_resume(struct acpi_device *device);
342d550d 103static void acpi_thermal_notify(struct acpi_device *device, u32 event);
1da177e4
LT
104static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
105static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
106static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
1da177e4 107static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
4be44fcd
LB
108static ssize_t acpi_thermal_write_cooling_mode(struct file *,
109 const char __user *, size_t,
110 loff_t *);
1da177e4 111static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
4be44fcd
LB
112static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
113 size_t, loff_t *);
1da177e4 114
1ba90e3a
TR
115static const struct acpi_device_id thermal_device_ids[] = {
116 {ACPI_THERMAL_HID, 0},
117 {"", 0},
118};
119MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
120
1da177e4 121static struct acpi_driver acpi_thermal_driver = {
c2b6705b 122 .name = "thermal",
4be44fcd 123 .class = ACPI_THERMAL_CLASS,
1ba90e3a 124 .ids = thermal_device_ids,
4be44fcd
LB
125 .ops = {
126 .add = acpi_thermal_add,
127 .remove = acpi_thermal_remove,
74ce1468 128 .resume = acpi_thermal_resume,
342d550d 129 .notify = acpi_thermal_notify,
4be44fcd 130 },
1da177e4
LT
131};
132
133struct acpi_thermal_state {
4be44fcd
LB
134 u8 critical:1;
135 u8 hot:1;
136 u8 passive:1;
137 u8 active:1;
138 u8 reserved:4;
139 int active_index;
1da177e4
LT
140};
141
142struct acpi_thermal_state_flags {
4be44fcd
LB
143 u8 valid:1;
144 u8 enabled:1;
145 u8 reserved:6;
1da177e4
LT
146};
147
148struct acpi_thermal_critical {
149 struct acpi_thermal_state_flags flags;
4be44fcd 150 unsigned long temperature;
1da177e4
LT
151};
152
153struct acpi_thermal_hot {
154 struct acpi_thermal_state_flags flags;
4be44fcd 155 unsigned long temperature;
1da177e4
LT
156};
157
158struct acpi_thermal_passive {
159 struct acpi_thermal_state_flags flags;
4be44fcd
LB
160 unsigned long temperature;
161 unsigned long tc1;
162 unsigned long tc2;
163 unsigned long tsp;
164 struct acpi_handle_list devices;
1da177e4
LT
165};
166
167struct acpi_thermal_active {
168 struct acpi_thermal_state_flags flags;
4be44fcd
LB
169 unsigned long temperature;
170 struct acpi_handle_list devices;
1da177e4
LT
171};
172
173struct acpi_thermal_trips {
174 struct acpi_thermal_critical critical;
4be44fcd 175 struct acpi_thermal_hot hot;
1da177e4
LT
176 struct acpi_thermal_passive passive;
177 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
178};
179
180struct acpi_thermal_flags {
4be44fcd
LB
181 u8 cooling_mode:1; /* _SCP */
182 u8 devices:1; /* _TZD */
183 u8 reserved:6;
1da177e4
LT
184};
185
186struct acpi_thermal {
8348e1b1 187 struct acpi_device * device;
4be44fcd
LB
188 acpi_bus_id name;
189 unsigned long temperature;
190 unsigned long last_temperature;
191 unsigned long polling_frequency;
4be44fcd 192 volatile u8 zombie;
1da177e4
LT
193 struct acpi_thermal_flags flags;
194 struct acpi_thermal_state state;
195 struct acpi_thermal_trips trips;
4be44fcd 196 struct acpi_handle_list devices;
3f655ef8
ZR
197 struct thermal_zone_device *thermal_zone;
198 int tz_enabled;
13614e37 199 int kelvin_offset;
6e215785 200 struct mutex lock;
1da177e4
LT
201};
202
d7508032 203static const struct file_operations acpi_thermal_state_fops = {
cf7acfab 204 .owner = THIS_MODULE,
4be44fcd
LB
205 .open = acpi_thermal_state_open_fs,
206 .read = seq_read,
207 .llseek = seq_lseek,
208 .release = single_release,
1da177e4
LT
209};
210
d7508032 211static const struct file_operations acpi_thermal_temp_fops = {
cf7acfab 212 .owner = THIS_MODULE,
4be44fcd
LB
213 .open = acpi_thermal_temp_open_fs,
214 .read = seq_read,
215 .llseek = seq_lseek,
216 .release = single_release,
1da177e4
LT
217};
218
d7508032 219static const struct file_operations acpi_thermal_trip_fops = {
cf7acfab 220 .owner = THIS_MODULE,
4be44fcd
LB
221 .open = acpi_thermal_trip_open_fs,
222 .read = seq_read,
4be44fcd
LB
223 .llseek = seq_lseek,
224 .release = single_release,
1da177e4
LT
225};
226
d7508032 227static const struct file_operations acpi_thermal_cooling_fops = {
cf7acfab 228 .owner = THIS_MODULE,
4be44fcd
LB
229 .open = acpi_thermal_cooling_open_fs,
230 .read = seq_read,
231 .write = acpi_thermal_write_cooling_mode,
232 .llseek = seq_lseek,
233 .release = single_release,
1da177e4
LT
234};
235
d7508032 236static const struct file_operations acpi_thermal_polling_fops = {
cf7acfab 237 .owner = THIS_MODULE,
4be44fcd
LB
238 .open = acpi_thermal_polling_open_fs,
239 .read = seq_read,
240 .write = acpi_thermal_write_polling,
241 .llseek = seq_lseek,
242 .release = single_release,
1da177e4
LT
243};
244
245/* --------------------------------------------------------------------------
246 Thermal Zone Management
247 -------------------------------------------------------------------------- */
248
4be44fcd 249static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
1da177e4 250{
4be44fcd 251 acpi_status status = AE_OK;
27663c58 252 unsigned long long tmp;
1da177e4
LT
253
254 if (!tz)
d550d98d 255 return -EINVAL;
1da177e4
LT
256
257 tz->last_temperature = tz->temperature;
258
27663c58 259 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
1da177e4 260 if (ACPI_FAILURE(status))
d550d98d 261 return -ENODEV;
1da177e4 262
27663c58 263 tz->temperature = tmp;
4be44fcd
LB
264 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
265 tz->temperature));
1da177e4 266
d550d98d 267 return 0;
1da177e4
LT
268}
269
4be44fcd 270static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
1da177e4 271{
4be44fcd 272 acpi_status status = AE_OK;
27663c58 273 unsigned long long tmp;
1da177e4
LT
274
275 if (!tz)
d550d98d 276 return -EINVAL;
1da177e4 277
27663c58 278 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
1da177e4 279 if (ACPI_FAILURE(status))
d550d98d 280 return -ENODEV;
1da177e4 281
27663c58 282 tz->polling_frequency = tmp;
4be44fcd
LB
283 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
284 tz->polling_frequency));
1da177e4 285
d550d98d 286 return 0;
1da177e4
LT
287}
288
4be44fcd 289static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
1da177e4 290{
1da177e4
LT
291
292 if (!tz)
d550d98d 293 return -EINVAL;
1da177e4
LT
294
295 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
296
b1569e99
MG
297 tz->thermal_zone->polling_delay = seconds * 1000;
298
299 if (tz->tz_enabled)
300 thermal_zone_device_update(tz->thermal_zone);
301
4be44fcd
LB
302 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
303 "Polling frequency set to %lu seconds\n",
636cedf9 304 tz->polling_frequency/10));
1da177e4 305
d550d98d 306 return 0;
1da177e4
LT
307}
308
4be44fcd 309static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
1da177e4 310{
4be44fcd
LB
311 acpi_status status = AE_OK;
312 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
313 struct acpi_object_list arg_list = { 1, &arg0 };
314 acpi_handle handle = NULL;
1da177e4 315
1da177e4
LT
316
317 if (!tz)
d550d98d 318 return -EINVAL;
1da177e4 319
38ba7c9e 320 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
1da177e4
LT
321 if (ACPI_FAILURE(status)) {
322 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
d550d98d 323 return -ENODEV;
1da177e4
LT
324 }
325
326 arg0.integer.value = mode;
327
328 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
329 if (ACPI_FAILURE(status))
d550d98d 330 return -ENODEV;
1da177e4 331
d550d98d 332 return 0;
1da177e4
LT
333}
334
ce44e197
ZR
335#define ACPI_TRIPS_CRITICAL 0x01
336#define ACPI_TRIPS_HOT 0x02
337#define ACPI_TRIPS_PASSIVE 0x04
338#define ACPI_TRIPS_ACTIVE 0x08
339#define ACPI_TRIPS_DEVICES 0x10
1da177e4 340
ce44e197
ZR
341#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
342#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
1da177e4 343
ce44e197
ZR
344#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
345 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
346 ACPI_TRIPS_DEVICES)
1da177e4 347
ce44e197
ZR
348/*
349 * This exception is thrown out in two cases:
350 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
351 * when re-evaluating the AML code.
352 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
353 * We need to re-bind the cooling devices of a thermal zone when this occurs.
354 */
355#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
356do { \
357 if (flags != ACPI_TRIPS_INIT) \
358 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
359 "ACPI thermal trip point %s changed\n" \
360 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
361} while (0)
362
363static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
364{
365 acpi_status status = AE_OK;
27663c58 366 unsigned long long tmp;
ce44e197
ZR
367 struct acpi_handle_list devices;
368 int valid = 0;
369 int i;
1da177e4 370
ce44e197
ZR
371 /* Critical Shutdown (required) */
372 if (flag & ACPI_TRIPS_CRITICAL) {
373 status = acpi_evaluate_integer(tz->device->handle,
27663c58
MW
374 "_CRT", NULL, &tmp);
375 tz->trips.critical.temperature = tmp;
a39a2d7c
AV
376 /*
377 * Treat freezing temperatures as invalid as well; some
378 * BIOSes return really low values and cause reboots at startup.
b731d7b6 379 * Below zero (Celsius) values clearly aren't right for sure..
a39a2d7c
AV
380 * ... so lets discard those as invalid.
381 */
382 if (ACPI_FAILURE(status) ||
383 tz->trips.critical.temperature <= 2732) {
c52a7419 384 tz->trips.critical.flags.valid = 0;
ce44e197 385 ACPI_EXCEPTION((AE_INFO, status,
a39a2d7c 386 "No or invalid critical threshold"));
ce44e197
ZR
387 return -ENODEV;
388 } else {
389 tz->trips.critical.flags.valid = 1;
390 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
391 "Found critical threshold [%lu]\n",
392 tz->trips.critical.temperature));
393 }
394 if (tz->trips.critical.flags.valid == 1) {
395 if (crt == -1) {
396 tz->trips.critical.flags.valid = 0;
397 } else if (crt > 0) {
398 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
399 /*
22a94d79 400 * Allow override critical threshold
ce44e197 401 */
22a94d79
ZR
402 if (crt_k > tz->trips.critical.temperature)
403 printk(KERN_WARNING PREFIX
404 "Critical threshold %d C\n", crt);
405 tz->trips.critical.temperature = crt_k;
ce44e197 406 }
c52a7419
LB
407 }
408 }
409
1da177e4 410 /* Critical Sleep (optional) */
ce44e197 411 if (flag & ACPI_TRIPS_HOT) {
a70cdc52 412 status = acpi_evaluate_integer(tz->device->handle,
27663c58 413 "_HOT", NULL, &tmp);
ce44e197
ZR
414 if (ACPI_FAILURE(status)) {
415 tz->trips.hot.flags.valid = 0;
416 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
417 "No hot threshold\n"));
418 } else {
27663c58 419 tz->trips.hot.temperature = tmp;
ce44e197
ZR
420 tz->trips.hot.flags.valid = 1;
421 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
422 "Found hot threshold [%lu]\n",
423 tz->trips.critical.temperature));
424 }
a70cdc52
LB
425 }
426
ce44e197 427 /* Passive (optional) */
0e4240d9
ZR
428 if (((flag & ACPI_TRIPS_PASSIVE) && tz->trips.passive.flags.valid) ||
429 (flag == ACPI_TRIPS_INIT)) {
ce44e197
ZR
430 valid = tz->trips.passive.flags.valid;
431 if (psv == -1) {
432 status = AE_SUPPORT;
433 } else if (psv > 0) {
27663c58 434 tmp = CELSIUS_TO_KELVIN(psv);
ce44e197
ZR
435 status = AE_OK;
436 } else {
437 status = acpi_evaluate_integer(tz->device->handle,
27663c58 438 "_PSV", NULL, &tmp);
ce44e197 439 }
1da177e4 440
1da177e4
LT
441 if (ACPI_FAILURE(status))
442 tz->trips.passive.flags.valid = 0;
ce44e197 443 else {
27663c58 444 tz->trips.passive.temperature = tmp;
ce44e197
ZR
445 tz->trips.passive.flags.valid = 1;
446 if (flag == ACPI_TRIPS_INIT) {
447 status = acpi_evaluate_integer(
448 tz->device->handle, "_TC1",
27663c58 449 NULL, &tmp);
ce44e197
ZR
450 if (ACPI_FAILURE(status))
451 tz->trips.passive.flags.valid = 0;
27663c58
MW
452 else
453 tz->trips.passive.tc1 = tmp;
ce44e197
ZR
454 status = acpi_evaluate_integer(
455 tz->device->handle, "_TC2",
27663c58 456 NULL, &tmp);
ce44e197
ZR
457 if (ACPI_FAILURE(status))
458 tz->trips.passive.flags.valid = 0;
27663c58
MW
459 else
460 tz->trips.passive.tc2 = tmp;
ce44e197
ZR
461 status = acpi_evaluate_integer(
462 tz->device->handle, "_TSP",
27663c58 463 NULL, &tmp);
ce44e197
ZR
464 if (ACPI_FAILURE(status))
465 tz->trips.passive.flags.valid = 0;
27663c58
MW
466 else
467 tz->trips.passive.tsp = tmp;
ce44e197
ZR
468 }
469 }
470 }
471 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
472 memset(&devices, 0, sizeof(struct acpi_handle_list));
473 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
474 NULL, &devices);
0e4240d9
ZR
475 if (ACPI_FAILURE(status)) {
476 printk(KERN_WARNING PREFIX
477 "Invalid passive threshold\n");
1da177e4 478 tz->trips.passive.flags.valid = 0;
0e4240d9 479 }
1da177e4 480 else
ce44e197 481 tz->trips.passive.flags.valid = 1;
1da177e4 482
ce44e197
ZR
483 if (memcmp(&tz->trips.passive.devices, &devices,
484 sizeof(struct acpi_handle_list))) {
485 memcpy(&tz->trips.passive.devices, &devices,
486 sizeof(struct acpi_handle_list));
487 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
488 }
489 }
490 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
491 if (valid != tz->trips.passive.flags.valid)
492 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
493 }
1da177e4 494
ce44e197 495 /* Active (optional) */
4be44fcd 496 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
4be44fcd 497 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
ce44e197 498 valid = tz->trips.active[i].flags.valid;
1da177e4 499
f8707ec9 500 if (act == -1)
ce44e197
ZR
501 break; /* disable all active trip points */
502
0e4240d9
ZR
503 if ((flag == ACPI_TRIPS_INIT) || ((flag & ACPI_TRIPS_ACTIVE) &&
504 tz->trips.active[i].flags.valid)) {
ce44e197 505 status = acpi_evaluate_integer(tz->device->handle,
27663c58 506 name, NULL, &tmp);
ce44e197
ZR
507 if (ACPI_FAILURE(status)) {
508 tz->trips.active[i].flags.valid = 0;
509 if (i == 0)
510 break;
511 if (act <= 0)
512 break;
513 if (i == 1)
514 tz->trips.active[0].temperature =
515 CELSIUS_TO_KELVIN(act);
516 else
517 /*
518 * Don't allow override higher than
519 * the next higher trip point
520 */
521 tz->trips.active[i - 1].temperature =
522 (tz->trips.active[i - 2].temperature <
523 CELSIUS_TO_KELVIN(act) ?
524 tz->trips.active[i - 2].temperature :
525 CELSIUS_TO_KELVIN(act));
f8707ec9 526 break;
27663c58
MW
527 } else {
528 tz->trips.active[i].temperature = tmp;
ce44e197 529 tz->trips.active[i].flags.valid = 1;
27663c58 530 }
f8707ec9 531 }
1da177e4
LT
532
533 name[2] = 'L';
ce44e197
ZR
534 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
535 memset(&devices, 0, sizeof(struct acpi_handle_list));
536 status = acpi_evaluate_reference(tz->device->handle,
537 name, NULL, &devices);
0e4240d9
ZR
538 if (ACPI_FAILURE(status)) {
539 printk(KERN_WARNING PREFIX
540 "Invalid active%d threshold\n", i);
ce44e197 541 tz->trips.active[i].flags.valid = 0;
0e4240d9 542 }
ce44e197
ZR
543 else
544 tz->trips.active[i].flags.valid = 1;
545
546 if (memcmp(&tz->trips.active[i].devices, &devices,
547 sizeof(struct acpi_handle_list))) {
548 memcpy(&tz->trips.active[i].devices, &devices,
549 sizeof(struct acpi_handle_list));
550 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
551 }
552 }
553 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
554 if (valid != tz->trips.active[i].flags.valid)
555 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
556
557 if (!tz->trips.active[i].flags.valid)
558 break;
559 }
560
561 if (flag & ACPI_TRIPS_DEVICES) {
562 memset(&devices, 0, sizeof(struct acpi_handle_list));
563 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
564 NULL, &devices);
565 if (memcmp(&tz->devices, &devices,
566 sizeof(struct acpi_handle_list))) {
567 memcpy(&tz->devices, &devices,
568 sizeof(struct acpi_handle_list));
569 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
570 }
1da177e4
LT
571 }
572
d550d98d 573 return 0;
1da177e4
LT
574}
575
ce44e197 576static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
1da177e4 577{
ce44e197 578 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
1da177e4
LT
579}
580
4be44fcd 581static void acpi_thermal_check(void *data)
1da177e4 582{
50dd0969 583 struct acpi_thermal *tz = data;
1da177e4 584
b1569e99 585 thermal_zone_device_update(tz->thermal_zone);
1da177e4
LT
586}
587
3f655ef8 588/* sys I/F for generic thermal sysfs support */
13614e37 589#define KELVIN_TO_MILLICELSIUS(t, off) (((t) - (off)) * 100)
5e012760 590
6503e5df
MG
591static int thermal_get_temp(struct thermal_zone_device *thermal,
592 unsigned long *temp)
3f655ef8
ZR
593{
594 struct acpi_thermal *tz = thermal->devdata;
76ecb4f2 595 int result;
3f655ef8
ZR
596
597 if (!tz)
598 return -EINVAL;
599
76ecb4f2
ZR
600 result = acpi_thermal_get_temperature(tz);
601 if (result)
602 return result;
603
13614e37 604 *temp = KELVIN_TO_MILLICELSIUS(tz->temperature, tz->kelvin_offset);
6503e5df 605 return 0;
3f655ef8
ZR
606}
607
608static const char enabled[] = "kernel";
609static const char disabled[] = "user";
610static int thermal_get_mode(struct thermal_zone_device *thermal,
6503e5df 611 enum thermal_device_mode *mode)
3f655ef8
ZR
612{
613 struct acpi_thermal *tz = thermal->devdata;
614
615 if (!tz)
616 return -EINVAL;
617
6503e5df
MG
618 *mode = tz->tz_enabled ? THERMAL_DEVICE_ENABLED :
619 THERMAL_DEVICE_DISABLED;
620
621 return 0;
3f655ef8
ZR
622}
623
624static int thermal_set_mode(struct thermal_zone_device *thermal,
6503e5df 625 enum thermal_device_mode mode)
3f655ef8
ZR
626{
627 struct acpi_thermal *tz = thermal->devdata;
628 int enable;
629
630 if (!tz)
631 return -EINVAL;
632
633 /*
634 * enable/disable thermal management from ACPI thermal driver
635 */
6503e5df 636 if (mode == THERMAL_DEVICE_ENABLED)
3f655ef8 637 enable = 1;
6503e5df 638 else if (mode == THERMAL_DEVICE_DISABLED)
3f655ef8
ZR
639 enable = 0;
640 else
641 return -EINVAL;
642
643 if (enable != tz->tz_enabled) {
644 tz->tz_enabled = enable;
645 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
646 "%s ACPI thermal control\n",
647 tz->tz_enabled ? enabled : disabled));
648 acpi_thermal_check(tz);
649 }
650 return 0;
651}
652
653static int thermal_get_trip_type(struct thermal_zone_device *thermal,
6503e5df 654 int trip, enum thermal_trip_type *type)
3f655ef8
ZR
655{
656 struct acpi_thermal *tz = thermal->devdata;
657 int i;
658
659 if (!tz || trip < 0)
660 return -EINVAL;
661
662 if (tz->trips.critical.flags.valid) {
6503e5df
MG
663 if (!trip) {
664 *type = THERMAL_TRIP_CRITICAL;
665 return 0;
666 }
3f655ef8
ZR
667 trip--;
668 }
669
670 if (tz->trips.hot.flags.valid) {
6503e5df
MG
671 if (!trip) {
672 *type = THERMAL_TRIP_HOT;
673 return 0;
674 }
3f655ef8
ZR
675 trip--;
676 }
677
678 if (tz->trips.passive.flags.valid) {
6503e5df
MG
679 if (!trip) {
680 *type = THERMAL_TRIP_PASSIVE;
681 return 0;
682 }
3f655ef8
ZR
683 trip--;
684 }
685
686 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
687 tz->trips.active[i].flags.valid; i++) {
6503e5df
MG
688 if (!trip) {
689 *type = THERMAL_TRIP_ACTIVE;
690 return 0;
691 }
3f655ef8
ZR
692 trip--;
693 }
694
695 return -EINVAL;
696}
697
698static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
6503e5df 699 int trip, unsigned long *temp)
3f655ef8
ZR
700{
701 struct acpi_thermal *tz = thermal->devdata;
702 int i;
703
704 if (!tz || trip < 0)
705 return -EINVAL;
706
707 if (tz->trips.critical.flags.valid) {
6503e5df
MG
708 if (!trip) {
709 *temp = KELVIN_TO_MILLICELSIUS(
13614e37
JD
710 tz->trips.critical.temperature,
711 tz->kelvin_offset);
6503e5df
MG
712 return 0;
713 }
3f655ef8
ZR
714 trip--;
715 }
716
717 if (tz->trips.hot.flags.valid) {
6503e5df
MG
718 if (!trip) {
719 *temp = KELVIN_TO_MILLICELSIUS(
13614e37
JD
720 tz->trips.hot.temperature,
721 tz->kelvin_offset);
6503e5df
MG
722 return 0;
723 }
3f655ef8
ZR
724 trip--;
725 }
726
727 if (tz->trips.passive.flags.valid) {
6503e5df
MG
728 if (!trip) {
729 *temp = KELVIN_TO_MILLICELSIUS(
13614e37
JD
730 tz->trips.passive.temperature,
731 tz->kelvin_offset);
6503e5df
MG
732 return 0;
733 }
3f655ef8
ZR
734 trip--;
735 }
736
737 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
738 tz->trips.active[i].flags.valid; i++) {
6503e5df
MG
739 if (!trip) {
740 *temp = KELVIN_TO_MILLICELSIUS(
13614e37
JD
741 tz->trips.active[i].temperature,
742 tz->kelvin_offset);
6503e5df
MG
743 return 0;
744 }
3f655ef8
ZR
745 trip--;
746 }
747
748 return -EINVAL;
749}
750
9ec732ff
ZR
751static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
752 unsigned long *temperature) {
753 struct acpi_thermal *tz = thermal->devdata;
754
755 if (tz->trips.critical.flags.valid) {
756 *temperature = KELVIN_TO_MILLICELSIUS(
13614e37
JD
757 tz->trips.critical.temperature,
758 tz->kelvin_offset);
9ec732ff
ZR
759 return 0;
760 } else
761 return -EINVAL;
762}
763
b1569e99
MG
764static int thermal_notify(struct thermal_zone_device *thermal, int trip,
765 enum thermal_trip_type trip_type)
766{
767 u8 type = 0;
768 struct acpi_thermal *tz = thermal->devdata;
769
770 if (trip_type == THERMAL_TRIP_CRITICAL)
771 type = ACPI_THERMAL_NOTIFY_CRITICAL;
772 else if (trip_type == THERMAL_TRIP_HOT)
773 type = ACPI_THERMAL_NOTIFY_HOT;
774 else
775 return 0;
776
777 acpi_bus_generate_proc_event(tz->device, type, 1);
778 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
f6f5c45e 779 dev_name(&tz->device->dev), type, 1);
b1569e99
MG
780
781 if (trip_type == THERMAL_TRIP_CRITICAL && nocrt)
782 return 1;
783
784 return 0;
785}
786
3f655ef8
ZR
787typedef int (*cb)(struct thermal_zone_device *, int,
788 struct thermal_cooling_device *);
789static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
790 struct thermal_cooling_device *cdev,
791 cb action)
792{
793 struct acpi_device *device = cdev->devdata;
794 struct acpi_thermal *tz = thermal->devdata;
653a00c9
ZR
795 struct acpi_device *dev;
796 acpi_status status;
797 acpi_handle handle;
3f655ef8
ZR
798 int i;
799 int j;
800 int trip = -1;
801 int result = 0;
802
803 if (tz->trips.critical.flags.valid)
804 trip++;
805
806 if (tz->trips.hot.flags.valid)
807 trip++;
808
809 if (tz->trips.passive.flags.valid) {
810 trip++;
811 for (i = 0; i < tz->trips.passive.devices.count;
812 i++) {
653a00c9
ZR
813 handle = tz->trips.passive.devices.handles[i];
814 status = acpi_bus_get_device(handle, &dev);
815 if (ACPI_SUCCESS(status) && (dev == device)) {
816 result = action(thermal, trip, cdev);
817 if (result)
818 goto failed;
819 }
3f655ef8
ZR
820 }
821 }
822
823 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
824 if (!tz->trips.active[i].flags.valid)
825 break;
826 trip++;
827 for (j = 0;
828 j < tz->trips.active[i].devices.count;
829 j++) {
653a00c9
ZR
830 handle = tz->trips.active[i].devices.handles[j];
831 status = acpi_bus_get_device(handle, &dev);
832 if (ACPI_SUCCESS(status) && (dev == device)) {
833 result = action(thermal, trip, cdev);
834 if (result)
835 goto failed;
836 }
3f655ef8
ZR
837 }
838 }
839
840 for (i = 0; i < tz->devices.count; i++) {
653a00c9
ZR
841 handle = tz->devices.handles[i];
842 status = acpi_bus_get_device(handle, &dev);
843 if (ACPI_SUCCESS(status) && (dev == device)) {
844 result = action(thermal, -1, cdev);
845 if (result)
846 goto failed;
847 }
3f655ef8
ZR
848 }
849
850failed:
851 return result;
852}
853
854static int
855acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
856 struct thermal_cooling_device *cdev)
857{
858 return acpi_thermal_cooling_device_cb(thermal, cdev,
859 thermal_zone_bind_cooling_device);
860}
861
862static int
863acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
864 struct thermal_cooling_device *cdev)
865{
866 return acpi_thermal_cooling_device_cb(thermal, cdev,
867 thermal_zone_unbind_cooling_device);
868}
869
870static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
871 .bind = acpi_thermal_bind_cooling_device,
872 .unbind = acpi_thermal_unbind_cooling_device,
873 .get_temp = thermal_get_temp,
874 .get_mode = thermal_get_mode,
875 .set_mode = thermal_set_mode,
876 .get_trip_type = thermal_get_trip_type,
877 .get_trip_temp = thermal_get_trip_temp,
9ec732ff 878 .get_crit_temp = thermal_get_crit_temp,
b1569e99 879 .notify = thermal_notify,
3f655ef8
ZR
880};
881
882static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
883{
884 int trips = 0;
885 int result;
20733939 886 acpi_status status;
3f655ef8
ZR
887 int i;
888
889 if (tz->trips.critical.flags.valid)
890 trips++;
891
892 if (tz->trips.hot.flags.valid)
893 trips++;
894
895 if (tz->trips.passive.flags.valid)
896 trips++;
897
898 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
899 tz->trips.active[i].flags.valid; i++, trips++);
b1569e99
MG
900
901 if (tz->trips.passive.flags.valid)
902 tz->thermal_zone =
903 thermal_zone_device_register("acpitz", trips, tz,
904 &acpi_thermal_zone_ops,
905 tz->trips.passive.tc1,
906 tz->trips.passive.tc2,
907 tz->trips.passive.tsp*100,
908 tz->polling_frequency*100);
909 else
910 tz->thermal_zone =
911 thermal_zone_device_register("acpitz", trips, tz,
912 &acpi_thermal_zone_ops,
913 0, 0, 0,
67405439 914 tz->polling_frequency*100);
bb070e43 915 if (IS_ERR(tz->thermal_zone))
3f655ef8
ZR
916 return -ENODEV;
917
918 result = sysfs_create_link(&tz->device->dev.kobj,
919 &tz->thermal_zone->device.kobj, "thermal_zone");
920 if (result)
921 return result;
922
923 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
924 &tz->device->dev.kobj, "device");
925 if (result)
926 return result;
927
20733939
ZR
928 status = acpi_attach_data(tz->device->handle,
929 acpi_bus_private_data_handler,
930 tz->thermal_zone);
931 if (ACPI_FAILURE(status)) {
55ac9a01
LM
932 printk(KERN_ERR PREFIX
933 "Error attaching device data\n");
20733939
ZR
934 return -ENODEV;
935 }
936
3f655ef8
ZR
937 tz->tz_enabled = 1;
938
fc3a8828
GKH
939 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
940 tz->thermal_zone->id);
3f655ef8
ZR
941 return 0;
942}
943
944static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
945{
946 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
947 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
948 thermal_zone_device_unregister(tz->thermal_zone);
949 tz->thermal_zone = NULL;
20733939 950 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
3f655ef8
ZR
951}
952
953
1da177e4
LT
954/* --------------------------------------------------------------------------
955 FS Interface (/proc)
956 -------------------------------------------------------------------------- */
957
4be44fcd 958static struct proc_dir_entry *acpi_thermal_dir;
1da177e4
LT
959
960static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
961{
50dd0969 962 struct acpi_thermal *tz = seq->private;
1da177e4 963
1da177e4
LT
964
965 if (!tz)
966 goto end;
967
968 seq_puts(seq, "state: ");
969
4be44fcd
LB
970 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
971 && !tz->state.active)
1da177e4
LT
972 seq_puts(seq, "ok\n");
973 else {
974 if (tz->state.critical)
975 seq_puts(seq, "critical ");
976 if (tz->state.hot)
977 seq_puts(seq, "hot ");
978 if (tz->state.passive)
979 seq_puts(seq, "passive ");
980 if (tz->state.active)
981 seq_printf(seq, "active[%d]", tz->state.active_index);
982 seq_puts(seq, "\n");
983 }
984
4be44fcd 985 end:
d550d98d 986 return 0;
1da177e4
LT
987}
988
989static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
990{
991 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
992}
993
1da177e4
LT
994static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
995{
4be44fcd 996 int result = 0;
50dd0969 997 struct acpi_thermal *tz = seq->private;
1da177e4 998
1da177e4
LT
999
1000 if (!tz)
1001 goto end;
1002
1003 result = acpi_thermal_get_temperature(tz);
1004 if (result)
1005 goto end;
1006
4be44fcd
LB
1007 seq_printf(seq, "temperature: %ld C\n",
1008 KELVIN_TO_CELSIUS(tz->temperature));
1da177e4 1009
4be44fcd 1010 end:
d550d98d 1011 return 0;
1da177e4
LT
1012}
1013
1014static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1015{
1016 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1017}
1018
1da177e4
LT
1019static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1020{
50dd0969 1021 struct acpi_thermal *tz = seq->private;
68ccfaa8 1022 struct acpi_device *device;
e7c746ef
TR
1023 acpi_status status;
1024
4be44fcd
LB
1025 int i = 0;
1026 int j = 0;
1da177e4 1027
1da177e4
LT
1028
1029 if (!tz)
1030 goto end;
1031
1032 if (tz->trips.critical.flags.valid)
f5487145
LB
1033 seq_printf(seq, "critical (S5): %ld C%s",
1034 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1035 nocrt ? " <disabled>\n" : "\n");
1da177e4
LT
1036
1037 if (tz->trips.hot.flags.valid)
f5487145
LB
1038 seq_printf(seq, "hot (S4): %ld C%s",
1039 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1040 nocrt ? " <disabled>\n" : "\n");
1da177e4
LT
1041
1042 if (tz->trips.passive.flags.valid) {
4be44fcd
LB
1043 seq_printf(seq,
1044 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1045 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1046 tz->trips.passive.tc1, tz->trips.passive.tc2,
1047 tz->trips.passive.tsp);
1048 for (j = 0; j < tz->trips.passive.devices.count; j++) {
e7c746ef
TR
1049 status = acpi_bus_get_device(tz->trips.passive.devices.
1050 handles[j], &device);
1051 seq_printf(seq, "%4.4s ", status ? "" :
1052 acpi_device_bid(device));
1da177e4
LT
1053 }
1054 seq_puts(seq, "\n");
7fb2616e
FP
1055 } else {
1056 seq_printf(seq, "passive (forced):");
1057 if (tz->thermal_zone->forced_passive)
1058 seq_printf(seq, " %i C\n",
1059 tz->thermal_zone->forced_passive / 1000);
1060 else
1061 seq_printf(seq, "<not set>\n");
1da177e4
LT
1062 }
1063
1064 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1065 if (!(tz->trips.active[i].flags.valid))
1066 break;
1067 seq_printf(seq, "active[%d]: %ld C: devices=",
4be44fcd
LB
1068 i,
1069 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
68ccfaa8 1070 for (j = 0; j < tz->trips.active[i].devices.count; j++){
e7c746ef
TR
1071 status = acpi_bus_get_device(tz->trips.active[i].
1072 devices.handles[j],
1073 &device);
1074 seq_printf(seq, "%4.4s ", status ? "" :
1075 acpi_device_bid(device));
68ccfaa8 1076 }
1da177e4
LT
1077 seq_puts(seq, "\n");
1078 }
1079
4be44fcd 1080 end:
d550d98d 1081 return 0;
1da177e4
LT
1082}
1083
1084static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1085{
1086 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1087}
1088
1da177e4
LT
1089static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1090{
50dd0969 1091 struct acpi_thermal *tz = seq->private;
1da177e4 1092
1da177e4
LT
1093
1094 if (!tz)
1095 goto end;
1096
eaca2d3f 1097 if (!tz->flags.cooling_mode)
1da177e4 1098 seq_puts(seq, "<setting not supported>\n");
1da177e4 1099 else
eaca2d3f 1100 seq_puts(seq, "0 - Active; 1 - Passive\n");
1da177e4 1101
4be44fcd 1102 end:
d550d98d 1103 return 0;
1da177e4
LT
1104}
1105
1106static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1107{
1108 return single_open(file, acpi_thermal_cooling_seq_show,
4be44fcd 1109 PDE(inode)->data);
1da177e4
LT
1110}
1111
1112static ssize_t
4be44fcd
LB
1113acpi_thermal_write_cooling_mode(struct file *file,
1114 const char __user * buffer,
1115 size_t count, loff_t * ppos)
1da177e4 1116{
50dd0969
JE
1117 struct seq_file *m = file->private_data;
1118 struct acpi_thermal *tz = m->private;
4be44fcd
LB
1119 int result = 0;
1120 char mode_string[12] = { '\0' };
1da177e4 1121
1da177e4
LT
1122
1123 if (!tz || (count > sizeof(mode_string) - 1))
d550d98d 1124 return -EINVAL;
1da177e4
LT
1125
1126 if (!tz->flags.cooling_mode)
d550d98d 1127 return -ENODEV;
1da177e4
LT
1128
1129 if (copy_from_user(mode_string, buffer, count))
d550d98d 1130 return -EFAULT;
4be44fcd 1131
1da177e4 1132 mode_string[count] = '\0';
4be44fcd
LB
1133
1134 result = acpi_thermal_set_cooling_mode(tz,
1135 simple_strtoul(mode_string, NULL,
1136 0));
1da177e4 1137 if (result)
d550d98d 1138 return result;
1da177e4
LT
1139
1140 acpi_thermal_check(tz);
1141
d550d98d 1142 return count;
1da177e4
LT
1143}
1144
1da177e4
LT
1145static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1146{
50dd0969 1147 struct acpi_thermal *tz = seq->private;
1da177e4 1148
1da177e4
LT
1149
1150 if (!tz)
1151 goto end;
1152
b1569e99 1153 if (!tz->thermal_zone->polling_delay) {
1da177e4
LT
1154 seq_puts(seq, "<polling disabled>\n");
1155 goto end;
1156 }
1157
b1569e99
MG
1158 seq_printf(seq, "polling frequency: %d seconds\n",
1159 (tz->thermal_zone->polling_delay / 1000));
1da177e4 1160
4be44fcd 1161 end:
d550d98d 1162 return 0;
1da177e4
LT
1163}
1164
1165static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1166{
1167 return single_open(file, acpi_thermal_polling_seq_show,
4be44fcd 1168 PDE(inode)->data);
1da177e4
LT
1169}
1170
1171static ssize_t
4be44fcd
LB
1172acpi_thermal_write_polling(struct file *file,
1173 const char __user * buffer,
1174 size_t count, loff_t * ppos)
1da177e4 1175{
50dd0969
JE
1176 struct seq_file *m = file->private_data;
1177 struct acpi_thermal *tz = m->private;
4be44fcd
LB
1178 int result = 0;
1179 char polling_string[12] = { '\0' };
1180 int seconds = 0;
1da177e4 1181
1da177e4
LT
1182
1183 if (!tz || (count > sizeof(polling_string) - 1))
d550d98d 1184 return -EINVAL;
4be44fcd 1185
1da177e4 1186 if (copy_from_user(polling_string, buffer, count))
d550d98d 1187 return -EFAULT;
4be44fcd 1188
1da177e4
LT
1189 polling_string[count] = '\0';
1190
1191 seconds = simple_strtoul(polling_string, NULL, 0);
4be44fcd 1192
1da177e4
LT
1193 result = acpi_thermal_set_polling(tz, seconds);
1194 if (result)
d550d98d 1195 return result;
1da177e4
LT
1196
1197 acpi_thermal_check(tz);
1198
d550d98d 1199 return count;
1da177e4
LT
1200}
1201
4be44fcd 1202static int acpi_thermal_add_fs(struct acpi_device *device)
1da177e4 1203{
4be44fcd 1204 struct proc_dir_entry *entry = NULL;
1da177e4 1205
1da177e4
LT
1206
1207 if (!acpi_device_dir(device)) {
1208 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 1209 acpi_thermal_dir);
1da177e4 1210 if (!acpi_device_dir(device))
d550d98d 1211 return -ENODEV;
1da177e4
LT
1212 }
1213
1214 /* 'state' [R] */
cf7acfab
DL
1215 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1216 S_IRUGO, acpi_device_dir(device),
1217 &acpi_thermal_state_fops,
1218 acpi_driver_data(device));
1da177e4 1219 if (!entry)
d550d98d 1220 return -ENODEV;
1da177e4
LT
1221
1222 /* 'temperature' [R] */
cf7acfab
DL
1223 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1224 S_IRUGO, acpi_device_dir(device),
1225 &acpi_thermal_temp_fops,
1226 acpi_driver_data(device));
1da177e4 1227 if (!entry)
d550d98d 1228 return -ENODEV;
1da177e4 1229
2db9ccba 1230 /* 'trip_points' [R] */
cf7acfab
DL
1231 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1232 S_IRUGO,
1233 acpi_device_dir(device),
1234 &acpi_thermal_trip_fops,
1235 acpi_driver_data(device));
1da177e4 1236 if (!entry)
d550d98d 1237 return -ENODEV;
1da177e4
LT
1238
1239 /* 'cooling_mode' [R/W] */
cf7acfab
DL
1240 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1241 S_IFREG | S_IRUGO | S_IWUSR,
1242 acpi_device_dir(device),
1243 &acpi_thermal_cooling_fops,
1244 acpi_driver_data(device));
1da177e4 1245 if (!entry)
d550d98d 1246 return -ENODEV;
1da177e4
LT
1247
1248 /* 'polling_frequency' [R/W] */
cf7acfab
DL
1249 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1250 S_IFREG | S_IRUGO | S_IWUSR,
1251 acpi_device_dir(device),
1252 &acpi_thermal_polling_fops,
1253 acpi_driver_data(device));
1da177e4 1254 if (!entry)
d550d98d 1255 return -ENODEV;
d550d98d 1256 return 0;
1da177e4
LT
1257}
1258
4be44fcd 1259static int acpi_thermal_remove_fs(struct acpi_device *device)
1da177e4 1260{
1da177e4
LT
1261
1262 if (acpi_device_dir(device)) {
1263 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1264 acpi_device_dir(device));
1265 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1266 acpi_device_dir(device));
1267 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1268 acpi_device_dir(device));
1269 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1270 acpi_device_dir(device));
1271 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1272 acpi_device_dir(device));
1273 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1274 acpi_device_dir(device) = NULL;
1275 }
1276
d550d98d 1277 return 0;
1da177e4
LT
1278}
1279
1da177e4
LT
1280/* --------------------------------------------------------------------------
1281 Driver Interface
1282 -------------------------------------------------------------------------- */
1283
342d550d 1284static void acpi_thermal_notify(struct acpi_device *device, u32 event)
1da177e4 1285{
342d550d 1286 struct acpi_thermal *tz = acpi_driver_data(device);
1da177e4 1287
1da177e4
LT
1288
1289 if (!tz)
d550d98d 1290 return;
1da177e4 1291
1da177e4
LT
1292 switch (event) {
1293 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1294 acpi_thermal_check(tz);
1295 break;
1296 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
ce44e197 1297 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
1da177e4 1298 acpi_thermal_check(tz);
14e04fb3 1299 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca 1300 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 1301 dev_name(&device->dev), event, 0);
1da177e4
LT
1302 break;
1303 case ACPI_THERMAL_NOTIFY_DEVICES:
ce44e197
ZR
1304 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1305 acpi_thermal_check(tz);
14e04fb3 1306 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca 1307 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 1308 dev_name(&device->dev), event, 0);
1da177e4
LT
1309 break;
1310 default:
1311 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 1312 "Unsupported event [0x%x]\n", event));
1da177e4
LT
1313 break;
1314 }
1da177e4
LT
1315}
1316
4be44fcd 1317static int acpi_thermal_get_info(struct acpi_thermal *tz)
1da177e4 1318{
4be44fcd 1319 int result = 0;
1da177e4 1320
1da177e4
LT
1321
1322 if (!tz)
d550d98d 1323 return -EINVAL;
1da177e4
LT
1324
1325 /* Get temperature [_TMP] (required) */
1326 result = acpi_thermal_get_temperature(tz);
1327 if (result)
d550d98d 1328 return result;
1da177e4
LT
1329
1330 /* Get trip points [_CRT, _PSV, etc.] (required) */
1331 result = acpi_thermal_get_trip_points(tz);
1332 if (result)
d550d98d 1333 return result;
1da177e4
LT
1334
1335 /* Set the cooling mode [_SCP] to active cooling (default) */
1336 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
4be44fcd 1337 if (!result)
1da177e4 1338 tz->flags.cooling_mode = 1;
1da177e4
LT
1339
1340 /* Get default polling frequency [_TZP] (optional) */
1341 if (tzp)
1342 tz->polling_frequency = tzp;
1343 else
1344 acpi_thermal_get_polling_frequency(tz);
1345
d550d98d 1346 return 0;
1da177e4
LT
1347}
1348
13614e37
JD
1349/*
1350 * The exact offset between Kelvin and degree Celsius is 273.15. However ACPI
1351 * handles temperature values with a single decimal place. As a consequence,
1352 * some implementations use an offset of 273.1 and others use an offset of
1353 * 273.2. Try to find out which one is being used, to present the most
1354 * accurate and visually appealing number.
1355 *
1356 * The heuristic below should work for all ACPI thermal zones which have a
1357 * critical trip point with a value being a multiple of 0.5 degree Celsius.
1358 */
1359static void acpi_thermal_guess_offset(struct acpi_thermal *tz)
1360{
1361 if (tz->trips.critical.flags.valid &&
1362 (tz->trips.critical.temperature % 5) == 1)
1363 tz->kelvin_offset = 2731;
1364 else
1365 tz->kelvin_offset = 2732;
1366}
1367
4be44fcd 1368static int acpi_thermal_add(struct acpi_device *device)
1da177e4 1369{
4be44fcd 1370 int result = 0;
4be44fcd 1371 struct acpi_thermal *tz = NULL;
1da177e4 1372
1da177e4
LT
1373
1374 if (!device)
d550d98d 1375 return -EINVAL;
1da177e4 1376
36bcbec7 1377 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
1da177e4 1378 if (!tz)
d550d98d 1379 return -ENOMEM;
1da177e4 1380
8348e1b1 1381 tz->device = device;
1da177e4
LT
1382 strcpy(tz->name, device->pnp.bus_id);
1383 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1384 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
db89b4f0 1385 device->driver_data = tz;
6e215785 1386 mutex_init(&tz->lock);
3f655ef8
ZR
1387
1388
1da177e4
LT
1389 result = acpi_thermal_get_info(tz);
1390 if (result)
3f655ef8
ZR
1391 goto free_memory;
1392
13614e37
JD
1393 acpi_thermal_guess_offset(tz);
1394
3f655ef8
ZR
1395 result = acpi_thermal_register_thermal_zone(tz);
1396 if (result)
1397 goto free_memory;
1da177e4
LT
1398
1399 result = acpi_thermal_add_fs(device);
1400 if (result)
3f655ef8 1401 goto unregister_thermal_zone;
1da177e4 1402
1da177e4 1403 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
4be44fcd
LB
1404 acpi_device_name(device), acpi_device_bid(device),
1405 KELVIN_TO_CELSIUS(tz->temperature));
3f655ef8 1406 goto end;
1da177e4 1407
3f655ef8
ZR
1408unregister_thermal_zone:
1409 thermal_zone_device_unregister(tz->thermal_zone);
1410free_memory:
1411 kfree(tz);
1412end:
d550d98d 1413 return result;
1da177e4
LT
1414}
1415
4be44fcd 1416static int acpi_thermal_remove(struct acpi_device *device, int type)
1da177e4 1417{
4be44fcd 1418 struct acpi_thermal *tz = NULL;
1da177e4 1419
1da177e4 1420 if (!device || !acpi_driver_data(device))
d550d98d 1421 return -EINVAL;
1da177e4 1422
50dd0969 1423 tz = acpi_driver_data(device);
1da177e4 1424
1da177e4 1425 acpi_thermal_remove_fs(device);
3f655ef8 1426 acpi_thermal_unregister_thermal_zone(tz);
6e215785 1427 mutex_destroy(&tz->lock);
1da177e4 1428 kfree(tz);
d550d98d 1429 return 0;
1da177e4
LT
1430}
1431
5d9464a4 1432static int acpi_thermal_resume(struct acpi_device *device)
74ce1468
KK
1433{
1434 struct acpi_thermal *tz = NULL;
b1028c54
KK
1435 int i, j, power_state, result;
1436
74ce1468
KK
1437
1438 if (!device || !acpi_driver_data(device))
d550d98d 1439 return -EINVAL;
74ce1468 1440
50dd0969 1441 tz = acpi_driver_data(device);
74ce1468 1442
bed936f7 1443 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
b1028c54
KK
1444 if (!(&tz->trips.active[i]))
1445 break;
1446 if (!tz->trips.active[i].flags.valid)
1447 break;
1448 tz->trips.active[i].flags.enabled = 1;
1449 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1450 result = acpi_bus_get_power(tz->trips.active[i].devices.
1451 handles[j], &power_state);
1452 if (result || (power_state != ACPI_STATE_D0)) {
1453 tz->trips.active[i].flags.enabled = 0;
1454 break;
1455 }
bed936f7 1456 }
b1028c54 1457 tz->state.active |= tz->trips.active[i].flags.enabled;
bed936f7
KK
1458 }
1459
b1028c54 1460 acpi_thermal_check(tz);
74ce1468
KK
1461
1462 return AE_OK;
1463}
1464
1855256c 1465static int thermal_act(const struct dmi_system_id *d) {
0b5bfa1c
LB
1466
1467 if (act == 0) {
1468 printk(KERN_NOTICE "ACPI: %s detected: "
1469 "disabling all active thermal trip points\n", d->ident);
1470 act = -1;
1471 }
1472 return 0;
1473}
1855256c 1474static int thermal_nocrt(const struct dmi_system_id *d) {
8c99fdce
LB
1475
1476 printk(KERN_NOTICE "ACPI: %s detected: "
1477 "disabling all critical thermal trip point actions.\n", d->ident);
1478 nocrt = 1;
1479 return 0;
1480}
1855256c 1481static int thermal_tzp(const struct dmi_system_id *d) {
0b5bfa1c
LB
1482
1483 if (tzp == 0) {
1484 printk(KERN_NOTICE "ACPI: %s detected: "
1485 "enabling thermal zone polling\n", d->ident);
1486 tzp = 300; /* 300 dS = 30 Seconds */
1487 }
1488 return 0;
1489}
1855256c 1490static int thermal_psv(const struct dmi_system_id *d) {
0b5bfa1c
LB
1491
1492 if (psv == 0) {
1493 printk(KERN_NOTICE "ACPI: %s detected: "
1494 "disabling all passive thermal trip points\n", d->ident);
1495 psv = -1;
1496 }
1497 return 0;
1498}
1499
1500static struct dmi_system_id thermal_dmi_table[] __initdata = {
1501 /*
1502 * Award BIOS on this AOpen makes thermal control almost worthless.
1503 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1504 */
1505 {
1506 .callback = thermal_act,
1507 .ident = "AOpen i915GMm-HFS",
1508 .matches = {
1509 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1510 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1511 },
1512 },
1513 {
1514 .callback = thermal_psv,
1515 .ident = "AOpen i915GMm-HFS",
1516 .matches = {
1517 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1518 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1519 },
1520 },
1521 {
1522 .callback = thermal_tzp,
1523 .ident = "AOpen i915GMm-HFS",
1524 .matches = {
1525 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1526 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1527 },
1528 },
8c99fdce
LB
1529 {
1530 .callback = thermal_nocrt,
1531 .ident = "Gigabyte GA-7ZX",
1532 .matches = {
1533 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1534 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1535 },
1536 },
0b5bfa1c
LB
1537 {}
1538};
0b5bfa1c 1539
4be44fcd 1540static int __init acpi_thermal_init(void)
1da177e4 1541{
4be44fcd 1542 int result = 0;
1da177e4 1543
0b5bfa1c
LB
1544 dmi_check_system(thermal_dmi_table);
1545
72b33ef8
LB
1546 if (off) {
1547 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1548 return -ENODEV;
1549 }
1da177e4
LT
1550 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1551 if (!acpi_thermal_dir)
d550d98d 1552 return -ENODEV;
1da177e4
LT
1553
1554 result = acpi_bus_register_driver(&acpi_thermal_driver);
1555 if (result < 0) {
1556 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
d550d98d 1557 return -ENODEV;
1da177e4
LT
1558 }
1559
d550d98d 1560 return 0;
1da177e4
LT
1561}
1562
4be44fcd 1563static void __exit acpi_thermal_exit(void)
1da177e4 1564{
1da177e4
LT
1565
1566 acpi_bus_unregister_driver(&acpi_thermal_driver);
1567
1568 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1569
d550d98d 1570 return;
1da177e4
LT
1571}
1572
1da177e4
LT
1573module_init(acpi_thermal_init);
1574module_exit(acpi_thermal_exit);