blob: e9e17dfc5dc2e7c26ee04eece7140fcdffc659fd [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050069ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040071MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050072MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073MODULE_LICENSE("GPL");
74
Len Brownf8707ec2007-08-12 00:12:54 -040075static int act;
76module_param(act, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040077MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
Len Brownf8707ec2007-08-12 00:12:54 -040078
Len Brownc52a7412007-08-14 15:49:32 -040079static int crt;
80module_param(crt, int, 0644);
81MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040084module_param(tzp, int, 0444);
Len Brown3c1d36d2007-08-14 15:12:56 -040085MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Len Brownf5487142007-08-12 00:12:44 -040087static int nocrt;
88module_param(nocrt, int, 0);
Len Brown8c99fdc2007-08-20 18:46:50 -040089MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
Len Brownf5487142007-08-12 00:12:44 -040090
Len Brown72b33ef2007-08-12 00:12:17 -040091static int off;
92module_param(off, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040093MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
Len Brown72b33ef2007-08-12 00:12:17 -040094
Len Browna70cdc52007-08-12 00:12:35 -040095static int psv;
96module_param(psv, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040097MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
Len Browna70cdc52007-08-12 00:12:35 -040098
Len Brown4be44fc2005-08-05 00:44:28 -040099static int acpi_thermal_add(struct acpi_device *device);
100static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800101static int acpi_thermal_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
103static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
104static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400106static ssize_t acpi_thermal_write_cooling_mode(struct file *,
107 const char __user *, size_t,
108 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400110static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
111 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200113static const struct acpi_device_id thermal_device_ids[] = {
114 {ACPI_THERMAL_HID, 0},
115 {"", 0},
116};
117MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500120 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400121 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200122 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400123 .ops = {
124 .add = acpi_thermal_add,
125 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400126 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400127 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
130struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400131 u8 critical:1;
132 u8 hot:1;
133 u8 passive:1;
134 u8 active:1;
135 u8 reserved:4;
136 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400140 u8 valid:1;
141 u8 enabled:1;
142 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
145struct acpi_thermal_critical {
146 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
150struct acpi_thermal_hot {
151 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400152 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155struct acpi_thermal_passive {
156 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 unsigned long temperature;
158 unsigned long tc1;
159 unsigned long tc2;
160 unsigned long tsp;
161 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
164struct acpi_thermal_active {
165 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 unsigned long temperature;
167 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
170struct acpi_thermal_trips {
171 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400172 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct acpi_thermal_passive passive;
174 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
175};
176
177struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400178 u8 cooling_mode:1; /* _SCP */
179 u8 devices:1; /* _TZD */
180 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181};
182
183struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400184 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400185 acpi_bus_id name;
186 unsigned long temperature;
187 unsigned long last_temperature;
188 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400189 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct acpi_thermal_flags flags;
191 struct acpi_thermal_state state;
192 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400193 struct acpi_handle_list devices;
194 struct timer_list timer;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800195 struct thermal_zone_device *thermal_zone;
196 int tz_enabled;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400197 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
Arjan van de Vend7508032006-07-04 13:06:00 -0400200static const struct file_operations acpi_thermal_state_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700201 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400202 .open = acpi_thermal_state_open_fs,
203 .read = seq_read,
204 .llseek = seq_lseek,
205 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Arjan van de Vend7508032006-07-04 13:06:00 -0400208static const struct file_operations acpi_thermal_temp_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700209 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400210 .open = acpi_thermal_temp_open_fs,
211 .read = seq_read,
212 .llseek = seq_lseek,
213 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Arjan van de Vend7508032006-07-04 13:06:00 -0400216static const struct file_operations acpi_thermal_trip_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700217 .owner = THIS_MODULE,
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 = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700225 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400226 .open = acpi_thermal_cooling_open_fs,
227 .read = seq_read,
228 .write = acpi_thermal_write_cooling_mode,
229 .llseek = seq_lseek,
230 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
Arjan van de Vend7508032006-07-04 13:06:00 -0400233static const struct file_operations acpi_thermal_polling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700234 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400235 .open = acpi_thermal_polling_open_fs,
236 .read = seq_read,
237 .write = acpi_thermal_write_polling,
238 .llseek = seq_lseek,
239 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
242/* --------------------------------------------------------------------------
243 Thermal Zone Management
244 -------------------------------------------------------------------------- */
245
Len Brown4be44fc2005-08-05 00:44:28 -0400246static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Len Brown4be44fc2005-08-05 00:44:28 -0400248 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 tz->last_temperature = tz->temperature;
255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400257 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
262 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Patrick Mocheld550d982006-06-27 00:41:40 -0400264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Len Brown4be44fc2005-08-05 00:44:28 -0400267static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Len Brown4be44fc2005-08-05 00:44:28 -0400269 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400273 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400276 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400277 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400279 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Len Brown4be44fc2005-08-05 00:44:28 -0400281 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
282 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Patrick Mocheld550d982006-06-27 00:41:40 -0400284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Len Brown4be44fc2005-08-05 00:44:28 -0400287static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400291 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
296 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500297 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Patrick Mocheld550d982006-06-27 00:41:40 -0400299 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Len Brown4be44fc2005-08-05 00:44:28 -0400302static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Len Brown4be44fc2005-08-05 00:44:28 -0400304 acpi_status status = AE_OK;
305 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
306 struct acpi_object_list arg_list = { 1, &arg0 };
307 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400313 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (ACPI_FAILURE(status)) {
315 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400316 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 arg0.integer.value = mode;
320
321 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
322 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Zhang Ruice44e192008-01-17 15:51:25 +0800328#define ACPI_TRIPS_CRITICAL 0x01
329#define ACPI_TRIPS_HOT 0x02
330#define ACPI_TRIPS_PASSIVE 0x04
331#define ACPI_TRIPS_ACTIVE 0x08
332#define ACPI_TRIPS_DEVICES 0x10
333
334#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
335#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
336
337#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
338 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
339 ACPI_TRIPS_DEVICES)
340
341/*
342 * This exception is thrown out in two cases:
343 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
344 * when re-evaluating the AML code.
345 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
346 * We need to re-bind the cooling devices of a thermal zone when this occurs.
347 */
348#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
349do { \
350 if (flags != ACPI_TRIPS_INIT) \
351 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
352 "ACPI thermal trip point %s changed\n" \
353 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
354} while (0)
355
356static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Len Brown4be44fc2005-08-05 00:44:28 -0400358 acpi_status status = AE_OK;
Zhang Ruice44e192008-01-17 15:51:25 +0800359 struct acpi_handle_list devices;
360 int valid = 0;
361 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 /* Critical Shutdown (required) */
Zhang Ruice44e192008-01-17 15:51:25 +0800364 if (flag & ACPI_TRIPS_CRITICAL) {
365 status = acpi_evaluate_integer(tz->device->handle,
366 "_CRT", NULL, &tz->trips.critical.temperature);
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700367 /*
368 * Treat freezing temperatures as invalid as well; some
369 * BIOSes return really low values and cause reboots at startup.
370 * Below zero (Celcius) values clearly aren't right for sure..
371 * ... so lets discard those as invalid.
372 */
373 if (ACPI_FAILURE(status) ||
374 tz->trips.critical.temperature <= 2732) {
Len Brownc52a7412007-08-14 15:49:32 -0400375 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800376 ACPI_EXCEPTION((AE_INFO, status,
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700377 "No or invalid critical threshold"));
Zhang Ruice44e192008-01-17 15:51:25 +0800378 return -ENODEV;
379 } else {
380 tz->trips.critical.flags.valid = 1;
381 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
382 "Found critical threshold [%lu]\n",
383 tz->trips.critical.temperature));
384 }
385 if (tz->trips.critical.flags.valid == 1) {
386 if (crt == -1) {
387 tz->trips.critical.flags.valid = 0;
388 } else if (crt > 0) {
389 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
390 /*
Zhang Rui22a94d72008-10-17 02:41:20 -0400391 * Allow override critical threshold
Zhang Ruice44e192008-01-17 15:51:25 +0800392 */
Zhang Rui22a94d72008-10-17 02:41:20 -0400393 if (crt_k > tz->trips.critical.temperature)
394 printk(KERN_WARNING PREFIX
395 "Critical threshold %d C\n", crt);
396 tz->trips.critical.temperature = crt_k;
Zhang Ruice44e192008-01-17 15:51:25 +0800397 }
Len Brownc52a7412007-08-14 15:49:32 -0400398 }
399 }
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800402 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400403 status = acpi_evaluate_integer(tz->device->handle,
Zhang Ruice44e192008-01-17 15:51:25 +0800404 "_HOT", NULL, &tz->trips.hot.temperature);
405 if (ACPI_FAILURE(status)) {
406 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400407 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800408 "No hot threshold\n"));
409 } else {
410 tz->trips.hot.flags.valid = 1;
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
412 "Found hot threshold [%lu]\n",
413 tz->trips.critical.temperature));
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Zhang Ruice44e192008-01-17 15:51:25 +0800417 /* Passive (optional) */
418 if (flag & ACPI_TRIPS_PASSIVE) {
419 valid = tz->trips.passive.flags.valid;
420 if (psv == -1) {
421 status = AE_SUPPORT;
422 } else if (psv > 0) {
423 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
424 status = AE_OK;
425 } else {
426 status = acpi_evaluate_integer(tz->device->handle,
427 "_PSV", NULL, &tz->trips.passive.temperature);
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Zhang Ruice44e192008-01-17 15:51:25 +0800430 if (ACPI_FAILURE(status))
431 tz->trips.passive.flags.valid = 0;
432 else {
433 tz->trips.passive.flags.valid = 1;
434 if (flag == ACPI_TRIPS_INIT) {
435 status = acpi_evaluate_integer(
436 tz->device->handle, "_TC1",
437 NULL, &tz->trips.passive.tc1);
438 if (ACPI_FAILURE(status))
439 tz->trips.passive.flags.valid = 0;
440 status = acpi_evaluate_integer(
441 tz->device->handle, "_TC2",
442 NULL, &tz->trips.passive.tc2);
443 if (ACPI_FAILURE(status))
444 tz->trips.passive.flags.valid = 0;
445 status = acpi_evaluate_integer(
446 tz->device->handle, "_TSP",
447 NULL, &tz->trips.passive.tsp);
448 if (ACPI_FAILURE(status))
449 tz->trips.passive.flags.valid = 0;
450 }
451 }
452 }
453 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
454 memset(&devices, 0, sizeof(struct acpi_handle_list));
455 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
456 NULL, &devices);
457 if (ACPI_FAILURE(status))
458 tz->trips.passive.flags.valid = 0;
459 else
460 tz->trips.passive.flags.valid = 1;
461
462 if (memcmp(&tz->trips.passive.devices, &devices,
463 sizeof(struct acpi_handle_list))) {
464 memcpy(&tz->trips.passive.devices, &devices,
465 sizeof(struct acpi_handle_list));
466 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
467 }
468 }
469 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
470 if (valid != tz->trips.passive.flags.valid)
471 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
472 }
473
474 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400475 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400476 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800477 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Len Brownf8707ec2007-08-12 00:12:54 -0400479 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800480 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400481
Zhang Ruice44e192008-01-17 15:51:25 +0800482 if (flag & ACPI_TRIPS_ACTIVE) {
483 status = acpi_evaluate_integer(tz->device->handle,
484 name, NULL, &tz->trips.active[i].temperature);
485 if (ACPI_FAILURE(status)) {
486 tz->trips.active[i].flags.valid = 0;
487 if (i == 0)
488 break;
489 if (act <= 0)
490 break;
491 if (i == 1)
492 tz->trips.active[0].temperature =
493 CELSIUS_TO_KELVIN(act);
494 else
495 /*
496 * Don't allow override higher than
497 * the next higher trip point
498 */
499 tz->trips.active[i - 1].temperature =
500 (tz->trips.active[i - 2].temperature <
501 CELSIUS_TO_KELVIN(act) ?
502 tz->trips.active[i - 2].temperature :
503 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400504 break;
Zhang Ruice44e192008-01-17 15:51:25 +0800505 } else
506 tz->trips.active[i].flags.valid = 1;
Len Brownf8707ec2007-08-12 00:12:54 -0400507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800510 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
511 memset(&devices, 0, sizeof(struct acpi_handle_list));
512 status = acpi_evaluate_reference(tz->device->handle,
513 name, NULL, &devices);
514 if (ACPI_FAILURE(status))
515 tz->trips.active[i].flags.valid = 0;
516 else
517 tz->trips.active[i].flags.valid = 1;
518
519 if (memcmp(&tz->trips.active[i].devices, &devices,
520 sizeof(struct acpi_handle_list))) {
521 memcpy(&tz->trips.active[i].devices, &devices,
522 sizeof(struct acpi_handle_list));
523 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
524 }
525 }
526 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
527 if (valid != tz->trips.active[i].flags.valid)
528 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
529
530 if (!tz->trips.active[i].flags.valid)
531 break;
532 }
533
534 if (flag & ACPI_TRIPS_DEVICES) {
535 memset(&devices, 0, sizeof(struct acpi_handle_list));
536 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
537 NULL, &devices);
538 if (memcmp(&tz->devices, &devices,
539 sizeof(struct acpi_handle_list))) {
540 memcpy(&tz->devices, &devices,
541 sizeof(struct acpi_handle_list));
542 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Zhang Ruice44e192008-01-17 15:51:25 +0800549static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Zhang Ruice44e192008-01-17 15:51:25 +0800551 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Len Brown4be44fc2005-08-05 00:44:28 -0400554static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Zhang Rui223630f2007-12-06 23:36:35 -0500556 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400557 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400560 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400562 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 tz->trips.critical.flags.enabled = 0;
564
Len Brown14e04fb2007-08-23 15:20:26 -0400565 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400566 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800567 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
568 tz->device->dev.bus_id,
569 ACPI_THERMAL_NOTIFY_CRITICAL,
570 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Zhang Rui223630f2007-12-06 23:36:35 -0500572 /* take no action if nocrt is set */
573 if(!nocrt) {
574 printk(KERN_EMERG
575 "Critical temperature reached (%ld C), shutting down.\n",
576 KELVIN_TO_CELSIUS(tz->temperature));
577 orderly_poweroff(true);
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Patrick Mocheld550d982006-06-27 00:41:40 -0400580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Len Brown4be44fc2005-08-05 00:44:28 -0400583static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Zhang Rui223630f2007-12-06 23:36:35 -0500585 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400586 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400589 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400591 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 tz->trips.hot.flags.enabled = 0;
593
Len Brown14e04fb2007-08-23 15:20:26 -0400594 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400595 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800596 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
597 tz->device->dev.bus_id,
598 ACPI_THERMAL_NOTIFY_HOT,
599 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Zhang Rui223630f2007-12-06 23:36:35 -0500601 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Patrick Mocheld550d982006-06-27 00:41:40 -0400603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400606static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400608 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400610 int trend = 0;
611 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400615 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 passive = &(tz->trips.passive);
618
619 /*
620 * Above Trip?
621 * -----------
622 * Calculate the thermal trend (using the passive cooling equation)
623 * and modify the performance limit for all passive cooling devices
624 * accordingly. Note that we assume symmetry.
625 */
626 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400627 trend =
628 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
629 (passive->tc2 * (tz->temperature - passive->temperature));
630 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
631 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
632 trend, passive->tc1, tz->temperature,
633 tz->last_temperature, passive->tc2,
634 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400635 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* Heating up? */
637 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400638 for (i = 0; i < passive->devices.count; i++)
639 acpi_processor_set_thermal_limit(passive->
640 devices.
641 handles[i],
642 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400644 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400645 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400646 /*
647 * assume that we are on highest
648 * freq/lowest thrott and can leave
649 * passive mode, even in error case
650 */
651 if (!acpi_processor_set_thermal_limit
652 (passive->devices.handles[i],
653 ACPI_PROCESSOR_LIMIT_DECREMENT))
654 result = 0;
655 /*
656 * Leave cooling mode, even if the temp might
657 * higher than trip point This is because some
658 * machines might have long thermal polling
659 * frequencies (tsp) defined. We will fall back
660 * into passive mode in next cycle (probably quicker)
661 */
662 if (result) {
663 passive->flags.enabled = 0;
664 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
665 "Disabling passive cooling, still above threshold,"
666 " but we are cooling down\n"));
667 }
668 }
669 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
672 /*
673 * Below Trip?
674 * -----------
675 * Implement passive cooling hysteresis to slowly increase performance
676 * and avoid thrashing around the passive trip point. Note that we
677 * assume symmetry.
678 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400679 if (!passive->flags.enabled)
680 return;
681 for (i = 0; i < passive->devices.count; i++)
682 if (!acpi_processor_set_thermal_limit
683 (passive->devices.handles[i],
684 ACPI_PROCESSOR_LIMIT_DECREMENT))
685 result = 0;
686 if (result) {
687 passive->flags.enabled = 0;
688 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
689 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400693static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Len Brown4be44fc2005-08-05 00:44:28 -0400695 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400697 int i = 0;
698 int j = 0;
699 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400703 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Len Brown4be44fc2005-08-05 00:44:28 -0400705 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 active = &(tz->trips.active[i]);
707 if (!active || !active->flags.valid)
708 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400710 /*
711 * Above Threshold?
712 * ----------------
713 * If not already enabled, turn ON all cooling devices
714 * associated with this active threshold.
715 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400717 tz->state.active_index = i;
718 maxtemp = active->temperature;
719 if (active->flags.enabled)
720 continue;
721 for (j = 0; j < active->devices.count; j++) {
722 result =
723 acpi_bus_set_power(active->devices.
724 handles[j],
725 ACPI_STATE_D0);
726 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400727 printk(KERN_WARNING PREFIX
728 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400729 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400730 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400731 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400733 active->flags.enabled = 1;
734 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
735 "Cooling device [%p] now 'on'\n",
736 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400738 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400740 if (!active->flags.enabled)
741 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /*
743 * Below Threshold?
744 * ----------------
745 * Turn OFF all cooling devices associated with this
746 * threshold.
747 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400748 for (j = 0; j < active->devices.count; j++) {
749 result = acpi_bus_set_power(active->devices.handles[j],
750 ACPI_STATE_D3);
751 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400752 printk(KERN_WARNING PREFIX
753 "Unable to turn cooling device [%p] 'off'\n",
754 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400755 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400757 active->flags.enabled = 0;
758 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
759 "Cooling device [%p] now 'off'\n",
760 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Len Brown4be44fc2005-08-05 00:44:28 -0400765static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Len Brown4be44fc2005-08-05 00:44:28 -0400767static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 struct acpi_thermal *tz = (struct acpi_thermal *)data;
770 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400771 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Zhao Yakuiea510112008-07-14 15:14:03 +0800774static void acpi_thermal_active_off(void *data)
775{
776 int result = 0;
777 struct acpi_thermal *tz = data;
778 int i = 0;
779 int j = 0;
780 struct acpi_thermal_active *active = NULL;
781
782 if (!tz) {
783 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
784 return;
785 }
786
787 result = acpi_thermal_get_temperature(tz);
788 if (result)
789 return;
790
791 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
792 active = &(tz->trips.active[i]);
793 if (!active || !active->flags.valid)
794 break;
795 if (tz->temperature >= active->temperature) {
796 /*
797 * If the thermal temperature is greater than the
798 * active threshod, unnecessary to turn off the
799 * the active cooling device.
800 */
801 continue;
802 }
803 /*
804 * Below Threshold?
805 * ----------------
806 * Turn OFF all cooling devices associated with this
807 * threshold.
808 */
809 for (j = 0; j < active->devices.count; j++)
810 result = acpi_bus_set_power(active->devices.handles[j],
811 ACPI_STATE_D3);
812 }
813}
814
Len Brown4be44fc2005-08-05 00:44:28 -0400815static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Len Brown4be44fc2005-08-05 00:44:28 -0400817 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200818 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400819 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400820 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400821 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct acpi_thermal_state state;
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400826 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400827 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400830 /* Check if someone else is already running */
831 if (!mutex_trylock(&tz->lock))
832 return;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 state = tz->state;
835
836 result = acpi_thermal_get_temperature(tz);
837 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400838 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400839
Zhang Rui3f655ef2008-01-17 15:51:11 +0800840 if (!tz->tz_enabled)
841 goto unlock;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /*
846 * Check Trip Points
847 * -----------------
848 * Compare the current temperature to the trip point values to see
849 * if we've entered one of the thermal policy states. Note that
850 * this function determines when a state is entered, but the
851 * individual policy decides when it is exited (e.g. hysteresis).
852 */
853 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400854 state.critical |=
855 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (tz->trips.hot.flags.valid)
857 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
858 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400859 state.passive |=
860 (tz->temperature >= tz->trips.passive.temperature);
861 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400863 state.active |=
864 (tz->temperature >=
865 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 /*
868 * Invoke Policy
869 * -------------
870 * Separated from the above check to allow individual policy to
871 * determine when to exit a given state.
872 */
873 if (state.critical)
874 acpi_thermal_critical(tz);
875 if (state.hot)
876 acpi_thermal_hot(tz);
877 if (state.passive)
878 acpi_thermal_passive(tz);
879 if (state.active)
880 acpi_thermal_active(tz);
881
882 /*
883 * Calculate State
884 * ---------------
885 * Again, separated from the above two to allow independent policy
886 * decisions.
887 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400888 tz->state.critical = tz->trips.critical.flags.enabled;
889 tz->state.hot = tz->trips.hot.flags.enabled;
890 tz->state.passive = tz->trips.passive.flags.enabled;
891 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400892 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400893 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /*
896 * Calculate Sleep Time
897 * --------------------
898 * If we're in the passive state, use _TSP's value. Otherwise
899 * use the default polling frequency (e.g. _TZP). If no polling
900 * frequency is specified then we'll wait forever (at least until
901 * a thermal event occurs). Note that _TSP and _TZD values are
902 * given in 1/10th seconds (we must covert to milliseconds).
903 */
Len Brown21bc42a2007-09-04 12:49:22 -0400904 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400906 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
907 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400909 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Len Brown4be44fc2005-08-05 00:44:28 -0400912 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
913 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 /*
916 * Schedule Next Poll
917 * ------------------
918 */
919 if (!sleep_time) {
920 if (timer_pending(&(tz->timer)))
921 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400922 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400924 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400926 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400928 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 add_timer(&(tz->timer));
930 }
931 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400932 unlock:
933 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Zhang Rui3f655ef2008-01-17 15:51:11 +0800936/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800937#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
938
Zhang Rui3f655ef2008-01-17 15:51:11 +0800939static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
940{
941 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800942 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800943
944 if (!tz)
945 return -EINVAL;
946
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800947 result = acpi_thermal_get_temperature(tz);
948 if (result)
949 return result;
950
Zhang, Rui5e012762008-02-28 07:51:30 +0800951 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800952}
953
954static const char enabled[] = "kernel";
955static const char disabled[] = "user";
956static int thermal_get_mode(struct thermal_zone_device *thermal,
957 char *buf)
958{
959 struct acpi_thermal *tz = thermal->devdata;
960
961 if (!tz)
962 return -EINVAL;
963
964 return sprintf(buf, "%s\n", tz->tz_enabled ?
965 enabled : disabled);
966}
967
968static int thermal_set_mode(struct thermal_zone_device *thermal,
969 const char *buf)
970{
971 struct acpi_thermal *tz = thermal->devdata;
972 int enable;
973
974 if (!tz)
975 return -EINVAL;
976
977 /*
978 * enable/disable thermal management from ACPI thermal driver
979 */
980 if (!strncmp(buf, enabled, sizeof enabled - 1))
981 enable = 1;
982 else if (!strncmp(buf, disabled, sizeof disabled - 1))
983 enable = 0;
984 else
985 return -EINVAL;
986
987 if (enable != tz->tz_enabled) {
988 tz->tz_enabled = enable;
989 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
990 "%s ACPI thermal control\n",
991 tz->tz_enabled ? enabled : disabled));
992 acpi_thermal_check(tz);
993 }
994 return 0;
995}
996
997static int thermal_get_trip_type(struct thermal_zone_device *thermal,
998 int trip, char *buf)
999{
1000 struct acpi_thermal *tz = thermal->devdata;
1001 int i;
1002
1003 if (!tz || trip < 0)
1004 return -EINVAL;
1005
1006 if (tz->trips.critical.flags.valid) {
1007 if (!trip)
1008 return sprintf(buf, "critical\n");
1009 trip--;
1010 }
1011
1012 if (tz->trips.hot.flags.valid) {
1013 if (!trip)
1014 return sprintf(buf, "hot\n");
1015 trip--;
1016 }
1017
1018 if (tz->trips.passive.flags.valid) {
1019 if (!trip)
1020 return sprintf(buf, "passive\n");
1021 trip--;
1022 }
1023
1024 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1025 tz->trips.active[i].flags.valid; i++) {
1026 if (!trip)
1027 return sprintf(buf, "active%d\n", i);
1028 trip--;
1029 }
1030
1031 return -EINVAL;
1032}
1033
1034static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
1035 int trip, char *buf)
1036{
1037 struct acpi_thermal *tz = thermal->devdata;
1038 int i;
1039
1040 if (!tz || trip < 0)
1041 return -EINVAL;
1042
1043 if (tz->trips.critical.flags.valid) {
1044 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001045 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001046 tz->trips.critical.temperature));
1047 trip--;
1048 }
1049
1050 if (tz->trips.hot.flags.valid) {
1051 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001052 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001053 tz->trips.hot.temperature));
1054 trip--;
1055 }
1056
1057 if (tz->trips.passive.flags.valid) {
1058 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001059 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001060 tz->trips.passive.temperature));
1061 trip--;
1062 }
1063
1064 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1065 tz->trips.active[i].flags.valid; i++) {
1066 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001067 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001068 tz->trips.active[i].temperature));
1069 trip--;
1070 }
1071
1072 return -EINVAL;
1073}
1074
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001075static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
1076 unsigned long *temperature) {
1077 struct acpi_thermal *tz = thermal->devdata;
1078
1079 if (tz->trips.critical.flags.valid) {
1080 *temperature = KELVIN_TO_MILLICELSIUS(
1081 tz->trips.critical.temperature);
1082 return 0;
1083 } else
1084 return -EINVAL;
1085}
1086
Zhang Rui3f655ef2008-01-17 15:51:11 +08001087typedef int (*cb)(struct thermal_zone_device *, int,
1088 struct thermal_cooling_device *);
1089static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1090 struct thermal_cooling_device *cdev,
1091 cb action)
1092{
1093 struct acpi_device *device = cdev->devdata;
1094 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001095 struct acpi_device *dev;
1096 acpi_status status;
1097 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001098 int i;
1099 int j;
1100 int trip = -1;
1101 int result = 0;
1102
1103 if (tz->trips.critical.flags.valid)
1104 trip++;
1105
1106 if (tz->trips.hot.flags.valid)
1107 trip++;
1108
1109 if (tz->trips.passive.flags.valid) {
1110 trip++;
1111 for (i = 0; i < tz->trips.passive.devices.count;
1112 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001113 handle = tz->trips.passive.devices.handles[i];
1114 status = acpi_bus_get_device(handle, &dev);
1115 if (ACPI_SUCCESS(status) && (dev == device)) {
1116 result = action(thermal, trip, cdev);
1117 if (result)
1118 goto failed;
1119 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001120 }
1121 }
1122
1123 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1124 if (!tz->trips.active[i].flags.valid)
1125 break;
1126 trip++;
1127 for (j = 0;
1128 j < tz->trips.active[i].devices.count;
1129 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001130 handle = tz->trips.active[i].devices.handles[j];
1131 status = acpi_bus_get_device(handle, &dev);
1132 if (ACPI_SUCCESS(status) && (dev == device)) {
1133 result = action(thermal, trip, cdev);
1134 if (result)
1135 goto failed;
1136 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001137 }
1138 }
1139
1140 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001141 handle = tz->devices.handles[i];
1142 status = acpi_bus_get_device(handle, &dev);
1143 if (ACPI_SUCCESS(status) && (dev == device)) {
1144 result = action(thermal, -1, cdev);
1145 if (result)
1146 goto failed;
1147 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001148 }
1149
1150failed:
1151 return result;
1152}
1153
1154static int
1155acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1156 struct thermal_cooling_device *cdev)
1157{
1158 return acpi_thermal_cooling_device_cb(thermal, cdev,
1159 thermal_zone_bind_cooling_device);
1160}
1161
1162static int
1163acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1164 struct thermal_cooling_device *cdev)
1165{
1166 return acpi_thermal_cooling_device_cb(thermal, cdev,
1167 thermal_zone_unbind_cooling_device);
1168}
1169
1170static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1171 .bind = acpi_thermal_bind_cooling_device,
1172 .unbind = acpi_thermal_unbind_cooling_device,
1173 .get_temp = thermal_get_temp,
1174 .get_mode = thermal_get_mode,
1175 .set_mode = thermal_set_mode,
1176 .get_trip_type = thermal_get_trip_type,
1177 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001178 .get_crit_temp = thermal_get_crit_temp,
Zhang Rui3f655ef2008-01-17 15:51:11 +08001179};
1180
1181static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1182{
1183 int trips = 0;
1184 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001185 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001186 int i;
1187
1188 if (tz->trips.critical.flags.valid)
1189 trips++;
1190
1191 if (tz->trips.hot.flags.valid)
1192 trips++;
1193
1194 if (tz->trips.passive.flags.valid)
1195 trips++;
1196
1197 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1198 tz->trips.active[i].flags.valid; i++, trips++);
Zhang Ruie9ae7102008-04-22 08:50:09 +08001199 tz->thermal_zone = thermal_zone_device_register("acpitz",
Zhang Rui3f655ef2008-01-17 15:51:11 +08001200 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001201 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001202 return -ENODEV;
1203
1204 result = sysfs_create_link(&tz->device->dev.kobj,
1205 &tz->thermal_zone->device.kobj, "thermal_zone");
1206 if (result)
1207 return result;
1208
1209 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1210 &tz->device->dev.kobj, "device");
1211 if (result)
1212 return result;
1213
Zhang Rui20733932008-01-17 15:51:21 +08001214 status = acpi_attach_data(tz->device->handle,
1215 acpi_bus_private_data_handler,
1216 tz->thermal_zone);
1217 if (ACPI_FAILURE(status)) {
1218 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1219 "Error attaching device data\n"));
1220 return -ENODEV;
1221 }
1222
Zhang Rui3f655ef2008-01-17 15:51:11 +08001223 tz->tz_enabled = 1;
1224
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +02001225 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
1226 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001227 return 0;
1228}
1229
1230static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1231{
1232 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1233 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1234 thermal_zone_device_unregister(tz->thermal_zone);
1235 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001236 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001237}
1238
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240/* --------------------------------------------------------------------------
1241 FS Interface (/proc)
1242 -------------------------------------------------------------------------- */
1243
Len Brown4be44fc2005-08-05 00:44:28 -04001244static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1247{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001248 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 if (!tz)
1252 goto end;
1253
1254 seq_puts(seq, "state: ");
1255
Len Brown4be44fc2005-08-05 00:44:28 -04001256 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1257 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 seq_puts(seq, "ok\n");
1259 else {
1260 if (tz->state.critical)
1261 seq_puts(seq, "critical ");
1262 if (tz->state.hot)
1263 seq_puts(seq, "hot ");
1264 if (tz->state.passive)
1265 seq_puts(seq, "passive ");
1266 if (tz->state.active)
1267 seq_printf(seq, "active[%d]", tz->state.active_index);
1268 seq_puts(seq, "\n");
1269 }
1270
Len Brown4be44fc2005-08-05 00:44:28 -04001271 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1276{
1277 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1278}
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1281{
Len Brown4be44fc2005-08-05 00:44:28 -04001282 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001283 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 if (!tz)
1287 goto end;
1288
1289 result = acpi_thermal_get_temperature(tz);
1290 if (result)
1291 goto end;
1292
Len Brown4be44fc2005-08-05 00:44:28 -04001293 seq_printf(seq, "temperature: %ld C\n",
1294 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Len Brown4be44fc2005-08-05 00:44:28 -04001296 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1301{
1302 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1303}
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1306{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001307 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001308 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001309 acpi_status status;
1310
Len Brown4be44fc2005-08-05 00:44:28 -04001311 int i = 0;
1312 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (!tz)
1316 goto end;
1317
1318 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001319 seq_printf(seq, "critical (S5): %ld C%s",
1320 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1321 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001324 seq_printf(seq, "hot (S4): %ld C%s",
1325 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1326 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001329 seq_printf(seq,
1330 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1331 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1332 tz->trips.passive.tc1, tz->trips.passive.tc2,
1333 tz->trips.passive.tsp);
1334 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001335 status = acpi_bus_get_device(tz->trips.passive.devices.
1336 handles[j], &device);
1337 seq_printf(seq, "%4.4s ", status ? "" :
1338 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340 seq_puts(seq, "\n");
1341 }
1342
1343 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1344 if (!(tz->trips.active[i].flags.valid))
1345 break;
1346 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001347 i,
1348 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001349 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001350 status = acpi_bus_get_device(tz->trips.active[i].
1351 devices.handles[j],
1352 &device);
1353 seq_printf(seq, "%4.4s ", status ? "" :
1354 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 seq_puts(seq, "\n");
1357 }
1358
Len Brown4be44fc2005-08-05 00:44:28 -04001359 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1364{
1365 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1366}
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1369{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001370 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 if (!tz)
1374 goto end;
1375
Len Browneaca2d32007-04-30 23:27:43 -04001376 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 else
Len Browneaca2d32007-04-30 23:27:43 -04001379 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Len Brown4be44fc2005-08-05 00:44:28 -04001381 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
1385static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1386{
1387 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001388 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001392acpi_thermal_write_cooling_mode(struct file *file,
1393 const char __user * buffer,
1394 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001396 struct seq_file *m = file->private_data;
1397 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001398 int result = 0;
1399 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001403 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001406 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001409 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001412
1413 result = acpi_thermal_set_cooling_mode(tz,
1414 simple_strtoul(mode_string, NULL,
1415 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001417 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 acpi_thermal_check(tz);
1420
Patrick Mocheld550d982006-06-27 00:41:40 -04001421 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1425{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001426 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 if (!tz)
1430 goto end;
1431
1432 if (!tz->polling_frequency) {
1433 seq_puts(seq, "<polling disabled>\n");
1434 goto end;
1435 }
1436
1437 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001438 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Len Brown4be44fc2005-08-05 00:44:28 -04001440 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
1444static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1445{
1446 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001447 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001451acpi_thermal_write_polling(struct file *file,
1452 const char __user * buffer,
1453 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001455 struct seq_file *m = file->private_data;
1456 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001457 int result = 0;
1458 char polling_string[12] = { '\0' };
1459 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001463 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001466 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 polling_string[count] = '\0';
1469
1470 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 result = acpi_thermal_set_polling(tz, seconds);
1473 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001474 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 acpi_thermal_check(tz);
1477
Patrick Mocheld550d982006-06-27 00:41:40 -04001478 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Len Brown4be44fc2005-08-05 00:44:28 -04001481static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Len Brown4be44fc2005-08-05 00:44:28 -04001483 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 if (!acpi_device_dir(device)) {
1487 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001488 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001490 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 acpi_device_dir(device)->owner = THIS_MODULE;
1492 }
1493
1494 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001495 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1496 S_IRUGO, acpi_device_dir(device),
1497 &acpi_thermal_state_fops,
1498 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001500 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001503 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1504 S_IRUGO, acpi_device_dir(device),
1505 &acpi_thermal_temp_fops,
1506 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001508 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001510 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001511 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1512 S_IRUGO,
1513 acpi_device_dir(device),
1514 &acpi_thermal_trip_fops,
1515 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001517 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001520 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1521 S_IFREG | S_IRUGO | S_IWUSR,
1522 acpi_device_dir(device),
1523 &acpi_thermal_cooling_fops,
1524 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001526 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001529 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1530 S_IFREG | S_IRUGO | S_IWUSR,
1531 acpi_device_dir(device),
1532 &acpi_thermal_polling_fops,
1533 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001535 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Len Brown4be44fc2005-08-05 00:44:28 -04001539static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 if (acpi_device_dir(device)) {
1543 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1544 acpi_device_dir(device));
1545 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1546 acpi_device_dir(device));
1547 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1548 acpi_device_dir(device));
1549 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1550 acpi_device_dir(device));
1551 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1552 acpi_device_dir(device));
1553 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1554 acpi_device_dir(device) = NULL;
1555 }
1556
Patrick Mocheld550d982006-06-27 00:41:40 -04001557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560/* --------------------------------------------------------------------------
1561 Driver Interface
1562 -------------------------------------------------------------------------- */
1563
Len Brown4be44fc2005-08-05 00:44:28 -04001564static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001566 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001567 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001573 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 switch (event) {
1576 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1577 acpi_thermal_check(tz);
1578 break;
1579 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001580 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001582 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001583 acpi_bus_generate_netlink_event(device->pnp.device_class,
1584 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 break;
1586 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001587 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1588 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001589 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001590 acpi_bus_generate_netlink_event(device->pnp.device_class,
1591 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 break;
1593 default:
1594 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001595 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
1597 }
1598
Patrick Mocheld550d982006-06-27 00:41:40 -04001599 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Len Brown4be44fc2005-08-05 00:44:28 -04001602static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Len Brown4be44fc2005-08-05 00:44:28 -04001604 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001608 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 /* Get temperature [_TMP] (required) */
1611 result = acpi_thermal_get_temperature(tz);
1612 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001613 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 /* Get trip points [_CRT, _PSV, etc.] (required) */
1616 result = acpi_thermal_get_trip_points(tz);
1617 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001618 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 /* Set the cooling mode [_SCP] to active cooling (default) */
1621 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001622 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /* Get default polling frequency [_TZP] (optional) */
1626 if (tzp)
1627 tz->polling_frequency = tzp;
1628 else
1629 acpi_thermal_get_polling_frequency(tz);
1630
Patrick Mocheld550d982006-06-27 00:41:40 -04001631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Len Brown4be44fc2005-08-05 00:44:28 -04001634static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Len Brown4be44fc2005-08-05 00:44:28 -04001636 int result = 0;
1637 acpi_status status = AE_OK;
1638 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001642 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Burman Yan36bcbec2006-12-19 12:56:11 -08001644 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001646 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001648 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 strcpy(tz->name, device->pnp.bus_id);
1650 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1651 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001652 device->driver_data = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001653 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001654
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 result = acpi_thermal_get_info(tz);
1657 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001658 goto free_memory;
1659
1660 result = acpi_thermal_register_thermal_zone(tz);
1661 if (result)
1662 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 result = acpi_thermal_add_fs(device);
1665 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001666 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 init_timer(&tz->timer);
1669
Zhao Yakuiea510112008-07-14 15:14:03 +08001670 acpi_thermal_active_off(tz);
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 acpi_thermal_check(tz);
1673
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001674 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001675 ACPI_DEVICE_NOTIFY,
1676 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001679 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681
1682 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001683 acpi_device_name(device), acpi_device_bid(device),
1684 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001685 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Zhang Rui3f655ef2008-01-17 15:51:11 +08001687remove_fs:
1688 acpi_thermal_remove_fs(device);
1689unregister_thermal_zone:
1690 thermal_zone_device_unregister(tz->thermal_zone);
1691free_memory:
1692 kfree(tz);
1693end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001694 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Len Brown4be44fc2005-08-05 00:44:28 -04001697static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Len Brown4be44fc2005-08-05 00:44:28 -04001699 acpi_status status = AE_OK;
1700 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001704 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001706 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 /* avoid timer adding new defer task */
1709 tz->zombie = 1;
1710 /* wait for running timer (on other CPUs) finish */
1711 del_timer_sync(&(tz->timer));
1712 /* synchronize deferred task */
1713 acpi_os_wait_events_complete(NULL);
1714 /* deferred task may reinsert timer */
1715 del_timer_sync(&(tz->timer));
1716
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001717 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001718 ACPI_DEVICE_NOTIFY,
1719 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001722 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 tz->trips.passive.flags.enabled = 0;
1724 acpi_thermal_passive(tz);
1725 }
1726 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001727 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 tz->trips.active[0].flags.enabled = 0;
1729 acpi_thermal_active(tz);
1730 }
1731
1732 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001733 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001734 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001736 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001739static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001740{
1741 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001742 int i, j, power_state, result;
1743
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001744
1745 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001746 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001747
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001748 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001749
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001750 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001751 if (!(&tz->trips.active[i]))
1752 break;
1753 if (!tz->trips.active[i].flags.valid)
1754 break;
1755 tz->trips.active[i].flags.enabled = 1;
1756 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1757 result = acpi_bus_get_power(tz->trips.active[i].devices.
1758 handles[j], &power_state);
1759 if (result || (power_state != ACPI_STATE_D0)) {
1760 tz->trips.active[i].flags.enabled = 0;
1761 break;
1762 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001763 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001764 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001765 }
1766
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001767 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001768
1769 return AE_OK;
1770}
1771
Jeff Garzik18552562007-10-03 15:15:40 -04001772static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001773
1774 if (act == 0) {
1775 printk(KERN_NOTICE "ACPI: %s detected: "
1776 "disabling all active thermal trip points\n", d->ident);
1777 act = -1;
1778 }
1779 return 0;
1780}
Jeff Garzik18552562007-10-03 15:15:40 -04001781static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001782
1783 printk(KERN_NOTICE "ACPI: %s detected: "
1784 "disabling all critical thermal trip point actions.\n", d->ident);
1785 nocrt = 1;
1786 return 0;
1787}
Jeff Garzik18552562007-10-03 15:15:40 -04001788static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001789
1790 if (tzp == 0) {
1791 printk(KERN_NOTICE "ACPI: %s detected: "
1792 "enabling thermal zone polling\n", d->ident);
1793 tzp = 300; /* 300 dS = 30 Seconds */
1794 }
1795 return 0;
1796}
Jeff Garzik18552562007-10-03 15:15:40 -04001797static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001798
1799 if (psv == 0) {
1800 printk(KERN_NOTICE "ACPI: %s detected: "
1801 "disabling all passive thermal trip points\n", d->ident);
1802 psv = -1;
1803 }
1804 return 0;
1805}
1806
1807static struct dmi_system_id thermal_dmi_table[] __initdata = {
1808 /*
1809 * Award BIOS on this AOpen makes thermal control almost worthless.
1810 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1811 */
1812 {
1813 .callback = thermal_act,
1814 .ident = "AOpen i915GMm-HFS",
1815 .matches = {
1816 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1817 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1818 },
1819 },
1820 {
1821 .callback = thermal_psv,
1822 .ident = "AOpen i915GMm-HFS",
1823 .matches = {
1824 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1825 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1826 },
1827 },
1828 {
1829 .callback = thermal_tzp,
1830 .ident = "AOpen i915GMm-HFS",
1831 .matches = {
1832 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1833 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1834 },
1835 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001836 {
1837 .callback = thermal_nocrt,
1838 .ident = "Gigabyte GA-7ZX",
1839 .matches = {
1840 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1841 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1842 },
1843 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001844 {}
1845};
Len Brown0b5bfa12007-08-12 00:13:02 -04001846
Len Brown4be44fc2005-08-05 00:44:28 -04001847static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Len Brown4be44fc2005-08-05 00:44:28 -04001849 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Len Brown0b5bfa12007-08-12 00:13:02 -04001851 dmi_check_system(thermal_dmi_table);
1852
Len Brown72b33ef2007-08-12 00:12:17 -04001853 if (off) {
1854 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1855 return -ENODEV;
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1858 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001859 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 acpi_thermal_dir->owner = THIS_MODULE;
1861
1862 result = acpi_bus_register_driver(&acpi_thermal_driver);
1863 if (result < 0) {
1864 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001865 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867
Patrick Mocheld550d982006-06-27 00:41:40 -04001868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Len Brown4be44fc2005-08-05 00:44:28 -04001871static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 acpi_bus_unregister_driver(&acpi_thermal_driver);
1875
1876 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1877
Patrick Mocheld550d982006-06-27 00:41:40 -04001878 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881module_init(acpi_thermal_init);
1882module_exit(acpi_thermal_exit);