blob: 47abb94bdfb96c2ac0140f44eb4ac922f30d460f [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;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400249 unsigned long long tmp;
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
Matthew Wilcox27663c52008-10-10 02:22:59 -0400256 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400258 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Matthew Wilcox27663c52008-10-10 02:22:59 -0400260 tz->temperature = tmp;
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;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400270 unsigned long long tmp;
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
Matthew Wilcox27663c52008-10-10 02:22:59 -0400275 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400277 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Matthew Wilcox27663c52008-10-10 02:22:59 -0400279 tz->polling_frequency = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400280 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
281 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Patrick Mocheld550d982006-06-27 00:41:40 -0400283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400290 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
293
Len Brown4be44fc2005-08-05 00:44:28 -0400294 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
295 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500296 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Len Brown4be44fc2005-08-05 00:44:28 -0400301static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Len Brown4be44fc2005-08-05 00:44:28 -0400303 acpi_status status = AE_OK;
304 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
305 struct acpi_object_list arg_list = { 1, &arg0 };
306 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400310 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400312 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (ACPI_FAILURE(status)) {
314 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400315 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 arg0.integer.value = mode;
319
320 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
321 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400322 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Patrick Mocheld550d982006-06-27 00:41:40 -0400324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Zhang Ruice44e192008-01-17 15:51:25 +0800327#define ACPI_TRIPS_CRITICAL 0x01
328#define ACPI_TRIPS_HOT 0x02
329#define ACPI_TRIPS_PASSIVE 0x04
330#define ACPI_TRIPS_ACTIVE 0x08
331#define ACPI_TRIPS_DEVICES 0x10
332
333#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
334#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
335
336#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
337 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
338 ACPI_TRIPS_DEVICES)
339
340/*
341 * This exception is thrown out in two cases:
342 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
343 * when re-evaluating the AML code.
344 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
345 * We need to re-bind the cooling devices of a thermal zone when this occurs.
346 */
347#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
348do { \
349 if (flags != ACPI_TRIPS_INIT) \
350 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
351 "ACPI thermal trip point %s changed\n" \
352 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
353} while (0)
354
355static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Len Brown4be44fc2005-08-05 00:44:28 -0400357 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400358 unsigned long long tmp;
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,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400366 "_CRT", NULL, &tmp);
367 tz->trips.critical.temperature = tmp;
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700368 /*
369 * Treat freezing temperatures as invalid as well; some
370 * BIOSes return really low values and cause reboots at startup.
371 * Below zero (Celcius) values clearly aren't right for sure..
372 * ... so lets discard those as invalid.
373 */
374 if (ACPI_FAILURE(status) ||
375 tz->trips.critical.temperature <= 2732) {
Len Brownc52a7412007-08-14 15:49:32 -0400376 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800377 ACPI_EXCEPTION((AE_INFO, status,
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700378 "No or invalid critical threshold"));
Zhang Ruice44e192008-01-17 15:51:25 +0800379 return -ENODEV;
380 } else {
381 tz->trips.critical.flags.valid = 1;
382 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
383 "Found critical threshold [%lu]\n",
384 tz->trips.critical.temperature));
385 }
386 if (tz->trips.critical.flags.valid == 1) {
387 if (crt == -1) {
388 tz->trips.critical.flags.valid = 0;
389 } else if (crt > 0) {
390 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
391 /*
392 * Allow override to lower critical threshold
393 */
394 if (crt_k < tz->trips.critical.temperature)
395 tz->trips.critical.temperature = crt_k;
396 }
Len Brownc52a7412007-08-14 15:49:32 -0400397 }
398 }
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800401 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400402 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400403 "_HOT", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800404 if (ACPI_FAILURE(status)) {
405 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400406 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800407 "No hot threshold\n"));
408 } else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400409 tz->trips.hot.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800410 tz->trips.hot.flags.valid = 1;
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
412 "Found hot threshold [%lu]\n",
413 tz->trips.critical.temperature));
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Zhang Ruice44e192008-01-17 15:51:25 +0800417 /* Passive (optional) */
418 if (flag & ACPI_TRIPS_PASSIVE) {
419 valid = tz->trips.passive.flags.valid;
420 if (psv == -1) {
421 status = AE_SUPPORT;
422 } else if (psv > 0) {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400423 tmp = CELSIUS_TO_KELVIN(psv);
Zhang Ruice44e192008-01-17 15:51:25 +0800424 status = AE_OK;
425 } else {
426 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400427 "_PSV", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Zhang Ruice44e192008-01-17 15:51:25 +0800430 if (ACPI_FAILURE(status))
431 tz->trips.passive.flags.valid = 0;
432 else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400433 tz->trips.passive.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800434 tz->trips.passive.flags.valid = 1;
435 if (flag == ACPI_TRIPS_INIT) {
436 status = acpi_evaluate_integer(
437 tz->device->handle, "_TC1",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400438 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800439 if (ACPI_FAILURE(status))
440 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400441 else
442 tz->trips.passive.tc1 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800443 status = acpi_evaluate_integer(
444 tz->device->handle, "_TC2",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400445 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800446 if (ACPI_FAILURE(status))
447 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400448 else
449 tz->trips.passive.tc2 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800450 status = acpi_evaluate_integer(
451 tz->device->handle, "_TSP",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400452 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800453 if (ACPI_FAILURE(status))
454 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400455 else
456 tz->trips.passive.tsp = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800457 }
458 }
459 }
460 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
461 memset(&devices, 0, sizeof(struct acpi_handle_list));
462 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
463 NULL, &devices);
464 if (ACPI_FAILURE(status))
465 tz->trips.passive.flags.valid = 0;
466 else
467 tz->trips.passive.flags.valid = 1;
468
469 if (memcmp(&tz->trips.passive.devices, &devices,
470 sizeof(struct acpi_handle_list))) {
471 memcpy(&tz->trips.passive.devices, &devices,
472 sizeof(struct acpi_handle_list));
473 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
474 }
475 }
476 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
477 if (valid != tz->trips.passive.flags.valid)
478 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
479 }
480
481 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400482 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400483 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800484 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Len Brownf8707ec2007-08-12 00:12:54 -0400486 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800487 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400488
Zhang Ruice44e192008-01-17 15:51:25 +0800489 if (flag & ACPI_TRIPS_ACTIVE) {
490 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400491 name, NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800492 if (ACPI_FAILURE(status)) {
493 tz->trips.active[i].flags.valid = 0;
494 if (i == 0)
495 break;
496 if (act <= 0)
497 break;
498 if (i == 1)
499 tz->trips.active[0].temperature =
500 CELSIUS_TO_KELVIN(act);
501 else
502 /*
503 * Don't allow override higher than
504 * the next higher trip point
505 */
506 tz->trips.active[i - 1].temperature =
507 (tz->trips.active[i - 2].temperature <
508 CELSIUS_TO_KELVIN(act) ?
509 tz->trips.active[i - 2].temperature :
510 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400511 break;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400512 } else {
513 tz->trips.active[i].temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800514 tz->trips.active[i].flags.valid = 1;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400515 }
Len Brownf8707ec2007-08-12 00:12:54 -0400516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800519 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
520 memset(&devices, 0, sizeof(struct acpi_handle_list));
521 status = acpi_evaluate_reference(tz->device->handle,
522 name, NULL, &devices);
523 if (ACPI_FAILURE(status))
524 tz->trips.active[i].flags.valid = 0;
525 else
526 tz->trips.active[i].flags.valid = 1;
527
528 if (memcmp(&tz->trips.active[i].devices, &devices,
529 sizeof(struct acpi_handle_list))) {
530 memcpy(&tz->trips.active[i].devices, &devices,
531 sizeof(struct acpi_handle_list));
532 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
533 }
534 }
535 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
536 if (valid != tz->trips.active[i].flags.valid)
537 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
538
539 if (!tz->trips.active[i].flags.valid)
540 break;
541 }
542
543 if (flag & ACPI_TRIPS_DEVICES) {
544 memset(&devices, 0, sizeof(struct acpi_handle_list));
545 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
546 NULL, &devices);
547 if (memcmp(&tz->devices, &devices,
548 sizeof(struct acpi_handle_list))) {
549 memcpy(&tz->devices, &devices,
550 sizeof(struct acpi_handle_list));
551 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Patrick Mocheld550d982006-06-27 00:41:40 -0400555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Zhang Ruice44e192008-01-17 15:51:25 +0800558static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Zhang Ruice44e192008-01-17 15:51:25 +0800560 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Len Brown4be44fc2005-08-05 00:44:28 -0400563static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Zhang Rui223630f2007-12-06 23:36:35 -0500565 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400566 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400569 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400571 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 tz->trips.critical.flags.enabled = 0;
573
Len Brown14e04fb32007-08-23 15:20:26 -0400574 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400575 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800576 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
577 tz->device->dev.bus_id,
578 ACPI_THERMAL_NOTIFY_CRITICAL,
579 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Zhang Rui223630f2007-12-06 23:36:35 -0500581 /* take no action if nocrt is set */
582 if(!nocrt) {
583 printk(KERN_EMERG
584 "Critical temperature reached (%ld C), shutting down.\n",
585 KELVIN_TO_CELSIUS(tz->temperature));
586 orderly_poweroff(true);
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Len Brown4be44fc2005-08-05 00:44:28 -0400592static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Zhang Rui223630f2007-12-06 23:36:35 -0500594 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400598 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400600 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 tz->trips.hot.flags.enabled = 0;
602
Len Brown14e04fb32007-08-23 15:20:26 -0400603 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400604 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800605 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
606 tz->device->dev.bus_id,
607 ACPI_THERMAL_NOTIFY_HOT,
608 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Zhang Rui223630f2007-12-06 23:36:35 -0500610 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400615static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400617 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400619 int trend = 0;
620 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400624 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 passive = &(tz->trips.passive);
627
628 /*
629 * Above Trip?
630 * -----------
631 * Calculate the thermal trend (using the passive cooling equation)
632 * and modify the performance limit for all passive cooling devices
633 * accordingly. Note that we assume symmetry.
634 */
635 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400636 trend =
637 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
638 (passive->tc2 * (tz->temperature - passive->temperature));
639 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
640 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
641 trend, passive->tc1, tz->temperature,
642 tz->last_temperature, passive->tc2,
643 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400644 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Heating up? */
646 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400647 for (i = 0; i < passive->devices.count; i++)
648 acpi_processor_set_thermal_limit(passive->
649 devices.
650 handles[i],
651 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400653 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400654 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400655 /*
656 * assume that we are on highest
657 * freq/lowest thrott and can leave
658 * passive mode, even in error case
659 */
660 if (!acpi_processor_set_thermal_limit
661 (passive->devices.handles[i],
662 ACPI_PROCESSOR_LIMIT_DECREMENT))
663 result = 0;
664 /*
665 * Leave cooling mode, even if the temp might
666 * higher than trip point This is because some
667 * machines might have long thermal polling
668 * frequencies (tsp) defined. We will fall back
669 * into passive mode in next cycle (probably quicker)
670 */
671 if (result) {
672 passive->flags.enabled = 0;
673 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
674 "Disabling passive cooling, still above threshold,"
675 " but we are cooling down\n"));
676 }
677 }
678 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 /*
682 * Below Trip?
683 * -----------
684 * Implement passive cooling hysteresis to slowly increase performance
685 * and avoid thrashing around the passive trip point. Note that we
686 * assume symmetry.
687 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400688 if (!passive->flags.enabled)
689 return;
690 for (i = 0; i < passive->devices.count; i++)
691 if (!acpi_processor_set_thermal_limit
692 (passive->devices.handles[i],
693 ACPI_PROCESSOR_LIMIT_DECREMENT))
694 result = 0;
695 if (result) {
696 passive->flags.enabled = 0;
697 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
698 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400702static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Len Brown4be44fc2005-08-05 00:44:28 -0400704 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400706 int i = 0;
707 int j = 0;
708 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Len Brown4be44fc2005-08-05 00:44:28 -0400714 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 active = &(tz->trips.active[i]);
716 if (!active || !active->flags.valid)
717 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400719 /*
720 * Above Threshold?
721 * ----------------
722 * If not already enabled, turn ON all cooling devices
723 * associated with this active threshold.
724 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400726 tz->state.active_index = i;
727 maxtemp = active->temperature;
728 if (active->flags.enabled)
729 continue;
730 for (j = 0; j < active->devices.count; j++) {
731 result =
732 acpi_bus_set_power(active->devices.
733 handles[j],
734 ACPI_STATE_D0);
735 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400736 printk(KERN_WARNING PREFIX
737 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400738 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400739 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400740 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400742 active->flags.enabled = 1;
743 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
744 "Cooling device [%p] now 'on'\n",
745 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400747 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400749 if (!active->flags.enabled)
750 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /*
752 * Below Threshold?
753 * ----------------
754 * Turn OFF all cooling devices associated with this
755 * threshold.
756 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400757 for (j = 0; j < active->devices.count; j++) {
758 result = acpi_bus_set_power(active->devices.handles[j],
759 ACPI_STATE_D3);
760 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400761 printk(KERN_WARNING PREFIX
762 "Unable to turn cooling device [%p] 'off'\n",
763 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400764 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400766 active->flags.enabled = 0;
767 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
768 "Cooling device [%p] now 'off'\n",
769 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Len Brown4be44fc2005-08-05 00:44:28 -0400776static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 struct acpi_thermal *tz = (struct acpi_thermal *)data;
779 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400780 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
Zhao Yakuiea510112008-07-14 15:14:03 +0800783static void acpi_thermal_active_off(void *data)
784{
785 int result = 0;
786 struct acpi_thermal *tz = data;
787 int i = 0;
788 int j = 0;
789 struct acpi_thermal_active *active = NULL;
790
791 if (!tz) {
792 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
793 return;
794 }
795
796 result = acpi_thermal_get_temperature(tz);
797 if (result)
798 return;
799
800 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
801 active = &(tz->trips.active[i]);
802 if (!active || !active->flags.valid)
803 break;
804 if (tz->temperature >= active->temperature) {
805 /*
806 * If the thermal temperature is greater than the
807 * active threshod, unnecessary to turn off the
808 * the active cooling device.
809 */
810 continue;
811 }
812 /*
813 * Below Threshold?
814 * ----------------
815 * Turn OFF all cooling devices associated with this
816 * threshold.
817 */
818 for (j = 0; j < active->devices.count; j++)
819 result = acpi_bus_set_power(active->devices.handles[j],
820 ACPI_STATE_D3);
821 }
822}
823
Len Brown4be44fc2005-08-05 00:44:28 -0400824static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Len Brown4be44fc2005-08-05 00:44:28 -0400826 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200827 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400828 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400829 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400830 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct acpi_thermal_state state;
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400835 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400836 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400839 /* Check if someone else is already running */
840 if (!mutex_trylock(&tz->lock))
841 return;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 state = tz->state;
844
845 result = acpi_thermal_get_temperature(tz);
846 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400847 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400848
Zhang Rui3f655ef2008-01-17 15:51:11 +0800849 if (!tz->tz_enabled)
850 goto unlock;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /*
855 * Check Trip Points
856 * -----------------
857 * Compare the current temperature to the trip point values to see
858 * if we've entered one of the thermal policy states. Note that
859 * this function determines when a state is entered, but the
860 * individual policy decides when it is exited (e.g. hysteresis).
861 */
862 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400863 state.critical |=
864 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (tz->trips.hot.flags.valid)
866 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
867 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400868 state.passive |=
869 (tz->temperature >= tz->trips.passive.temperature);
870 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400872 state.active |=
873 (tz->temperature >=
874 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 /*
877 * Invoke Policy
878 * -------------
879 * Separated from the above check to allow individual policy to
880 * determine when to exit a given state.
881 */
882 if (state.critical)
883 acpi_thermal_critical(tz);
884 if (state.hot)
885 acpi_thermal_hot(tz);
886 if (state.passive)
887 acpi_thermal_passive(tz);
888 if (state.active)
889 acpi_thermal_active(tz);
890
891 /*
892 * Calculate State
893 * ---------------
894 * Again, separated from the above two to allow independent policy
895 * decisions.
896 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400897 tz->state.critical = tz->trips.critical.flags.enabled;
898 tz->state.hot = tz->trips.hot.flags.enabled;
899 tz->state.passive = tz->trips.passive.flags.enabled;
900 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400901 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400902 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 /*
905 * Calculate Sleep Time
906 * --------------------
907 * If we're in the passive state, use _TSP's value. Otherwise
908 * use the default polling frequency (e.g. _TZP). If no polling
909 * frequency is specified then we'll wait forever (at least until
910 * a thermal event occurs). Note that _TSP and _TZD values are
911 * given in 1/10th seconds (we must covert to milliseconds).
912 */
Len Brown21bc42a2007-09-04 12:49:22 -0400913 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400915 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
916 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400918 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Len Brown4be44fc2005-08-05 00:44:28 -0400921 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
922 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 /*
925 * Schedule Next Poll
926 * ------------------
927 */
928 if (!sleep_time) {
929 if (timer_pending(&(tz->timer)))
930 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400931 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400933 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400935 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400937 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 add_timer(&(tz->timer));
939 }
940 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400941 unlock:
942 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Zhang Rui3f655ef2008-01-17 15:51:11 +0800945/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800946#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
947
Zhang Rui3f655ef2008-01-17 15:51:11 +0800948static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
949{
950 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800951 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800952
953 if (!tz)
954 return -EINVAL;
955
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800956 result = acpi_thermal_get_temperature(tz);
957 if (result)
958 return result;
959
Zhang, Rui5e012762008-02-28 07:51:30 +0800960 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800961}
962
963static const char enabled[] = "kernel";
964static const char disabled[] = "user";
965static int thermal_get_mode(struct thermal_zone_device *thermal,
966 char *buf)
967{
968 struct acpi_thermal *tz = thermal->devdata;
969
970 if (!tz)
971 return -EINVAL;
972
973 return sprintf(buf, "%s\n", tz->tz_enabled ?
974 enabled : disabled);
975}
976
977static int thermal_set_mode(struct thermal_zone_device *thermal,
978 const char *buf)
979{
980 struct acpi_thermal *tz = thermal->devdata;
981 int enable;
982
983 if (!tz)
984 return -EINVAL;
985
986 /*
987 * enable/disable thermal management from ACPI thermal driver
988 */
989 if (!strncmp(buf, enabled, sizeof enabled - 1))
990 enable = 1;
991 else if (!strncmp(buf, disabled, sizeof disabled - 1))
992 enable = 0;
993 else
994 return -EINVAL;
995
996 if (enable != tz->tz_enabled) {
997 tz->tz_enabled = enable;
998 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
999 "%s ACPI thermal control\n",
1000 tz->tz_enabled ? enabled : disabled));
1001 acpi_thermal_check(tz);
1002 }
1003 return 0;
1004}
1005
1006static int thermal_get_trip_type(struct thermal_zone_device *thermal,
1007 int trip, char *buf)
1008{
1009 struct acpi_thermal *tz = thermal->devdata;
1010 int i;
1011
1012 if (!tz || trip < 0)
1013 return -EINVAL;
1014
1015 if (tz->trips.critical.flags.valid) {
1016 if (!trip)
1017 return sprintf(buf, "critical\n");
1018 trip--;
1019 }
1020
1021 if (tz->trips.hot.flags.valid) {
1022 if (!trip)
1023 return sprintf(buf, "hot\n");
1024 trip--;
1025 }
1026
1027 if (tz->trips.passive.flags.valid) {
1028 if (!trip)
1029 return sprintf(buf, "passive\n");
1030 trip--;
1031 }
1032
1033 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1034 tz->trips.active[i].flags.valid; i++) {
1035 if (!trip)
1036 return sprintf(buf, "active%d\n", i);
1037 trip--;
1038 }
1039
1040 return -EINVAL;
1041}
1042
1043static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
1044 int trip, char *buf)
1045{
1046 struct acpi_thermal *tz = thermal->devdata;
1047 int i;
1048
1049 if (!tz || trip < 0)
1050 return -EINVAL;
1051
1052 if (tz->trips.critical.flags.valid) {
1053 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001054 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001055 tz->trips.critical.temperature));
1056 trip--;
1057 }
1058
1059 if (tz->trips.hot.flags.valid) {
1060 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001061 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001062 tz->trips.hot.temperature));
1063 trip--;
1064 }
1065
1066 if (tz->trips.passive.flags.valid) {
1067 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001068 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001069 tz->trips.passive.temperature));
1070 trip--;
1071 }
1072
1073 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1074 tz->trips.active[i].flags.valid; i++) {
1075 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001076 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001077 tz->trips.active[i].temperature));
1078 trip--;
1079 }
1080
1081 return -EINVAL;
1082}
1083
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001084static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
1085 unsigned long *temperature) {
1086 struct acpi_thermal *tz = thermal->devdata;
1087
1088 if (tz->trips.critical.flags.valid) {
1089 *temperature = KELVIN_TO_MILLICELSIUS(
1090 tz->trips.critical.temperature);
1091 return 0;
1092 } else
1093 return -EINVAL;
1094}
1095
Zhang Rui3f655ef2008-01-17 15:51:11 +08001096typedef int (*cb)(struct thermal_zone_device *, int,
1097 struct thermal_cooling_device *);
1098static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1099 struct thermal_cooling_device *cdev,
1100 cb action)
1101{
1102 struct acpi_device *device = cdev->devdata;
1103 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001104 struct acpi_device *dev;
1105 acpi_status status;
1106 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001107 int i;
1108 int j;
1109 int trip = -1;
1110 int result = 0;
1111
1112 if (tz->trips.critical.flags.valid)
1113 trip++;
1114
1115 if (tz->trips.hot.flags.valid)
1116 trip++;
1117
1118 if (tz->trips.passive.flags.valid) {
1119 trip++;
1120 for (i = 0; i < tz->trips.passive.devices.count;
1121 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001122 handle = tz->trips.passive.devices.handles[i];
1123 status = acpi_bus_get_device(handle, &dev);
1124 if (ACPI_SUCCESS(status) && (dev == device)) {
1125 result = action(thermal, trip, cdev);
1126 if (result)
1127 goto failed;
1128 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001129 }
1130 }
1131
1132 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1133 if (!tz->trips.active[i].flags.valid)
1134 break;
1135 trip++;
1136 for (j = 0;
1137 j < tz->trips.active[i].devices.count;
1138 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001139 handle = tz->trips.active[i].devices.handles[j];
1140 status = acpi_bus_get_device(handle, &dev);
1141 if (ACPI_SUCCESS(status) && (dev == device)) {
1142 result = action(thermal, trip, cdev);
1143 if (result)
1144 goto failed;
1145 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001146 }
1147 }
1148
1149 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001150 handle = tz->devices.handles[i];
1151 status = acpi_bus_get_device(handle, &dev);
1152 if (ACPI_SUCCESS(status) && (dev == device)) {
1153 result = action(thermal, -1, cdev);
1154 if (result)
1155 goto failed;
1156 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001157 }
1158
1159failed:
1160 return result;
1161}
1162
1163static int
1164acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1165 struct thermal_cooling_device *cdev)
1166{
1167 return acpi_thermal_cooling_device_cb(thermal, cdev,
1168 thermal_zone_bind_cooling_device);
1169}
1170
1171static int
1172acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1173 struct thermal_cooling_device *cdev)
1174{
1175 return acpi_thermal_cooling_device_cb(thermal, cdev,
1176 thermal_zone_unbind_cooling_device);
1177}
1178
1179static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1180 .bind = acpi_thermal_bind_cooling_device,
1181 .unbind = acpi_thermal_unbind_cooling_device,
1182 .get_temp = thermal_get_temp,
1183 .get_mode = thermal_get_mode,
1184 .set_mode = thermal_set_mode,
1185 .get_trip_type = thermal_get_trip_type,
1186 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001187 .get_crit_temp = thermal_get_crit_temp,
Zhang Rui3f655ef2008-01-17 15:51:11 +08001188};
1189
1190static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1191{
1192 int trips = 0;
1193 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001194 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001195 int i;
1196
1197 if (tz->trips.critical.flags.valid)
1198 trips++;
1199
1200 if (tz->trips.hot.flags.valid)
1201 trips++;
1202
1203 if (tz->trips.passive.flags.valid)
1204 trips++;
1205
1206 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1207 tz->trips.active[i].flags.valid; i++, trips++);
Zhang Ruie9ae7102008-04-22 08:50:09 +08001208 tz->thermal_zone = thermal_zone_device_register("acpitz",
Zhang Rui3f655ef2008-01-17 15:51:11 +08001209 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001210 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001211 return -ENODEV;
1212
1213 result = sysfs_create_link(&tz->device->dev.kobj,
1214 &tz->thermal_zone->device.kobj, "thermal_zone");
1215 if (result)
1216 return result;
1217
1218 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1219 &tz->device->dev.kobj, "device");
1220 if (result)
1221 return result;
1222
Zhang Rui20733932008-01-17 15:51:21 +08001223 status = acpi_attach_data(tz->device->handle,
1224 acpi_bus_private_data_handler,
1225 tz->thermal_zone);
1226 if (ACPI_FAILURE(status)) {
1227 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1228 "Error attaching device data\n"));
1229 return -ENODEV;
1230 }
1231
Zhang Rui3f655ef2008-01-17 15:51:11 +08001232 tz->tz_enabled = 1;
1233
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +02001234 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
1235 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001236 return 0;
1237}
1238
1239static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1240{
1241 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1242 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1243 thermal_zone_device_unregister(tz->thermal_zone);
1244 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001245 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001246}
1247
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/* --------------------------------------------------------------------------
1250 FS Interface (/proc)
1251 -------------------------------------------------------------------------- */
1252
Len Brown4be44fc2005-08-05 00:44:28 -04001253static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1256{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001257 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (!tz)
1261 goto end;
1262
1263 seq_puts(seq, "state: ");
1264
Len Brown4be44fc2005-08-05 00:44:28 -04001265 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1266 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 seq_puts(seq, "ok\n");
1268 else {
1269 if (tz->state.critical)
1270 seq_puts(seq, "critical ");
1271 if (tz->state.hot)
1272 seq_puts(seq, "hot ");
1273 if (tz->state.passive)
1274 seq_puts(seq, "passive ");
1275 if (tz->state.active)
1276 seq_printf(seq, "active[%d]", tz->state.active_index);
1277 seq_puts(seq, "\n");
1278 }
1279
Len Brown4be44fc2005-08-05 00:44:28 -04001280 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1285{
1286 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1290{
Len Brown4be44fc2005-08-05 00:44:28 -04001291 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001292 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (!tz)
1296 goto end;
1297
1298 result = acpi_thermal_get_temperature(tz);
1299 if (result)
1300 goto end;
1301
Len Brown4be44fc2005-08-05 00:44:28 -04001302 seq_printf(seq, "temperature: %ld C\n",
1303 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Len Brown4be44fc2005-08-05 00:44:28 -04001305 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1310{
1311 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1312}
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1315{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001316 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001317 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001318 acpi_status status;
1319
Len Brown4be44fc2005-08-05 00:44:28 -04001320 int i = 0;
1321 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 if (!tz)
1325 goto end;
1326
1327 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001328 seq_printf(seq, "critical (S5): %ld C%s",
1329 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1330 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001333 seq_printf(seq, "hot (S4): %ld C%s",
1334 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1335 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001338 seq_printf(seq,
1339 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1340 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1341 tz->trips.passive.tc1, tz->trips.passive.tc2,
1342 tz->trips.passive.tsp);
1343 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001344 status = acpi_bus_get_device(tz->trips.passive.devices.
1345 handles[j], &device);
1346 seq_printf(seq, "%4.4s ", status ? "" :
1347 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349 seq_puts(seq, "\n");
1350 }
1351
1352 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1353 if (!(tz->trips.active[i].flags.valid))
1354 break;
1355 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001356 i,
1357 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001358 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001359 status = acpi_bus_get_device(tz->trips.active[i].
1360 devices.handles[j],
1361 &device);
1362 seq_printf(seq, "%4.4s ", status ? "" :
1363 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 seq_puts(seq, "\n");
1366 }
1367
Len Brown4be44fc2005-08-05 00:44:28 -04001368 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1373{
1374 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1378{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001379 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 if (!tz)
1383 goto end;
1384
Len Browneaca2d32007-04-30 23:27:43 -04001385 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 else
Len Browneaca2d32007-04-30 23:27:43 -04001388 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Len Brown4be44fc2005-08-05 00:44:28 -04001390 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
1394static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1395{
1396 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001397 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001401acpi_thermal_write_cooling_mode(struct file *file,
1402 const char __user * buffer,
1403 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001405 struct seq_file *m = file->private_data;
1406 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001407 int result = 0;
1408 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001412 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001415 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001418 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001421
1422 result = acpi_thermal_set_cooling_mode(tz,
1423 simple_strtoul(mode_string, NULL,
1424 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001426 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 acpi_thermal_check(tz);
1429
Patrick Mocheld550d982006-06-27 00:41:40 -04001430 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1434{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001435 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (!tz)
1439 goto end;
1440
1441 if (!tz->polling_frequency) {
1442 seq_puts(seq, "<polling disabled>\n");
1443 goto end;
1444 }
1445
1446 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001447 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Len Brown4be44fc2005-08-05 00:44:28 -04001449 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1454{
1455 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001456 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
1459static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001460acpi_thermal_write_polling(struct file *file,
1461 const char __user * buffer,
1462 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001464 struct seq_file *m = file->private_data;
1465 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001466 int result = 0;
1467 char polling_string[12] = { '\0' };
1468 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001472 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001475 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 polling_string[count] = '\0';
1478
1479 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 result = acpi_thermal_set_polling(tz, seconds);
1482 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001483 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 acpi_thermal_check(tz);
1486
Patrick Mocheld550d982006-06-27 00:41:40 -04001487 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Len Brown4be44fc2005-08-05 00:44:28 -04001490static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Len Brown4be44fc2005-08-05 00:44:28 -04001492 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 if (!acpi_device_dir(device)) {
1496 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001497 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001499 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 acpi_device_dir(device)->owner = THIS_MODULE;
1501 }
1502
1503 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001504 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1505 S_IRUGO, acpi_device_dir(device),
1506 &acpi_thermal_state_fops,
1507 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001509 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001512 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1513 S_IRUGO, acpi_device_dir(device),
1514 &acpi_thermal_temp_fops,
1515 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001517 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001519 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001520 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1521 S_IRUGO,
1522 acpi_device_dir(device),
1523 &acpi_thermal_trip_fops,
1524 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001526 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001529 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1530 S_IFREG | S_IRUGO | S_IWUSR,
1531 acpi_device_dir(device),
1532 &acpi_thermal_cooling_fops,
1533 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001535 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001538 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1539 S_IFREG | S_IRUGO | S_IWUSR,
1540 acpi_device_dir(device),
1541 &acpi_thermal_polling_fops,
1542 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001544 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001545 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Len Brown4be44fc2005-08-05 00:44:28 -04001548static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 if (acpi_device_dir(device)) {
1552 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1553 acpi_device_dir(device));
1554 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1555 acpi_device_dir(device));
1556 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1557 acpi_device_dir(device));
1558 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1559 acpi_device_dir(device));
1560 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1561 acpi_device_dir(device));
1562 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1563 acpi_device_dir(device) = NULL;
1564 }
1565
Patrick Mocheld550d982006-06-27 00:41:40 -04001566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/* --------------------------------------------------------------------------
1570 Driver Interface
1571 -------------------------------------------------------------------------- */
1572
Len Brown4be44fc2005-08-05 00:44:28 -04001573static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001575 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001576 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001580 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001582 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 switch (event) {
1585 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1586 acpi_thermal_check(tz);
1587 break;
1588 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001589 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 acpi_thermal_check(tz);
Len Brown14e04fb32007-08-23 15:20:26 -04001591 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001592 acpi_bus_generate_netlink_event(device->pnp.device_class,
1593 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 break;
1595 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001596 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1597 acpi_thermal_check(tz);
Len Brown14e04fb32007-08-23 15:20:26 -04001598 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001599 acpi_bus_generate_netlink_event(device->pnp.device_class,
1600 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 break;
1602 default:
1603 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001604 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 break;
1606 }
1607
Patrick Mocheld550d982006-06-27 00:41:40 -04001608 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
Len Brown4be44fc2005-08-05 00:44:28 -04001611static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Len Brown4be44fc2005-08-05 00:44:28 -04001613 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001617 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 /* Get temperature [_TMP] (required) */
1620 result = acpi_thermal_get_temperature(tz);
1621 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001622 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 /* Get trip points [_CRT, _PSV, etc.] (required) */
1625 result = acpi_thermal_get_trip_points(tz);
1626 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001627 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 /* Set the cooling mode [_SCP] to active cooling (default) */
1630 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001631 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 /* Get default polling frequency [_TZP] (optional) */
1635 if (tzp)
1636 tz->polling_frequency = tzp;
1637 else
1638 acpi_thermal_get_polling_frequency(tz);
1639
Patrick Mocheld550d982006-06-27 00:41:40 -04001640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Len Brown4be44fc2005-08-05 00:44:28 -04001643static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Len Brown4be44fc2005-08-05 00:44:28 -04001645 int result = 0;
1646 acpi_status status = AE_OK;
1647 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001651 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Burman Yan36bcbec2006-12-19 12:56:11 -08001653 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001655 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001657 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 strcpy(tz->name, device->pnp.bus_id);
1659 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1660 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1661 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001662 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001663
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 result = acpi_thermal_get_info(tz);
1666 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001667 goto free_memory;
1668
1669 result = acpi_thermal_register_thermal_zone(tz);
1670 if (result)
1671 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 result = acpi_thermal_add_fs(device);
1674 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001675 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 init_timer(&tz->timer);
1678
Zhao Yakuiea510112008-07-14 15:14:03 +08001679 acpi_thermal_active_off(tz);
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 acpi_thermal_check(tz);
1682
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001683 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001684 ACPI_DEVICE_NOTIFY,
1685 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001688 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
1690
1691 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001692 acpi_device_name(device), acpi_device_bid(device),
1693 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001694 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Zhang Rui3f655ef2008-01-17 15:51:11 +08001696remove_fs:
1697 acpi_thermal_remove_fs(device);
1698unregister_thermal_zone:
1699 thermal_zone_device_unregister(tz->thermal_zone);
1700free_memory:
1701 kfree(tz);
1702end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001703 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Len Brown4be44fc2005-08-05 00:44:28 -04001706static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Len Brown4be44fc2005-08-05 00:44:28 -04001708 acpi_status status = AE_OK;
1709 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001713 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001715 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 /* avoid timer adding new defer task */
1718 tz->zombie = 1;
1719 /* wait for running timer (on other CPUs) finish */
1720 del_timer_sync(&(tz->timer));
1721 /* synchronize deferred task */
1722 acpi_os_wait_events_complete(NULL);
1723 /* deferred task may reinsert timer */
1724 del_timer_sync(&(tz->timer));
1725
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001726 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001727 ACPI_DEVICE_NOTIFY,
1728 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001731 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 tz->trips.passive.flags.enabled = 0;
1733 acpi_thermal_passive(tz);
1734 }
1735 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001736 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 tz->trips.active[0].flags.enabled = 0;
1738 acpi_thermal_active(tz);
1739 }
1740
1741 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001742 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001743 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001748static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001749{
1750 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001751 int i, j, power_state, result;
1752
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001753
1754 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001755 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001756
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001757 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001758
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001759 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001760 if (!(&tz->trips.active[i]))
1761 break;
1762 if (!tz->trips.active[i].flags.valid)
1763 break;
1764 tz->trips.active[i].flags.enabled = 1;
1765 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1766 result = acpi_bus_get_power(tz->trips.active[i].devices.
1767 handles[j], &power_state);
1768 if (result || (power_state != ACPI_STATE_D0)) {
1769 tz->trips.active[i].flags.enabled = 0;
1770 break;
1771 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001772 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001773 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001774 }
1775
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001776 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001777
1778 return AE_OK;
1779}
1780
Jeff Garzik18552562007-10-03 15:15:40 -04001781static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001782
1783 if (act == 0) {
1784 printk(KERN_NOTICE "ACPI: %s detected: "
1785 "disabling all active thermal trip points\n", d->ident);
1786 act = -1;
1787 }
1788 return 0;
1789}
Jeff Garzik18552562007-10-03 15:15:40 -04001790static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001791
1792 printk(KERN_NOTICE "ACPI: %s detected: "
1793 "disabling all critical thermal trip point actions.\n", d->ident);
1794 nocrt = 1;
1795 return 0;
1796}
Jeff Garzik18552562007-10-03 15:15:40 -04001797static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001798
1799 if (tzp == 0) {
1800 printk(KERN_NOTICE "ACPI: %s detected: "
1801 "enabling thermal zone polling\n", d->ident);
1802 tzp = 300; /* 300 dS = 30 Seconds */
1803 }
1804 return 0;
1805}
Jeff Garzik18552562007-10-03 15:15:40 -04001806static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001807
1808 if (psv == 0) {
1809 printk(KERN_NOTICE "ACPI: %s detected: "
1810 "disabling all passive thermal trip points\n", d->ident);
1811 psv = -1;
1812 }
1813 return 0;
1814}
1815
1816static struct dmi_system_id thermal_dmi_table[] __initdata = {
1817 /*
1818 * Award BIOS on this AOpen makes thermal control almost worthless.
1819 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1820 */
1821 {
1822 .callback = thermal_act,
1823 .ident = "AOpen i915GMm-HFS",
1824 .matches = {
1825 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1826 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1827 },
1828 },
1829 {
1830 .callback = thermal_psv,
1831 .ident = "AOpen i915GMm-HFS",
1832 .matches = {
1833 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1834 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1835 },
1836 },
1837 {
1838 .callback = thermal_tzp,
1839 .ident = "AOpen i915GMm-HFS",
1840 .matches = {
1841 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1842 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1843 },
1844 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001845 {
1846 .callback = thermal_nocrt,
1847 .ident = "Gigabyte GA-7ZX",
1848 .matches = {
1849 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1850 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1851 },
1852 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001853 {}
1854};
Len Brown0b5bfa12007-08-12 00:13:02 -04001855
Len Brown4be44fc2005-08-05 00:44:28 -04001856static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Len Brown4be44fc2005-08-05 00:44:28 -04001858 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Len Brown0b5bfa12007-08-12 00:13:02 -04001860 dmi_check_system(thermal_dmi_table);
1861
Len Brown72b33ef2007-08-12 00:12:17 -04001862 if (off) {
1863 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1864 return -ENODEV;
1865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1867 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001868 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 acpi_thermal_dir->owner = THIS_MODULE;
1870
1871 result = acpi_bus_register_driver(&acpi_thermal_driver);
1872 if (result < 0) {
1873 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001874 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
Patrick Mocheld550d982006-06-27 00:41:40 -04001877 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
Len Brown4be44fc2005-08-05 00:44:28 -04001880static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 acpi_bus_unregister_driver(&acpi_thermal_driver);
1884
1885 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1886
Patrick Mocheld550d982006-06-27 00:41:40 -04001887 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890module_init(acpi_thermal_init);
1891module_exit(acpi_thermal_exit);