blob: d317da5c6e9c9625939f3e237271de1ec715b78a [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>
Zhang Rui3f655ef2008-01-17 15:51:11 +080046#include <linux/thermal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#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 Brown8c99fdc2007-08-20 18:46:50 -040092MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
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;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800198 struct thermal_zone_device *thermal_zone;
199 int tz_enabled;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400200 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
Arjan van de Vend7508032006-07-04 13:06:00 -0400203static const struct file_operations acpi_thermal_state_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400204 .open = acpi_thermal_state_open_fs,
205 .read = seq_read,
206 .llseek = seq_lseek,
207 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Arjan van de Vend7508032006-07-04 13:06:00 -0400210static const struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400211 .open = acpi_thermal_temp_open_fs,
212 .read = seq_read,
213 .llseek = seq_lseek,
214 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Arjan van de Vend7508032006-07-04 13:06:00 -0400217static const struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400218 .open = acpi_thermal_trip_open_fs,
219 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400220 .llseek = seq_lseek,
221 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
Arjan van de Vend7508032006-07-04 13:06:00 -0400224static const struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400225 .open = acpi_thermal_cooling_open_fs,
226 .read = seq_read,
227 .write = acpi_thermal_write_cooling_mode,
228 .llseek = seq_lseek,
229 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
Arjan van de Vend7508032006-07-04 13:06:00 -0400232static const struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400233 .open = acpi_thermal_polling_open_fs,
234 .read = seq_read,
235 .write = acpi_thermal_write_polling,
236 .llseek = seq_lseek,
237 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238};
239
240/* --------------------------------------------------------------------------
241 Thermal Zone Management
242 -------------------------------------------------------------------------- */
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Len Brown4be44fc2005-08-05 00:44:28 -0400246 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400250 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 tz->last_temperature = tz->temperature;
253
Len Brown4be44fc2005-08-05 00:44:28 -0400254 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400255 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400257 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
260 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Len Brown4be44fc2005-08-05 00:44:28 -0400267 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400271 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Len Brown4be44fc2005-08-05 00:44:28 -0400273 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400274 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400275 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400277 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Len Brown4be44fc2005-08-05 00:44:28 -0400279 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
280 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Patrick Mocheld550d982006-06-27 00:41:40 -0400282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400289 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
292
Len Brown4be44fc2005-08-05 00:44:28 -0400293 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
294 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500295 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Patrick Mocheld550d982006-06-27 00:41:40 -0400297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Len Brown4be44fc2005-08-05 00:44:28 -0400302 acpi_status status = AE_OK;
303 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
304 struct acpi_object_list arg_list = { 1, &arg0 };
305 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400309 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400311 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (ACPI_FAILURE(status)) {
313 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400314 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 arg0.integer.value = mode;
318
319 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
320 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Zhang Ruice44e192008-01-17 15:51:25 +0800326#define ACPI_TRIPS_CRITICAL 0x01
327#define ACPI_TRIPS_HOT 0x02
328#define ACPI_TRIPS_PASSIVE 0x04
329#define ACPI_TRIPS_ACTIVE 0x08
330#define ACPI_TRIPS_DEVICES 0x10
331
332#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
333#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
334
335#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
336 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
337 ACPI_TRIPS_DEVICES)
338
339/*
340 * This exception is thrown out in two cases:
341 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
342 * when re-evaluating the AML code.
343 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
344 * We need to re-bind the cooling devices of a thermal zone when this occurs.
345 */
346#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
347do { \
348 if (flags != ACPI_TRIPS_INIT) \
349 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
350 "ACPI thermal trip point %s changed\n" \
351 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
352} while (0)
353
354static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Len Brown4be44fc2005-08-05 00:44:28 -0400356 acpi_status status = AE_OK;
Zhang Ruice44e192008-01-17 15:51:25 +0800357 struct acpi_handle_list devices;
358 int valid = 0;
359 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Critical Shutdown (required) */
Zhang Ruice44e192008-01-17 15:51:25 +0800362 if (flag & ACPI_TRIPS_CRITICAL) {
363 status = acpi_evaluate_integer(tz->device->handle,
364 "_CRT", NULL, &tz->trips.critical.temperature);
365 if (ACPI_FAILURE(status)) {
Len Brownc52a7412007-08-14 15:49:32 -0400366 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800367 ACPI_EXCEPTION((AE_INFO, status,
368 "No critical threshold"));
369 return -ENODEV;
370 } else {
371 tz->trips.critical.flags.valid = 1;
372 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
373 "Found critical threshold [%lu]\n",
374 tz->trips.critical.temperature));
375 }
376 if (tz->trips.critical.flags.valid == 1) {
377 if (crt == -1) {
378 tz->trips.critical.flags.valid = 0;
379 } else if (crt > 0) {
380 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
381 /*
382 * Allow override to lower critical threshold
383 */
384 if (crt_k < tz->trips.critical.temperature)
385 tz->trips.critical.temperature = crt_k;
386 }
Len Brownc52a7412007-08-14 15:49:32 -0400387 }
388 }
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800391 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400392 status = acpi_evaluate_integer(tz->device->handle,
Zhang Ruice44e192008-01-17 15:51:25 +0800393 "_HOT", NULL, &tz->trips.hot.temperature);
394 if (ACPI_FAILURE(status)) {
395 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400396 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800397 "No hot threshold\n"));
398 } else {
399 tz->trips.hot.flags.valid = 1;
400 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
401 "Found hot threshold [%lu]\n",
402 tz->trips.critical.temperature));
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
Zhang Ruice44e192008-01-17 15:51:25 +0800406 /* Passive (optional) */
407 if (flag & ACPI_TRIPS_PASSIVE) {
408 valid = tz->trips.passive.flags.valid;
409 if (psv == -1) {
410 status = AE_SUPPORT;
411 } else if (psv > 0) {
412 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
413 status = AE_OK;
414 } else {
415 status = acpi_evaluate_integer(tz->device->handle,
416 "_PSV", NULL, &tz->trips.passive.temperature);
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Zhang Ruice44e192008-01-17 15:51:25 +0800419 if (ACPI_FAILURE(status))
420 tz->trips.passive.flags.valid = 0;
421 else {
422 tz->trips.passive.flags.valid = 1;
423 if (flag == ACPI_TRIPS_INIT) {
424 status = acpi_evaluate_integer(
425 tz->device->handle, "_TC1",
426 NULL, &tz->trips.passive.tc1);
427 if (ACPI_FAILURE(status))
428 tz->trips.passive.flags.valid = 0;
429 status = acpi_evaluate_integer(
430 tz->device->handle, "_TC2",
431 NULL, &tz->trips.passive.tc2);
432 if (ACPI_FAILURE(status))
433 tz->trips.passive.flags.valid = 0;
434 status = acpi_evaluate_integer(
435 tz->device->handle, "_TSP",
436 NULL, &tz->trips.passive.tsp);
437 if (ACPI_FAILURE(status))
438 tz->trips.passive.flags.valid = 0;
439 }
440 }
441 }
442 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
443 memset(&devices, 0, sizeof(struct acpi_handle_list));
444 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
445 NULL, &devices);
446 if (ACPI_FAILURE(status))
447 tz->trips.passive.flags.valid = 0;
448 else
449 tz->trips.passive.flags.valid = 1;
450
451 if (memcmp(&tz->trips.passive.devices, &devices,
452 sizeof(struct acpi_handle_list))) {
453 memcpy(&tz->trips.passive.devices, &devices,
454 sizeof(struct acpi_handle_list));
455 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
456 }
457 }
458 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
459 if (valid != tz->trips.passive.flags.valid)
460 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
461 }
462
463 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400464 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400465 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800466 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Len Brownf8707ec2007-08-12 00:12:54 -0400468 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800469 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400470
Zhang Ruice44e192008-01-17 15:51:25 +0800471 if (flag & ACPI_TRIPS_ACTIVE) {
472 status = acpi_evaluate_integer(tz->device->handle,
473 name, NULL, &tz->trips.active[i].temperature);
474 if (ACPI_FAILURE(status)) {
475 tz->trips.active[i].flags.valid = 0;
476 if (i == 0)
477 break;
478 if (act <= 0)
479 break;
480 if (i == 1)
481 tz->trips.active[0].temperature =
482 CELSIUS_TO_KELVIN(act);
483 else
484 /*
485 * Don't allow override higher than
486 * the next higher trip point
487 */
488 tz->trips.active[i - 1].temperature =
489 (tz->trips.active[i - 2].temperature <
490 CELSIUS_TO_KELVIN(act) ?
491 tz->trips.active[i - 2].temperature :
492 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400493 break;
Zhang Ruice44e192008-01-17 15:51:25 +0800494 } else
495 tz->trips.active[i].flags.valid = 1;
Len Brownf8707ec2007-08-12 00:12:54 -0400496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800499 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
500 memset(&devices, 0, sizeof(struct acpi_handle_list));
501 status = acpi_evaluate_reference(tz->device->handle,
502 name, NULL, &devices);
503 if (ACPI_FAILURE(status))
504 tz->trips.active[i].flags.valid = 0;
505 else
506 tz->trips.active[i].flags.valid = 1;
507
508 if (memcmp(&tz->trips.active[i].devices, &devices,
509 sizeof(struct acpi_handle_list))) {
510 memcpy(&tz->trips.active[i].devices, &devices,
511 sizeof(struct acpi_handle_list));
512 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
513 }
514 }
515 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
516 if (valid != tz->trips.active[i].flags.valid)
517 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
518
519 if (!tz->trips.active[i].flags.valid)
520 break;
521 }
522
523 if (flag & ACPI_TRIPS_DEVICES) {
524 memset(&devices, 0, sizeof(struct acpi_handle_list));
525 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
526 NULL, &devices);
527 if (memcmp(&tz->devices, &devices,
528 sizeof(struct acpi_handle_list))) {
529 memcpy(&tz->devices, &devices,
530 sizeof(struct acpi_handle_list));
531 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
Patrick Mocheld550d982006-06-27 00:41:40 -0400535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Zhang Ruice44e192008-01-17 15:51:25 +0800538static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Zhang Ruice44e192008-01-17 15:51:25 +0800540 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Len Brown4be44fc2005-08-05 00:44:28 -0400543static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Len Brownf5487142007-08-12 00:12:44 -0400545 if (!tz || !tz->trips.critical.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400549 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400551 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 tz->trips.critical.flags.enabled = 0;
553
Len Brown4be44fc2005-08-05 00:44:28 -0400554 printk(KERN_EMERG
555 "Critical temperature reached (%ld C), shutting down.\n",
556 KELVIN_TO_CELSIUS(tz->temperature));
Len Brown14e04fb2007-08-23 15:20:26 -0400557 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400558 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800559 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
560 tz->device->dev.bus_id,
561 ACPI_THERMAL_NOTIFY_CRITICAL,
562 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700564 orderly_poweroff(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Patrick Mocheld550d982006-06-27 00:41:40 -0400566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Len Brown4be44fc2005-08-05 00:44:28 -0400569static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Len Brownf5487142007-08-12 00:12:44 -0400571 if (!tz || !tz->trips.hot.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400575 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400577 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 tz->trips.hot.flags.enabled = 0;
579
Len Brown14e04fb2007-08-23 15:20:26 -0400580 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400581 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800582 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
583 tz->device->dev.bus_id,
584 ACPI_THERMAL_NOTIFY_HOT,
585 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 /* TBD: Call user-mode "sleep(S4)" function */
588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400592static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400594 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400596 int trend = 0;
597 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 passive = &(tz->trips.passive);
604
605 /*
606 * Above Trip?
607 * -----------
608 * Calculate the thermal trend (using the passive cooling equation)
609 * and modify the performance limit for all passive cooling devices
610 * accordingly. Note that we assume symmetry.
611 */
612 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400613 trend =
614 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
615 (passive->tc2 * (tz->temperature - passive->temperature));
616 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
617 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
618 trend, passive->tc1, tz->temperature,
619 tz->last_temperature, passive->tc2,
620 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400621 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Heating up? */
623 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400624 for (i = 0; i < passive->devices.count; i++)
625 acpi_processor_set_thermal_limit(passive->
626 devices.
627 handles[i],
628 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400630 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400631 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400632 /*
633 * assume that we are on highest
634 * freq/lowest thrott and can leave
635 * passive mode, even in error case
636 */
637 if (!acpi_processor_set_thermal_limit
638 (passive->devices.handles[i],
639 ACPI_PROCESSOR_LIMIT_DECREMENT))
640 result = 0;
641 /*
642 * Leave cooling mode, even if the temp might
643 * higher than trip point This is because some
644 * machines might have long thermal polling
645 * frequencies (tsp) defined. We will fall back
646 * into passive mode in next cycle (probably quicker)
647 */
648 if (result) {
649 passive->flags.enabled = 0;
650 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
651 "Disabling passive cooling, still above threshold,"
652 " but we are cooling down\n"));
653 }
654 }
655 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 /*
659 * Below Trip?
660 * -----------
661 * Implement passive cooling hysteresis to slowly increase performance
662 * and avoid thrashing around the passive trip point. Note that we
663 * assume symmetry.
664 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400665 if (!passive->flags.enabled)
666 return;
667 for (i = 0; i < passive->devices.count; i++)
668 if (!acpi_processor_set_thermal_limit
669 (passive->devices.handles[i],
670 ACPI_PROCESSOR_LIMIT_DECREMENT))
671 result = 0;
672 if (result) {
673 passive->flags.enabled = 0;
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
675 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400679static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Len Brown4be44fc2005-08-05 00:44:28 -0400681 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400683 int i = 0;
684 int j = 0;
685 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Len Brown4be44fc2005-08-05 00:44:28 -0400691 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 active = &(tz->trips.active[i]);
693 if (!active || !active->flags.valid)
694 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400696 /*
697 * Above Threshold?
698 * ----------------
699 * If not already enabled, turn ON all cooling devices
700 * associated with this active threshold.
701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400703 tz->state.active_index = i;
704 maxtemp = active->temperature;
705 if (active->flags.enabled)
706 continue;
707 for (j = 0; j < active->devices.count; j++) {
708 result =
709 acpi_bus_set_power(active->devices.
710 handles[j],
711 ACPI_STATE_D0);
712 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400713 printk(KERN_WARNING PREFIX
714 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400715 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400716 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400717 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400719 active->flags.enabled = 1;
720 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
721 "Cooling device [%p] now 'on'\n",
722 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400724 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400726 if (!active->flags.enabled)
727 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /*
729 * Below Threshold?
730 * ----------------
731 * Turn OFF all cooling devices associated with this
732 * threshold.
733 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400734 for (j = 0; j < active->devices.count; j++) {
735 result = acpi_bus_set_power(active->devices.handles[j],
736 ACPI_STATE_D3);
737 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400738 printk(KERN_WARNING PREFIX
739 "Unable to turn cooling device [%p] 'off'\n",
740 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400741 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400743 active->flags.enabled = 0;
744 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
745 "Cooling device [%p] now 'off'\n",
746 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Len Brown4be44fc2005-08-05 00:44:28 -0400751static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Len Brown4be44fc2005-08-05 00:44:28 -0400753static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct acpi_thermal *tz = (struct acpi_thermal *)data;
756 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400757 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Len Brown4be44fc2005-08-05 00:44:28 -0400762 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200763 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400764 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400765 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400766 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct acpi_thermal_state state;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400771 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400772 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400775 /* Check if someone else is already running */
776 if (!mutex_trylock(&tz->lock))
777 return;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 state = tz->state;
780
781 result = acpi_thermal_get_temperature(tz);
782 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400783 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400784
Zhang Rui3f655ef2008-01-17 15:51:11 +0800785 if (!tz->tz_enabled)
786 goto unlock;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * Check Trip Points
792 * -----------------
793 * Compare the current temperature to the trip point values to see
794 * if we've entered one of the thermal policy states. Note that
795 * this function determines when a state is entered, but the
796 * individual policy decides when it is exited (e.g. hysteresis).
797 */
798 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400799 state.critical |=
800 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (tz->trips.hot.flags.valid)
802 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
803 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400804 state.passive |=
805 (tz->temperature >= tz->trips.passive.temperature);
806 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400808 state.active |=
809 (tz->temperature >=
810 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /*
813 * Invoke Policy
814 * -------------
815 * Separated from the above check to allow individual policy to
816 * determine when to exit a given state.
817 */
818 if (state.critical)
819 acpi_thermal_critical(tz);
820 if (state.hot)
821 acpi_thermal_hot(tz);
822 if (state.passive)
823 acpi_thermal_passive(tz);
824 if (state.active)
825 acpi_thermal_active(tz);
826
827 /*
828 * Calculate State
829 * ---------------
830 * Again, separated from the above two to allow independent policy
831 * decisions.
832 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400833 tz->state.critical = tz->trips.critical.flags.enabled;
834 tz->state.hot = tz->trips.hot.flags.enabled;
835 tz->state.passive = tz->trips.passive.flags.enabled;
836 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400837 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400838 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
841 * Calculate Sleep Time
842 * --------------------
843 * If we're in the passive state, use _TSP's value. Otherwise
844 * use the default polling frequency (e.g. _TZP). If no polling
845 * frequency is specified then we'll wait forever (at least until
846 * a thermal event occurs). Note that _TSP and _TZD values are
847 * given in 1/10th seconds (we must covert to milliseconds).
848 */
Len Brown21bc42a2007-09-04 12:49:22 -0400849 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400851 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
852 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400854 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Len Brown4be44fc2005-08-05 00:44:28 -0400857 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
858 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /*
861 * Schedule Next Poll
862 * ------------------
863 */
864 if (!sleep_time) {
865 if (timer_pending(&(tz->timer)))
866 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400867 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400869 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400871 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400873 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 add_timer(&(tz->timer));
875 }
876 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400877 unlock:
878 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Zhang Rui3f655ef2008-01-17 15:51:11 +0800881/* sys I/F for generic thermal sysfs support */
882static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
883{
884 struct acpi_thermal *tz = thermal->devdata;
885
886 if (!tz)
887 return -EINVAL;
888
889 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(tz->temperature));
890}
891
892static const char enabled[] = "kernel";
893static const char disabled[] = "user";
894static int thermal_get_mode(struct thermal_zone_device *thermal,
895 char *buf)
896{
897 struct acpi_thermal *tz = thermal->devdata;
898
899 if (!tz)
900 return -EINVAL;
901
902 return sprintf(buf, "%s\n", tz->tz_enabled ?
903 enabled : disabled);
904}
905
906static int thermal_set_mode(struct thermal_zone_device *thermal,
907 const char *buf)
908{
909 struct acpi_thermal *tz = thermal->devdata;
910 int enable;
911
912 if (!tz)
913 return -EINVAL;
914
915 /*
916 * enable/disable thermal management from ACPI thermal driver
917 */
918 if (!strncmp(buf, enabled, sizeof enabled - 1))
919 enable = 1;
920 else if (!strncmp(buf, disabled, sizeof disabled - 1))
921 enable = 0;
922 else
923 return -EINVAL;
924
925 if (enable != tz->tz_enabled) {
926 tz->tz_enabled = enable;
927 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
928 "%s ACPI thermal control\n",
929 tz->tz_enabled ? enabled : disabled));
930 acpi_thermal_check(tz);
931 }
932 return 0;
933}
934
935static int thermal_get_trip_type(struct thermal_zone_device *thermal,
936 int trip, char *buf)
937{
938 struct acpi_thermal *tz = thermal->devdata;
939 int i;
940
941 if (!tz || trip < 0)
942 return -EINVAL;
943
944 if (tz->trips.critical.flags.valid) {
945 if (!trip)
946 return sprintf(buf, "critical\n");
947 trip--;
948 }
949
950 if (tz->trips.hot.flags.valid) {
951 if (!trip)
952 return sprintf(buf, "hot\n");
953 trip--;
954 }
955
956 if (tz->trips.passive.flags.valid) {
957 if (!trip)
958 return sprintf(buf, "passive\n");
959 trip--;
960 }
961
962 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
963 tz->trips.active[i].flags.valid; i++) {
964 if (!trip)
965 return sprintf(buf, "active%d\n", i);
966 trip--;
967 }
968
969 return -EINVAL;
970}
971
972static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
973 int trip, char *buf)
974{
975 struct acpi_thermal *tz = thermal->devdata;
976 int i;
977
978 if (!tz || trip < 0)
979 return -EINVAL;
980
981 if (tz->trips.critical.flags.valid) {
982 if (!trip)
983 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
984 tz->trips.critical.temperature));
985 trip--;
986 }
987
988 if (tz->trips.hot.flags.valid) {
989 if (!trip)
990 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
991 tz->trips.hot.temperature));
992 trip--;
993 }
994
995 if (tz->trips.passive.flags.valid) {
996 if (!trip)
997 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
998 tz->trips.passive.temperature));
999 trip--;
1000 }
1001
1002 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1003 tz->trips.active[i].flags.valid; i++) {
1004 if (!trip)
1005 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
1006 tz->trips.active[i].temperature));
1007 trip--;
1008 }
1009
1010 return -EINVAL;
1011}
1012
1013typedef int (*cb)(struct thermal_zone_device *, int,
1014 struct thermal_cooling_device *);
1015static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1016 struct thermal_cooling_device *cdev,
1017 cb action)
1018{
1019 struct acpi_device *device = cdev->devdata;
1020 struct acpi_thermal *tz = thermal->devdata;
1021 acpi_handle handle = device->handle;
1022 int i;
1023 int j;
1024 int trip = -1;
1025 int result = 0;
1026
1027 if (tz->trips.critical.flags.valid)
1028 trip++;
1029
1030 if (tz->trips.hot.flags.valid)
1031 trip++;
1032
1033 if (tz->trips.passive.flags.valid) {
1034 trip++;
1035 for (i = 0; i < tz->trips.passive.devices.count;
1036 i++) {
1037 if (tz->trips.passive.devices.handles[i] !=
1038 handle)
1039 continue;
1040 result = action(thermal, trip, cdev);
1041 if (result)
1042 goto failed;
1043 }
1044 }
1045
1046 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1047 if (!tz->trips.active[i].flags.valid)
1048 break;
1049 trip++;
1050 for (j = 0;
1051 j < tz->trips.active[i].devices.count;
1052 j++) {
1053 if (tz->trips.active[i].devices.
1054 handles[j] != handle)
1055 continue;
1056 result = action(thermal, trip, cdev);
1057 if (result)
1058 goto failed;
1059 }
1060 }
1061
1062 for (i = 0; i < tz->devices.count; i++) {
1063 if (tz->devices.handles[i] != handle)
1064 continue;
1065 result = action(thermal, -1, cdev);
1066 if (result)
1067 goto failed;
1068 }
1069
1070failed:
1071 return result;
1072}
1073
1074static int
1075acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1076 struct thermal_cooling_device *cdev)
1077{
1078 return acpi_thermal_cooling_device_cb(thermal, cdev,
1079 thermal_zone_bind_cooling_device);
1080}
1081
1082static int
1083acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1084 struct thermal_cooling_device *cdev)
1085{
1086 return acpi_thermal_cooling_device_cb(thermal, cdev,
1087 thermal_zone_unbind_cooling_device);
1088}
1089
1090static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1091 .bind = acpi_thermal_bind_cooling_device,
1092 .unbind = acpi_thermal_unbind_cooling_device,
1093 .get_temp = thermal_get_temp,
1094 .get_mode = thermal_get_mode,
1095 .set_mode = thermal_set_mode,
1096 .get_trip_type = thermal_get_trip_type,
1097 .get_trip_temp = thermal_get_trip_temp,
1098};
1099
1100static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1101{
1102 int trips = 0;
1103 int result;
1104 int i;
1105
1106 if (tz->trips.critical.flags.valid)
1107 trips++;
1108
1109 if (tz->trips.hot.flags.valid)
1110 trips++;
1111
1112 if (tz->trips.passive.flags.valid)
1113 trips++;
1114
1115 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1116 tz->trips.active[i].flags.valid; i++, trips++);
1117 tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone",
1118 trips, tz, &acpi_thermal_zone_ops);
1119 if (!tz->thermal_zone)
1120 return -ENODEV;
1121
1122 result = sysfs_create_link(&tz->device->dev.kobj,
1123 &tz->thermal_zone->device.kobj, "thermal_zone");
1124 if (result)
1125 return result;
1126
1127 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1128 &tz->device->dev.kobj, "device");
1129 if (result)
1130 return result;
1131
1132 tz->tz_enabled = 1;
1133
1134 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1135 tz->device->dev.bus_id, tz->thermal_zone->id);
1136 return 0;
1137}
1138
1139static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1140{
1141 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1142 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1143 thermal_zone_device_unregister(tz->thermal_zone);
1144 tz->thermal_zone = NULL;
1145}
1146
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/* --------------------------------------------------------------------------
1149 FS Interface (/proc)
1150 -------------------------------------------------------------------------- */
1151
Len Brown4be44fc2005-08-05 00:44:28 -04001152static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1155{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001156 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 if (!tz)
1160 goto end;
1161
1162 seq_puts(seq, "state: ");
1163
Len Brown4be44fc2005-08-05 00:44:28 -04001164 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1165 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 seq_puts(seq, "ok\n");
1167 else {
1168 if (tz->state.critical)
1169 seq_puts(seq, "critical ");
1170 if (tz->state.hot)
1171 seq_puts(seq, "hot ");
1172 if (tz->state.passive)
1173 seq_puts(seq, "passive ");
1174 if (tz->state.active)
1175 seq_printf(seq, "active[%d]", tz->state.active_index);
1176 seq_puts(seq, "\n");
1177 }
1178
Len Brown4be44fc2005-08-05 00:44:28 -04001179 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1184{
1185 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1186}
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1189{
Len Brown4be44fc2005-08-05 00:44:28 -04001190 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001191 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 if (!tz)
1195 goto end;
1196
1197 result = acpi_thermal_get_temperature(tz);
1198 if (result)
1199 goto end;
1200
Len Brown4be44fc2005-08-05 00:44:28 -04001201 seq_printf(seq, "temperature: %ld C\n",
1202 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Len Brown4be44fc2005-08-05 00:44:28 -04001204 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1209{
1210 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1211}
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1214{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001215 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001216 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001217 acpi_status status;
1218
Len Brown4be44fc2005-08-05 00:44:28 -04001219 int i = 0;
1220 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (!tz)
1224 goto end;
1225
1226 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001227 seq_printf(seq, "critical (S5): %ld C%s",
1228 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1229 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001232 seq_printf(seq, "hot (S4): %ld C%s",
1233 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1234 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001237 seq_printf(seq,
1238 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1239 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1240 tz->trips.passive.tc1, tz->trips.passive.tc2,
1241 tz->trips.passive.tsp);
1242 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001243 status = acpi_bus_get_device(tz->trips.passive.devices.
1244 handles[j], &device);
1245 seq_printf(seq, "%4.4s ", status ? "" :
1246 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248 seq_puts(seq, "\n");
1249 }
1250
1251 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1252 if (!(tz->trips.active[i].flags.valid))
1253 break;
1254 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001255 i,
1256 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001257 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001258 status = acpi_bus_get_device(tz->trips.active[i].
1259 devices.handles[j],
1260 &device);
1261 seq_printf(seq, "%4.4s ", status ? "" :
1262 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 seq_puts(seq, "\n");
1265 }
1266
Len Brown4be44fc2005-08-05 00:44:28 -04001267 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1272{
1273 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1274}
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1277{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001278 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 if (!tz)
1282 goto end;
1283
Len Browneaca2d32007-04-30 23:27:43 -04001284 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 else
Len Browneaca2d32007-04-30 23:27:43 -04001287 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Len Brown4be44fc2005-08-05 00:44:28 -04001289 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001290 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
1293static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1294{
1295 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001296 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001300acpi_thermal_write_cooling_mode(struct file *file,
1301 const char __user * buffer,
1302 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001304 struct seq_file *m = file->private_data;
1305 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001306 int result = 0;
1307 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001314 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001317 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001320
1321 result = acpi_thermal_set_cooling_mode(tz,
1322 simple_strtoul(mode_string, NULL,
1323 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001325 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 acpi_thermal_check(tz);
1328
Patrick Mocheld550d982006-06-27 00:41:40 -04001329 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1333{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001334 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 if (!tz)
1338 goto end;
1339
1340 if (!tz->polling_frequency) {
1341 seq_puts(seq, "<polling disabled>\n");
1342 goto end;
1343 }
1344
1345 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001346 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Len Brown4be44fc2005-08-05 00:44:28 -04001348 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1353{
1354 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001355 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001359acpi_thermal_write_polling(struct file *file,
1360 const char __user * buffer,
1361 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001363 struct seq_file *m = file->private_data;
1364 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001365 int result = 0;
1366 char polling_string[12] = { '\0' };
1367 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001371 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001374 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 polling_string[count] = '\0';
1377
1378 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 result = acpi_thermal_set_polling(tz, seconds);
1381 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001382 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 acpi_thermal_check(tz);
1385
Patrick Mocheld550d982006-06-27 00:41:40 -04001386 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Len Brown4be44fc2005-08-05 00:44:28 -04001389static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Len Brown4be44fc2005-08-05 00:44:28 -04001391 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (!acpi_device_dir(device)) {
1395 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001396 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001398 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 acpi_device_dir(device)->owner = THIS_MODULE;
1400 }
1401
1402 /* 'state' [R] */
1403 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001404 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001406 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 else {
1408 entry->proc_fops = &acpi_thermal_state_fops;
1409 entry->data = acpi_driver_data(device);
1410 entry->owner = THIS_MODULE;
1411 }
1412
1413 /* 'temperature' [R] */
1414 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001415 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001417 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 else {
1419 entry->proc_fops = &acpi_thermal_temp_fops;
1420 entry->data = acpi_driver_data(device);
1421 entry->owner = THIS_MODULE;
1422 }
1423
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001424 /* 'trip_points' [R] */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001426 S_IRUGO,
Len Brown4be44fc2005-08-05 00:44:28 -04001427 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001429 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 else {
1431 entry->proc_fops = &acpi_thermal_trip_fops;
1432 entry->data = acpi_driver_data(device);
1433 entry->owner = THIS_MODULE;
1434 }
1435
1436 /* 'cooling_mode' [R/W] */
1437 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001438 S_IFREG | S_IRUGO | S_IWUSR,
1439 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001441 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 else {
1443 entry->proc_fops = &acpi_thermal_cooling_fops;
1444 entry->data = acpi_driver_data(device);
1445 entry->owner = THIS_MODULE;
1446 }
1447
1448 /* 'polling_frequency' [R/W] */
1449 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001450 S_IFREG | S_IRUGO | S_IWUSR,
1451 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001453 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 else {
1455 entry->proc_fops = &acpi_thermal_polling_fops;
1456 entry->data = acpi_driver_data(device);
1457 entry->owner = THIS_MODULE;
1458 }
1459
Patrick Mocheld550d982006-06-27 00:41:40 -04001460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Len Brown4be44fc2005-08-05 00:44:28 -04001463static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (acpi_device_dir(device)) {
1467 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1468 acpi_device_dir(device));
1469 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1470 acpi_device_dir(device));
1471 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1472 acpi_device_dir(device));
1473 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1474 acpi_device_dir(device));
1475 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1476 acpi_device_dir(device));
1477 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1478 acpi_device_dir(device) = NULL;
1479 }
1480
Patrick Mocheld550d982006-06-27 00:41:40 -04001481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484/* --------------------------------------------------------------------------
1485 Driver Interface
1486 -------------------------------------------------------------------------- */
1487
Len Brown4be44fc2005-08-05 00:44:28 -04001488static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001490 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001491 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001495 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001497 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 switch (event) {
1500 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1501 acpi_thermal_check(tz);
1502 break;
1503 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001504 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001506 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001507 acpi_bus_generate_netlink_event(device->pnp.device_class,
1508 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 break;
1510 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001511 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1512 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001513 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001514 acpi_bus_generate_netlink_event(device->pnp.device_class,
1515 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 break;
1517 default:
1518 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001519 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 break;
1521 }
1522
Patrick Mocheld550d982006-06-27 00:41:40 -04001523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524}
1525
Len Brown4be44fc2005-08-05 00:44:28 -04001526static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
Len Brown4be44fc2005-08-05 00:44:28 -04001528 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001532 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 /* Get temperature [_TMP] (required) */
1535 result = acpi_thermal_get_temperature(tz);
1536 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001537 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 /* Get trip points [_CRT, _PSV, etc.] (required) */
1540 result = acpi_thermal_get_trip_points(tz);
1541 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001542 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 /* Set the cooling mode [_SCP] to active cooling (default) */
1545 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001546 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* Get default polling frequency [_TZP] (optional) */
1550 if (tzp)
1551 tz->polling_frequency = tzp;
1552 else
1553 acpi_thermal_get_polling_frequency(tz);
1554
Patrick Mocheld550d982006-06-27 00:41:40 -04001555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
Len Brown4be44fc2005-08-05 00:44:28 -04001558static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Len Brown4be44fc2005-08-05 00:44:28 -04001560 int result = 0;
1561 acpi_status status = AE_OK;
1562 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001566 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Burman Yan36bcbec2006-12-19 12:56:11 -08001568 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001570 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001572 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 strcpy(tz->name, device->pnp.bus_id);
1574 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1575 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1576 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001577 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001578
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 result = acpi_thermal_get_info(tz);
1581 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001582 goto free_memory;
1583
1584 result = acpi_thermal_register_thermal_zone(tz);
1585 if (result)
1586 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 result = acpi_thermal_add_fs(device);
1589 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001590 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 init_timer(&tz->timer);
1593
1594 acpi_thermal_check(tz);
1595
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001596 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001597 ACPI_DEVICE_NOTIFY,
1598 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001601 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
1603
1604 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001605 acpi_device_name(device), acpi_device_bid(device),
1606 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001607 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Zhang Rui3f655ef2008-01-17 15:51:11 +08001609remove_fs:
1610 acpi_thermal_remove_fs(device);
1611unregister_thermal_zone:
1612 thermal_zone_device_unregister(tz->thermal_zone);
1613free_memory:
1614 kfree(tz);
1615end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001616 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Len Brown4be44fc2005-08-05 00:44:28 -04001619static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Len Brown4be44fc2005-08-05 00:44:28 -04001621 acpi_status status = AE_OK;
1622 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001626 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001628 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 /* avoid timer adding new defer task */
1631 tz->zombie = 1;
1632 /* wait for running timer (on other CPUs) finish */
1633 del_timer_sync(&(tz->timer));
1634 /* synchronize deferred task */
1635 acpi_os_wait_events_complete(NULL);
1636 /* deferred task may reinsert timer */
1637 del_timer_sync(&(tz->timer));
1638
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001639 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001640 ACPI_DEVICE_NOTIFY,
1641 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001644 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 tz->trips.passive.flags.enabled = 0;
1646 acpi_thermal_passive(tz);
1647 }
1648 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001649 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 tz->trips.active[0].flags.enabled = 0;
1651 acpi_thermal_active(tz);
1652 }
1653
1654 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001655 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001656 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001658 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001661static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001662{
1663 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001664 int i, j, power_state, result;
1665
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001666
1667 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001668 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001669
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001670 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001671
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001672 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001673 if (!(&tz->trips.active[i]))
1674 break;
1675 if (!tz->trips.active[i].flags.valid)
1676 break;
1677 tz->trips.active[i].flags.enabled = 1;
1678 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1679 result = acpi_bus_get_power(tz->trips.active[i].devices.
1680 handles[j], &power_state);
1681 if (result || (power_state != ACPI_STATE_D0)) {
1682 tz->trips.active[i].flags.enabled = 0;
1683 break;
1684 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001685 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001686 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001687 }
1688
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001689 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001690
1691 return AE_OK;
1692}
1693
Len Brown0b5bfa12007-08-12 00:13:02 -04001694#ifdef CONFIG_DMI
Jeff Garzik18552562007-10-03 15:15:40 -04001695static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001696
1697 if (act == 0) {
1698 printk(KERN_NOTICE "ACPI: %s detected: "
1699 "disabling all active thermal trip points\n", d->ident);
1700 act = -1;
1701 }
1702 return 0;
1703}
Jeff Garzik18552562007-10-03 15:15:40 -04001704static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001705
1706 printk(KERN_NOTICE "ACPI: %s detected: "
1707 "disabling all critical thermal trip point actions.\n", d->ident);
1708 nocrt = 1;
1709 return 0;
1710}
Jeff Garzik18552562007-10-03 15:15:40 -04001711static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001712
1713 if (tzp == 0) {
1714 printk(KERN_NOTICE "ACPI: %s detected: "
1715 "enabling thermal zone polling\n", d->ident);
1716 tzp = 300; /* 300 dS = 30 Seconds */
1717 }
1718 return 0;
1719}
Jeff Garzik18552562007-10-03 15:15:40 -04001720static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001721
1722 if (psv == 0) {
1723 printk(KERN_NOTICE "ACPI: %s detected: "
1724 "disabling all passive thermal trip points\n", d->ident);
1725 psv = -1;
1726 }
1727 return 0;
1728}
1729
1730static struct dmi_system_id thermal_dmi_table[] __initdata = {
1731 /*
1732 * Award BIOS on this AOpen makes thermal control almost worthless.
1733 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1734 */
1735 {
1736 .callback = thermal_act,
1737 .ident = "AOpen i915GMm-HFS",
1738 .matches = {
1739 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1740 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1741 },
1742 },
1743 {
1744 .callback = thermal_psv,
1745 .ident = "AOpen i915GMm-HFS",
1746 .matches = {
1747 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1748 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1749 },
1750 },
1751 {
1752 .callback = thermal_tzp,
1753 .ident = "AOpen i915GMm-HFS",
1754 .matches = {
1755 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1756 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1757 },
1758 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001759 {
1760 .callback = thermal_nocrt,
1761 .ident = "Gigabyte GA-7ZX",
1762 .matches = {
1763 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1764 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1765 },
1766 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001767 {}
1768};
1769#endif /* CONFIG_DMI */
1770
Len Brown4be44fc2005-08-05 00:44:28 -04001771static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Len Brown4be44fc2005-08-05 00:44:28 -04001773 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Len Brown0b5bfa12007-08-12 00:13:02 -04001775 dmi_check_system(thermal_dmi_table);
1776
Len Brown72b33ef2007-08-12 00:12:17 -04001777 if (off) {
1778 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1779 return -ENODEV;
1780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1782 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001783 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 acpi_thermal_dir->owner = THIS_MODULE;
1785
1786 result = acpi_bus_register_driver(&acpi_thermal_driver);
1787 if (result < 0) {
1788 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001789 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
Patrick Mocheld550d982006-06-27 00:41:40 -04001792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793}
1794
Len Brown4be44fc2005-08-05 00:44:28 -04001795static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 acpi_bus_unregister_driver(&acpi_thermal_driver);
1799
1800 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1801
Patrick Mocheld550d982006-06-27 00:41:40 -04001802 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805module_init(acpi_thermal_init);
1806module_exit(acpi_thermal_exit);