blob: 1b9754919f726d6fa0deccf2ae77ace0e2fa5004 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
36#include <linux/init.h>
37#include <linux/types.h>
38#include <linux/proc_fs.h>
39#include <linux/sched.h>
40#include <linux/kmod.h>
41#include <linux/seq_file.h>
42#include <asm/uaccess.h>
43
44#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
46
47#define ACPI_THERMAL_COMPONENT 0x04000000
48#define ACPI_THERMAL_CLASS "thermal_zone"
49#define ACPI_THERMAL_DRIVER_NAME "ACPI Thermal Zone Driver"
50#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
51#define ACPI_THERMAL_FILE_STATE "state"
52#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
53#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
54#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
55#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
56#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
57#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
58#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
59#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
60#define ACPI_THERMAL_NOTIFY_HOT 0xF1
61#define ACPI_THERMAL_MODE_ACTIVE 0x00
62#define ACPI_THERMAL_MODE_PASSIVE 0x01
63#define ACPI_THERMAL_MODE_CRITICAL 0xff
64#define ACPI_THERMAL_PATH_POWEROFF "/sbin/poweroff"
65
66#define ACPI_THERMAL_MAX_ACTIVE 10
67#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
68
69#define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732>=0) ? ((long)t-2732+5)/10 : ((long)t-2732-5)/10)
70#define CELSIUS_TO_KELVIN(t) ((t+273)*10)
71
72#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040073ACPI_MODULE_NAME("acpi_thermal")
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040075MODULE_AUTHOR("Paul Diefenbaugh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076MODULE_DESCRIPTION(ACPI_THERMAL_DRIVER_NAME);
77MODULE_LICENSE("GPL");
78
79static int tzp;
80module_param(tzp, int, 0);
81MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n");
82
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_thermal_add(struct acpi_device *device);
84static int acpi_thermal_remove(struct acpi_device *device, int type);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -040085static int acpi_thermal_resume(struct acpi_device *device, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
87static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
88static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040089static ssize_t acpi_thermal_write_trip_points(struct file *,
90 const char __user *, size_t,
91 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040093static ssize_t acpi_thermal_write_cooling_mode(struct file *,
94 const char __user *, size_t,
95 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040097static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
98 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100static struct acpi_driver acpi_thermal_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .name = ACPI_THERMAL_DRIVER_NAME,
102 .class = ACPI_THERMAL_CLASS,
103 .ids = ACPI_THERMAL_HID,
104 .ops = {
105 .add = acpi_thermal_add,
106 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400107 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400108 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400112 u8 critical:1;
113 u8 hot:1;
114 u8 passive:1;
115 u8 active:1;
116 u8 reserved:4;
117 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 u8 valid:1;
122 u8 enabled:1;
123 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126struct acpi_thermal_critical {
127 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400128 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131struct acpi_thermal_hot {
132 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400133 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
136struct acpi_thermal_passive {
137 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400138 unsigned long temperature;
139 unsigned long tc1;
140 unsigned long tc2;
141 unsigned long tsp;
142 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
145struct acpi_thermal_active {
146 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 unsigned long temperature;
148 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
151struct acpi_thermal_trips {
152 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct acpi_thermal_passive passive;
155 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
156};
157
158struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400159 u8 cooling_mode:1; /* _SCP */
160 u8 devices:1; /* _TZD */
161 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
164struct acpi_thermal {
Len Brown4be44fc2005-08-05 00:44:28 -0400165 acpi_handle handle;
166 acpi_bus_id name;
167 unsigned long temperature;
168 unsigned long last_temperature;
169 unsigned long polling_frequency;
170 u8 cooling_mode;
171 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct acpi_thermal_flags flags;
173 struct acpi_thermal_state state;
174 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 struct acpi_handle_list devices;
176 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
179static struct file_operations acpi_thermal_state_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400180 .open = acpi_thermal_state_open_fs,
181 .read = seq_read,
182 .llseek = seq_lseek,
183 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
186static struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400187 .open = acpi_thermal_temp_open_fs,
188 .read = seq_read,
189 .llseek = seq_lseek,
190 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191};
192
193static struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400194 .open = acpi_thermal_trip_open_fs,
195 .read = seq_read,
196 .write = acpi_thermal_write_trip_points,
197 .llseek = seq_lseek,
198 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
201static struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400202 .open = acpi_thermal_cooling_open_fs,
203 .read = seq_read,
204 .write = acpi_thermal_write_cooling_mode,
205 .llseek = seq_lseek,
206 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209static struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400210 .open = acpi_thermal_polling_open_fs,
211 .read = seq_read,
212 .write = acpi_thermal_write_polling,
213 .llseek = seq_lseek,
214 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
217/* --------------------------------------------------------------------------
218 Thermal Zone Management
219 -------------------------------------------------------------------------- */
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Len Brown4be44fc2005-08-05 00:44:28 -0400223 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 ACPI_FUNCTION_TRACE("acpi_thermal_get_temperature");
226
227 if (!tz)
228 return_VALUE(-EINVAL);
229
230 tz->last_temperature = tz->temperature;
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 status =
233 acpi_evaluate_integer(tz->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (ACPI_FAILURE(status))
235 return_VALUE(-ENODEV);
236
Len Brown4be44fc2005-08-05 00:44:28 -0400237 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
238 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 return_VALUE(0);
241}
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 ACPI_FUNCTION_TRACE("acpi_thermal_get_polling_frequency");
248
249 if (!tz)
250 return_VALUE(-EINVAL);
251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 status =
253 acpi_evaluate_integer(tz->handle, "_TZP", NULL,
254 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (ACPI_FAILURE(status))
256 return_VALUE(-ENODEV);
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
259 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 return_VALUE(0);
262}
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 ACPI_FUNCTION_TRACE("acpi_thermal_set_polling");
267
268 if (!tz)
269 return_VALUE(-EINVAL);
270
271 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
272
Len Brown4be44fc2005-08-05 00:44:28 -0400273 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
274 "Polling frequency set to %lu seconds\n",
275 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 return_VALUE(0);
278}
279
Len Brown4be44fc2005-08-05 00:44:28 -0400280static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Len Brown4be44fc2005-08-05 00:44:28 -0400282 acpi_status status = AE_OK;
283 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
284 struct acpi_object_list arg_list = { 1, &arg0 };
285 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 ACPI_FUNCTION_TRACE("acpi_thermal_set_cooling_mode");
288
289 if (!tz)
290 return_VALUE(-EINVAL);
291
292 status = acpi_get_handle(tz->handle, "_SCP", &handle);
293 if (ACPI_FAILURE(status)) {
294 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
295 return_VALUE(-ENODEV);
296 }
297
298 arg0.integer.value = mode;
299
300 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
301 if (ACPI_FAILURE(status))
302 return_VALUE(-ENODEV);
303
304 tz->cooling_mode = mode;
305
Len Brown4be44fc2005-08-05 00:44:28 -0400306 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Cooling mode [%s]\n",
307 mode ? "passive" : "active"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 return_VALUE(0);
310}
311
Len Brown4be44fc2005-08-05 00:44:28 -0400312static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Len Brown4be44fc2005-08-05 00:44:28 -0400314 acpi_status status = AE_OK;
315 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 ACPI_FUNCTION_TRACE("acpi_thermal_get_trip_points");
318
319 if (!tz)
320 return_VALUE(-EINVAL);
321
322 /* Critical Shutdown (required) */
323
Len Brown4be44fc2005-08-05 00:44:28 -0400324 status = acpi_evaluate_integer(tz->handle, "_CRT", NULL,
325 &tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (ACPI_FAILURE(status)) {
327 tz->trips.critical.flags.valid = 0;
Thomas Renningera6fc6722006-06-26 23:58:43 -0400328 ACPI_EXCEPTION((AE_INFO, status, "No critical threshold"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -0400330 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 tz->trips.critical.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400332 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
333 "Found critical threshold [%lu]\n",
334 tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
337 /* Critical Sleep (optional) */
338
Len Brown4be44fc2005-08-05 00:44:28 -0400339 status =
340 acpi_evaluate_integer(tz->handle, "_HOT", NULL,
341 &tz->trips.hot.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (ACPI_FAILURE(status)) {
343 tz->trips.hot.flags.valid = 0;
344 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No hot threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400345 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 tz->trips.hot.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400347 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found hot threshold [%lu]\n",
348 tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
351 /* Passive: Processors (optional) */
352
Len Brown4be44fc2005-08-05 00:44:28 -0400353 status =
354 acpi_evaluate_integer(tz->handle, "_PSV", NULL,
355 &tz->trips.passive.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (ACPI_FAILURE(status)) {
357 tz->trips.passive.flags.valid = 0;
358 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No passive threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400359 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 tz->trips.passive.flags.valid = 1;
361
Len Brown4be44fc2005-08-05 00:44:28 -0400362 status =
363 acpi_evaluate_integer(tz->handle, "_TC1", NULL,
364 &tz->trips.passive.tc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (ACPI_FAILURE(status))
366 tz->trips.passive.flags.valid = 0;
367
Len Brown4be44fc2005-08-05 00:44:28 -0400368 status =
369 acpi_evaluate_integer(tz->handle, "_TC2", NULL,
370 &tz->trips.passive.tc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (ACPI_FAILURE(status))
372 tz->trips.passive.flags.valid = 0;
373
Len Brown4be44fc2005-08-05 00:44:28 -0400374 status =
375 acpi_evaluate_integer(tz->handle, "_TSP", NULL,
376 &tz->trips.passive.tsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (ACPI_FAILURE(status))
378 tz->trips.passive.flags.valid = 0;
379
Len Brown4be44fc2005-08-05 00:44:28 -0400380 status =
381 acpi_evaluate_reference(tz->handle, "_PSL", NULL,
382 &tz->trips.passive.devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (ACPI_FAILURE(status))
384 tz->trips.passive.flags.valid = 0;
385
386 if (!tz->trips.passive.flags.valid)
Len Browncece9292006-06-26 23:04:31 -0400387 printk(KERN_WARNING PREFIX "Invalid passive threshold\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 else
Len Brown4be44fc2005-08-05 00:44:28 -0400389 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
390 "Found passive threshold [%lu]\n",
391 tz->trips.passive.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 /* Active: Fans, etc. (optional) */
395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Len Brown4be44fc2005-08-05 00:44:28 -0400398 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Len Brown4be44fc2005-08-05 00:44:28 -0400400 status =
401 acpi_evaluate_integer(tz->handle, name, NULL,
402 &tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (ACPI_FAILURE(status))
404 break;
405
406 name[2] = 'L';
Len Brown4be44fc2005-08-05 00:44:28 -0400407 status =
408 acpi_evaluate_reference(tz->handle, name, NULL,
409 &tz->trips.active[i].devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (ACPI_SUCCESS(status)) {
411 tz->trips.active[i].flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400412 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
413 "Found active threshold [%d]:[%lu]\n",
414 i, tz->trips.active[i].temperature));
415 } else
Thomas Renningera6fc6722006-06-26 23:58:43 -0400416 ACPI_EXCEPTION((AE_INFO, status,
417 "Invalid active threshold [%d]", i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
420 return_VALUE(0);
421}
422
Len Brown4be44fc2005-08-05 00:44:28 -0400423static int acpi_thermal_get_devices(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Len Brown4be44fc2005-08-05 00:44:28 -0400425 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 ACPI_FUNCTION_TRACE("acpi_thermal_get_devices");
428
429 if (!tz)
430 return_VALUE(-EINVAL);
431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 status =
433 acpi_evaluate_reference(tz->handle, "_TZD", NULL, &tz->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (ACPI_FAILURE(status))
435 return_VALUE(-ENODEV);
436
437 return_VALUE(0);
438}
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440static int acpi_thermal_call_usermode(char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Len Brown4be44fc2005-08-05 00:44:28 -0400442 char *argv[2] = { NULL, NULL };
443 char *envp[3] = { NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 ACPI_FUNCTION_TRACE("acpi_thermal_call_usermode");
446
447 if (!path)
448 return_VALUE(-EINVAL);
449
450 argv[0] = path;
451
452 /* minimal command environment */
453 envp[0] = "HOME=/";
454 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
Len Brown4be44fc2005-08-05 00:44:28 -0400455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 call_usermodehelper(argv[0], argv, envp, 0);
457
458 return_VALUE(0);
459}
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Len Brown4be44fc2005-08-05 00:44:28 -0400463 int result = 0;
464 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 ACPI_FUNCTION_TRACE("acpi_thermal_critical");
467
468 if (!tz || !tz->trips.critical.flags.valid)
469 return_VALUE(-EINVAL);
470
471 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400472 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400474 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 tz->trips.critical.flags.enabled = 0;
476
477 result = acpi_bus_get_device(tz->handle, &device);
478 if (result)
479 return_VALUE(result);
480
Len Brown4be44fc2005-08-05 00:44:28 -0400481 printk(KERN_EMERG
482 "Critical temperature reached (%ld C), shutting down.\n",
483 KELVIN_TO_CELSIUS(tz->temperature));
484 acpi_bus_generate_event(device, ACPI_THERMAL_NOTIFY_CRITICAL,
485 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 acpi_thermal_call_usermode(ACPI_THERMAL_PATH_POWEROFF);
488
489 return_VALUE(0);
490}
491
Len Brown4be44fc2005-08-05 00:44:28 -0400492static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Len Brown4be44fc2005-08-05 00:44:28 -0400494 int result = 0;
495 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 ACPI_FUNCTION_TRACE("acpi_thermal_hot");
498
499 if (!tz || !tz->trips.hot.flags.valid)
500 return_VALUE(-EINVAL);
501
502 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400503 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400505 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 tz->trips.hot.flags.enabled = 0;
507
508 result = acpi_bus_get_device(tz->handle, &device);
509 if (result)
510 return_VALUE(result);
511
Len Brown4be44fc2005-08-05 00:44:28 -0400512 acpi_bus_generate_event(device, ACPI_THERMAL_NOTIFY_HOT,
513 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /* TBD: Call user-mode "sleep(S4)" function */
516
517 return_VALUE(0);
518}
519
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400520static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400522 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400524 int trend = 0;
525 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 ACPI_FUNCTION_TRACE("acpi_thermal_passive");
528
529 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400530 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 passive = &(tz->trips.passive);
533
534 /*
535 * Above Trip?
536 * -----------
537 * Calculate the thermal trend (using the passive cooling equation)
538 * and modify the performance limit for all passive cooling devices
539 * accordingly. Note that we assume symmetry.
540 */
541 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400542 trend =
543 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
544 (passive->tc2 * (tz->temperature - passive->temperature));
545 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
546 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
547 trend, passive->tc1, tz->temperature,
548 tz->last_temperature, passive->tc2,
549 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400550 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* Heating up? */
552 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400553 for (i = 0; i < passive->devices.count; i++)
554 acpi_processor_set_thermal_limit(passive->
555 devices.
556 handles[i],
557 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400559 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400560 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400561 /*
562 * assume that we are on highest
563 * freq/lowest thrott and can leave
564 * passive mode, even in error case
565 */
566 if (!acpi_processor_set_thermal_limit
567 (passive->devices.handles[i],
568 ACPI_PROCESSOR_LIMIT_DECREMENT))
569 result = 0;
570 /*
571 * Leave cooling mode, even if the temp might
572 * higher than trip point This is because some
573 * machines might have long thermal polling
574 * frequencies (tsp) defined. We will fall back
575 * into passive mode in next cycle (probably quicker)
576 */
577 if (result) {
578 passive->flags.enabled = 0;
579 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
580 "Disabling passive cooling, still above threshold,"
581 " but we are cooling down\n"));
582 }
583 }
584 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
587 /*
588 * Below Trip?
589 * -----------
590 * Implement passive cooling hysteresis to slowly increase performance
591 * and avoid thrashing around the passive trip point. Note that we
592 * assume symmetry.
593 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400594 if (!passive->flags.enabled)
595 return;
596 for (i = 0; i < passive->devices.count; i++)
597 if (!acpi_processor_set_thermal_limit
598 (passive->devices.handles[i],
599 ACPI_PROCESSOR_LIMIT_DECREMENT))
600 result = 0;
601 if (result) {
602 passive->flags.enabled = 0;
603 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
604 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400608static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Len Brown4be44fc2005-08-05 00:44:28 -0400610 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400612 int i = 0;
613 int j = 0;
614 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 ACPI_FUNCTION_TRACE("acpi_thermal_active");
617
618 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400619 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Len Brown4be44fc2005-08-05 00:44:28 -0400621 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 active = &(tz->trips.active[i]);
623 if (!active || !active->flags.valid)
624 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400626 /*
627 * Above Threshold?
628 * ----------------
629 * If not already enabled, turn ON all cooling devices
630 * associated with this active threshold.
631 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400633 tz->state.active_index = i;
634 maxtemp = active->temperature;
635 if (active->flags.enabled)
636 continue;
637 for (j = 0; j < active->devices.count; j++) {
638 result =
639 acpi_bus_set_power(active->devices.
640 handles[j],
641 ACPI_STATE_D0);
642 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400643 printk(KERN_WARNING PREFIX
644 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400645 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400646 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400647 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400649 active->flags.enabled = 1;
650 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
651 "Cooling device [%p] now 'on'\n",
652 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400654 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400656 if (!active->flags.enabled)
657 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
659 * Below Threshold?
660 * ----------------
661 * Turn OFF all cooling devices associated with this
662 * threshold.
663 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400664 for (j = 0; j < active->devices.count; j++) {
665 result = acpi_bus_set_power(active->devices.handles[j],
666 ACPI_STATE_D3);
667 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400668 printk(KERN_WARNING PREFIX
669 "Unable to turn cooling device [%p] 'off'\n",
670 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400671 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400673 active->flags.enabled = 0;
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
675 "Cooling device [%p] now 'off'\n",
676 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Len Brown4be44fc2005-08-05 00:44:28 -0400681static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Len Brown4be44fc2005-08-05 00:44:28 -0400683static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct acpi_thermal *tz = (struct acpi_thermal *)data;
686 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400687 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Len Brown4be44fc2005-08-05 00:44:28 -0400692 int result = 0;
693 struct acpi_thermal *tz = (struct acpi_thermal *)data;
694 unsigned long sleep_time = 0;
695 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct acpi_thermal_state state;
697
698 ACPI_FUNCTION_TRACE("acpi_thermal_check");
699
700 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400701 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return_VOID;
703 }
704
705 state = tz->state;
706
707 result = acpi_thermal_get_temperature(tz);
708 if (result)
709 return_VOID;
Len Brown4be44fc2005-08-05 00:44:28 -0400710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
714 * Check Trip Points
715 * -----------------
716 * Compare the current temperature to the trip point values to see
717 * if we've entered one of the thermal policy states. Note that
718 * this function determines when a state is entered, but the
719 * individual policy decides when it is exited (e.g. hysteresis).
720 */
721 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400722 state.critical |=
723 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (tz->trips.hot.flags.valid)
725 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
726 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400727 state.passive |=
728 (tz->temperature >= tz->trips.passive.temperature);
729 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400731 state.active |=
732 (tz->temperature >=
733 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /*
736 * Invoke Policy
737 * -------------
738 * Separated from the above check to allow individual policy to
739 * determine when to exit a given state.
740 */
741 if (state.critical)
742 acpi_thermal_critical(tz);
743 if (state.hot)
744 acpi_thermal_hot(tz);
745 if (state.passive)
746 acpi_thermal_passive(tz);
747 if (state.active)
748 acpi_thermal_active(tz);
749
750 /*
751 * Calculate State
752 * ---------------
753 * Again, separated from the above two to allow independent policy
754 * decisions.
755 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400756 tz->state.critical = tz->trips.critical.flags.enabled;
757 tz->state.hot = tz->trips.hot.flags.enabled;
758 tz->state.passive = tz->trips.passive.flags.enabled;
759 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400760 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400761 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /*
764 * Calculate Sleep Time
765 * --------------------
766 * If we're in the passive state, use _TSP's value. Otherwise
767 * use the default polling frequency (e.g. _TZP). If no polling
768 * frequency is specified then we'll wait forever (at least until
769 * a thermal event occurs). Note that _TSP and _TZD values are
770 * given in 1/10th seconds (we must covert to milliseconds).
771 */
772 if (tz->state.passive)
773 sleep_time = tz->trips.passive.tsp * 100;
774 else if (tz->polling_frequency > 0)
775 sleep_time = tz->polling_frequency * 100;
776
Len Brown4be44fc2005-08-05 00:44:28 -0400777 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
778 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /*
781 * Schedule Next Poll
782 * ------------------
783 */
784 if (!sleep_time) {
785 if (timer_pending(&(tz->timer)))
786 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400787 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (timer_pending(&(tz->timer)))
789 mod_timer(&(tz->timer), (HZ * sleep_time) / 1000);
790 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400791 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 tz->timer.function = acpi_thermal_run;
793 tz->timer.expires = jiffies + (HZ * sleep_time) / 1000;
794 add_timer(&(tz->timer));
795 }
796 }
797
798 return_VOID;
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801/* --------------------------------------------------------------------------
802 FS Interface (/proc)
803 -------------------------------------------------------------------------- */
804
Len Brown4be44fc2005-08-05 00:44:28 -0400805static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
808{
Len Brown4be44fc2005-08-05 00:44:28 -0400809 struct acpi_thermal *tz = (struct acpi_thermal *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 ACPI_FUNCTION_TRACE("acpi_thermal_state_seq_show");
812
813 if (!tz)
814 goto end;
815
816 seq_puts(seq, "state: ");
817
Len Brown4be44fc2005-08-05 00:44:28 -0400818 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
819 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 seq_puts(seq, "ok\n");
821 else {
822 if (tz->state.critical)
823 seq_puts(seq, "critical ");
824 if (tz->state.hot)
825 seq_puts(seq, "hot ");
826 if (tz->state.passive)
827 seq_puts(seq, "passive ");
828 if (tz->state.active)
829 seq_printf(seq, "active[%d]", tz->state.active_index);
830 seq_puts(seq, "\n");
831 }
832
Len Brown4be44fc2005-08-05 00:44:28 -0400833 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return_VALUE(0);
835}
836
837static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
838{
839 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
843{
Len Brown4be44fc2005-08-05 00:44:28 -0400844 int result = 0;
845 struct acpi_thermal *tz = (struct acpi_thermal *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 ACPI_FUNCTION_TRACE("acpi_thermal_temp_seq_show");
848
849 if (!tz)
850 goto end;
851
852 result = acpi_thermal_get_temperature(tz);
853 if (result)
854 goto end;
855
Len Brown4be44fc2005-08-05 00:44:28 -0400856 seq_printf(seq, "temperature: %ld C\n",
857 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Len Brown4be44fc2005-08-05 00:44:28 -0400859 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return_VALUE(0);
861}
862
863static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
864{
865 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
869{
Len Brown4be44fc2005-08-05 00:44:28 -0400870 struct acpi_thermal *tz = (struct acpi_thermal *)seq->private;
871 int i = 0;
872 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 ACPI_FUNCTION_TRACE("acpi_thermal_trip_seq_show");
875
876 if (!tz)
877 goto end;
878
879 if (tz->trips.critical.flags.valid)
880 seq_printf(seq, "critical (S5): %ld C\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400881 KELVIN_TO_CELSIUS(tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (tz->trips.hot.flags.valid)
884 seq_printf(seq, "hot (S4): %ld C\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400885 KELVIN_TO_CELSIUS(tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -0400888 seq_printf(seq,
889 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
890 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
891 tz->trips.passive.tc1, tz->trips.passive.tc2,
892 tz->trips.passive.tsp);
893 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Len Brown4be44fc2005-08-05 00:44:28 -0400895 seq_printf(seq, "0x%p ",
896 tz->trips.passive.devices.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 seq_puts(seq, "\n");
899 }
900
901 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
902 if (!(tz->trips.active[i].flags.valid))
903 break;
904 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -0400905 i,
906 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
907 for (j = 0; j < tz->trips.active[i].devices.count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 seq_printf(seq, "0x%p ",
Len Brown4be44fc2005-08-05 00:44:28 -0400909 tz->trips.active[i].devices.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 seq_puts(seq, "\n");
911 }
912
Len Brown4be44fc2005-08-05 00:44:28 -0400913 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return_VALUE(0);
915}
916
917static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
918{
919 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
920}
921
922static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400923acpi_thermal_write_trip_points(struct file *file,
924 const char __user * buffer,
925 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Len Brown4be44fc2005-08-05 00:44:28 -0400927 struct seq_file *m = (struct seq_file *)file->private_data;
928 struct acpi_thermal *tz = (struct acpi_thermal *)m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Len Brown4be44fc2005-08-05 00:44:28 -0400930 char *limit_string;
931 int num, critical, hot, passive;
932 int *active;
933 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 ACPI_FUNCTION_TRACE("acpi_thermal_write_trip_points");
936
937 limit_string = kmalloc(ACPI_THERMAL_MAX_LIMIT_STR_LEN, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400938 if (!limit_string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return_VALUE(-ENOMEM);
940
941 memset(limit_string, 0, ACPI_THERMAL_MAX_LIMIT_STR_LEN);
942
Len Brown4be44fc2005-08-05 00:44:28 -0400943 active = kmalloc(ACPI_THERMAL_MAX_ACTIVE * sizeof(int), GFP_KERNEL);
Dave Jonesfdc136c2006-03-08 22:12:00 -0500944 if (!active) {
945 kfree(limit_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return_VALUE(-ENOMEM);
Dave Jonesfdc136c2006-03-08 22:12:00 -0500947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 if (!tz || (count > ACPI_THERMAL_MAX_LIMIT_STR_LEN - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 count = -EINVAL;
951 goto end;
952 }
Len Brown4be44fc2005-08-05 00:44:28 -0400953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (copy_from_user(limit_string, buffer, count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 count = -EFAULT;
956 goto end;
957 }
Len Brown4be44fc2005-08-05 00:44:28 -0400958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 limit_string[count] = '\0';
960
961 num = sscanf(limit_string, "%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d",
Len Brown4be44fc2005-08-05 00:44:28 -0400962 &critical, &hot, &passive,
963 &active[0], &active[1], &active[2], &active[3], &active[4],
964 &active[5], &active[6], &active[7], &active[8],
965 &active[9]);
966 if (!(num >= 5 && num < (ACPI_THERMAL_MAX_ACTIVE + 3))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 count = -EINVAL;
968 goto end;
969 }
970
971 tz->trips.critical.temperature = CELSIUS_TO_KELVIN(critical);
972 tz->trips.hot.temperature = CELSIUS_TO_KELVIN(hot);
973 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(passive);
974 for (i = 0; i < num - 3; i++) {
975 if (!(tz->trips.active[i].flags.valid))
976 break;
977 tz->trips.active[i].temperature = CELSIUS_TO_KELVIN(active[i]);
978 }
Len Brown4be44fc2005-08-05 00:44:28 -0400979
980 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 kfree(active);
982 kfree(limit_string);
983 return_VALUE(count);
984}
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
987{
Len Brown4be44fc2005-08-05 00:44:28 -0400988 struct acpi_thermal *tz = (struct acpi_thermal *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 ACPI_FUNCTION_TRACE("acpi_thermal_cooling_seq_show");
991
992 if (!tz)
993 goto end;
994
995 if (!tz->flags.cooling_mode) {
996 seq_puts(seq, "<setting not supported>\n");
997 }
998
Len Brown4be44fc2005-08-05 00:44:28 -0400999 if (tz->cooling_mode == ACPI_THERMAL_MODE_CRITICAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 seq_printf(seq, "cooling mode: critical\n");
1001 else
1002 seq_printf(seq, "cooling mode: %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001003 tz->cooling_mode ? "passive" : "active");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Len Brown4be44fc2005-08-05 00:44:28 -04001005 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return_VALUE(0);
1007}
1008
1009static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1010{
1011 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001012 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001016acpi_thermal_write_cooling_mode(struct file *file,
1017 const char __user * buffer,
1018 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Len Brown4be44fc2005-08-05 00:44:28 -04001020 struct seq_file *m = (struct seq_file *)file->private_data;
1021 struct acpi_thermal *tz = (struct acpi_thermal *)m->private;
1022 int result = 0;
1023 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 ACPI_FUNCTION_TRACE("acpi_thermal_write_cooling_mode");
1026
1027 if (!tz || (count > sizeof(mode_string) - 1))
1028 return_VALUE(-EINVAL);
1029
1030 if (!tz->flags.cooling_mode)
1031 return_VALUE(-ENODEV);
1032
1033 if (copy_from_user(mode_string, buffer, count))
1034 return_VALUE(-EFAULT);
Len Brown4be44fc2005-08-05 00:44:28 -04001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001037
1038 result = acpi_thermal_set_cooling_mode(tz,
1039 simple_strtoul(mode_string, NULL,
1040 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (result)
1042 return_VALUE(result);
1043
1044 acpi_thermal_check(tz);
1045
1046 return_VALUE(count);
1047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1050{
Len Brown4be44fc2005-08-05 00:44:28 -04001051 struct acpi_thermal *tz = (struct acpi_thermal *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 ACPI_FUNCTION_TRACE("acpi_thermal_polling_seq_show");
1054
1055 if (!tz)
1056 goto end;
1057
1058 if (!tz->polling_frequency) {
1059 seq_puts(seq, "<polling disabled>\n");
1060 goto end;
1061 }
1062
1063 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001064 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Len Brown4be44fc2005-08-05 00:44:28 -04001066 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return_VALUE(0);
1068}
1069
1070static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1071{
1072 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001073 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
1076static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001077acpi_thermal_write_polling(struct file *file,
1078 const char __user * buffer,
1079 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Len Brown4be44fc2005-08-05 00:44:28 -04001081 struct seq_file *m = (struct seq_file *)file->private_data;
1082 struct acpi_thermal *tz = (struct acpi_thermal *)m->private;
1083 int result = 0;
1084 char polling_string[12] = { '\0' };
1085 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 ACPI_FUNCTION_TRACE("acpi_thermal_write_polling");
1088
1089 if (!tz || (count > sizeof(polling_string) - 1))
1090 return_VALUE(-EINVAL);
Len Brown4be44fc2005-08-05 00:44:28 -04001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (copy_from_user(polling_string, buffer, count))
1093 return_VALUE(-EFAULT);
Len Brown4be44fc2005-08-05 00:44:28 -04001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 polling_string[count] = '\0';
1096
1097 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 result = acpi_thermal_set_polling(tz, seconds);
1100 if (result)
1101 return_VALUE(result);
1102
1103 acpi_thermal_check(tz);
1104
1105 return_VALUE(count);
1106}
1107
Len Brown4be44fc2005-08-05 00:44:28 -04001108static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Len Brown4be44fc2005-08-05 00:44:28 -04001110 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 ACPI_FUNCTION_TRACE("acpi_thermal_add_fs");
1113
1114 if (!acpi_device_dir(device)) {
1115 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001116 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (!acpi_device_dir(device))
1118 return_VALUE(-ENODEV);
1119 acpi_device_dir(device)->owner = THIS_MODULE;
1120 }
1121
1122 /* 'state' [R] */
1123 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001124 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001126 return_VALUE(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 else {
1128 entry->proc_fops = &acpi_thermal_state_fops;
1129 entry->data = acpi_driver_data(device);
1130 entry->owner = THIS_MODULE;
1131 }
1132
1133 /* 'temperature' [R] */
1134 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001135 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001137 return_VALUE(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 else {
1139 entry->proc_fops = &acpi_thermal_temp_fops;
1140 entry->data = acpi_driver_data(device);
1141 entry->owner = THIS_MODULE;
1142 }
1143
1144 /* 'trip_points' [R/W] */
1145 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Len Brown4be44fc2005-08-05 00:44:28 -04001146 S_IFREG | S_IRUGO | S_IWUSR,
1147 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001149 return_VALUE(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 else {
1151 entry->proc_fops = &acpi_thermal_trip_fops;
1152 entry->data = acpi_driver_data(device);
1153 entry->owner = THIS_MODULE;
1154 }
1155
1156 /* 'cooling_mode' [R/W] */
1157 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001158 S_IFREG | S_IRUGO | S_IWUSR,
1159 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001161 return_VALUE(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 else {
1163 entry->proc_fops = &acpi_thermal_cooling_fops;
1164 entry->data = acpi_driver_data(device);
1165 entry->owner = THIS_MODULE;
1166 }
1167
1168 /* 'polling_frequency' [R/W] */
1169 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001170 S_IFREG | S_IRUGO | S_IWUSR,
1171 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001173 return_VALUE(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 else {
1175 entry->proc_fops = &acpi_thermal_polling_fops;
1176 entry->data = acpi_driver_data(device);
1177 entry->owner = THIS_MODULE;
1178 }
1179
1180 return_VALUE(0);
1181}
1182
Len Brown4be44fc2005-08-05 00:44:28 -04001183static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 ACPI_FUNCTION_TRACE("acpi_thermal_remove_fs");
1186
1187 if (acpi_device_dir(device)) {
1188 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1189 acpi_device_dir(device));
1190 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1191 acpi_device_dir(device));
1192 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1193 acpi_device_dir(device));
1194 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1195 acpi_device_dir(device));
1196 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1197 acpi_device_dir(device));
1198 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1199 acpi_device_dir(device) = NULL;
1200 }
1201
1202 return_VALUE(0);
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205/* --------------------------------------------------------------------------
1206 Driver Interface
1207 -------------------------------------------------------------------------- */
1208
Len Brown4be44fc2005-08-05 00:44:28 -04001209static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Len Brown4be44fc2005-08-05 00:44:28 -04001211 struct acpi_thermal *tz = (struct acpi_thermal *)data;
1212 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 ACPI_FUNCTION_TRACE("acpi_thermal_notify");
1215
1216 if (!tz)
1217 return_VOID;
1218
1219 if (acpi_bus_get_device(tz->handle, &device))
1220 return_VOID;
1221
1222 switch (event) {
1223 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1224 acpi_thermal_check(tz);
1225 break;
1226 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
1227 acpi_thermal_get_trip_points(tz);
1228 acpi_thermal_check(tz);
1229 acpi_bus_generate_event(device, event, 0);
1230 break;
1231 case ACPI_THERMAL_NOTIFY_DEVICES:
1232 if (tz->flags.devices)
1233 acpi_thermal_get_devices(tz);
1234 acpi_bus_generate_event(device, event, 0);
1235 break;
1236 default:
1237 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001238 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 break;
1240 }
1241
1242 return_VOID;
1243}
1244
Len Brown4be44fc2005-08-05 00:44:28 -04001245static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Len Brown4be44fc2005-08-05 00:44:28 -04001247 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 ACPI_FUNCTION_TRACE("acpi_thermal_get_info");
1250
1251 if (!tz)
1252 return_VALUE(-EINVAL);
1253
1254 /* Get temperature [_TMP] (required) */
1255 result = acpi_thermal_get_temperature(tz);
1256 if (result)
1257 return_VALUE(result);
1258
1259 /* Get trip points [_CRT, _PSV, etc.] (required) */
1260 result = acpi_thermal_get_trip_points(tz);
1261 if (result)
1262 return_VALUE(result);
1263
1264 /* Set the cooling mode [_SCP] to active cooling (default) */
1265 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001266 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 tz->flags.cooling_mode = 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001268 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* Oh,we have not _SCP method.
Len Brown4be44fc2005-08-05 00:44:28 -04001270 Generally show cooling_mode by _ACx, _PSV,spec 12.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 tz->flags.cooling_mode = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001272 if (tz->trips.active[0].flags.valid
1273 && tz->trips.passive.flags.valid) {
1274 if (tz->trips.passive.temperature >
1275 tz->trips.active[0].temperature)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 tz->cooling_mode = ACPI_THERMAL_MODE_ACTIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001277 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 tz->cooling_mode = ACPI_THERMAL_MODE_PASSIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001279 } else if (!tz->trips.active[0].flags.valid
1280 && tz->trips.passive.flags.valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 tz->cooling_mode = ACPI_THERMAL_MODE_PASSIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001282 } else if (tz->trips.active[0].flags.valid
1283 && !tz->trips.passive.flags.valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 tz->cooling_mode = ACPI_THERMAL_MODE_ACTIVE;
1285 } else {
1286 /* _ACx and _PSV are optional, but _CRT is required */
1287 tz->cooling_mode = ACPI_THERMAL_MODE_CRITICAL;
1288 }
1289 }
1290
1291 /* Get default polling frequency [_TZP] (optional) */
1292 if (tzp)
1293 tz->polling_frequency = tzp;
1294 else
1295 acpi_thermal_get_polling_frequency(tz);
1296
1297 /* Get devices in this thermal zone [_TZD] (optional) */
1298 result = acpi_thermal_get_devices(tz);
1299 if (!result)
1300 tz->flags.devices = 1;
1301
1302 return_VALUE(0);
1303}
1304
Len Brown4be44fc2005-08-05 00:44:28 -04001305static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Len Brown4be44fc2005-08-05 00:44:28 -04001307 int result = 0;
1308 acpi_status status = AE_OK;
1309 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 ACPI_FUNCTION_TRACE("acpi_thermal_add");
1312
1313 if (!device)
1314 return_VALUE(-EINVAL);
1315
1316 tz = kmalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
1317 if (!tz)
1318 return_VALUE(-ENOMEM);
1319 memset(tz, 0, sizeof(struct acpi_thermal));
1320
1321 tz->handle = device->handle;
1322 strcpy(tz->name, device->pnp.bus_id);
1323 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1324 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1325 acpi_driver_data(device) = tz;
1326
1327 result = acpi_thermal_get_info(tz);
1328 if (result)
1329 goto end;
1330
1331 result = acpi_thermal_add_fs(device);
1332 if (result)
Vasily Averin09047e72006-04-27 05:25:00 -04001333 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 init_timer(&tz->timer);
1336
1337 acpi_thermal_check(tz);
1338
1339 status = acpi_install_notify_handler(tz->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001340 ACPI_DEVICE_NOTIFY,
1341 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 result = -ENODEV;
1344 goto end;
1345 }
1346
1347 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001348 acpi_device_name(device), acpi_device_bid(device),
1349 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Len Brown4be44fc2005-08-05 00:44:28 -04001351 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (result) {
1353 acpi_thermal_remove_fs(device);
1354 kfree(tz);
1355 }
1356
1357 return_VALUE(result);
1358}
1359
Len Brown4be44fc2005-08-05 00:44:28 -04001360static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Len Brown4be44fc2005-08-05 00:44:28 -04001362 acpi_status status = AE_OK;
1363 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 ACPI_FUNCTION_TRACE("acpi_thermal_remove");
1366
1367 if (!device || !acpi_driver_data(device))
1368 return_VALUE(-EINVAL);
1369
Len Brown4be44fc2005-08-05 00:44:28 -04001370 tz = (struct acpi_thermal *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 /* avoid timer adding new defer task */
1373 tz->zombie = 1;
1374 /* wait for running timer (on other CPUs) finish */
1375 del_timer_sync(&(tz->timer));
1376 /* synchronize deferred task */
1377 acpi_os_wait_events_complete(NULL);
1378 /* deferred task may reinsert timer */
1379 del_timer_sync(&(tz->timer));
1380
1381 status = acpi_remove_notify_handler(tz->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001382 ACPI_DEVICE_NOTIFY,
1383 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001386 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 tz->trips.passive.flags.enabled = 0;
1388 acpi_thermal_passive(tz);
1389 }
1390 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001391 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 tz->trips.active[0].flags.enabled = 0;
1393 acpi_thermal_active(tz);
1394 }
1395
1396 acpi_thermal_remove_fs(device);
1397
1398 kfree(tz);
1399 return_VALUE(0);
1400}
1401
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001402static int acpi_thermal_resume(struct acpi_device *device, int state)
1403{
1404 struct acpi_thermal *tz = NULL;
1405
1406 if (!device || !acpi_driver_data(device))
1407 return_VALUE(-EINVAL);
1408
1409 tz = (struct acpi_thermal *)acpi_driver_data(device);
1410
1411 acpi_thermal_check(tz);
1412
1413 return AE_OK;
1414}
1415
Len Brown4be44fc2005-08-05 00:44:28 -04001416static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Len Brown4be44fc2005-08-05 00:44:28 -04001418 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 ACPI_FUNCTION_TRACE("acpi_thermal_init");
1421
1422 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1423 if (!acpi_thermal_dir)
1424 return_VALUE(-ENODEV);
1425 acpi_thermal_dir->owner = THIS_MODULE;
1426
1427 result = acpi_bus_register_driver(&acpi_thermal_driver);
1428 if (result < 0) {
1429 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1430 return_VALUE(-ENODEV);
1431 }
1432
1433 return_VALUE(0);
1434}
1435
Len Brown4be44fc2005-08-05 00:44:28 -04001436static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 ACPI_FUNCTION_TRACE("acpi_thermal_exit");
1439
1440 acpi_bus_unregister_driver(&acpi_thermal_driver);
1441
1442 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1443
1444 return_VOID;
1445}
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447module_init(acpi_thermal_init);
1448module_exit(acpi_thermal_exit);