blob: 0815ac3ae3d6c49a1a46282b0cfaea2418ddca6b [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);
367 if (ACPI_FAILURE(status)) {
Len Brownc52a7412007-08-14 15:49:32 -0400368 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800369 ACPI_EXCEPTION((AE_INFO, status,
370 "No critical threshold"));
371 return -ENODEV;
372 } else {
373 tz->trips.critical.flags.valid = 1;
374 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
375 "Found critical threshold [%lu]\n",
376 tz->trips.critical.temperature));
377 }
378 if (tz->trips.critical.flags.valid == 1) {
379 if (crt == -1) {
380 tz->trips.critical.flags.valid = 0;
381 } else if (crt > 0) {
382 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
383 /*
384 * Allow override to lower critical threshold
385 */
386 if (crt_k < tz->trips.critical.temperature)
387 tz->trips.critical.temperature = crt_k;
388 }
Len Brownc52a7412007-08-14 15:49:32 -0400389 }
390 }
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800393 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400394 status = acpi_evaluate_integer(tz->device->handle,
Zhang Ruice44e192008-01-17 15:51:25 +0800395 "_HOT", NULL, &tz->trips.hot.temperature);
396 if (ACPI_FAILURE(status)) {
397 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400398 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800399 "No hot threshold\n"));
400 } else {
401 tz->trips.hot.flags.valid = 1;
402 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
403 "Found hot threshold [%lu]\n",
404 tz->trips.critical.temperature));
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
Zhang Ruice44e192008-01-17 15:51:25 +0800408 /* Passive (optional) */
409 if (flag & ACPI_TRIPS_PASSIVE) {
410 valid = tz->trips.passive.flags.valid;
411 if (psv == -1) {
412 status = AE_SUPPORT;
413 } else if (psv > 0) {
414 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
415 status = AE_OK;
416 } else {
417 status = acpi_evaluate_integer(tz->device->handle,
418 "_PSV", NULL, &tz->trips.passive.temperature);
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Zhang Ruice44e192008-01-17 15:51:25 +0800421 if (ACPI_FAILURE(status))
422 tz->trips.passive.flags.valid = 0;
423 else {
424 tz->trips.passive.flags.valid = 1;
425 if (flag == ACPI_TRIPS_INIT) {
426 status = acpi_evaluate_integer(
427 tz->device->handle, "_TC1",
428 NULL, &tz->trips.passive.tc1);
429 if (ACPI_FAILURE(status))
430 tz->trips.passive.flags.valid = 0;
431 status = acpi_evaluate_integer(
432 tz->device->handle, "_TC2",
433 NULL, &tz->trips.passive.tc2);
434 if (ACPI_FAILURE(status))
435 tz->trips.passive.flags.valid = 0;
436 status = acpi_evaluate_integer(
437 tz->device->handle, "_TSP",
438 NULL, &tz->trips.passive.tsp);
439 if (ACPI_FAILURE(status))
440 tz->trips.passive.flags.valid = 0;
441 }
442 }
443 }
444 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
445 memset(&devices, 0, sizeof(struct acpi_handle_list));
446 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
447 NULL, &devices);
448 if (ACPI_FAILURE(status))
449 tz->trips.passive.flags.valid = 0;
450 else
451 tz->trips.passive.flags.valid = 1;
452
453 if (memcmp(&tz->trips.passive.devices, &devices,
454 sizeof(struct acpi_handle_list))) {
455 memcpy(&tz->trips.passive.devices, &devices,
456 sizeof(struct acpi_handle_list));
457 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
458 }
459 }
460 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
461 if (valid != tz->trips.passive.flags.valid)
462 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
463 }
464
465 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400466 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400467 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800468 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Len Brownf8707ec2007-08-12 00:12:54 -0400470 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800471 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400472
Zhang Ruice44e192008-01-17 15:51:25 +0800473 if (flag & ACPI_TRIPS_ACTIVE) {
474 status = acpi_evaluate_integer(tz->device->handle,
475 name, NULL, &tz->trips.active[i].temperature);
476 if (ACPI_FAILURE(status)) {
477 tz->trips.active[i].flags.valid = 0;
478 if (i == 0)
479 break;
480 if (act <= 0)
481 break;
482 if (i == 1)
483 tz->trips.active[0].temperature =
484 CELSIUS_TO_KELVIN(act);
485 else
486 /*
487 * Don't allow override higher than
488 * the next higher trip point
489 */
490 tz->trips.active[i - 1].temperature =
491 (tz->trips.active[i - 2].temperature <
492 CELSIUS_TO_KELVIN(act) ?
493 tz->trips.active[i - 2].temperature :
494 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400495 break;
Zhang Ruice44e192008-01-17 15:51:25 +0800496 } else
497 tz->trips.active[i].flags.valid = 1;
Len Brownf8707ec2007-08-12 00:12:54 -0400498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800501 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
502 memset(&devices, 0, sizeof(struct acpi_handle_list));
503 status = acpi_evaluate_reference(tz->device->handle,
504 name, NULL, &devices);
505 if (ACPI_FAILURE(status))
506 tz->trips.active[i].flags.valid = 0;
507 else
508 tz->trips.active[i].flags.valid = 1;
509
510 if (memcmp(&tz->trips.active[i].devices, &devices,
511 sizeof(struct acpi_handle_list))) {
512 memcpy(&tz->trips.active[i].devices, &devices,
513 sizeof(struct acpi_handle_list));
514 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
515 }
516 }
517 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
518 if (valid != tz->trips.active[i].flags.valid)
519 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
520
521 if (!tz->trips.active[i].flags.valid)
522 break;
523 }
524
525 if (flag & ACPI_TRIPS_DEVICES) {
526 memset(&devices, 0, sizeof(struct acpi_handle_list));
527 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
528 NULL, &devices);
529 if (memcmp(&tz->devices, &devices,
530 sizeof(struct acpi_handle_list))) {
531 memcpy(&tz->devices, &devices,
532 sizeof(struct acpi_handle_list));
533 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
Patrick Mocheld550d982006-06-27 00:41:40 -0400537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Zhang Ruice44e192008-01-17 15:51:25 +0800540static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Zhang Ruice44e192008-01-17 15:51:25 +0800542 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Len Brown4be44fc2005-08-05 00:44:28 -0400545static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Zhang Rui223630f2007-12-06 23:36:35 -0500547 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400548 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400551 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400553 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 tz->trips.critical.flags.enabled = 0;
555
Len Brown14e04fb2007-08-23 15:20:26 -0400556 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400557 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800558 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
559 tz->device->dev.bus_id,
560 ACPI_THERMAL_NOTIFY_CRITICAL,
561 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Zhang Rui223630f2007-12-06 23:36:35 -0500563 /* take no action if nocrt is set */
564 if(!nocrt) {
565 printk(KERN_EMERG
566 "Critical temperature reached (%ld C), shutting down.\n",
567 KELVIN_TO_CELSIUS(tz->temperature));
568 orderly_poweroff(true);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Patrick Mocheld550d982006-06-27 00:41:40 -0400571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Len Brown4be44fc2005-08-05 00:44:28 -0400574static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Zhang Rui223630f2007-12-06 23:36:35 -0500576 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400577 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400580 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400582 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 tz->trips.hot.flags.enabled = 0;
584
Len Brown14e04fb2007-08-23 15:20:26 -0400585 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400586 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800587 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
588 tz->device->dev.bus_id,
589 ACPI_THERMAL_NOTIFY_HOT,
590 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Zhang Rui223630f2007-12-06 23:36:35 -0500592 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Patrick Mocheld550d982006-06-27 00:41:40 -0400594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400597static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400599 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400601 int trend = 0;
602 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400606 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 passive = &(tz->trips.passive);
609
610 /*
611 * Above Trip?
612 * -----------
613 * Calculate the thermal trend (using the passive cooling equation)
614 * and modify the performance limit for all passive cooling devices
615 * accordingly. Note that we assume symmetry.
616 */
617 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400618 trend =
619 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
620 (passive->tc2 * (tz->temperature - passive->temperature));
621 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
622 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
623 trend, passive->tc1, tz->temperature,
624 tz->last_temperature, passive->tc2,
625 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400626 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Heating up? */
628 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400629 for (i = 0; i < passive->devices.count; i++)
630 acpi_processor_set_thermal_limit(passive->
631 devices.
632 handles[i],
633 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400635 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400636 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400637 /*
638 * assume that we are on highest
639 * freq/lowest thrott and can leave
640 * passive mode, even in error case
641 */
642 if (!acpi_processor_set_thermal_limit
643 (passive->devices.handles[i],
644 ACPI_PROCESSOR_LIMIT_DECREMENT))
645 result = 0;
646 /*
647 * Leave cooling mode, even if the temp might
648 * higher than trip point This is because some
649 * machines might have long thermal polling
650 * frequencies (tsp) defined. We will fall back
651 * into passive mode in next cycle (probably quicker)
652 */
653 if (result) {
654 passive->flags.enabled = 0;
655 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
656 "Disabling passive cooling, still above threshold,"
657 " but we are cooling down\n"));
658 }
659 }
660 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
663 /*
664 * Below Trip?
665 * -----------
666 * Implement passive cooling hysteresis to slowly increase performance
667 * and avoid thrashing around the passive trip point. Note that we
668 * assume symmetry.
669 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400670 if (!passive->flags.enabled)
671 return;
672 for (i = 0; i < passive->devices.count; i++)
673 if (!acpi_processor_set_thermal_limit
674 (passive->devices.handles[i],
675 ACPI_PROCESSOR_LIMIT_DECREMENT))
676 result = 0;
677 if (result) {
678 passive->flags.enabled = 0;
679 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
680 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400684static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Len Brown4be44fc2005-08-05 00:44:28 -0400686 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400688 int i = 0;
689 int j = 0;
690 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400694 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Len Brown4be44fc2005-08-05 00:44:28 -0400696 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 active = &(tz->trips.active[i]);
698 if (!active || !active->flags.valid)
699 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400701 /*
702 * Above Threshold?
703 * ----------------
704 * If not already enabled, turn ON all cooling devices
705 * associated with this active threshold.
706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400708 tz->state.active_index = i;
709 maxtemp = active->temperature;
710 if (active->flags.enabled)
711 continue;
712 for (j = 0; j < active->devices.count; j++) {
713 result =
714 acpi_bus_set_power(active->devices.
715 handles[j],
716 ACPI_STATE_D0);
717 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400718 printk(KERN_WARNING PREFIX
719 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400720 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400721 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400722 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400724 active->flags.enabled = 1;
725 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
726 "Cooling device [%p] now 'on'\n",
727 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
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 if (!active->flags.enabled)
732 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /*
734 * Below Threshold?
735 * ----------------
736 * Turn OFF all cooling devices associated with this
737 * threshold.
738 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400739 for (j = 0; j < active->devices.count; j++) {
740 result = acpi_bus_set_power(active->devices.handles[j],
741 ACPI_STATE_D3);
742 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400743 printk(KERN_WARNING PREFIX
744 "Unable to turn cooling device [%p] 'off'\n",
745 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400746 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400748 active->flags.enabled = 0;
749 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
750 "Cooling device [%p] now 'off'\n",
751 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Len Brown4be44fc2005-08-05 00:44:28 -0400756static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Len Brown4be44fc2005-08-05 00:44:28 -0400758static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 struct acpi_thermal *tz = (struct acpi_thermal *)data;
761 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400762 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Len Brown4be44fc2005-08-05 00:44:28 -0400765static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Len Brown4be44fc2005-08-05 00:44:28 -0400767 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200768 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400769 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400770 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400771 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct acpi_thermal_state state;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400776 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400777 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400780 /* Check if someone else is already running */
781 if (!mutex_trylock(&tz->lock))
782 return;
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 state = tz->state;
785
786 result = acpi_thermal_get_temperature(tz);
787 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400788 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400789
Zhang Rui3f655ef2008-01-17 15:51:11 +0800790 if (!tz->tz_enabled)
791 goto unlock;
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /*
796 * Check Trip Points
797 * -----------------
798 * Compare the current temperature to the trip point values to see
799 * if we've entered one of the thermal policy states. Note that
800 * this function determines when a state is entered, but the
801 * individual policy decides when it is exited (e.g. hysteresis).
802 */
803 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400804 state.critical |=
805 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (tz->trips.hot.flags.valid)
807 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
808 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400809 state.passive |=
810 (tz->temperature >= tz->trips.passive.temperature);
811 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400813 state.active |=
814 (tz->temperature >=
815 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /*
818 * Invoke Policy
819 * -------------
820 * Separated from the above check to allow individual policy to
821 * determine when to exit a given state.
822 */
823 if (state.critical)
824 acpi_thermal_critical(tz);
825 if (state.hot)
826 acpi_thermal_hot(tz);
827 if (state.passive)
828 acpi_thermal_passive(tz);
829 if (state.active)
830 acpi_thermal_active(tz);
831
832 /*
833 * Calculate State
834 * ---------------
835 * Again, separated from the above two to allow independent policy
836 * decisions.
837 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400838 tz->state.critical = tz->trips.critical.flags.enabled;
839 tz->state.hot = tz->trips.hot.flags.enabled;
840 tz->state.passive = tz->trips.passive.flags.enabled;
841 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400842 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400843 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /*
846 * Calculate Sleep Time
847 * --------------------
848 * If we're in the passive state, use _TSP's value. Otherwise
849 * use the default polling frequency (e.g. _TZP). If no polling
850 * frequency is specified then we'll wait forever (at least until
851 * a thermal event occurs). Note that _TSP and _TZD values are
852 * given in 1/10th seconds (we must covert to milliseconds).
853 */
Len Brown21bc42a2007-09-04 12:49:22 -0400854 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400856 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
857 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400859 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Len Brown4be44fc2005-08-05 00:44:28 -0400862 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
863 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /*
866 * Schedule Next Poll
867 * ------------------
868 */
869 if (!sleep_time) {
870 if (timer_pending(&(tz->timer)))
871 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400872 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400874 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400876 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400878 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 add_timer(&(tz->timer));
880 }
881 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400882 unlock:
883 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Zhang Rui3f655ef2008-01-17 15:51:11 +0800886/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800887#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
888
Zhang Rui3f655ef2008-01-17 15:51:11 +0800889static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
890{
891 struct acpi_thermal *tz = thermal->devdata;
892
893 if (!tz)
894 return -EINVAL;
895
Zhang, Rui5e012762008-02-28 07:51:30 +0800896 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800897}
898
899static const char enabled[] = "kernel";
900static const char disabled[] = "user";
901static int thermal_get_mode(struct thermal_zone_device *thermal,
902 char *buf)
903{
904 struct acpi_thermal *tz = thermal->devdata;
905
906 if (!tz)
907 return -EINVAL;
908
909 return sprintf(buf, "%s\n", tz->tz_enabled ?
910 enabled : disabled);
911}
912
913static int thermal_set_mode(struct thermal_zone_device *thermal,
914 const char *buf)
915{
916 struct acpi_thermal *tz = thermal->devdata;
917 int enable;
918
919 if (!tz)
920 return -EINVAL;
921
922 /*
923 * enable/disable thermal management from ACPI thermal driver
924 */
925 if (!strncmp(buf, enabled, sizeof enabled - 1))
926 enable = 1;
927 else if (!strncmp(buf, disabled, sizeof disabled - 1))
928 enable = 0;
929 else
930 return -EINVAL;
931
932 if (enable != tz->tz_enabled) {
933 tz->tz_enabled = enable;
934 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
935 "%s ACPI thermal control\n",
936 tz->tz_enabled ? enabled : disabled));
937 acpi_thermal_check(tz);
938 }
939 return 0;
940}
941
942static int thermal_get_trip_type(struct thermal_zone_device *thermal,
943 int trip, char *buf)
944{
945 struct acpi_thermal *tz = thermal->devdata;
946 int i;
947
948 if (!tz || trip < 0)
949 return -EINVAL;
950
951 if (tz->trips.critical.flags.valid) {
952 if (!trip)
953 return sprintf(buf, "critical\n");
954 trip--;
955 }
956
957 if (tz->trips.hot.flags.valid) {
958 if (!trip)
959 return sprintf(buf, "hot\n");
960 trip--;
961 }
962
963 if (tz->trips.passive.flags.valid) {
964 if (!trip)
965 return sprintf(buf, "passive\n");
966 trip--;
967 }
968
969 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
970 tz->trips.active[i].flags.valid; i++) {
971 if (!trip)
972 return sprintf(buf, "active%d\n", i);
973 trip--;
974 }
975
976 return -EINVAL;
977}
978
979static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
980 int trip, char *buf)
981{
982 struct acpi_thermal *tz = thermal->devdata;
983 int i;
984
985 if (!tz || trip < 0)
986 return -EINVAL;
987
988 if (tz->trips.critical.flags.valid) {
989 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +0800990 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +0800991 tz->trips.critical.temperature));
992 trip--;
993 }
994
995 if (tz->trips.hot.flags.valid) {
996 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +0800997 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +0800998 tz->trips.hot.temperature));
999 trip--;
1000 }
1001
1002 if (tz->trips.passive.flags.valid) {
1003 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001004 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001005 tz->trips.passive.temperature));
1006 trip--;
1007 }
1008
1009 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1010 tz->trips.active[i].flags.valid; i++) {
1011 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001012 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001013 tz->trips.active[i].temperature));
1014 trip--;
1015 }
1016
1017 return -EINVAL;
1018}
1019
1020typedef int (*cb)(struct thermal_zone_device *, int,
1021 struct thermal_cooling_device *);
1022static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1023 struct thermal_cooling_device *cdev,
1024 cb action)
1025{
1026 struct acpi_device *device = cdev->devdata;
1027 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001028 struct acpi_device *dev;
1029 acpi_status status;
1030 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001031 int i;
1032 int j;
1033 int trip = -1;
1034 int result = 0;
1035
1036 if (tz->trips.critical.flags.valid)
1037 trip++;
1038
1039 if (tz->trips.hot.flags.valid)
1040 trip++;
1041
1042 if (tz->trips.passive.flags.valid) {
1043 trip++;
1044 for (i = 0; i < tz->trips.passive.devices.count;
1045 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001046 handle = tz->trips.passive.devices.handles[i];
1047 status = acpi_bus_get_device(handle, &dev);
1048 if (ACPI_SUCCESS(status) && (dev == device)) {
1049 result = action(thermal, trip, cdev);
1050 if (result)
1051 goto failed;
1052 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001053 }
1054 }
1055
1056 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1057 if (!tz->trips.active[i].flags.valid)
1058 break;
1059 trip++;
1060 for (j = 0;
1061 j < tz->trips.active[i].devices.count;
1062 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001063 handle = tz->trips.active[i].devices.handles[j];
1064 status = acpi_bus_get_device(handle, &dev);
1065 if (ACPI_SUCCESS(status) && (dev == device)) {
1066 result = action(thermal, trip, cdev);
1067 if (result)
1068 goto failed;
1069 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001070 }
1071 }
1072
1073 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001074 handle = tz->devices.handles[i];
1075 status = acpi_bus_get_device(handle, &dev);
1076 if (ACPI_SUCCESS(status) && (dev == device)) {
1077 result = action(thermal, -1, cdev);
1078 if (result)
1079 goto failed;
1080 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001081 }
1082
1083failed:
1084 return result;
1085}
1086
1087static int
1088acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1089 struct thermal_cooling_device *cdev)
1090{
1091 return acpi_thermal_cooling_device_cb(thermal, cdev,
1092 thermal_zone_bind_cooling_device);
1093}
1094
1095static int
1096acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1097 struct thermal_cooling_device *cdev)
1098{
1099 return acpi_thermal_cooling_device_cb(thermal, cdev,
1100 thermal_zone_unbind_cooling_device);
1101}
1102
1103static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1104 .bind = acpi_thermal_bind_cooling_device,
1105 .unbind = acpi_thermal_unbind_cooling_device,
1106 .get_temp = thermal_get_temp,
1107 .get_mode = thermal_get_mode,
1108 .set_mode = thermal_set_mode,
1109 .get_trip_type = thermal_get_trip_type,
1110 .get_trip_temp = thermal_get_trip_temp,
1111};
1112
1113static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1114{
1115 int trips = 0;
1116 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001117 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001118 int i;
1119
1120 if (tz->trips.critical.flags.valid)
1121 trips++;
1122
1123 if (tz->trips.hot.flags.valid)
1124 trips++;
1125
1126 if (tz->trips.passive.flags.valid)
1127 trips++;
1128
1129 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1130 tz->trips.active[i].flags.valid; i++, trips++);
1131 tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone",
1132 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001133 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001134 return -ENODEV;
1135
1136 result = sysfs_create_link(&tz->device->dev.kobj,
1137 &tz->thermal_zone->device.kobj, "thermal_zone");
1138 if (result)
1139 return result;
1140
1141 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1142 &tz->device->dev.kobj, "device");
1143 if (result)
1144 return result;
1145
Zhang Rui20733932008-01-17 15:51:21 +08001146 status = acpi_attach_data(tz->device->handle,
1147 acpi_bus_private_data_handler,
1148 tz->thermal_zone);
1149 if (ACPI_FAILURE(status)) {
1150 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1151 "Error attaching device data\n"));
1152 return -ENODEV;
1153 }
1154
Zhang Rui3f655ef2008-01-17 15:51:11 +08001155 tz->tz_enabled = 1;
1156
1157 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1158 tz->device->dev.bus_id, tz->thermal_zone->id);
1159 return 0;
1160}
1161
1162static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1163{
1164 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1165 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1166 thermal_zone_device_unregister(tz->thermal_zone);
1167 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001168 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001169}
1170
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/* --------------------------------------------------------------------------
1173 FS Interface (/proc)
1174 -------------------------------------------------------------------------- */
1175
Len Brown4be44fc2005-08-05 00:44:28 -04001176static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1179{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001180 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (!tz)
1184 goto end;
1185
1186 seq_puts(seq, "state: ");
1187
Len Brown4be44fc2005-08-05 00:44:28 -04001188 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1189 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 seq_puts(seq, "ok\n");
1191 else {
1192 if (tz->state.critical)
1193 seq_puts(seq, "critical ");
1194 if (tz->state.hot)
1195 seq_puts(seq, "hot ");
1196 if (tz->state.passive)
1197 seq_puts(seq, "passive ");
1198 if (tz->state.active)
1199 seq_printf(seq, "active[%d]", tz->state.active_index);
1200 seq_puts(seq, "\n");
1201 }
1202
Len Brown4be44fc2005-08-05 00:44:28 -04001203 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1208{
1209 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1213{
Len Brown4be44fc2005-08-05 00:44:28 -04001214 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001215 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 if (!tz)
1219 goto end;
1220
1221 result = acpi_thermal_get_temperature(tz);
1222 if (result)
1223 goto end;
1224
Len Brown4be44fc2005-08-05 00:44:28 -04001225 seq_printf(seq, "temperature: %ld C\n",
1226 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
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_temp_open_fs(struct inode *inode, struct file *file)
1233{
1234 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1235}
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1238{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001239 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001240 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001241 acpi_status status;
1242
Len Brown4be44fc2005-08-05 00:44:28 -04001243 int i = 0;
1244 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 if (!tz)
1248 goto end;
1249
1250 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001251 seq_printf(seq, "critical (S5): %ld C%s",
1252 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1253 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001256 seq_printf(seq, "hot (S4): %ld C%s",
1257 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1258 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001261 seq_printf(seq,
1262 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1263 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1264 tz->trips.passive.tc1, tz->trips.passive.tc2,
1265 tz->trips.passive.tsp);
1266 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001267 status = acpi_bus_get_device(tz->trips.passive.devices.
1268 handles[j], &device);
1269 seq_printf(seq, "%4.4s ", status ? "" :
1270 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272 seq_puts(seq, "\n");
1273 }
1274
1275 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1276 if (!(tz->trips.active[i].flags.valid))
1277 break;
1278 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001279 i,
1280 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001281 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001282 status = acpi_bus_get_device(tz->trips.active[i].
1283 devices.handles[j],
1284 &device);
1285 seq_printf(seq, "%4.4s ", status ? "" :
1286 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 seq_puts(seq, "\n");
1289 }
1290
Len Brown4be44fc2005-08-05 00:44:28 -04001291 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
1295static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1296{
1297 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1301{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001302 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if (!tz)
1306 goto end;
1307
Len Browneaca2d32007-04-30 23:27:43 -04001308 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 else
Len Browneaca2d32007-04-30 23:27:43 -04001311 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Len Brown4be44fc2005-08-05 00:44:28 -04001313 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1318{
1319 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001320 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001324acpi_thermal_write_cooling_mode(struct file *file,
1325 const char __user * buffer,
1326 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001328 struct seq_file *m = file->private_data;
1329 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001330 int result = 0;
1331 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001335 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001338 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001341 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001344
1345 result = acpi_thermal_set_cooling_mode(tz,
1346 simple_strtoul(mode_string, NULL,
1347 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001349 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 acpi_thermal_check(tz);
1352
Patrick Mocheld550d982006-06-27 00:41:40 -04001353 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1357{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001358 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 if (!tz)
1362 goto end;
1363
1364 if (!tz->polling_frequency) {
1365 seq_puts(seq, "<polling disabled>\n");
1366 goto end;
1367 }
1368
1369 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001370 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Len Brown4be44fc2005-08-05 00:44:28 -04001372 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1377{
1378 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001379 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
1382static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001383acpi_thermal_write_polling(struct file *file,
1384 const char __user * buffer,
1385 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001387 struct seq_file *m = file->private_data;
1388 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001389 int result = 0;
1390 char polling_string[12] = { '\0' };
1391 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001395 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001398 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 polling_string[count] = '\0';
1401
1402 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 result = acpi_thermal_set_polling(tz, seconds);
1405 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001406 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 acpi_thermal_check(tz);
1409
Patrick Mocheld550d982006-06-27 00:41:40 -04001410 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Len Brown4be44fc2005-08-05 00:44:28 -04001413static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Len Brown4be44fc2005-08-05 00:44:28 -04001415 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 if (!acpi_device_dir(device)) {
1419 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001420 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001422 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 acpi_device_dir(device)->owner = THIS_MODULE;
1424 }
1425
1426 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001427 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1428 S_IRUGO, acpi_device_dir(device),
1429 &acpi_thermal_state_fops,
1430 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001432 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001435 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1436 S_IRUGO, acpi_device_dir(device),
1437 &acpi_thermal_temp_fops,
1438 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001440 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001442 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001443 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1444 S_IRUGO,
1445 acpi_device_dir(device),
1446 &acpi_thermal_trip_fops,
1447 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001449 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001452 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1453 S_IFREG | S_IRUGO | S_IWUSR,
1454 acpi_device_dir(device),
1455 &acpi_thermal_cooling_fops,
1456 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001458 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001461 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1462 S_IFREG | S_IRUGO | S_IWUSR,
1463 acpi_device_dir(device),
1464 &acpi_thermal_polling_fops,
1465 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001467 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001468 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
1470
Len Brown4be44fc2005-08-05 00:44:28 -04001471static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 if (acpi_device_dir(device)) {
1475 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1476 acpi_device_dir(device));
1477 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1478 acpi_device_dir(device));
1479 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1480 acpi_device_dir(device));
1481 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1482 acpi_device_dir(device));
1483 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1484 acpi_device_dir(device));
1485 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1486 acpi_device_dir(device) = NULL;
1487 }
1488
Patrick Mocheld550d982006-06-27 00:41:40 -04001489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492/* --------------------------------------------------------------------------
1493 Driver Interface
1494 -------------------------------------------------------------------------- */
1495
Len Brown4be44fc2005-08-05 00:44:28 -04001496static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001498 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001499 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001503 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001505 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 switch (event) {
1508 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1509 acpi_thermal_check(tz);
1510 break;
1511 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001512 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001514 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001515 acpi_bus_generate_netlink_event(device->pnp.device_class,
1516 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 break;
1518 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001519 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1520 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001521 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001522 acpi_bus_generate_netlink_event(device->pnp.device_class,
1523 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 break;
1525 default:
1526 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001527 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 break;
1529 }
1530
Patrick Mocheld550d982006-06-27 00:41:40 -04001531 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Len Brown4be44fc2005-08-05 00:44:28 -04001534static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Len Brown4be44fc2005-08-05 00:44:28 -04001536 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001540 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 /* Get temperature [_TMP] (required) */
1543 result = acpi_thermal_get_temperature(tz);
1544 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001545 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 /* Get trip points [_CRT, _PSV, etc.] (required) */
1548 result = acpi_thermal_get_trip_points(tz);
1549 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001550 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* Set the cooling mode [_SCP] to active cooling (default) */
1553 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001554 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 /* Get default polling frequency [_TZP] (optional) */
1558 if (tzp)
1559 tz->polling_frequency = tzp;
1560 else
1561 acpi_thermal_get_polling_frequency(tz);
1562
Patrick Mocheld550d982006-06-27 00:41:40 -04001563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Len Brown4be44fc2005-08-05 00:44:28 -04001566static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
Len Brown4be44fc2005-08-05 00:44:28 -04001568 int result = 0;
1569 acpi_status status = AE_OK;
1570 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001574 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Burman Yan36bcbec2006-12-19 12:56:11 -08001576 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001578 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001580 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 strcpy(tz->name, device->pnp.bus_id);
1582 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1583 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1584 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001585 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001586
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 result = acpi_thermal_get_info(tz);
1589 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001590 goto free_memory;
1591
1592 result = acpi_thermal_register_thermal_zone(tz);
1593 if (result)
1594 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 result = acpi_thermal_add_fs(device);
1597 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001598 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 init_timer(&tz->timer);
1601
1602 acpi_thermal_check(tz);
1603
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001604 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001605 ACPI_DEVICE_NOTIFY,
1606 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001609 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
1611
1612 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001613 acpi_device_name(device), acpi_device_bid(device),
1614 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001615 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Zhang Rui3f655ef2008-01-17 15:51:11 +08001617remove_fs:
1618 acpi_thermal_remove_fs(device);
1619unregister_thermal_zone:
1620 thermal_zone_device_unregister(tz->thermal_zone);
1621free_memory:
1622 kfree(tz);
1623end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001624 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
Len Brown4be44fc2005-08-05 00:44:28 -04001627static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Len Brown4be44fc2005-08-05 00:44:28 -04001629 acpi_status status = AE_OK;
1630 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001636 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 /* avoid timer adding new defer task */
1639 tz->zombie = 1;
1640 /* wait for running timer (on other CPUs) finish */
1641 del_timer_sync(&(tz->timer));
1642 /* synchronize deferred task */
1643 acpi_os_wait_events_complete(NULL);
1644 /* deferred task may reinsert timer */
1645 del_timer_sync(&(tz->timer));
1646
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001647 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001648 ACPI_DEVICE_NOTIFY,
1649 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001652 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 tz->trips.passive.flags.enabled = 0;
1654 acpi_thermal_passive(tz);
1655 }
1656 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001657 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 tz->trips.active[0].flags.enabled = 0;
1659 acpi_thermal_active(tz);
1660 }
1661
1662 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001663 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001664 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001669static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001670{
1671 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001672 int i, j, power_state, result;
1673
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001674
1675 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001676 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001677
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001678 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001679
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001680 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001681 if (!(&tz->trips.active[i]))
1682 break;
1683 if (!tz->trips.active[i].flags.valid)
1684 break;
1685 tz->trips.active[i].flags.enabled = 1;
1686 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1687 result = acpi_bus_get_power(tz->trips.active[i].devices.
1688 handles[j], &power_state);
1689 if (result || (power_state != ACPI_STATE_D0)) {
1690 tz->trips.active[i].flags.enabled = 0;
1691 break;
1692 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001693 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001694 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001695 }
1696
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001697 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001698
1699 return AE_OK;
1700}
1701
Jeff Garzik18552562007-10-03 15:15:40 -04001702static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001703
1704 if (act == 0) {
1705 printk(KERN_NOTICE "ACPI: %s detected: "
1706 "disabling all active thermal trip points\n", d->ident);
1707 act = -1;
1708 }
1709 return 0;
1710}
Jeff Garzik18552562007-10-03 15:15:40 -04001711static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001712
1713 printk(KERN_NOTICE "ACPI: %s detected: "
1714 "disabling all critical thermal trip point actions.\n", d->ident);
1715 nocrt = 1;
1716 return 0;
1717}
Jeff Garzik18552562007-10-03 15:15:40 -04001718static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001719
1720 if (tzp == 0) {
1721 printk(KERN_NOTICE "ACPI: %s detected: "
1722 "enabling thermal zone polling\n", d->ident);
1723 tzp = 300; /* 300 dS = 30 Seconds */
1724 }
1725 return 0;
1726}
Jeff Garzik18552562007-10-03 15:15:40 -04001727static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001728
1729 if (psv == 0) {
1730 printk(KERN_NOTICE "ACPI: %s detected: "
1731 "disabling all passive thermal trip points\n", d->ident);
1732 psv = -1;
1733 }
1734 return 0;
1735}
1736
1737static struct dmi_system_id thermal_dmi_table[] __initdata = {
1738 /*
1739 * Award BIOS on this AOpen makes thermal control almost worthless.
1740 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1741 */
1742 {
1743 .callback = thermal_act,
1744 .ident = "AOpen i915GMm-HFS",
1745 .matches = {
1746 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1747 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1748 },
1749 },
1750 {
1751 .callback = thermal_psv,
1752 .ident = "AOpen i915GMm-HFS",
1753 .matches = {
1754 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1755 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1756 },
1757 },
1758 {
1759 .callback = thermal_tzp,
1760 .ident = "AOpen i915GMm-HFS",
1761 .matches = {
1762 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1763 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1764 },
1765 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001766 {
1767 .callback = thermal_nocrt,
1768 .ident = "Gigabyte GA-7ZX",
1769 .matches = {
1770 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1771 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1772 },
1773 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001774 {}
1775};
Len Brown0b5bfa12007-08-12 00:13:02 -04001776
Len Brown4be44fc2005-08-05 00:44:28 -04001777static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
Len Brown4be44fc2005-08-05 00:44:28 -04001779 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Len Brown0b5bfa12007-08-12 00:13:02 -04001781 dmi_check_system(thermal_dmi_table);
1782
Len Brown72b33ef2007-08-12 00:12:17 -04001783 if (off) {
1784 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1785 return -ENODEV;
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1788 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001789 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 acpi_thermal_dir->owner = THIS_MODULE;
1791
1792 result = acpi_bus_register_driver(&acpi_thermal_driver);
1793 if (result < 0) {
1794 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001795 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
Patrick Mocheld550d982006-06-27 00:41:40 -04001798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800
Len Brown4be44fc2005-08-05 00:44:28 -04001801static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 acpi_bus_unregister_driver(&acpi_thermal_driver);
1805
1806 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1807
Patrick Mocheld550d982006-06-27 00:41:40 -04001808 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811module_init(acpi_thermal_init);
1812module_exit(acpi_thermal_exit);