blob: 84c795fb9b1ebef3a787907ba372cc368923a6c2 [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 Brownc2b6705b2007-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 Karasyov74ce1462006-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 /*
391 * Allow override to lower critical threshold
392 */
393 if (crt_k < tz->trips.critical.temperature)
394 tz->trips.critical.temperature = crt_k;
395 }
Len Brownc52a7412007-08-14 15:49:32 -0400396 }
397 }
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800400 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400401 status = acpi_evaluate_integer(tz->device->handle,
Zhang Ruice44e192008-01-17 15:51:25 +0800402 "_HOT", NULL, &tz->trips.hot.temperature);
403 if (ACPI_FAILURE(status)) {
404 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400405 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800406 "No hot threshold\n"));
407 } else {
408 tz->trips.hot.flags.valid = 1;
409 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
410 "Found hot threshold [%lu]\n",
411 tz->trips.critical.temperature));
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Zhang Ruice44e192008-01-17 15:51:25 +0800415 /* Passive (optional) */
416 if (flag & ACPI_TRIPS_PASSIVE) {
417 valid = tz->trips.passive.flags.valid;
418 if (psv == -1) {
419 status = AE_SUPPORT;
420 } else if (psv > 0) {
421 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
422 status = AE_OK;
423 } else {
424 status = acpi_evaluate_integer(tz->device->handle,
425 "_PSV", NULL, &tz->trips.passive.temperature);
426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Zhang Ruice44e192008-01-17 15:51:25 +0800428 if (ACPI_FAILURE(status))
429 tz->trips.passive.flags.valid = 0;
430 else {
431 tz->trips.passive.flags.valid = 1;
432 if (flag == ACPI_TRIPS_INIT) {
433 status = acpi_evaluate_integer(
434 tz->device->handle, "_TC1",
435 NULL, &tz->trips.passive.tc1);
436 if (ACPI_FAILURE(status))
437 tz->trips.passive.flags.valid = 0;
438 status = acpi_evaluate_integer(
439 tz->device->handle, "_TC2",
440 NULL, &tz->trips.passive.tc2);
441 if (ACPI_FAILURE(status))
442 tz->trips.passive.flags.valid = 0;
443 status = acpi_evaluate_integer(
444 tz->device->handle, "_TSP",
445 NULL, &tz->trips.passive.tsp);
446 if (ACPI_FAILURE(status))
447 tz->trips.passive.flags.valid = 0;
448 }
449 }
450 }
451 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
452 memset(&devices, 0, sizeof(struct acpi_handle_list));
453 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
454 NULL, &devices);
455 if (ACPI_FAILURE(status))
456 tz->trips.passive.flags.valid = 0;
457 else
458 tz->trips.passive.flags.valid = 1;
459
460 if (memcmp(&tz->trips.passive.devices, &devices,
461 sizeof(struct acpi_handle_list))) {
462 memcpy(&tz->trips.passive.devices, &devices,
463 sizeof(struct acpi_handle_list));
464 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
465 }
466 }
467 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
468 if (valid != tz->trips.passive.flags.valid)
469 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
470 }
471
472 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400473 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400474 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800475 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Len Brownf8707ec2007-08-12 00:12:54 -0400477 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800478 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400479
Zhang Ruice44e192008-01-17 15:51:25 +0800480 if (flag & ACPI_TRIPS_ACTIVE) {
481 status = acpi_evaluate_integer(tz->device->handle,
482 name, NULL, &tz->trips.active[i].temperature);
483 if (ACPI_FAILURE(status)) {
484 tz->trips.active[i].flags.valid = 0;
485 if (i == 0)
486 break;
487 if (act <= 0)
488 break;
489 if (i == 1)
490 tz->trips.active[0].temperature =
491 CELSIUS_TO_KELVIN(act);
492 else
493 /*
494 * Don't allow override higher than
495 * the next higher trip point
496 */
497 tz->trips.active[i - 1].temperature =
498 (tz->trips.active[i - 2].temperature <
499 CELSIUS_TO_KELVIN(act) ?
500 tz->trips.active[i - 2].temperature :
501 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400502 break;
Zhang Ruice44e192008-01-17 15:51:25 +0800503 } else
504 tz->trips.active[i].flags.valid = 1;
Len Brownf8707ec2007-08-12 00:12:54 -0400505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800508 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
509 memset(&devices, 0, sizeof(struct acpi_handle_list));
510 status = acpi_evaluate_reference(tz->device->handle,
511 name, NULL, &devices);
512 if (ACPI_FAILURE(status))
513 tz->trips.active[i].flags.valid = 0;
514 else
515 tz->trips.active[i].flags.valid = 1;
516
517 if (memcmp(&tz->trips.active[i].devices, &devices,
518 sizeof(struct acpi_handle_list))) {
519 memcpy(&tz->trips.active[i].devices, &devices,
520 sizeof(struct acpi_handle_list));
521 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
522 }
523 }
524 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
525 if (valid != tz->trips.active[i].flags.valid)
526 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
527
528 if (!tz->trips.active[i].flags.valid)
529 break;
530 }
531
532 if (flag & ACPI_TRIPS_DEVICES) {
533 memset(&devices, 0, sizeof(struct acpi_handle_list));
534 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
535 NULL, &devices);
536 if (memcmp(&tz->devices, &devices,
537 sizeof(struct acpi_handle_list))) {
538 memcpy(&tz->devices, &devices,
539 sizeof(struct acpi_handle_list));
540 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
Patrick Mocheld550d982006-06-27 00:41:40 -0400544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Zhang Ruice44e192008-01-17 15:51:25 +0800547static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Zhang Ruice44e192008-01-17 15:51:25 +0800549 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Len Brown4be44fc2005-08-05 00:44:28 -0400552static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Zhang Rui223630f2007-12-06 23:36:35 -0500554 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400555 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400558 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400560 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 tz->trips.critical.flags.enabled = 0;
562
Len Brown14e04fb2007-08-23 15:20:26 -0400563 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400564 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800565 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
566 tz->device->dev.bus_id,
567 ACPI_THERMAL_NOTIFY_CRITICAL,
568 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Zhang Rui223630f2007-12-06 23:36:35 -0500570 /* take no action if nocrt is set */
571 if(!nocrt) {
572 printk(KERN_EMERG
573 "Critical temperature reached (%ld C), shutting down.\n",
574 KELVIN_TO_CELSIUS(tz->temperature));
575 orderly_poweroff(true);
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Patrick Mocheld550d982006-06-27 00:41:40 -0400578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Zhang Rui223630f2007-12-06 23:36:35 -0500583 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400587 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400589 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 tz->trips.hot.flags.enabled = 0;
591
Len Brown14e04fb2007-08-23 15:20:26 -0400592 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400593 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800594 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
595 tz->device->dev.bus_id,
596 ACPI_THERMAL_NOTIFY_HOT,
597 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Zhang Rui223630f2007-12-06 23:36:35 -0500599 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400604static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400606 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400608 int trend = 0;
609 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400613 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 passive = &(tz->trips.passive);
616
617 /*
618 * Above Trip?
619 * -----------
620 * Calculate the thermal trend (using the passive cooling equation)
621 * and modify the performance limit for all passive cooling devices
622 * accordingly. Note that we assume symmetry.
623 */
624 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400625 trend =
626 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
627 (passive->tc2 * (tz->temperature - passive->temperature));
628 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
629 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
630 trend, passive->tc1, tz->temperature,
631 tz->last_temperature, passive->tc2,
632 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400633 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Heating up? */
635 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400636 for (i = 0; i < passive->devices.count; i++)
637 acpi_processor_set_thermal_limit(passive->
638 devices.
639 handles[i],
640 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400642 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400643 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400644 /*
645 * assume that we are on highest
646 * freq/lowest thrott and can leave
647 * passive mode, even in error case
648 */
649 if (!acpi_processor_set_thermal_limit
650 (passive->devices.handles[i],
651 ACPI_PROCESSOR_LIMIT_DECREMENT))
652 result = 0;
653 /*
654 * Leave cooling mode, even if the temp might
655 * higher than trip point This is because some
656 * machines might have long thermal polling
657 * frequencies (tsp) defined. We will fall back
658 * into passive mode in next cycle (probably quicker)
659 */
660 if (result) {
661 passive->flags.enabled = 0;
662 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
663 "Disabling passive cooling, still above threshold,"
664 " but we are cooling down\n"));
665 }
666 }
667 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
670 /*
671 * Below Trip?
672 * -----------
673 * Implement passive cooling hysteresis to slowly increase performance
674 * and avoid thrashing around the passive trip point. Note that we
675 * assume symmetry.
676 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400677 if (!passive->flags.enabled)
678 return;
679 for (i = 0; i < passive->devices.count; i++)
680 if (!acpi_processor_set_thermal_limit
681 (passive->devices.handles[i],
682 ACPI_PROCESSOR_LIMIT_DECREMENT))
683 result = 0;
684 if (result) {
685 passive->flags.enabled = 0;
686 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
687 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400691static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Len Brown4be44fc2005-08-05 00:44:28 -0400693 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400695 int i = 0;
696 int j = 0;
697 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400701 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Len Brown4be44fc2005-08-05 00:44:28 -0400703 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 active = &(tz->trips.active[i]);
705 if (!active || !active->flags.valid)
706 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400708 /*
709 * Above Threshold?
710 * ----------------
711 * If not already enabled, turn ON all cooling devices
712 * associated with this active threshold.
713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400715 tz->state.active_index = i;
716 maxtemp = active->temperature;
717 if (active->flags.enabled)
718 continue;
719 for (j = 0; j < active->devices.count; j++) {
720 result =
721 acpi_bus_set_power(active->devices.
722 handles[j],
723 ACPI_STATE_D0);
724 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400725 printk(KERN_WARNING PREFIX
726 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400727 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400728 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400729 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400731 active->flags.enabled = 1;
732 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
733 "Cooling device [%p] now 'on'\n",
734 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400736 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400738 if (!active->flags.enabled)
739 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /*
741 * Below Threshold?
742 * ----------------
743 * Turn OFF all cooling devices associated with this
744 * threshold.
745 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400746 for (j = 0; j < active->devices.count; j++) {
747 result = acpi_bus_set_power(active->devices.handles[j],
748 ACPI_STATE_D3);
749 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400750 printk(KERN_WARNING PREFIX
751 "Unable to turn cooling device [%p] 'off'\n",
752 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400753 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400755 active->flags.enabled = 0;
756 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
757 "Cooling device [%p] now 'off'\n",
758 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Len Brown4be44fc2005-08-05 00:44:28 -0400763static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Len Brown4be44fc2005-08-05 00:44:28 -0400765static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 struct acpi_thermal *tz = (struct acpi_thermal *)data;
768 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400769 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Len Brown4be44fc2005-08-05 00:44:28 -0400772static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Len Brown4be44fc2005-08-05 00:44:28 -0400774 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200775 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400776 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400777 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400778 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct acpi_thermal_state state;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400783 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400784 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400787 /* Check if someone else is already running */
788 if (!mutex_trylock(&tz->lock))
789 return;
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 state = tz->state;
792
793 result = acpi_thermal_get_temperature(tz);
794 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400795 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400796
Zhang Rui3f655ef2008-01-17 15:51:11 +0800797 if (!tz->tz_enabled)
798 goto unlock;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
803 * Check Trip Points
804 * -----------------
805 * Compare the current temperature to the trip point values to see
806 * if we've entered one of the thermal policy states. Note that
807 * this function determines when a state is entered, but the
808 * individual policy decides when it is exited (e.g. hysteresis).
809 */
810 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400811 state.critical |=
812 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (tz->trips.hot.flags.valid)
814 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
815 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400816 state.passive |=
817 (tz->temperature >= tz->trips.passive.temperature);
818 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400820 state.active |=
821 (tz->temperature >=
822 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /*
825 * Invoke Policy
826 * -------------
827 * Separated from the above check to allow individual policy to
828 * determine when to exit a given state.
829 */
830 if (state.critical)
831 acpi_thermal_critical(tz);
832 if (state.hot)
833 acpi_thermal_hot(tz);
834 if (state.passive)
835 acpi_thermal_passive(tz);
836 if (state.active)
837 acpi_thermal_active(tz);
838
839 /*
840 * Calculate State
841 * ---------------
842 * Again, separated from the above two to allow independent policy
843 * decisions.
844 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400845 tz->state.critical = tz->trips.critical.flags.enabled;
846 tz->state.hot = tz->trips.hot.flags.enabled;
847 tz->state.passive = tz->trips.passive.flags.enabled;
848 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400849 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400850 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /*
853 * Calculate Sleep Time
854 * --------------------
855 * If we're in the passive state, use _TSP's value. Otherwise
856 * use the default polling frequency (e.g. _TZP). If no polling
857 * frequency is specified then we'll wait forever (at least until
858 * a thermal event occurs). Note that _TSP and _TZD values are
859 * given in 1/10th seconds (we must covert to milliseconds).
860 */
Len Brown21bc42a2007-09-04 12:49:22 -0400861 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400863 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
864 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400866 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Len Brown4be44fc2005-08-05 00:44:28 -0400869 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
870 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /*
873 * Schedule Next Poll
874 * ------------------
875 */
876 if (!sleep_time) {
877 if (timer_pending(&(tz->timer)))
878 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400879 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400881 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400883 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400885 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 add_timer(&(tz->timer));
887 }
888 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400889 unlock:
890 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
Zhang Rui3f655ef2008-01-17 15:51:11 +0800893/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800894#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
895
Zhang Rui3f655ef2008-01-17 15:51:11 +0800896static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
897{
898 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800899 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800900
901 if (!tz)
902 return -EINVAL;
903
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800904 result = acpi_thermal_get_temperature(tz);
905 if (result)
906 return result;
907
Zhang, Rui5e012762008-02-28 07:51:30 +0800908 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800909}
910
911static const char enabled[] = "kernel";
912static const char disabled[] = "user";
913static int thermal_get_mode(struct thermal_zone_device *thermal,
914 char *buf)
915{
916 struct acpi_thermal *tz = thermal->devdata;
917
918 if (!tz)
919 return -EINVAL;
920
921 return sprintf(buf, "%s\n", tz->tz_enabled ?
922 enabled : disabled);
923}
924
925static int thermal_set_mode(struct thermal_zone_device *thermal,
926 const char *buf)
927{
928 struct acpi_thermal *tz = thermal->devdata;
929 int enable;
930
931 if (!tz)
932 return -EINVAL;
933
934 /*
935 * enable/disable thermal management from ACPI thermal driver
936 */
937 if (!strncmp(buf, enabled, sizeof enabled - 1))
938 enable = 1;
939 else if (!strncmp(buf, disabled, sizeof disabled - 1))
940 enable = 0;
941 else
942 return -EINVAL;
943
944 if (enable != tz->tz_enabled) {
945 tz->tz_enabled = enable;
946 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
947 "%s ACPI thermal control\n",
948 tz->tz_enabled ? enabled : disabled));
949 acpi_thermal_check(tz);
950 }
951 return 0;
952}
953
954static int thermal_get_trip_type(struct thermal_zone_device *thermal,
955 int trip, char *buf)
956{
957 struct acpi_thermal *tz = thermal->devdata;
958 int i;
959
960 if (!tz || trip < 0)
961 return -EINVAL;
962
963 if (tz->trips.critical.flags.valid) {
964 if (!trip)
965 return sprintf(buf, "critical\n");
966 trip--;
967 }
968
969 if (tz->trips.hot.flags.valid) {
970 if (!trip)
971 return sprintf(buf, "hot\n");
972 trip--;
973 }
974
975 if (tz->trips.passive.flags.valid) {
976 if (!trip)
977 return sprintf(buf, "passive\n");
978 trip--;
979 }
980
981 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
982 tz->trips.active[i].flags.valid; i++) {
983 if (!trip)
984 return sprintf(buf, "active%d\n", i);
985 trip--;
986 }
987
988 return -EINVAL;
989}
990
991static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
992 int trip, char *buf)
993{
994 struct acpi_thermal *tz = thermal->devdata;
995 int i;
996
997 if (!tz || trip < 0)
998 return -EINVAL;
999
1000 if (tz->trips.critical.flags.valid) {
1001 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001002 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001003 tz->trips.critical.temperature));
1004 trip--;
1005 }
1006
1007 if (tz->trips.hot.flags.valid) {
1008 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001009 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001010 tz->trips.hot.temperature));
1011 trip--;
1012 }
1013
1014 if (tz->trips.passive.flags.valid) {
1015 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001016 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001017 tz->trips.passive.temperature));
1018 trip--;
1019 }
1020
1021 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1022 tz->trips.active[i].flags.valid; i++) {
1023 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001024 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001025 tz->trips.active[i].temperature));
1026 trip--;
1027 }
1028
1029 return -EINVAL;
1030}
1031
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001032static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
1033 unsigned long *temperature) {
1034 struct acpi_thermal *tz = thermal->devdata;
1035
1036 if (tz->trips.critical.flags.valid) {
1037 *temperature = KELVIN_TO_MILLICELSIUS(
1038 tz->trips.critical.temperature);
1039 return 0;
1040 } else
1041 return -EINVAL;
1042}
1043
Zhang Rui3f655ef2008-01-17 15:51:11 +08001044typedef int (*cb)(struct thermal_zone_device *, int,
1045 struct thermal_cooling_device *);
1046static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1047 struct thermal_cooling_device *cdev,
1048 cb action)
1049{
1050 struct acpi_device *device = cdev->devdata;
1051 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001052 struct acpi_device *dev;
1053 acpi_status status;
1054 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001055 int i;
1056 int j;
1057 int trip = -1;
1058 int result = 0;
1059
1060 if (tz->trips.critical.flags.valid)
1061 trip++;
1062
1063 if (tz->trips.hot.flags.valid)
1064 trip++;
1065
1066 if (tz->trips.passive.flags.valid) {
1067 trip++;
1068 for (i = 0; i < tz->trips.passive.devices.count;
1069 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001070 handle = tz->trips.passive.devices.handles[i];
1071 status = acpi_bus_get_device(handle, &dev);
1072 if (ACPI_SUCCESS(status) && (dev == device)) {
1073 result = action(thermal, trip, cdev);
1074 if (result)
1075 goto failed;
1076 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001077 }
1078 }
1079
1080 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1081 if (!tz->trips.active[i].flags.valid)
1082 break;
1083 trip++;
1084 for (j = 0;
1085 j < tz->trips.active[i].devices.count;
1086 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001087 handle = tz->trips.active[i].devices.handles[j];
1088 status = acpi_bus_get_device(handle, &dev);
1089 if (ACPI_SUCCESS(status) && (dev == device)) {
1090 result = action(thermal, trip, cdev);
1091 if (result)
1092 goto failed;
1093 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001094 }
1095 }
1096
1097 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001098 handle = tz->devices.handles[i];
1099 status = acpi_bus_get_device(handle, &dev);
1100 if (ACPI_SUCCESS(status) && (dev == device)) {
1101 result = action(thermal, -1, cdev);
1102 if (result)
1103 goto failed;
1104 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001105 }
1106
1107failed:
1108 return result;
1109}
1110
1111static int
1112acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1113 struct thermal_cooling_device *cdev)
1114{
1115 return acpi_thermal_cooling_device_cb(thermal, cdev,
1116 thermal_zone_bind_cooling_device);
1117}
1118
1119static int
1120acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1121 struct thermal_cooling_device *cdev)
1122{
1123 return acpi_thermal_cooling_device_cb(thermal, cdev,
1124 thermal_zone_unbind_cooling_device);
1125}
1126
1127static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1128 .bind = acpi_thermal_bind_cooling_device,
1129 .unbind = acpi_thermal_unbind_cooling_device,
1130 .get_temp = thermal_get_temp,
1131 .get_mode = thermal_get_mode,
1132 .set_mode = thermal_set_mode,
1133 .get_trip_type = thermal_get_trip_type,
1134 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001135 .get_crit_temp = thermal_get_crit_temp,
Zhang Rui3f655ef2008-01-17 15:51:11 +08001136};
1137
1138static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1139{
1140 int trips = 0;
1141 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001142 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001143 int i;
1144
1145 if (tz->trips.critical.flags.valid)
1146 trips++;
1147
1148 if (tz->trips.hot.flags.valid)
1149 trips++;
1150
1151 if (tz->trips.passive.flags.valid)
1152 trips++;
1153
1154 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1155 tz->trips.active[i].flags.valid; i++, trips++);
Zhang Ruie9ae7102008-04-22 08:50:09 +08001156 tz->thermal_zone = thermal_zone_device_register("acpitz",
Zhang Rui3f655ef2008-01-17 15:51:11 +08001157 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001158 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001159 return -ENODEV;
1160
1161 result = sysfs_create_link(&tz->device->dev.kobj,
1162 &tz->thermal_zone->device.kobj, "thermal_zone");
1163 if (result)
1164 return result;
1165
1166 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1167 &tz->device->dev.kobj, "device");
1168 if (result)
1169 return result;
1170
Zhang Rui20733932008-01-17 15:51:21 +08001171 status = acpi_attach_data(tz->device->handle,
1172 acpi_bus_private_data_handler,
1173 tz->thermal_zone);
1174 if (ACPI_FAILURE(status)) {
1175 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1176 "Error attaching device data\n"));
1177 return -ENODEV;
1178 }
1179
Zhang Rui3f655ef2008-01-17 15:51:11 +08001180 tz->tz_enabled = 1;
1181
1182 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1183 tz->device->dev.bus_id, tz->thermal_zone->id);
1184 return 0;
1185}
1186
1187static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1188{
1189 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1190 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1191 thermal_zone_device_unregister(tz->thermal_zone);
1192 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001193 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001194}
1195
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197/* --------------------------------------------------------------------------
1198 FS Interface (/proc)
1199 -------------------------------------------------------------------------- */
1200
Len Brown4be44fc2005-08-05 00:44:28 -04001201static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1204{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001205 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 if (!tz)
1209 goto end;
1210
1211 seq_puts(seq, "state: ");
1212
Len Brown4be44fc2005-08-05 00:44:28 -04001213 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1214 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 seq_puts(seq, "ok\n");
1216 else {
1217 if (tz->state.critical)
1218 seq_puts(seq, "critical ");
1219 if (tz->state.hot)
1220 seq_puts(seq, "hot ");
1221 if (tz->state.passive)
1222 seq_puts(seq, "passive ");
1223 if (tz->state.active)
1224 seq_printf(seq, "active[%d]", tz->state.active_index);
1225 seq_puts(seq, "\n");
1226 }
1227
Len Brown4be44fc2005-08-05 00:44:28 -04001228 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
1232static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1233{
1234 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1235}
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1238{
Len Brown4be44fc2005-08-05 00:44:28 -04001239 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001240 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 if (!tz)
1244 goto end;
1245
1246 result = acpi_thermal_get_temperature(tz);
1247 if (result)
1248 goto end;
1249
Len Brown4be44fc2005-08-05 00:44:28 -04001250 seq_printf(seq, "temperature: %ld C\n",
1251 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Len Brown4be44fc2005-08-05 00:44:28 -04001253 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1258{
1259 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1260}
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1263{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001264 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001265 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001266 acpi_status status;
1267
Len Brown4be44fc2005-08-05 00:44:28 -04001268 int i = 0;
1269 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (!tz)
1273 goto end;
1274
1275 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001276 seq_printf(seq, "critical (S5): %ld C%s",
1277 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1278 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001281 seq_printf(seq, "hot (S4): %ld C%s",
1282 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1283 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001286 seq_printf(seq,
1287 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1288 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1289 tz->trips.passive.tc1, tz->trips.passive.tc2,
1290 tz->trips.passive.tsp);
1291 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001292 status = acpi_bus_get_device(tz->trips.passive.devices.
1293 handles[j], &device);
1294 seq_printf(seq, "%4.4s ", status ? "" :
1295 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297 seq_puts(seq, "\n");
1298 }
1299
1300 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1301 if (!(tz->trips.active[i].flags.valid))
1302 break;
1303 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001304 i,
1305 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001306 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001307 status = acpi_bus_get_device(tz->trips.active[i].
1308 devices.handles[j],
1309 &device);
1310 seq_printf(seq, "%4.4s ", status ? "" :
1311 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 seq_puts(seq, "\n");
1314 }
1315
Len Brown4be44fc2005-08-05 00:44:28 -04001316 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001317 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1321{
1322 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1323}
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1326{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001327 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 if (!tz)
1331 goto end;
1332
Len Browneaca2d32007-04-30 23:27:43 -04001333 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 else
Len Browneaca2d32007-04-30 23:27:43 -04001336 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Len Brown4be44fc2005-08-05 00:44:28 -04001338 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1343{
1344 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001345 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
1348static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001349acpi_thermal_write_cooling_mode(struct file *file,
1350 const char __user * buffer,
1351 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001353 struct seq_file *m = file->private_data;
1354 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001355 int result = 0;
1356 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001360 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001363 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001366 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001369
1370 result = acpi_thermal_set_cooling_mode(tz,
1371 simple_strtoul(mode_string, NULL,
1372 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001374 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 acpi_thermal_check(tz);
1377
Patrick Mocheld550d982006-06-27 00:41:40 -04001378 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1382{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001383 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 if (!tz)
1387 goto end;
1388
1389 if (!tz->polling_frequency) {
1390 seq_puts(seq, "<polling disabled>\n");
1391 goto end;
1392 }
1393
1394 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001395 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Len Brown4be44fc2005-08-05 00:44:28 -04001397 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001398 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
1401static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1402{
1403 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001404 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
1407static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001408acpi_thermal_write_polling(struct file *file,
1409 const char __user * buffer,
1410 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001412 struct seq_file *m = file->private_data;
1413 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001414 int result = 0;
1415 char polling_string[12] = { '\0' };
1416 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001420 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001423 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 polling_string[count] = '\0';
1426
1427 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 result = acpi_thermal_set_polling(tz, seconds);
1430 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001431 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 acpi_thermal_check(tz);
1434
Patrick Mocheld550d982006-06-27 00:41:40 -04001435 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
Len Brown4be44fc2005-08-05 00:44:28 -04001438static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Len Brown4be44fc2005-08-05 00:44:28 -04001440 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 if (!acpi_device_dir(device)) {
1444 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001445 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001447 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 acpi_device_dir(device)->owner = THIS_MODULE;
1449 }
1450
1451 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001452 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1453 S_IRUGO, acpi_device_dir(device),
1454 &acpi_thermal_state_fops,
1455 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001457 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001460 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1461 S_IRUGO, acpi_device_dir(device),
1462 &acpi_thermal_temp_fops,
1463 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001465 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001467 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001468 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1469 S_IRUGO,
1470 acpi_device_dir(device),
1471 &acpi_thermal_trip_fops,
1472 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001474 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001477 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1478 S_IFREG | S_IRUGO | S_IWUSR,
1479 acpi_device_dir(device),
1480 &acpi_thermal_cooling_fops,
1481 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001483 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001486 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1487 S_IFREG | S_IRUGO | S_IWUSR,
1488 acpi_device_dir(device),
1489 &acpi_thermal_polling_fops,
1490 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001492 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Len Brown4be44fc2005-08-05 00:44:28 -04001496static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if (acpi_device_dir(device)) {
1500 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1501 acpi_device_dir(device));
1502 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1503 acpi_device_dir(device));
1504 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1505 acpi_device_dir(device));
1506 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1507 acpi_device_dir(device));
1508 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1509 acpi_device_dir(device));
1510 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1511 acpi_device_dir(device) = NULL;
1512 }
1513
Patrick Mocheld550d982006-06-27 00:41:40 -04001514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/* --------------------------------------------------------------------------
1518 Driver Interface
1519 -------------------------------------------------------------------------- */
1520
Len Brown4be44fc2005-08-05 00:44:28 -04001521static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001523 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001524 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001528 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001530 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 switch (event) {
1533 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1534 acpi_thermal_check(tz);
1535 break;
1536 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001537 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001539 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001540 acpi_bus_generate_netlink_event(device->pnp.device_class,
1541 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 break;
1543 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001544 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1545 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001546 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001547 acpi_bus_generate_netlink_event(device->pnp.device_class,
1548 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 break;
1550 default:
1551 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001552 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 break;
1554 }
1555
Patrick Mocheld550d982006-06-27 00:41:40 -04001556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Len Brown4be44fc2005-08-05 00:44:28 -04001559static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
Len Brown4be44fc2005-08-05 00:44:28 -04001561 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001565 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 /* Get temperature [_TMP] (required) */
1568 result = acpi_thermal_get_temperature(tz);
1569 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001570 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 /* Get trip points [_CRT, _PSV, etc.] (required) */
1573 result = acpi_thermal_get_trip_points(tz);
1574 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001575 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 /* Set the cooling mode [_SCP] to active cooling (default) */
1578 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001579 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 /* Get default polling frequency [_TZP] (optional) */
1583 if (tzp)
1584 tz->polling_frequency = tzp;
1585 else
1586 acpi_thermal_get_polling_frequency(tz);
1587
Patrick Mocheld550d982006-06-27 00:41:40 -04001588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Len Brown4be44fc2005-08-05 00:44:28 -04001591static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Len Brown4be44fc2005-08-05 00:44:28 -04001593 int result = 0;
1594 acpi_status status = AE_OK;
1595 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001599 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Burman Yan36bcbec2006-12-19 12:56:11 -08001601 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001603 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001605 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 strcpy(tz->name, device->pnp.bus_id);
1607 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1608 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1609 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001610 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001611
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 result = acpi_thermal_get_info(tz);
1614 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001615 goto free_memory;
1616
1617 result = acpi_thermal_register_thermal_zone(tz);
1618 if (result)
1619 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 result = acpi_thermal_add_fs(device);
1622 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001623 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 init_timer(&tz->timer);
1626
1627 acpi_thermal_check(tz);
1628
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001629 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001630 ACPI_DEVICE_NOTIFY,
1631 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001634 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636
1637 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001638 acpi_device_name(device), acpi_device_bid(device),
1639 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001640 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Zhang Rui3f655ef2008-01-17 15:51:11 +08001642remove_fs:
1643 acpi_thermal_remove_fs(device);
1644unregister_thermal_zone:
1645 thermal_zone_device_unregister(tz->thermal_zone);
1646free_memory:
1647 kfree(tz);
1648end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001649 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Len Brown4be44fc2005-08-05 00:44:28 -04001652static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Len Brown4be44fc2005-08-05 00:44:28 -04001654 acpi_status status = AE_OK;
1655 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001659 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001661 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /* avoid timer adding new defer task */
1664 tz->zombie = 1;
1665 /* wait for running timer (on other CPUs) finish */
1666 del_timer_sync(&(tz->timer));
1667 /* synchronize deferred task */
1668 acpi_os_wait_events_complete(NULL);
1669 /* deferred task may reinsert timer */
1670 del_timer_sync(&(tz->timer));
1671
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001672 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001673 ACPI_DEVICE_NOTIFY,
1674 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001677 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 tz->trips.passive.flags.enabled = 0;
1679 acpi_thermal_passive(tz);
1680 }
1681 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001682 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 tz->trips.active[0].flags.enabled = 0;
1684 acpi_thermal_active(tz);
1685 }
1686
1687 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001688 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001689 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001694static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001695{
1696 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001697 int i, j, power_state, result;
1698
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001699
1700 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001701 return -EINVAL;
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001702
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001703 tz = acpi_driver_data(device);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001704
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001705 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001706 if (!(&tz->trips.active[i]))
1707 break;
1708 if (!tz->trips.active[i].flags.valid)
1709 break;
1710 tz->trips.active[i].flags.enabled = 1;
1711 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1712 result = acpi_bus_get_power(tz->trips.active[i].devices.
1713 handles[j], &power_state);
1714 if (result || (power_state != ACPI_STATE_D0)) {
1715 tz->trips.active[i].flags.enabled = 0;
1716 break;
1717 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001718 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001719 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001720 }
1721
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001722 acpi_thermal_check(tz);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001723
1724 return AE_OK;
1725}
1726
Jeff Garzik18552562007-10-03 15:15:40 -04001727static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001728
1729 if (act == 0) {
1730 printk(KERN_NOTICE "ACPI: %s detected: "
1731 "disabling all active thermal trip points\n", d->ident);
1732 act = -1;
1733 }
1734 return 0;
1735}
Jeff Garzik18552562007-10-03 15:15:40 -04001736static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001737
1738 printk(KERN_NOTICE "ACPI: %s detected: "
1739 "disabling all critical thermal trip point actions.\n", d->ident);
1740 nocrt = 1;
1741 return 0;
1742}
Jeff Garzik18552562007-10-03 15:15:40 -04001743static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001744
1745 if (tzp == 0) {
1746 printk(KERN_NOTICE "ACPI: %s detected: "
1747 "enabling thermal zone polling\n", d->ident);
1748 tzp = 300; /* 300 dS = 30 Seconds */
1749 }
1750 return 0;
1751}
Jeff Garzik18552562007-10-03 15:15:40 -04001752static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001753
1754 if (psv == 0) {
1755 printk(KERN_NOTICE "ACPI: %s detected: "
1756 "disabling all passive thermal trip points\n", d->ident);
1757 psv = -1;
1758 }
1759 return 0;
1760}
1761
1762static struct dmi_system_id thermal_dmi_table[] __initdata = {
1763 /*
1764 * Award BIOS on this AOpen makes thermal control almost worthless.
1765 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1766 */
1767 {
1768 .callback = thermal_act,
1769 .ident = "AOpen i915GMm-HFS",
1770 .matches = {
1771 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1772 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1773 },
1774 },
1775 {
1776 .callback = thermal_psv,
1777 .ident = "AOpen i915GMm-HFS",
1778 .matches = {
1779 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1780 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1781 },
1782 },
1783 {
1784 .callback = thermal_tzp,
1785 .ident = "AOpen i915GMm-HFS",
1786 .matches = {
1787 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1788 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1789 },
1790 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001791 {
1792 .callback = thermal_nocrt,
1793 .ident = "Gigabyte GA-7ZX",
1794 .matches = {
1795 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1796 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1797 },
1798 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001799 {}
1800};
Len Brown0b5bfa12007-08-12 00:13:02 -04001801
Len Brown4be44fc2005-08-05 00:44:28 -04001802static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Len Brown4be44fc2005-08-05 00:44:28 -04001804 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Len Brown0b5bfa12007-08-12 00:13:02 -04001806 dmi_check_system(thermal_dmi_table);
1807
Len Brown72b33ef2007-08-12 00:12:17 -04001808 if (off) {
1809 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1810 return -ENODEV;
1811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1813 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001814 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 acpi_thermal_dir->owner = THIS_MODULE;
1816
1817 result = acpi_bus_register_driver(&acpi_thermal_driver);
1818 if (result < 0) {
1819 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001820 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822
Patrick Mocheld550d982006-06-27 00:41:40 -04001823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Len Brown4be44fc2005-08-05 00:44:28 -04001826static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 acpi_bus_unregister_driver(&acpi_thermal_driver);
1830
1831 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1832
Patrick Mocheld550d982006-06-27 00:41:40 -04001833 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836module_init(acpi_thermal_init);
1837module_exit(acpi_thermal_exit);