blob: 0ec48d2f85c54689c6bc7237616571b441911f6e [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/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kmod.h>
42#include <linux/seq_file.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070043#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
Zhang Rui3f655ef2008-01-17 15:51:11 +080045#include <linux/thermal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi_bus.h>
47#include <acpi/acpi_drivers.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_THERMAL_CLASS "thermal_zone"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
51#define ACPI_THERMAL_FILE_STATE "state"
52#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
53#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
54#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
55#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
56#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
57#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
58#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
59#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
60#define ACPI_THERMAL_NOTIFY_HOT 0xF1
61#define ACPI_THERMAL_MODE_ACTIVE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define ACPI_THERMAL_MAX_ACTIVE 10
64#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050067ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040069MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050070MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071MODULE_LICENSE("GPL");
72
Len Brownf8707ec2007-08-12 00:12:54 -040073static int act;
74module_param(act, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040075MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
Len Brownf8707ec2007-08-12 00:12:54 -040076
Len Brownc52a7412007-08-14 15:49:32 -040077static int crt;
78module_param(crt, int, 0644);
79MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040082module_param(tzp, int, 0444);
Len Brown3c1d36d2007-08-14 15:12:56 -040083MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Len Brownf5487142007-08-12 00:12:44 -040085static int nocrt;
86module_param(nocrt, int, 0);
Len Brown8c99fdc2007-08-20 18:46:50 -040087MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
Len Brownf5487142007-08-12 00:12:44 -040088
Len Brown72b33ef2007-08-12 00:12:17 -040089static int off;
90module_param(off, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040091MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
Len Brown72b33ef2007-08-12 00:12:17 -040092
Len Browna70cdc52007-08-12 00:12:35 -040093static int psv;
94module_param(psv, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040095MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
Len Browna70cdc52007-08-12 00:12:35 -040096
Len Brown4be44fc2005-08-05 00:44:28 -040097static int acpi_thermal_add(struct acpi_device *device);
98static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +080099static int acpi_thermal_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
101static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
102static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400104static ssize_t acpi_thermal_write_cooling_mode(struct file *,
105 const char __user *, size_t,
106 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400108static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
109 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200111static const struct acpi_device_id thermal_device_ids[] = {
112 {ACPI_THERMAL_HID, 0},
113 {"", 0},
114};
115MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -0500118 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400119 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200120 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400121 .ops = {
122 .add = acpi_thermal_add,
123 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce1462006-05-08 08:32:00 -0400124 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400125 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
128struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400129 u8 critical:1;
130 u8 hot:1;
131 u8 passive:1;
132 u8 active:1;
133 u8 reserved:4;
134 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400138 u8 valid:1;
139 u8 enabled:1;
140 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct acpi_thermal_critical {
144 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148struct acpi_thermal_hot {
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_passive {
154 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 unsigned long temperature;
156 unsigned long tc1;
157 unsigned long tc2;
158 unsigned long tsp;
159 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162struct acpi_thermal_active {
163 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400164 unsigned long temperature;
165 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166};
167
168struct acpi_thermal_trips {
169 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400170 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct acpi_thermal_passive passive;
172 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
173};
174
175struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400176 u8 cooling_mode:1; /* _SCP */
177 u8 devices:1; /* _TZD */
178 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
181struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400182 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400183 acpi_bus_id name;
184 unsigned long temperature;
185 unsigned long last_temperature;
186 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400187 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct acpi_thermal_flags flags;
189 struct acpi_thermal_state state;
190 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400191 struct acpi_handle_list devices;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800192 struct thermal_zone_device *thermal_zone;
193 int tz_enabled;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400194 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Arjan van de Vend7508032006-07-04 13:06:00 -0400197static const struct file_operations acpi_thermal_state_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700198 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400199 .open = acpi_thermal_state_open_fs,
200 .read = seq_read,
201 .llseek = seq_lseek,
202 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Arjan van de Vend7508032006-07-04 13:06:00 -0400205static const struct file_operations acpi_thermal_temp_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700206 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400207 .open = acpi_thermal_temp_open_fs,
208 .read = seq_read,
209 .llseek = seq_lseek,
210 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Arjan van de Vend7508032006-07-04 13:06:00 -0400213static const struct file_operations acpi_thermal_trip_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700214 .owner = THIS_MODULE,
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 = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700222 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400223 .open = acpi_thermal_cooling_open_fs,
224 .read = seq_read,
225 .write = acpi_thermal_write_cooling_mode,
226 .llseek = seq_lseek,
227 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Arjan van de Vend7508032006-07-04 13:06:00 -0400230static const struct file_operations acpi_thermal_polling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700231 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400232 .open = acpi_thermal_polling_open_fs,
233 .read = seq_read,
234 .write = acpi_thermal_write_polling,
235 .llseek = seq_lseek,
236 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
239/* --------------------------------------------------------------------------
240 Thermal Zone Management
241 -------------------------------------------------------------------------- */
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400246 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400249 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 tz->last_temperature = tz->temperature;
252
Matthew Wilcox27663c52008-10-10 02:22:59 -0400253 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Matthew Wilcox27663c52008-10-10 02:22:59 -0400257 tz->temperature = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400258 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
259 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Len Brown4be44fc2005-08-05 00:44:28 -0400266 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400267 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Matthew Wilcox27663c52008-10-10 02:22:59 -0400272 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
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
Matthew Wilcox27663c52008-10-10 02:22:59 -0400276 tz->polling_frequency = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400277 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
278 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Patrick Mocheld550d982006-06-27 00:41:40 -0400280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Len Brown4be44fc2005-08-05 00:44:28 -0400283static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400287 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
290
Matthew Garrettb1569e92008-12-03 17:55:32 +0000291 tz->thermal_zone->polling_delay = seconds * 1000;
292
293 if (tz->tz_enabled)
294 thermal_zone_device_update(tz->thermal_zone);
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
297 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500298 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Patrick Mocheld550d982006-06-27 00:41:40 -0400300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Len Brown4be44fc2005-08-05 00:44:28 -0400305 acpi_status status = AE_OK;
306 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
307 struct acpi_object_list arg_list = { 1, &arg0 };
308 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400312 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400314 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (ACPI_FAILURE(status)) {
316 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
320 arg0.integer.value = mode;
321
322 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
323 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400324 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Patrick Mocheld550d982006-06-27 00:41:40 -0400326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Zhang Ruice44e192008-01-17 15:51:25 +0800329#define ACPI_TRIPS_CRITICAL 0x01
330#define ACPI_TRIPS_HOT 0x02
331#define ACPI_TRIPS_PASSIVE 0x04
332#define ACPI_TRIPS_ACTIVE 0x08
333#define ACPI_TRIPS_DEVICES 0x10
334
335#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
336#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
337
338#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
339 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
340 ACPI_TRIPS_DEVICES)
341
342/*
343 * This exception is thrown out in two cases:
344 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
345 * when re-evaluating the AML code.
346 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
347 * We need to re-bind the cooling devices of a thermal zone when this occurs.
348 */
349#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
350do { \
351 if (flags != ACPI_TRIPS_INIT) \
352 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
353 "ACPI thermal trip point %s changed\n" \
354 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
355} while (0)
356
357static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Len Brown4be44fc2005-08-05 00:44:28 -0400359 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400360 unsigned long long tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800361 struct acpi_handle_list devices;
362 int valid = 0;
363 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* Critical Shutdown (required) */
Zhang Ruice44e192008-01-17 15:51:25 +0800366 if (flag & ACPI_TRIPS_CRITICAL) {
367 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400368 "_CRT", NULL, &tmp);
369 tz->trips.critical.temperature = tmp;
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700370 /*
371 * Treat freezing temperatures as invalid as well; some
372 * BIOSes return really low values and cause reboots at startup.
373 * Below zero (Celcius) values clearly aren't right for sure..
374 * ... so lets discard those as invalid.
375 */
376 if (ACPI_FAILURE(status) ||
377 tz->trips.critical.temperature <= 2732) {
Len Brownc52a7412007-08-14 15:49:32 -0400378 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800379 ACPI_EXCEPTION((AE_INFO, status,
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700380 "No or invalid critical threshold"));
Zhang Ruice44e192008-01-17 15:51:25 +0800381 return -ENODEV;
382 } else {
383 tz->trips.critical.flags.valid = 1;
384 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
385 "Found critical threshold [%lu]\n",
386 tz->trips.critical.temperature));
387 }
388 if (tz->trips.critical.flags.valid == 1) {
389 if (crt == -1) {
390 tz->trips.critical.flags.valid = 0;
391 } else if (crt > 0) {
392 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
393 /*
Zhang Rui22a94d72008-10-17 02:41:20 -0400394 * Allow override critical threshold
Zhang Ruice44e192008-01-17 15:51:25 +0800395 */
Zhang Rui22a94d72008-10-17 02:41:20 -0400396 if (crt_k > tz->trips.critical.temperature)
397 printk(KERN_WARNING PREFIX
398 "Critical threshold %d C\n", crt);
399 tz->trips.critical.temperature = crt_k;
Zhang Ruice44e192008-01-17 15:51:25 +0800400 }
Len Brownc52a7412007-08-14 15:49:32 -0400401 }
402 }
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800405 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400406 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400407 "_HOT", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800408 if (ACPI_FAILURE(status)) {
409 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400410 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800411 "No hot threshold\n"));
412 } else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400413 tz->trips.hot.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800414 tz->trips.hot.flags.valid = 1;
415 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
416 "Found hot threshold [%lu]\n",
417 tz->trips.critical.temperature));
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Zhang Ruice44e192008-01-17 15:51:25 +0800421 /* Passive (optional) */
Zhang Rui0e4240d2009-01-16 12:53:42 -0500422 if (((flag & ACPI_TRIPS_PASSIVE) && tz->trips.passive.flags.valid) ||
423 (flag == ACPI_TRIPS_INIT)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800424 valid = tz->trips.passive.flags.valid;
425 if (psv == -1) {
426 status = AE_SUPPORT;
427 } else if (psv > 0) {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400428 tmp = CELSIUS_TO_KELVIN(psv);
Zhang Ruice44e192008-01-17 15:51:25 +0800429 status = AE_OK;
430 } else {
431 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400432 "_PSV", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Zhang Ruice44e192008-01-17 15:51:25 +0800435 if (ACPI_FAILURE(status))
436 tz->trips.passive.flags.valid = 0;
437 else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400438 tz->trips.passive.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800439 tz->trips.passive.flags.valid = 1;
440 if (flag == ACPI_TRIPS_INIT) {
441 status = acpi_evaluate_integer(
442 tz->device->handle, "_TC1",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400443 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800444 if (ACPI_FAILURE(status))
445 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400446 else
447 tz->trips.passive.tc1 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800448 status = acpi_evaluate_integer(
449 tz->device->handle, "_TC2",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400450 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800451 if (ACPI_FAILURE(status))
452 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400453 else
454 tz->trips.passive.tc2 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800455 status = acpi_evaluate_integer(
456 tz->device->handle, "_TSP",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400457 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800458 if (ACPI_FAILURE(status))
459 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400460 else
461 tz->trips.passive.tsp = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800462 }
463 }
464 }
465 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
466 memset(&devices, 0, sizeof(struct acpi_handle_list));
467 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
468 NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500469 if (ACPI_FAILURE(status)) {
470 printk(KERN_WARNING PREFIX
471 "Invalid passive threshold\n");
Zhang Ruice44e192008-01-17 15:51:25 +0800472 tz->trips.passive.flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500473 }
Zhang Ruice44e192008-01-17 15:51:25 +0800474 else
475 tz->trips.passive.flags.valid = 1;
476
477 if (memcmp(&tz->trips.passive.devices, &devices,
478 sizeof(struct acpi_handle_list))) {
479 memcpy(&tz->trips.passive.devices, &devices,
480 sizeof(struct acpi_handle_list));
481 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
482 }
483 }
484 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
485 if (valid != tz->trips.passive.flags.valid)
486 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
487 }
488
489 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400490 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400491 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800492 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Len Brownf8707ec2007-08-12 00:12:54 -0400494 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800495 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400496
Zhang Rui0e4240d2009-01-16 12:53:42 -0500497 if ((flag == ACPI_TRIPS_INIT) || ((flag & ACPI_TRIPS_ACTIVE) &&
498 tz->trips.active[i].flags.valid)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800499 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400500 name, NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800501 if (ACPI_FAILURE(status)) {
502 tz->trips.active[i].flags.valid = 0;
503 if (i == 0)
504 break;
505 if (act <= 0)
506 break;
507 if (i == 1)
508 tz->trips.active[0].temperature =
509 CELSIUS_TO_KELVIN(act);
510 else
511 /*
512 * Don't allow override higher than
513 * the next higher trip point
514 */
515 tz->trips.active[i - 1].temperature =
516 (tz->trips.active[i - 2].temperature <
517 CELSIUS_TO_KELVIN(act) ?
518 tz->trips.active[i - 2].temperature :
519 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400520 break;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400521 } else {
522 tz->trips.active[i].temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800523 tz->trips.active[i].flags.valid = 1;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400524 }
Len Brownf8707ec2007-08-12 00:12:54 -0400525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800528 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
529 memset(&devices, 0, sizeof(struct acpi_handle_list));
530 status = acpi_evaluate_reference(tz->device->handle,
531 name, NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500532 if (ACPI_FAILURE(status)) {
533 printk(KERN_WARNING PREFIX
534 "Invalid active%d threshold\n", i);
Zhang Ruice44e192008-01-17 15:51:25 +0800535 tz->trips.active[i].flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500536 }
Zhang Ruice44e192008-01-17 15:51:25 +0800537 else
538 tz->trips.active[i].flags.valid = 1;
539
540 if (memcmp(&tz->trips.active[i].devices, &devices,
541 sizeof(struct acpi_handle_list))) {
542 memcpy(&tz->trips.active[i].devices, &devices,
543 sizeof(struct acpi_handle_list));
544 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
545 }
546 }
547 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
548 if (valid != tz->trips.active[i].flags.valid)
549 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
550
551 if (!tz->trips.active[i].flags.valid)
552 break;
553 }
554
555 if (flag & ACPI_TRIPS_DEVICES) {
556 memset(&devices, 0, sizeof(struct acpi_handle_list));
557 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
558 NULL, &devices);
559 if (memcmp(&tz->devices, &devices,
560 sizeof(struct acpi_handle_list))) {
561 memcpy(&tz->devices, &devices,
562 sizeof(struct acpi_handle_list));
563 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566
Patrick Mocheld550d982006-06-27 00:41:40 -0400567 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Zhang Ruice44e192008-01-17 15:51:25 +0800570static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Zhang Ruice44e192008-01-17 15:51:25 +0800572 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200577 struct acpi_thermal *tz = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Matthew Garrettb1569e92008-12-03 17:55:32 +0000579 thermal_zone_device_update(tz->thermal_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Zhang Rui3f655ef2008-01-17 15:51:11 +0800582/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800583#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
584
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000585static int thermal_get_temp(struct thermal_zone_device *thermal,
586 unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800587{
588 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800589 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800590
591 if (!tz)
592 return -EINVAL;
593
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800594 result = acpi_thermal_get_temperature(tz);
595 if (result)
596 return result;
597
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000598 *temp = KELVIN_TO_MILLICELSIUS(tz->temperature);
599 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800600}
601
602static const char enabled[] = "kernel";
603static const char disabled[] = "user";
604static int thermal_get_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000605 enum thermal_device_mode *mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800606{
607 struct acpi_thermal *tz = thermal->devdata;
608
609 if (!tz)
610 return -EINVAL;
611
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000612 *mode = tz->tz_enabled ? THERMAL_DEVICE_ENABLED :
613 THERMAL_DEVICE_DISABLED;
614
615 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800616}
617
618static int thermal_set_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000619 enum thermal_device_mode mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800620{
621 struct acpi_thermal *tz = thermal->devdata;
622 int enable;
623
624 if (!tz)
625 return -EINVAL;
626
627 /*
628 * enable/disable thermal management from ACPI thermal driver
629 */
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000630 if (mode == THERMAL_DEVICE_ENABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800631 enable = 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000632 else if (mode == THERMAL_DEVICE_DISABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800633 enable = 0;
634 else
635 return -EINVAL;
636
637 if (enable != tz->tz_enabled) {
638 tz->tz_enabled = enable;
639 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
640 "%s ACPI thermal control\n",
641 tz->tz_enabled ? enabled : disabled));
642 acpi_thermal_check(tz);
643 }
644 return 0;
645}
646
647static int thermal_get_trip_type(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000648 int trip, enum thermal_trip_type *type)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800649{
650 struct acpi_thermal *tz = thermal->devdata;
651 int i;
652
653 if (!tz || trip < 0)
654 return -EINVAL;
655
656 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000657 if (!trip) {
658 *type = THERMAL_TRIP_CRITICAL;
659 return 0;
660 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800661 trip--;
662 }
663
664 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000665 if (!trip) {
666 *type = THERMAL_TRIP_HOT;
667 return 0;
668 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800669 trip--;
670 }
671
672 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000673 if (!trip) {
674 *type = THERMAL_TRIP_PASSIVE;
675 return 0;
676 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800677 trip--;
678 }
679
680 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
681 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000682 if (!trip) {
683 *type = THERMAL_TRIP_ACTIVE;
684 return 0;
685 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800686 trip--;
687 }
688
689 return -EINVAL;
690}
691
692static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000693 int trip, unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800694{
695 struct acpi_thermal *tz = thermal->devdata;
696 int i;
697
698 if (!tz || trip < 0)
699 return -EINVAL;
700
701 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000702 if (!trip) {
703 *temp = KELVIN_TO_MILLICELSIUS(
704 tz->trips.critical.temperature);
705 return 0;
706 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800707 trip--;
708 }
709
710 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000711 if (!trip) {
712 *temp = KELVIN_TO_MILLICELSIUS(
713 tz->trips.hot.temperature);
714 return 0;
715 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800716 trip--;
717 }
718
719 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000720 if (!trip) {
721 *temp = KELVIN_TO_MILLICELSIUS(
722 tz->trips.passive.temperature);
723 return 0;
724 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800725 trip--;
726 }
727
728 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
729 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000730 if (!trip) {
731 *temp = KELVIN_TO_MILLICELSIUS(
732 tz->trips.active[i].temperature);
733 return 0;
734 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800735 trip--;
736 }
737
738 return -EINVAL;
739}
740
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800741static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
742 unsigned long *temperature) {
743 struct acpi_thermal *tz = thermal->devdata;
744
745 if (tz->trips.critical.flags.valid) {
746 *temperature = KELVIN_TO_MILLICELSIUS(
747 tz->trips.critical.temperature);
748 return 0;
749 } else
750 return -EINVAL;
751}
752
Matthew Garrettb1569e92008-12-03 17:55:32 +0000753static int thermal_notify(struct thermal_zone_device *thermal, int trip,
754 enum thermal_trip_type trip_type)
755{
756 u8 type = 0;
757 struct acpi_thermal *tz = thermal->devdata;
758
759 if (trip_type == THERMAL_TRIP_CRITICAL)
760 type = ACPI_THERMAL_NOTIFY_CRITICAL;
761 else if (trip_type == THERMAL_TRIP_HOT)
762 type = ACPI_THERMAL_NOTIFY_HOT;
763 else
764 return 0;
765
766 acpi_bus_generate_proc_event(tz->device, type, 1);
767 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
768 tz->device->dev.bus_id, type, 1);
769
770 if (trip_type == THERMAL_TRIP_CRITICAL && nocrt)
771 return 1;
772
773 return 0;
774}
775
Zhang Rui3f655ef2008-01-17 15:51:11 +0800776typedef int (*cb)(struct thermal_zone_device *, int,
777 struct thermal_cooling_device *);
778static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
779 struct thermal_cooling_device *cdev,
780 cb action)
781{
782 struct acpi_device *device = cdev->devdata;
783 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +0800784 struct acpi_device *dev;
785 acpi_status status;
786 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800787 int i;
788 int j;
789 int trip = -1;
790 int result = 0;
791
792 if (tz->trips.critical.flags.valid)
793 trip++;
794
795 if (tz->trips.hot.flags.valid)
796 trip++;
797
798 if (tz->trips.passive.flags.valid) {
799 trip++;
800 for (i = 0; i < tz->trips.passive.devices.count;
801 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800802 handle = tz->trips.passive.devices.handles[i];
803 status = acpi_bus_get_device(handle, &dev);
804 if (ACPI_SUCCESS(status) && (dev == device)) {
805 result = action(thermal, trip, cdev);
806 if (result)
807 goto failed;
808 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800809 }
810 }
811
812 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
813 if (!tz->trips.active[i].flags.valid)
814 break;
815 trip++;
816 for (j = 0;
817 j < tz->trips.active[i].devices.count;
818 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800819 handle = tz->trips.active[i].devices.handles[j];
820 status = acpi_bus_get_device(handle, &dev);
821 if (ACPI_SUCCESS(status) && (dev == device)) {
822 result = action(thermal, trip, cdev);
823 if (result)
824 goto failed;
825 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800826 }
827 }
828
829 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800830 handle = tz->devices.handles[i];
831 status = acpi_bus_get_device(handle, &dev);
832 if (ACPI_SUCCESS(status) && (dev == device)) {
833 result = action(thermal, -1, cdev);
834 if (result)
835 goto failed;
836 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800837 }
838
839failed:
840 return result;
841}
842
843static int
844acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
845 struct thermal_cooling_device *cdev)
846{
847 return acpi_thermal_cooling_device_cb(thermal, cdev,
848 thermal_zone_bind_cooling_device);
849}
850
851static int
852acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
853 struct thermal_cooling_device *cdev)
854{
855 return acpi_thermal_cooling_device_cb(thermal, cdev,
856 thermal_zone_unbind_cooling_device);
857}
858
859static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
860 .bind = acpi_thermal_bind_cooling_device,
861 .unbind = acpi_thermal_unbind_cooling_device,
862 .get_temp = thermal_get_temp,
863 .get_mode = thermal_get_mode,
864 .set_mode = thermal_set_mode,
865 .get_trip_type = thermal_get_trip_type,
866 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800867 .get_crit_temp = thermal_get_crit_temp,
Matthew Garrettb1569e92008-12-03 17:55:32 +0000868 .notify = thermal_notify,
Zhang Rui3f655ef2008-01-17 15:51:11 +0800869};
870
871static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
872{
873 int trips = 0;
874 int result;
Zhang Rui20733932008-01-17 15:51:21 +0800875 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800876 int i;
877
878 if (tz->trips.critical.flags.valid)
879 trips++;
880
881 if (tz->trips.hot.flags.valid)
882 trips++;
883
884 if (tz->trips.passive.flags.valid)
885 trips++;
886
887 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
888 tz->trips.active[i].flags.valid; i++, trips++);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000889
890 if (tz->trips.passive.flags.valid)
891 tz->thermal_zone =
892 thermal_zone_device_register("acpitz", trips, tz,
893 &acpi_thermal_zone_ops,
894 tz->trips.passive.tc1,
895 tz->trips.passive.tc2,
896 tz->trips.passive.tsp*100,
897 tz->polling_frequency*100);
898 else
899 tz->thermal_zone =
900 thermal_zone_device_register("acpitz", trips, tz,
901 &acpi_thermal_zone_ops,
902 0, 0, 0,
903 tz->polling_frequency);
Krzysztof Heltbb070e42008-04-08 17:41:52 -0700904 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +0800905 return -ENODEV;
906
907 result = sysfs_create_link(&tz->device->dev.kobj,
908 &tz->thermal_zone->device.kobj, "thermal_zone");
909 if (result)
910 return result;
911
912 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
913 &tz->device->dev.kobj, "device");
914 if (result)
915 return result;
916
Zhang Rui20733932008-01-17 15:51:21 +0800917 status = acpi_attach_data(tz->device->handle,
918 acpi_bus_private_data_handler,
919 tz->thermal_zone);
920 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800921 printk(KERN_ERR PREFIX
922 "Error attaching device data\n");
Zhang Rui20733932008-01-17 15:51:21 +0800923 return -ENODEV;
924 }
925
Zhang Rui3f655ef2008-01-17 15:51:11 +0800926 tz->tz_enabled = 1;
927
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200928 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
929 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800930 return 0;
931}
932
933static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
934{
935 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
936 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
937 thermal_zone_device_unregister(tz->thermal_zone);
938 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +0800939 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800940}
941
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/* --------------------------------------------------------------------------
944 FS Interface (/proc)
945 -------------------------------------------------------------------------- */
946
Len Brown4be44fc2005-08-05 00:44:28 -0400947static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
950{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200951 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 if (!tz)
955 goto end;
956
957 seq_puts(seq, "state: ");
958
Len Brown4be44fc2005-08-05 00:44:28 -0400959 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
960 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 seq_puts(seq, "ok\n");
962 else {
963 if (tz->state.critical)
964 seq_puts(seq, "critical ");
965 if (tz->state.hot)
966 seq_puts(seq, "hot ");
967 if (tz->state.passive)
968 seq_puts(seq, "passive ");
969 if (tz->state.active)
970 seq_printf(seq, "active[%d]", tz->state.active_index);
971 seq_puts(seq, "\n");
972 }
973
Len Brown4be44fc2005-08-05 00:44:28 -0400974 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
978static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
979{
980 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
984{
Len Brown4be44fc2005-08-05 00:44:28 -0400985 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200986 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (!tz)
990 goto end;
991
992 result = acpi_thermal_get_temperature(tz);
993 if (result)
994 goto end;
995
Len Brown4be44fc2005-08-05 00:44:28 -0400996 seq_printf(seq, "temperature: %ld C\n",
997 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Len Brown4be44fc2005-08-05 00:44:28 -0400999 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1004{
1005 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1009{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001010 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001011 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001012 acpi_status status;
1013
Len Brown4be44fc2005-08-05 00:44:28 -04001014 int i = 0;
1015 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (!tz)
1019 goto end;
1020
1021 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001022 seq_printf(seq, "critical (S5): %ld C%s",
1023 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1024 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001027 seq_printf(seq, "hot (S4): %ld C%s",
1028 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1029 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001032 seq_printf(seq,
1033 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1034 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1035 tz->trips.passive.tc1, tz->trips.passive.tc2,
1036 tz->trips.passive.tsp);
1037 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001038 status = acpi_bus_get_device(tz->trips.passive.devices.
1039 handles[j], &device);
1040 seq_printf(seq, "%4.4s ", status ? "" :
1041 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 seq_puts(seq, "\n");
1044 }
1045
1046 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1047 if (!(tz->trips.active[i].flags.valid))
1048 break;
1049 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001050 i,
1051 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001052 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001053 status = acpi_bus_get_device(tz->trips.active[i].
1054 devices.handles[j],
1055 &device);
1056 seq_printf(seq, "%4.4s ", status ? "" :
1057 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 seq_puts(seq, "\n");
1060 }
1061
Len Brown4be44fc2005-08-05 00:44:28 -04001062 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
1066static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1067{
1068 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1069}
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1072{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001073 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (!tz)
1077 goto end;
1078
Len Browneaca2d32007-04-30 23:27:43 -04001079 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 else
Len Browneaca2d32007-04-30 23:27:43 -04001082 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Len Brown4be44fc2005-08-05 00:44:28 -04001084 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1089{
1090 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001091 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001095acpi_thermal_write_cooling_mode(struct file *file,
1096 const char __user * buffer,
1097 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001099 struct seq_file *m = file->private_data;
1100 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001101 int result = 0;
1102 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001106 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001109 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001112 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001115
1116 result = acpi_thermal_set_cooling_mode(tz,
1117 simple_strtoul(mode_string, NULL,
1118 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001120 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 acpi_thermal_check(tz);
1123
Patrick Mocheld550d982006-06-27 00:41:40 -04001124 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1128{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001129 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (!tz)
1133 goto end;
1134
Matthew Garrettb1569e92008-12-03 17:55:32 +00001135 if (!tz->thermal_zone->polling_delay) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 seq_puts(seq, "<polling disabled>\n");
1137 goto end;
1138 }
1139
Matthew Garrettb1569e92008-12-03 17:55:32 +00001140 seq_printf(seq, "polling frequency: %d seconds\n",
1141 (tz->thermal_zone->polling_delay / 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Len Brown4be44fc2005-08-05 00:44:28 -04001143 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001144 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
1147static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1148{
1149 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001150 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001154acpi_thermal_write_polling(struct file *file,
1155 const char __user * buffer,
1156 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001158 struct seq_file *m = file->private_data;
1159 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001160 int result = 0;
1161 char polling_string[12] = { '\0' };
1162 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001166 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001169 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 polling_string[count] = '\0';
1172
1173 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 result = acpi_thermal_set_polling(tz, seconds);
1176 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001177 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 acpi_thermal_check(tz);
1180
Patrick Mocheld550d982006-06-27 00:41:40 -04001181 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Len Brown4be44fc2005-08-05 00:44:28 -04001184static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Len Brown4be44fc2005-08-05 00:44:28 -04001186 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 if (!acpi_device_dir(device)) {
1190 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001191 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001193 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 acpi_device_dir(device)->owner = THIS_MODULE;
1195 }
1196
1197 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001198 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1199 S_IRUGO, acpi_device_dir(device),
1200 &acpi_thermal_state_fops,
1201 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001203 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001206 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1207 S_IRUGO, acpi_device_dir(device),
1208 &acpi_thermal_temp_fops,
1209 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001211 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001213 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001214 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1215 S_IRUGO,
1216 acpi_device_dir(device),
1217 &acpi_thermal_trip_fops,
1218 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001220 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001223 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1224 S_IFREG | S_IRUGO | S_IWUSR,
1225 acpi_device_dir(device),
1226 &acpi_thermal_cooling_fops,
1227 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001229 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001232 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1233 S_IFREG | S_IRUGO | S_IWUSR,
1234 acpi_device_dir(device),
1235 &acpi_thermal_polling_fops,
1236 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001238 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Len Brown4be44fc2005-08-05 00:44:28 -04001242static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if (acpi_device_dir(device)) {
1246 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1247 acpi_device_dir(device));
1248 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1249 acpi_device_dir(device));
1250 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1251 acpi_device_dir(device));
1252 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1253 acpi_device_dir(device));
1254 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1255 acpi_device_dir(device));
1256 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1257 acpi_device_dir(device) = NULL;
1258 }
1259
Patrick Mocheld550d982006-06-27 00:41:40 -04001260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/* --------------------------------------------------------------------------
1264 Driver Interface
1265 -------------------------------------------------------------------------- */
1266
Len Brown4be44fc2005-08-05 00:44:28 -04001267static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001269 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001270 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001274 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001276 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 switch (event) {
1279 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1280 acpi_thermal_check(tz);
1281 break;
1282 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001283 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001285 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001286 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001287 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 break;
1289 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001290 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1291 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001292 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001293 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001294 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 break;
1296 default:
1297 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001298 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 break;
1300 }
1301
Patrick Mocheld550d982006-06-27 00:41:40 -04001302 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Len Brown4be44fc2005-08-05 00:44:28 -04001305static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Len Brown4be44fc2005-08-05 00:44:28 -04001307 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 /* Get temperature [_TMP] (required) */
1314 result = acpi_thermal_get_temperature(tz);
1315 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001316 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 /* Get trip points [_CRT, _PSV, etc.] (required) */
1319 result = acpi_thermal_get_trip_points(tz);
1320 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001321 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /* Set the cooling mode [_SCP] to active cooling (default) */
1324 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001325 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 /* Get default polling frequency [_TZP] (optional) */
1329 if (tzp)
1330 tz->polling_frequency = tzp;
1331 else
1332 acpi_thermal_get_polling_frequency(tz);
1333
Patrick Mocheld550d982006-06-27 00:41:40 -04001334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Len Brown4be44fc2005-08-05 00:44:28 -04001337static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Len Brown4be44fc2005-08-05 00:44:28 -04001339 int result = 0;
1340 acpi_status status = AE_OK;
1341 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001345 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Burman Yan36bcbec2006-12-19 12:56:11 -08001347 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001349 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001351 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 strcpy(tz->name, device->pnp.bus_id);
1353 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1354 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001355 device->driver_data = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001356 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001357
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 result = acpi_thermal_get_info(tz);
1360 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001361 goto free_memory;
1362
1363 result = acpi_thermal_register_thermal_zone(tz);
1364 if (result)
1365 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 result = acpi_thermal_add_fs(device);
1368 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001369 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001371 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001372 ACPI_DEVICE_NOTIFY,
1373 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001376 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378
1379 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001380 acpi_device_name(device), acpi_device_bid(device),
1381 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001382 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Zhang Rui3f655ef2008-01-17 15:51:11 +08001384remove_fs:
1385 acpi_thermal_remove_fs(device);
1386unregister_thermal_zone:
1387 thermal_zone_device_unregister(tz->thermal_zone);
1388free_memory:
1389 kfree(tz);
1390end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001391 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Len Brown4be44fc2005-08-05 00:44:28 -04001394static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Len Brown4be44fc2005-08-05 00:44:28 -04001396 acpi_status status = AE_OK;
1397 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001400 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001402 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001404 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001405 ACPI_DEVICE_NOTIFY,
1406 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001409 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001410 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001412 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
1414
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001415static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001416{
1417 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001418 int i, j, power_state, result;
1419
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001420
1421 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001422 return -EINVAL;
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001423
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001424 tz = acpi_driver_data(device);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001425
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001426 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001427 if (!(&tz->trips.active[i]))
1428 break;
1429 if (!tz->trips.active[i].flags.valid)
1430 break;
1431 tz->trips.active[i].flags.enabled = 1;
1432 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1433 result = acpi_bus_get_power(tz->trips.active[i].devices.
1434 handles[j], &power_state);
1435 if (result || (power_state != ACPI_STATE_D0)) {
1436 tz->trips.active[i].flags.enabled = 0;
1437 break;
1438 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001439 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001440 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001441 }
1442
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001443 acpi_thermal_check(tz);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001444
1445 return AE_OK;
1446}
1447
Jeff Garzik18552562007-10-03 15:15:40 -04001448static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001449
1450 if (act == 0) {
1451 printk(KERN_NOTICE "ACPI: %s detected: "
1452 "disabling all active thermal trip points\n", d->ident);
1453 act = -1;
1454 }
1455 return 0;
1456}
Jeff Garzik18552562007-10-03 15:15:40 -04001457static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001458
1459 printk(KERN_NOTICE "ACPI: %s detected: "
1460 "disabling all critical thermal trip point actions.\n", d->ident);
1461 nocrt = 1;
1462 return 0;
1463}
Jeff Garzik18552562007-10-03 15:15:40 -04001464static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001465
1466 if (tzp == 0) {
1467 printk(KERN_NOTICE "ACPI: %s detected: "
1468 "enabling thermal zone polling\n", d->ident);
1469 tzp = 300; /* 300 dS = 30 Seconds */
1470 }
1471 return 0;
1472}
Jeff Garzik18552562007-10-03 15:15:40 -04001473static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001474
1475 if (psv == 0) {
1476 printk(KERN_NOTICE "ACPI: %s detected: "
1477 "disabling all passive thermal trip points\n", d->ident);
1478 psv = -1;
1479 }
1480 return 0;
1481}
1482
1483static struct dmi_system_id thermal_dmi_table[] __initdata = {
1484 /*
1485 * Award BIOS on this AOpen makes thermal control almost worthless.
1486 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1487 */
1488 {
1489 .callback = thermal_act,
1490 .ident = "AOpen i915GMm-HFS",
1491 .matches = {
1492 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1493 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1494 },
1495 },
1496 {
1497 .callback = thermal_psv,
1498 .ident = "AOpen i915GMm-HFS",
1499 .matches = {
1500 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1501 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1502 },
1503 },
1504 {
1505 .callback = thermal_tzp,
1506 .ident = "AOpen i915GMm-HFS",
1507 .matches = {
1508 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1509 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1510 },
1511 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001512 {
1513 .callback = thermal_nocrt,
1514 .ident = "Gigabyte GA-7ZX",
1515 .matches = {
1516 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1517 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1518 },
1519 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001520 {}
1521};
Len Brown0b5bfa12007-08-12 00:13:02 -04001522
Len Brown4be44fc2005-08-05 00:44:28 -04001523static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Len Brown4be44fc2005-08-05 00:44:28 -04001525 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Len Brown0b5bfa12007-08-12 00:13:02 -04001527 dmi_check_system(thermal_dmi_table);
1528
Len Brown72b33ef2007-08-12 00:12:17 -04001529 if (off) {
1530 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1531 return -ENODEV;
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1534 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001535 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 acpi_thermal_dir->owner = THIS_MODULE;
1537
1538 result = acpi_bus_register_driver(&acpi_thermal_driver);
1539 if (result < 0) {
1540 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001541 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
1543
Patrick Mocheld550d982006-06-27 00:41:40 -04001544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Len Brown4be44fc2005-08-05 00:44:28 -04001547static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 acpi_bus_unregister_driver(&acpi_thermal_driver);
1551
1552 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1553
Patrick Mocheld550d982006-06-27 00:41:40 -04001554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557module_init(acpi_thermal_init);
1558module_exit(acpi_thermal_exit);