blob: 4c420feba20717ec7e0dc3f2ca0b71bc912f2098 [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>
Len Brown0b5bfa12007-08-12 00:13:02 -040036#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/proc_fs.h>
Tim Schmielaucd354f12007-02-14 00:33:14 -080040#include <linux/timer.h>
41#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/kmod.h>
43#include <linux/seq_file.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070044#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
46
47#include <acpi/acpi_bus.h>
48#include <acpi/acpi_drivers.h>
49
50#define ACPI_THERMAL_COMPONENT 0x04000000
51#define ACPI_THERMAL_CLASS "thermal_zone"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
53#define ACPI_THERMAL_FILE_STATE "state"
54#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
55#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
56#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
57#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
58#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
59#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
60#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
61#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
62#define ACPI_THERMAL_NOTIFY_HOT 0xF1
63#define ACPI_THERMAL_MODE_ACTIVE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#define ACPI_THERMAL_MAX_ACTIVE 10
66#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
67
68#define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732>=0) ? ((long)t-2732+5)/10 : ((long)t-2732-5)/10)
69#define CELSIUS_TO_KELVIN(t) ((t+273)*10)
70
71#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050072ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040074MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050075MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076MODULE_LICENSE("GPL");
77
Len Brownf8707ec2007-08-12 00:12:54 -040078static int act;
79module_param(act, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040080MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
Len Brownf8707ec2007-08-12 00:12:54 -040081
Len Brownc52a7412007-08-14 15:49:32 -040082static int crt;
83module_param(crt, int, 0644);
84MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040087module_param(tzp, int, 0444);
Len Brown3c1d36d2007-08-14 15:12:56 -040088MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Len Brownf5487142007-08-12 00:12:44 -040090static int nocrt;
91module_param(nocrt, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040092MODULE_PARM_DESC(nocrt, "Set to disable action on ACPI thermal zone critical and hot trips.");
Len Brownf5487142007-08-12 00:12:44 -040093
Len Brown72b33ef2007-08-12 00:12:17 -040094static int off;
95module_param(off, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040096MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
Len Brown72b33ef2007-08-12 00:12:17 -040097
Len Browna70cdc52007-08-12 00:12:35 -040098static int psv;
99module_param(psv, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -0400100MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
Len Browna70cdc52007-08-12 00:12:35 -0400101
Len Brown4be44fc2005-08-05 00:44:28 -0400102static int acpi_thermal_add(struct acpi_device *device);
103static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800104static int acpi_thermal_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
106static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
107static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400109static ssize_t acpi_thermal_write_cooling_mode(struct file *,
110 const char __user *, size_t,
111 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400113static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
114 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200116static const struct acpi_device_id thermal_device_ids[] = {
117 {ACPI_THERMAL_HID, 0},
118 {"", 0},
119};
120MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500123 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400124 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200125 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400126 .ops = {
127 .add = acpi_thermal_add,
128 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400129 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400130 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400134 u8 critical:1;
135 u8 hot:1;
136 u8 passive:1;
137 u8 active:1;
138 u8 reserved:4;
139 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400143 u8 valid:1;
144 u8 enabled:1;
145 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148struct acpi_thermal_critical {
149 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400150 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153struct acpi_thermal_hot {
154 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct acpi_thermal_passive {
159 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 unsigned long temperature;
161 unsigned long tc1;
162 unsigned long tc2;
163 unsigned long tsp;
164 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167struct acpi_thermal_active {
168 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400169 unsigned long temperature;
170 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173struct acpi_thermal_trips {
174 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct acpi_thermal_passive passive;
177 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
178};
179
180struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400181 u8 cooling_mode:1; /* _SCP */
182 u8 devices:1; /* _TZD */
183 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
186struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400187 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400188 acpi_bus_id name;
189 unsigned long temperature;
190 unsigned long last_temperature;
191 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct acpi_thermal_flags flags;
194 struct acpi_thermal_state state;
195 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400196 struct acpi_handle_list devices;
197 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
Arjan van de Vend7508032006-07-04 13:06:00 -0400200static const struct file_operations acpi_thermal_state_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 .open = acpi_thermal_state_open_fs,
202 .read = seq_read,
203 .llseek = seq_lseek,
204 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Arjan van de Vend7508032006-07-04 13:06:00 -0400207static const struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400208 .open = acpi_thermal_temp_open_fs,
209 .read = seq_read,
210 .llseek = seq_lseek,
211 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Arjan van de Vend7508032006-07-04 13:06:00 -0400214static const struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400215 .open = acpi_thermal_trip_open_fs,
216 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 .llseek = seq_lseek,
218 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Arjan van de Vend7508032006-07-04 13:06:00 -0400221static const struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400222 .open = acpi_thermal_cooling_open_fs,
223 .read = seq_read,
224 .write = acpi_thermal_write_cooling_mode,
225 .llseek = seq_lseek,
226 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
Arjan van de Vend7508032006-07-04 13:06:00 -0400229static const struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400230 .open = acpi_thermal_polling_open_fs,
231 .read = seq_read,
232 .write = acpi_thermal_write_polling,
233 .llseek = seq_lseek,
234 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
237/* --------------------------------------------------------------------------
238 Thermal Zone Management
239 -------------------------------------------------------------------------- */
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Len Brown4be44fc2005-08-05 00:44:28 -0400243 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400247 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 tz->last_temperature = tz->temperature;
250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400252 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400254 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
257 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Len Brown4be44fc2005-08-05 00:44:28 -0400264 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400268 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400271 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400272 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Len Brown4be44fc2005-08-05 00:44:28 -0400276 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
277 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Patrick Mocheld550d982006-06-27 00:41:40 -0400279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Len Brown4be44fc2005-08-05 00:44:28 -0400282static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
291 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500292 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Len Brown4be44fc2005-08-05 00:44:28 -0400297static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Len Brown4be44fc2005-08-05 00:44:28 -0400299 acpi_status status = AE_OK;
300 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
301 struct acpi_object_list arg_list = { 1, &arg0 };
302 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400308 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (ACPI_FAILURE(status)) {
310 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 arg0.integer.value = mode;
315
316 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
317 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400318 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Patrick Mocheld550d982006-06-27 00:41:40 -0400320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Len Brown4be44fc2005-08-05 00:44:28 -0400323static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Len Brown4be44fc2005-08-05 00:44:28 -0400325 acpi_status status = AE_OK;
326 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* Critical Shutdown (required) */
333
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400334 status = acpi_evaluate_integer(tz->device->handle, "_CRT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400335 &tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (ACPI_FAILURE(status)) {
337 tz->trips.critical.flags.valid = 0;
Thomas Renningera6fc6722006-06-26 23:58:43 -0400338 ACPI_EXCEPTION((AE_INFO, status, "No critical threshold"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400339 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400340 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 tz->trips.critical.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400342 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
343 "Found critical threshold [%lu]\n",
344 tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Len Brownc52a7412007-08-14 15:49:32 -0400347 if (tz->trips.critical.flags.valid == 1) {
348 if (crt == -1) {
349 tz->trips.critical.flags.valid = 0;
350 } else if (crt > 0) {
351 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
352
353 /*
354 * Allow override to lower critical threshold
355 */
356 if (crt_k < tz->trips.critical.temperature)
357 tz->trips.critical.temperature = crt_k;
358 }
359 }
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* Critical Sleep (optional) */
362
Len Brown4be44fc2005-08-05 00:44:28 -0400363 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400364 acpi_evaluate_integer(tz->device->handle, "_HOT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400365 &tz->trips.hot.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (ACPI_FAILURE(status)) {
367 tz->trips.hot.flags.valid = 0;
368 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No hot threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400369 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 tz->trips.hot.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400371 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found hot threshold [%lu]\n",
372 tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 /* Passive: Processors (optional) */
376
Len Browna70cdc52007-08-12 00:12:35 -0400377 if (psv == -1) {
378 status = AE_SUPPORT;
379 } else if (psv > 0) {
380 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
381 status = AE_OK;
382 } else {
383 status = acpi_evaluate_integer(tz->device->handle,
384 "_PSV", NULL, &tz->trips.passive.temperature);
385 }
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (ACPI_FAILURE(status)) {
388 tz->trips.passive.flags.valid = 0;
389 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No passive threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400390 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 tz->trips.passive.flags.valid = 1;
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400394 acpi_evaluate_integer(tz->device->handle, "_TC1", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400395 &tz->trips.passive.tc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (ACPI_FAILURE(status))
397 tz->trips.passive.flags.valid = 0;
398
Len Brown4be44fc2005-08-05 00:44:28 -0400399 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400400 acpi_evaluate_integer(tz->device->handle, "_TC2", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400401 &tz->trips.passive.tc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (ACPI_FAILURE(status))
403 tz->trips.passive.flags.valid = 0;
404
Len Brown4be44fc2005-08-05 00:44:28 -0400405 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400406 acpi_evaluate_integer(tz->device->handle, "_TSP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400407 &tz->trips.passive.tsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (ACPI_FAILURE(status))
409 tz->trips.passive.flags.valid = 0;
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400412 acpi_evaluate_reference(tz->device->handle, "_PSL", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400413 &tz->trips.passive.devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (ACPI_FAILURE(status))
415 tz->trips.passive.flags.valid = 0;
416
417 if (!tz->trips.passive.flags.valid)
Len Browncece9292006-06-26 23:04:31 -0400418 printk(KERN_WARNING PREFIX "Invalid passive threshold\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 else
Len Brown4be44fc2005-08-05 00:44:28 -0400420 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
421 "Found passive threshold [%lu]\n",
422 tz->trips.passive.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
425 /* Active: Fans, etc. (optional) */
426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Len Brown4be44fc2005-08-05 00:44:28 -0400429 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Len Brownf8707ec2007-08-12 00:12:54 -0400431 if (act == -1)
432 break; /* disable all active trip points */
433
434 status = acpi_evaluate_integer(tz->device->handle,
435 name, NULL, &tz->trips.active[i].temperature);
436
437 if (ACPI_FAILURE(status)) {
438 if (i == 0) /* no active trip points */
439 break;
440 if (act <= 0) /* no override requested */
441 break;
442 if (i == 1) { /* 1 trip point */
443 tz->trips.active[0].temperature =
444 CELSIUS_TO_KELVIN(act);
445 } else { /* multiple trips */
446 /*
447 * Don't allow override higher than
448 * the next higher trip point
449 */
450 tz->trips.active[i - 1].temperature =
451 (tz->trips.active[i - 2].temperature <
452 CELSIUS_TO_KELVIN(act) ?
453 tz->trips.active[i - 2].temperature :
454 CELSIUS_TO_KELVIN(act));
455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
Len Brownf8707ec2007-08-12 00:12:54 -0400457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 name[2] = 'L';
Len Brown4be44fc2005-08-05 00:44:28 -0400460 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400461 acpi_evaluate_reference(tz->device->handle, name, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400462 &tz->trips.active[i].devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (ACPI_SUCCESS(status)) {
464 tz->trips.active[i].flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400465 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
466 "Found active threshold [%d]:[%lu]\n",
467 i, tz->trips.active[i].temperature));
468 } else
Thomas Renningera6fc6722006-06-26 23:58:43 -0400469 ACPI_EXCEPTION((AE_INFO, status,
470 "Invalid active threshold [%d]", i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472
Patrick Mocheld550d982006-06-27 00:41:40 -0400473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Len Brown4be44fc2005-08-05 00:44:28 -0400476static int acpi_thermal_get_devices(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Len Brown4be44fc2005-08-05 00:44:28 -0400478 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400482 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Len Brown4be44fc2005-08-05 00:44:28 -0400484 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400485 acpi_evaluate_reference(tz->device->handle, "_TZD", NULL, &tz->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Patrick Mocheld550d982006-06-27 00:41:40 -0400489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Len Brown4be44fc2005-08-05 00:44:28 -0400492static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Len Brownf5487142007-08-12 00:12:44 -0400494 if (!tz || !tz->trips.critical.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400495 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400498 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400500 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 tz->trips.critical.flags.enabled = 0;
502
Len Brown4be44fc2005-08-05 00:44:28 -0400503 printk(KERN_EMERG
504 "Critical temperature reached (%ld C), shutting down.\n",
505 KELVIN_TO_CELSIUS(tz->temperature));
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400506 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400507 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700509 orderly_poweroff(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Patrick Mocheld550d982006-06-27 00:41:40 -0400511 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Len Brownf5487142007-08-12 00:12:44 -0400516 if (!tz || !tz->trips.hot.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400517 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400520 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400522 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 tz->trips.hot.flags.enabled = 0;
524
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400525 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400526 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* TBD: Call user-mode "sleep(S4)" function */
529
Patrick Mocheld550d982006-06-27 00:41:40 -0400530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400533static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400535 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400537 int trend = 0;
538 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400542 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 passive = &(tz->trips.passive);
545
546 /*
547 * Above Trip?
548 * -----------
549 * Calculate the thermal trend (using the passive cooling equation)
550 * and modify the performance limit for all passive cooling devices
551 * accordingly. Note that we assume symmetry.
552 */
553 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400554 trend =
555 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
556 (passive->tc2 * (tz->temperature - passive->temperature));
557 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
558 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
559 trend, passive->tc1, tz->temperature,
560 tz->last_temperature, passive->tc2,
561 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400562 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* Heating up? */
564 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400565 for (i = 0; i < passive->devices.count; i++)
566 acpi_processor_set_thermal_limit(passive->
567 devices.
568 handles[i],
569 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400571 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400572 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400573 /*
574 * assume that we are on highest
575 * freq/lowest thrott and can leave
576 * passive mode, even in error case
577 */
578 if (!acpi_processor_set_thermal_limit
579 (passive->devices.handles[i],
580 ACPI_PROCESSOR_LIMIT_DECREMENT))
581 result = 0;
582 /*
583 * Leave cooling mode, even if the temp might
584 * higher than trip point This is because some
585 * machines might have long thermal polling
586 * frequencies (tsp) defined. We will fall back
587 * into passive mode in next cycle (probably quicker)
588 */
589 if (result) {
590 passive->flags.enabled = 0;
591 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
592 "Disabling passive cooling, still above threshold,"
593 " but we are cooling down\n"));
594 }
595 }
596 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
599 /*
600 * Below Trip?
601 * -----------
602 * Implement passive cooling hysteresis to slowly increase performance
603 * and avoid thrashing around the passive trip point. Note that we
604 * assume symmetry.
605 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400606 if (!passive->flags.enabled)
607 return;
608 for (i = 0; i < passive->devices.count; i++)
609 if (!acpi_processor_set_thermal_limit
610 (passive->devices.handles[i],
611 ACPI_PROCESSOR_LIMIT_DECREMENT))
612 result = 0;
613 if (result) {
614 passive->flags.enabled = 0;
615 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
616 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400620static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Len Brown4be44fc2005-08-05 00:44:28 -0400622 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400624 int i = 0;
625 int j = 0;
626 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400630 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Len Brown4be44fc2005-08-05 00:44:28 -0400632 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 active = &(tz->trips.active[i]);
634 if (!active || !active->flags.valid)
635 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400637 /*
638 * Above Threshold?
639 * ----------------
640 * If not already enabled, turn ON all cooling devices
641 * associated with this active threshold.
642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400644 tz->state.active_index = i;
645 maxtemp = active->temperature;
646 if (active->flags.enabled)
647 continue;
648 for (j = 0; j < active->devices.count; j++) {
649 result =
650 acpi_bus_set_power(active->devices.
651 handles[j],
652 ACPI_STATE_D0);
653 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400654 printk(KERN_WARNING PREFIX
655 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400656 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400657 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400658 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400660 active->flags.enabled = 1;
661 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
662 "Cooling device [%p] now 'on'\n",
663 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400665 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400667 if (!active->flags.enabled)
668 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 /*
670 * Below Threshold?
671 * ----------------
672 * Turn OFF all cooling devices associated with this
673 * threshold.
674 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400675 for (j = 0; j < active->devices.count; j++) {
676 result = acpi_bus_set_power(active->devices.handles[j],
677 ACPI_STATE_D3);
678 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400679 printk(KERN_WARNING PREFIX
680 "Unable to turn cooling device [%p] 'off'\n",
681 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400682 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400684 active->flags.enabled = 0;
685 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
686 "Cooling device [%p] now 'off'\n",
687 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Len Brown4be44fc2005-08-05 00:44:28 -0400692static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Len Brown4be44fc2005-08-05 00:44:28 -0400694static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct acpi_thermal *tz = (struct acpi_thermal *)data;
697 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400698 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Len Brown4be44fc2005-08-05 00:44:28 -0400701static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Len Brown4be44fc2005-08-05 00:44:28 -0400703 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200704 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400705 unsigned long sleep_time = 0;
706 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 struct acpi_thermal_state state;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400711 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714
715 state = tz->state;
716
717 result = acpi_thermal_get_temperature(tz);
718 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400719 return;
Len Brown4be44fc2005-08-05 00:44:28 -0400720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /*
724 * Check Trip Points
725 * -----------------
726 * Compare the current temperature to the trip point values to see
727 * if we've entered one of the thermal policy states. Note that
728 * this function determines when a state is entered, but the
729 * individual policy decides when it is exited (e.g. hysteresis).
730 */
731 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400732 state.critical |=
733 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (tz->trips.hot.flags.valid)
735 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
736 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400737 state.passive |=
738 (tz->temperature >= tz->trips.passive.temperature);
739 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400741 state.active |=
742 (tz->temperature >=
743 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /*
746 * Invoke Policy
747 * -------------
748 * Separated from the above check to allow individual policy to
749 * determine when to exit a given state.
750 */
751 if (state.critical)
752 acpi_thermal_critical(tz);
753 if (state.hot)
754 acpi_thermal_hot(tz);
755 if (state.passive)
756 acpi_thermal_passive(tz);
757 if (state.active)
758 acpi_thermal_active(tz);
759
760 /*
761 * Calculate State
762 * ---------------
763 * Again, separated from the above two to allow independent policy
764 * decisions.
765 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400766 tz->state.critical = tz->trips.critical.flags.enabled;
767 tz->state.hot = tz->trips.hot.flags.enabled;
768 tz->state.passive = tz->trips.passive.flags.enabled;
769 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400770 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400771 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /*
774 * Calculate Sleep Time
775 * --------------------
776 * If we're in the passive state, use _TSP's value. Otherwise
777 * use the default polling frequency (e.g. _TZP). If no polling
778 * frequency is specified then we'll wait forever (at least until
779 * a thermal event occurs). Note that _TSP and _TZD values are
780 * given in 1/10th seconds (we must covert to milliseconds).
781 */
782 if (tz->state.passive)
783 sleep_time = tz->trips.passive.tsp * 100;
784 else if (tz->polling_frequency > 0)
785 sleep_time = tz->polling_frequency * 100;
786
Len Brown4be44fc2005-08-05 00:44:28 -0400787 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
788 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 /*
791 * Schedule Next Poll
792 * ------------------
793 */
794 if (!sleep_time) {
795 if (timer_pending(&(tz->timer)))
796 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400797 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (timer_pending(&(tz->timer)))
Andrew Morton94e22e12007-04-23 14:41:13 -0700799 mod_timer(&(tz->timer),
800 jiffies + (HZ * sleep_time) / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400802 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 tz->timer.function = acpi_thermal_run;
804 tz->timer.expires = jiffies + (HZ * sleep_time) / 1000;
805 add_timer(&(tz->timer));
806 }
807 }
808
Patrick Mocheld550d982006-06-27 00:41:40 -0400809 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/* --------------------------------------------------------------------------
813 FS Interface (/proc)
814 -------------------------------------------------------------------------- */
815
Len Brown4be44fc2005-08-05 00:44:28 -0400816static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
819{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200820 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (!tz)
824 goto end;
825
826 seq_puts(seq, "state: ");
827
Len Brown4be44fc2005-08-05 00:44:28 -0400828 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
829 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 seq_puts(seq, "ok\n");
831 else {
832 if (tz->state.critical)
833 seq_puts(seq, "critical ");
834 if (tz->state.hot)
835 seq_puts(seq, "hot ");
836 if (tz->state.passive)
837 seq_puts(seq, "passive ");
838 if (tz->state.active)
839 seq_printf(seq, "active[%d]", tz->state.active_index);
840 seq_puts(seq, "\n");
841 }
842
Len Brown4be44fc2005-08-05 00:44:28 -0400843 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
847static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
848{
849 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
853{
Len Brown4be44fc2005-08-05 00:44:28 -0400854 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200855 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (!tz)
859 goto end;
860
861 result = acpi_thermal_get_temperature(tz);
862 if (result)
863 goto end;
864
Len Brown4be44fc2005-08-05 00:44:28 -0400865 seq_printf(seq, "temperature: %ld C\n",
866 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Len Brown4be44fc2005-08-05 00:44:28 -0400868 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400869 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
873{
874 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
878{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200879 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100880 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -0400881 acpi_status status;
882
Len Brown4be44fc2005-08-05 00:44:28 -0400883 int i = 0;
884 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (!tz)
888 goto end;
889
890 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -0400891 seq_printf(seq, "critical (S5): %ld C%s",
892 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
893 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -0400896 seq_printf(seq, "hot (S4): %ld C%s",
897 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
898 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -0400901 seq_printf(seq,
902 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
903 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
904 tz->trips.passive.tc1, tz->trips.passive.tc2,
905 tz->trips.passive.tsp);
906 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -0400907 status = acpi_bus_get_device(tz->trips.passive.devices.
908 handles[j], &device);
909 seq_printf(seq, "%4.4s ", status ? "" :
910 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 seq_puts(seq, "\n");
913 }
914
915 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
916 if (!(tz->trips.active[i].flags.valid))
917 break;
918 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -0400919 i,
920 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100921 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -0400922 status = acpi_bus_get_device(tz->trips.active[i].
923 devices.handles[j],
924 &device);
925 seq_printf(seq, "%4.4s ", status ? "" :
926 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 seq_puts(seq, "\n");
929 }
930
Len Brown4be44fc2005-08-05 00:44:28 -0400931 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
936{
937 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
941{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200942 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 if (!tz)
946 goto end;
947
Len Browneaca2d32007-04-30 23:27:43 -0400948 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 else
Len Browneaca2d32007-04-30 23:27:43 -0400951 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Len Brown4be44fc2005-08-05 00:44:28 -0400953 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
958{
959 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400960 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400964acpi_thermal_write_cooling_mode(struct file *file,
965 const char __user * buffer,
966 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200968 struct seq_file *m = file->private_data;
969 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400970 int result = 0;
971 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400975 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -0400978 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -0400981 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -0400984
985 result = acpi_thermal_set_cooling_mode(tz,
986 simple_strtoul(mode_string, NULL,
987 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400989 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 acpi_thermal_check(tz);
992
Patrick Mocheld550d982006-06-27 00:41:40 -0400993 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
997{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200998 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 if (!tz)
1002 goto end;
1003
1004 if (!tz->polling_frequency) {
1005 seq_puts(seq, "<polling disabled>\n");
1006 goto end;
1007 }
1008
1009 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001010 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Len Brown4be44fc2005-08-05 00:44:28 -04001012 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001013 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
1016static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1017{
1018 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001019 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001023acpi_thermal_write_polling(struct file *file,
1024 const char __user * buffer,
1025 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001027 struct seq_file *m = file->private_data;
1028 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001029 int result = 0;
1030 char polling_string[12] = { '\0' };
1031 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001035 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 polling_string[count] = '\0';
1041
1042 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 result = acpi_thermal_set_polling(tz, seconds);
1045 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001046 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 acpi_thermal_check(tz);
1049
Patrick Mocheld550d982006-06-27 00:41:40 -04001050 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Len Brown4be44fc2005-08-05 00:44:28 -04001053static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Len Brown4be44fc2005-08-05 00:44:28 -04001055 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (!acpi_device_dir(device)) {
1059 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001060 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001062 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 acpi_device_dir(device)->owner = THIS_MODULE;
1064 }
1065
1066 /* 'state' [R] */
1067 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001068 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001070 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 else {
1072 entry->proc_fops = &acpi_thermal_state_fops;
1073 entry->data = acpi_driver_data(device);
1074 entry->owner = THIS_MODULE;
1075 }
1076
1077 /* 'temperature' [R] */
1078 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001079 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001081 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 else {
1083 entry->proc_fops = &acpi_thermal_temp_fops;
1084 entry->data = acpi_driver_data(device);
1085 entry->owner = THIS_MODULE;
1086 }
1087
1088 /* 'trip_points' [R/W] */
1089 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Len Brown4be44fc2005-08-05 00:44:28 -04001090 S_IFREG | S_IRUGO | S_IWUSR,
1091 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001093 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 else {
1095 entry->proc_fops = &acpi_thermal_trip_fops;
1096 entry->data = acpi_driver_data(device);
1097 entry->owner = THIS_MODULE;
1098 }
1099
1100 /* 'cooling_mode' [R/W] */
1101 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001102 S_IFREG | S_IRUGO | S_IWUSR,
1103 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001105 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 else {
1107 entry->proc_fops = &acpi_thermal_cooling_fops;
1108 entry->data = acpi_driver_data(device);
1109 entry->owner = THIS_MODULE;
1110 }
1111
1112 /* 'polling_frequency' [R/W] */
1113 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001114 S_IFREG | S_IRUGO | S_IWUSR,
1115 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001117 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 else {
1119 entry->proc_fops = &acpi_thermal_polling_fops;
1120 entry->data = acpi_driver_data(device);
1121 entry->owner = THIS_MODULE;
1122 }
1123
Patrick Mocheld550d982006-06-27 00:41:40 -04001124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
Len Brown4be44fc2005-08-05 00:44:28 -04001127static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 if (acpi_device_dir(device)) {
1131 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1132 acpi_device_dir(device));
1133 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1134 acpi_device_dir(device));
1135 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1136 acpi_device_dir(device));
1137 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1138 acpi_device_dir(device));
1139 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1140 acpi_device_dir(device));
1141 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1142 acpi_device_dir(device) = NULL;
1143 }
1144
Patrick Mocheld550d982006-06-27 00:41:40 -04001145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/* --------------------------------------------------------------------------
1149 Driver Interface
1150 -------------------------------------------------------------------------- */
1151
Len Brown4be44fc2005-08-05 00:44:28 -04001152static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001154 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001155 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001159 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001161 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 switch (event) {
1164 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1165 acpi_thermal_check(tz);
1166 break;
1167 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
1168 acpi_thermal_get_trip_points(tz);
1169 acpi_thermal_check(tz);
1170 acpi_bus_generate_event(device, event, 0);
1171 break;
1172 case ACPI_THERMAL_NOTIFY_DEVICES:
1173 if (tz->flags.devices)
1174 acpi_thermal_get_devices(tz);
1175 acpi_bus_generate_event(device, event, 0);
1176 break;
1177 default:
1178 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001179 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 break;
1181 }
1182
Patrick Mocheld550d982006-06-27 00:41:40 -04001183 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
Len Brown4be44fc2005-08-05 00:44:28 -04001186static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Len Brown4be44fc2005-08-05 00:44:28 -04001188 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001192 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* Get temperature [_TMP] (required) */
1195 result = acpi_thermal_get_temperature(tz);
1196 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001197 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* Get trip points [_CRT, _PSV, etc.] (required) */
1200 result = acpi_thermal_get_trip_points(tz);
1201 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001202 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* Set the cooling mode [_SCP] to active cooling (default) */
1205 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001206 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 /* Get default polling frequency [_TZP] (optional) */
1210 if (tzp)
1211 tz->polling_frequency = tzp;
1212 else
1213 acpi_thermal_get_polling_frequency(tz);
1214
1215 /* Get devices in this thermal zone [_TZD] (optional) */
1216 result = acpi_thermal_get_devices(tz);
1217 if (!result)
1218 tz->flags.devices = 1;
1219
Patrick Mocheld550d982006-06-27 00:41:40 -04001220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Len Brown4be44fc2005-08-05 00:44:28 -04001223static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Len Brown4be44fc2005-08-05 00:44:28 -04001225 int result = 0;
1226 acpi_status status = AE_OK;
1227 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001231 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Burman Yan36bcbec2006-12-19 12:56:11 -08001233 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001235 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001237 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 strcpy(tz->name, device->pnp.bus_id);
1239 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1240 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1241 acpi_driver_data(device) = tz;
1242
1243 result = acpi_thermal_get_info(tz);
1244 if (result)
1245 goto end;
1246
1247 result = acpi_thermal_add_fs(device);
1248 if (result)
Vasily Averin09047e72006-04-27 05:25:00 -04001249 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 init_timer(&tz->timer);
1252
1253 acpi_thermal_check(tz);
1254
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001255 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001256 ACPI_DEVICE_NOTIFY,
1257 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 result = -ENODEV;
1260 goto end;
1261 }
1262
1263 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001264 acpi_device_name(device), acpi_device_bid(device),
1265 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Len Brown4be44fc2005-08-05 00:44:28 -04001267 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (result) {
1269 acpi_thermal_remove_fs(device);
1270 kfree(tz);
1271 }
1272
Patrick Mocheld550d982006-06-27 00:41:40 -04001273 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Len Brown4be44fc2005-08-05 00:44:28 -04001276static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Len Brown4be44fc2005-08-05 00:44:28 -04001278 acpi_status status = AE_OK;
1279 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001283 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001285 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /* avoid timer adding new defer task */
1288 tz->zombie = 1;
1289 /* wait for running timer (on other CPUs) finish */
1290 del_timer_sync(&(tz->timer));
1291 /* synchronize deferred task */
1292 acpi_os_wait_events_complete(NULL);
1293 /* deferred task may reinsert timer */
1294 del_timer_sync(&(tz->timer));
1295
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001296 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001297 ACPI_DEVICE_NOTIFY,
1298 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001301 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 tz->trips.passive.flags.enabled = 0;
1303 acpi_thermal_passive(tz);
1304 }
1305 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001306 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 tz->trips.active[0].flags.enabled = 0;
1308 acpi_thermal_active(tz);
1309 }
1310
1311 acpi_thermal_remove_fs(device);
1312
1313 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001317static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001318{
1319 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001320 int i, j, power_state, result;
1321
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001322
1323 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001324 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001325
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001326 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001327
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001328 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001329 if (!(&tz->trips.active[i]))
1330 break;
1331 if (!tz->trips.active[i].flags.valid)
1332 break;
1333 tz->trips.active[i].flags.enabled = 1;
1334 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1335 result = acpi_bus_get_power(tz->trips.active[i].devices.
1336 handles[j], &power_state);
1337 if (result || (power_state != ACPI_STATE_D0)) {
1338 tz->trips.active[i].flags.enabled = 0;
1339 break;
1340 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001341 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001342 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001343 }
1344
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001345 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001346
1347 return AE_OK;
1348}
1349
Len Brown0b5bfa12007-08-12 00:13:02 -04001350#ifdef CONFIG_DMI
1351static int thermal_act(struct dmi_system_id *d) {
1352
1353 if (act == 0) {
1354 printk(KERN_NOTICE "ACPI: %s detected: "
1355 "disabling all active thermal trip points\n", d->ident);
1356 act = -1;
1357 }
1358 return 0;
1359}
1360static int thermal_tzp(struct dmi_system_id *d) {
1361
1362 if (tzp == 0) {
1363 printk(KERN_NOTICE "ACPI: %s detected: "
1364 "enabling thermal zone polling\n", d->ident);
1365 tzp = 300; /* 300 dS = 30 Seconds */
1366 }
1367 return 0;
1368}
1369static int thermal_psv(struct dmi_system_id *d) {
1370
1371 if (psv == 0) {
1372 printk(KERN_NOTICE "ACPI: %s detected: "
1373 "disabling all passive thermal trip points\n", d->ident);
1374 psv = -1;
1375 }
1376 return 0;
1377}
1378
1379static struct dmi_system_id thermal_dmi_table[] __initdata = {
1380 /*
1381 * Award BIOS on this AOpen makes thermal control almost worthless.
1382 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1383 */
1384 {
1385 .callback = thermal_act,
1386 .ident = "AOpen i915GMm-HFS",
1387 .matches = {
1388 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1389 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1390 },
1391 },
1392 {
1393 .callback = thermal_psv,
1394 .ident = "AOpen i915GMm-HFS",
1395 .matches = {
1396 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1397 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1398 },
1399 },
1400 {
1401 .callback = thermal_tzp,
1402 .ident = "AOpen i915GMm-HFS",
1403 .matches = {
1404 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1405 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1406 },
1407 },
1408 {}
1409};
1410#endif /* CONFIG_DMI */
1411
Len Brown4be44fc2005-08-05 00:44:28 -04001412static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Len Brown4be44fc2005-08-05 00:44:28 -04001414 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Len Brown0b5bfa12007-08-12 00:13:02 -04001416 dmi_check_system(thermal_dmi_table);
1417
Len Brown72b33ef2007-08-12 00:12:17 -04001418 if (off) {
1419 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1420 return -ENODEV;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1423 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001424 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 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);
Patrick Mocheld550d982006-06-27 00:41:40 -04001430 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
Patrick Mocheld550d982006-06-27 00:41:40 -04001433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
Len Brown4be44fc2005-08-05 00:44:28 -04001436static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 acpi_bus_unregister_driver(&acpi_thermal_driver);
1440
1441 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1442
Patrick Mocheld550d982006-06-27 00:41:40 -04001443 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446module_init(acpi_thermal_init);
1447module_exit(acpi_thermal_exit);