blob: ad6cae938f0b8cabfff04f305c577f0970bd1cb8 [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 /*
Zhang Rui22a94d72008-10-17 02:41:20 -0400392 * Allow override critical threshold
Zhang Ruice44e192008-01-17 15:51:25 +0800393 */
Zhang Rui22a94d72008-10-17 02:41:20 -0400394 if (crt_k > tz->trips.critical.temperature)
395 printk(KERN_WARNING PREFIX
396 "Critical threshold %d C\n", crt);
397 tz->trips.critical.temperature = crt_k;
Zhang Ruice44e192008-01-17 15:51:25 +0800398 }
Len Brownc52a7412007-08-14 15:49:32 -0400399 }
400 }
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800403 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400404 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400405 "_HOT", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800406 if (ACPI_FAILURE(status)) {
407 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400408 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800409 "No hot threshold\n"));
410 } else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400411 tz->trips.hot.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800412 tz->trips.hot.flags.valid = 1;
413 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
414 "Found hot threshold [%lu]\n",
415 tz->trips.critical.temperature));
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Zhang Ruice44e192008-01-17 15:51:25 +0800419 /* Passive (optional) */
420 if (flag & ACPI_TRIPS_PASSIVE) {
421 valid = tz->trips.passive.flags.valid;
422 if (psv == -1) {
423 status = AE_SUPPORT;
424 } else if (psv > 0) {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400425 tmp = CELSIUS_TO_KELVIN(psv);
Zhang Ruice44e192008-01-17 15:51:25 +0800426 status = AE_OK;
427 } else {
428 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400429 "_PSV", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Zhang Ruice44e192008-01-17 15:51:25 +0800432 if (ACPI_FAILURE(status))
433 tz->trips.passive.flags.valid = 0;
434 else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400435 tz->trips.passive.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800436 tz->trips.passive.flags.valid = 1;
437 if (flag == ACPI_TRIPS_INIT) {
438 status = acpi_evaluate_integer(
439 tz->device->handle, "_TC1",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400440 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800441 if (ACPI_FAILURE(status))
442 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400443 else
444 tz->trips.passive.tc1 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800445 status = acpi_evaluate_integer(
446 tz->device->handle, "_TC2",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400447 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800448 if (ACPI_FAILURE(status))
449 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400450 else
451 tz->trips.passive.tc2 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800452 status = acpi_evaluate_integer(
453 tz->device->handle, "_TSP",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400454 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800455 if (ACPI_FAILURE(status))
456 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400457 else
458 tz->trips.passive.tsp = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800459 }
460 }
461 }
462 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
463 memset(&devices, 0, sizeof(struct acpi_handle_list));
464 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
465 NULL, &devices);
466 if (ACPI_FAILURE(status))
467 tz->trips.passive.flags.valid = 0;
468 else
469 tz->trips.passive.flags.valid = 1;
470
471 if (memcmp(&tz->trips.passive.devices, &devices,
472 sizeof(struct acpi_handle_list))) {
473 memcpy(&tz->trips.passive.devices, &devices,
474 sizeof(struct acpi_handle_list));
475 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
476 }
477 }
478 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
479 if (valid != tz->trips.passive.flags.valid)
480 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
481 }
482
483 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400484 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400485 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800486 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Len Brownf8707ec2007-08-12 00:12:54 -0400488 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800489 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400490
Zhang Ruice44e192008-01-17 15:51:25 +0800491 if (flag & ACPI_TRIPS_ACTIVE) {
492 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400493 name, NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800494 if (ACPI_FAILURE(status)) {
495 tz->trips.active[i].flags.valid = 0;
496 if (i == 0)
497 break;
498 if (act <= 0)
499 break;
500 if (i == 1)
501 tz->trips.active[0].temperature =
502 CELSIUS_TO_KELVIN(act);
503 else
504 /*
505 * Don't allow override higher than
506 * the next higher trip point
507 */
508 tz->trips.active[i - 1].temperature =
509 (tz->trips.active[i - 2].temperature <
510 CELSIUS_TO_KELVIN(act) ?
511 tz->trips.active[i - 2].temperature :
512 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400513 break;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400514 } else {
515 tz->trips.active[i].temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800516 tz->trips.active[i].flags.valid = 1;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400517 }
Len Brownf8707ec2007-08-12 00:12:54 -0400518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800521 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
522 memset(&devices, 0, sizeof(struct acpi_handle_list));
523 status = acpi_evaluate_reference(tz->device->handle,
524 name, NULL, &devices);
525 if (ACPI_FAILURE(status))
526 tz->trips.active[i].flags.valid = 0;
527 else
528 tz->trips.active[i].flags.valid = 1;
529
530 if (memcmp(&tz->trips.active[i].devices, &devices,
531 sizeof(struct acpi_handle_list))) {
532 memcpy(&tz->trips.active[i].devices, &devices,
533 sizeof(struct acpi_handle_list));
534 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
535 }
536 }
537 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
538 if (valid != tz->trips.active[i].flags.valid)
539 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
540
541 if (!tz->trips.active[i].flags.valid)
542 break;
543 }
544
545 if (flag & ACPI_TRIPS_DEVICES) {
546 memset(&devices, 0, sizeof(struct acpi_handle_list));
547 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
548 NULL, &devices);
549 if (memcmp(&tz->devices, &devices,
550 sizeof(struct acpi_handle_list))) {
551 memcpy(&tz->devices, &devices,
552 sizeof(struct acpi_handle_list));
553 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Patrick Mocheld550d982006-06-27 00:41:40 -0400557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Zhang Ruice44e192008-01-17 15:51:25 +0800560static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Zhang Ruice44e192008-01-17 15:51:25 +0800562 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Len Brown4be44fc2005-08-05 00:44:28 -0400565static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Zhang Rui223630f2007-12-06 23:36:35 -0500567 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400568 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400571 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400573 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 tz->trips.critical.flags.enabled = 0;
575
Len Brown14e04fb2007-08-23 15:20:26 -0400576 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400577 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800578 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
579 tz->device->dev.bus_id,
580 ACPI_THERMAL_NOTIFY_CRITICAL,
581 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Zhang Rui223630f2007-12-06 23:36:35 -0500583 /* take no action if nocrt is set */
584 if(!nocrt) {
585 printk(KERN_EMERG
586 "Critical temperature reached (%ld C), shutting down.\n",
587 KELVIN_TO_CELSIUS(tz->temperature));
588 orderly_poweroff(true);
589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Patrick Mocheld550d982006-06-27 00:41:40 -0400591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Len Brown4be44fc2005-08-05 00:44:28 -0400594static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Zhang Rui223630f2007-12-06 23:36:35 -0500596 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400597 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400600 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400602 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 tz->trips.hot.flags.enabled = 0;
604
Len Brown14e04fb2007-08-23 15:20:26 -0400605 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400606 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800607 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
608 tz->device->dev.bus_id,
609 ACPI_THERMAL_NOTIFY_HOT,
610 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Zhang Rui223630f2007-12-06 23:36:35 -0500612 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Patrick Mocheld550d982006-06-27 00:41:40 -0400614 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400617static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400619 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400621 int trend = 0;
622 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400626 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 passive = &(tz->trips.passive);
629
630 /*
631 * Above Trip?
632 * -----------
633 * Calculate the thermal trend (using the passive cooling equation)
634 * and modify the performance limit for all passive cooling devices
635 * accordingly. Note that we assume symmetry.
636 */
637 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400638 trend =
639 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
640 (passive->tc2 * (tz->temperature - passive->temperature));
641 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
642 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
643 trend, passive->tc1, tz->temperature,
644 tz->last_temperature, passive->tc2,
645 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400646 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* Heating up? */
648 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400649 for (i = 0; i < passive->devices.count; i++)
650 acpi_processor_set_thermal_limit(passive->
651 devices.
652 handles[i],
653 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400655 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400656 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400657 /*
658 * assume that we are on highest
659 * freq/lowest thrott and can leave
660 * passive mode, even in error case
661 */
662 if (!acpi_processor_set_thermal_limit
663 (passive->devices.handles[i],
664 ACPI_PROCESSOR_LIMIT_DECREMENT))
665 result = 0;
666 /*
667 * Leave cooling mode, even if the temp might
668 * higher than trip point This is because some
669 * machines might have long thermal polling
670 * frequencies (tsp) defined. We will fall back
671 * into passive mode in next cycle (probably quicker)
672 */
673 if (result) {
674 passive->flags.enabled = 0;
675 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
676 "Disabling passive cooling, still above threshold,"
677 " but we are cooling down\n"));
678 }
679 }
680 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
683 /*
684 * Below Trip?
685 * -----------
686 * Implement passive cooling hysteresis to slowly increase performance
687 * and avoid thrashing around the passive trip point. Note that we
688 * assume symmetry.
689 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400690 if (!passive->flags.enabled)
691 return;
692 for (i = 0; i < passive->devices.count; i++)
693 if (!acpi_processor_set_thermal_limit
694 (passive->devices.handles[i],
695 ACPI_PROCESSOR_LIMIT_DECREMENT))
696 result = 0;
697 if (result) {
698 passive->flags.enabled = 0;
699 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
700 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400704static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Len Brown4be44fc2005-08-05 00:44:28 -0400706 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400708 int i = 0;
709 int j = 0;
710 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400714 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Len Brown4be44fc2005-08-05 00:44:28 -0400716 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 active = &(tz->trips.active[i]);
718 if (!active || !active->flags.valid)
719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400721 /*
722 * Above Threshold?
723 * ----------------
724 * If not already enabled, turn ON all cooling devices
725 * associated with this active threshold.
726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400728 tz->state.active_index = i;
729 maxtemp = active->temperature;
730 if (active->flags.enabled)
731 continue;
732 for (j = 0; j < active->devices.count; j++) {
733 result =
734 acpi_bus_set_power(active->devices.
735 handles[j],
736 ACPI_STATE_D0);
737 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400738 printk(KERN_WARNING PREFIX
739 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400740 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400741 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400742 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400744 active->flags.enabled = 1;
745 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
746 "Cooling device [%p] now 'on'\n",
747 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400749 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400751 if (!active->flags.enabled)
752 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * Below Threshold?
755 * ----------------
756 * Turn OFF all cooling devices associated with this
757 * threshold.
758 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400759 for (j = 0; j < active->devices.count; j++) {
760 result = acpi_bus_set_power(active->devices.handles[j],
761 ACPI_STATE_D3);
762 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400763 printk(KERN_WARNING PREFIX
764 "Unable to turn cooling device [%p] 'off'\n",
765 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400766 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400768 active->flags.enabled = 0;
769 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
770 "Cooling device [%p] now 'off'\n",
771 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Len Brown4be44fc2005-08-05 00:44:28 -0400776static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Len Brown4be44fc2005-08-05 00:44:28 -0400778static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct acpi_thermal *tz = (struct acpi_thermal *)data;
781 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400782 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Zhao Yakuiea510112008-07-14 15:14:03 +0800785static void acpi_thermal_active_off(void *data)
786{
787 int result = 0;
788 struct acpi_thermal *tz = data;
789 int i = 0;
790 int j = 0;
791 struct acpi_thermal_active *active = NULL;
792
793 if (!tz) {
794 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
795 return;
796 }
797
798 result = acpi_thermal_get_temperature(tz);
799 if (result)
800 return;
801
802 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
803 active = &(tz->trips.active[i]);
804 if (!active || !active->flags.valid)
805 break;
806 if (tz->temperature >= active->temperature) {
807 /*
808 * If the thermal temperature is greater than the
809 * active threshod, unnecessary to turn off the
810 * the active cooling device.
811 */
812 continue;
813 }
814 /*
815 * Below Threshold?
816 * ----------------
817 * Turn OFF all cooling devices associated with this
818 * threshold.
819 */
820 for (j = 0; j < active->devices.count; j++)
821 result = acpi_bus_set_power(active->devices.handles[j],
822 ACPI_STATE_D3);
823 }
824}
825
Len Brown4be44fc2005-08-05 00:44:28 -0400826static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Len Brown4be44fc2005-08-05 00:44:28 -0400828 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200829 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400830 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400831 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400832 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct acpi_thermal_state state;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400837 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400838 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400841 /* Check if someone else is already running */
842 if (!mutex_trylock(&tz->lock))
843 return;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 state = tz->state;
846
847 result = acpi_thermal_get_temperature(tz);
848 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400849 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400850
Zhang Rui3f655ef2008-01-17 15:51:11 +0800851 if (!tz->tz_enabled)
852 goto unlock;
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /*
857 * Check Trip Points
858 * -----------------
859 * Compare the current temperature to the trip point values to see
860 * if we've entered one of the thermal policy states. Note that
861 * this function determines when a state is entered, but the
862 * individual policy decides when it is exited (e.g. hysteresis).
863 */
864 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400865 state.critical |=
866 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (tz->trips.hot.flags.valid)
868 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
869 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400870 state.passive |=
871 (tz->temperature >= tz->trips.passive.temperature);
872 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400874 state.active |=
875 (tz->temperature >=
876 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /*
879 * Invoke Policy
880 * -------------
881 * Separated from the above check to allow individual policy to
882 * determine when to exit a given state.
883 */
884 if (state.critical)
885 acpi_thermal_critical(tz);
886 if (state.hot)
887 acpi_thermal_hot(tz);
888 if (state.passive)
889 acpi_thermal_passive(tz);
890 if (state.active)
891 acpi_thermal_active(tz);
892
893 /*
894 * Calculate State
895 * ---------------
896 * Again, separated from the above two to allow independent policy
897 * decisions.
898 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400899 tz->state.critical = tz->trips.critical.flags.enabled;
900 tz->state.hot = tz->trips.hot.flags.enabled;
901 tz->state.passive = tz->trips.passive.flags.enabled;
902 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400903 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400904 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 /*
907 * Calculate Sleep Time
908 * --------------------
909 * If we're in the passive state, use _TSP's value. Otherwise
910 * use the default polling frequency (e.g. _TZP). If no polling
911 * frequency is specified then we'll wait forever (at least until
912 * a thermal event occurs). Note that _TSP and _TZD values are
913 * given in 1/10th seconds (we must covert to milliseconds).
914 */
Len Brown21bc42a2007-09-04 12:49:22 -0400915 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400917 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
918 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400920 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Len Brown4be44fc2005-08-05 00:44:28 -0400923 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
924 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /*
927 * Schedule Next Poll
928 * ------------------
929 */
930 if (!sleep_time) {
931 if (timer_pending(&(tz->timer)))
932 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400933 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400935 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400937 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400939 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 add_timer(&(tz->timer));
941 }
942 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400943 unlock:
944 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Zhang Rui3f655ef2008-01-17 15:51:11 +0800947/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800948#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
949
Zhang Rui3f655ef2008-01-17 15:51:11 +0800950static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
951{
952 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800953 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800954
955 if (!tz)
956 return -EINVAL;
957
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800958 result = acpi_thermal_get_temperature(tz);
959 if (result)
960 return result;
961
Zhang, Rui5e012762008-02-28 07:51:30 +0800962 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800963}
964
965static const char enabled[] = "kernel";
966static const char disabled[] = "user";
967static int thermal_get_mode(struct thermal_zone_device *thermal,
968 char *buf)
969{
970 struct acpi_thermal *tz = thermal->devdata;
971
972 if (!tz)
973 return -EINVAL;
974
975 return sprintf(buf, "%s\n", tz->tz_enabled ?
976 enabled : disabled);
977}
978
979static int thermal_set_mode(struct thermal_zone_device *thermal,
980 const char *buf)
981{
982 struct acpi_thermal *tz = thermal->devdata;
983 int enable;
984
985 if (!tz)
986 return -EINVAL;
987
988 /*
989 * enable/disable thermal management from ACPI thermal driver
990 */
991 if (!strncmp(buf, enabled, sizeof enabled - 1))
992 enable = 1;
993 else if (!strncmp(buf, disabled, sizeof disabled - 1))
994 enable = 0;
995 else
996 return -EINVAL;
997
998 if (enable != tz->tz_enabled) {
999 tz->tz_enabled = enable;
1000 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1001 "%s ACPI thermal control\n",
1002 tz->tz_enabled ? enabled : disabled));
1003 acpi_thermal_check(tz);
1004 }
1005 return 0;
1006}
1007
1008static int thermal_get_trip_type(struct thermal_zone_device *thermal,
1009 int trip, char *buf)
1010{
1011 struct acpi_thermal *tz = thermal->devdata;
1012 int i;
1013
1014 if (!tz || trip < 0)
1015 return -EINVAL;
1016
1017 if (tz->trips.critical.flags.valid) {
1018 if (!trip)
1019 return sprintf(buf, "critical\n");
1020 trip--;
1021 }
1022
1023 if (tz->trips.hot.flags.valid) {
1024 if (!trip)
1025 return sprintf(buf, "hot\n");
1026 trip--;
1027 }
1028
1029 if (tz->trips.passive.flags.valid) {
1030 if (!trip)
1031 return sprintf(buf, "passive\n");
1032 trip--;
1033 }
1034
1035 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1036 tz->trips.active[i].flags.valid; i++) {
1037 if (!trip)
1038 return sprintf(buf, "active%d\n", i);
1039 trip--;
1040 }
1041
1042 return -EINVAL;
1043}
1044
1045static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
1046 int trip, char *buf)
1047{
1048 struct acpi_thermal *tz = thermal->devdata;
1049 int i;
1050
1051 if (!tz || trip < 0)
1052 return -EINVAL;
1053
1054 if (tz->trips.critical.flags.valid) {
1055 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001056 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001057 tz->trips.critical.temperature));
1058 trip--;
1059 }
1060
1061 if (tz->trips.hot.flags.valid) {
1062 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001063 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001064 tz->trips.hot.temperature));
1065 trip--;
1066 }
1067
1068 if (tz->trips.passive.flags.valid) {
1069 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001070 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001071 tz->trips.passive.temperature));
1072 trip--;
1073 }
1074
1075 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1076 tz->trips.active[i].flags.valid; i++) {
1077 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001078 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001079 tz->trips.active[i].temperature));
1080 trip--;
1081 }
1082
1083 return -EINVAL;
1084}
1085
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001086static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
1087 unsigned long *temperature) {
1088 struct acpi_thermal *tz = thermal->devdata;
1089
1090 if (tz->trips.critical.flags.valid) {
1091 *temperature = KELVIN_TO_MILLICELSIUS(
1092 tz->trips.critical.temperature);
1093 return 0;
1094 } else
1095 return -EINVAL;
1096}
1097
Zhang Rui3f655ef2008-01-17 15:51:11 +08001098typedef int (*cb)(struct thermal_zone_device *, int,
1099 struct thermal_cooling_device *);
1100static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1101 struct thermal_cooling_device *cdev,
1102 cb action)
1103{
1104 struct acpi_device *device = cdev->devdata;
1105 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001106 struct acpi_device *dev;
1107 acpi_status status;
1108 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001109 int i;
1110 int j;
1111 int trip = -1;
1112 int result = 0;
1113
1114 if (tz->trips.critical.flags.valid)
1115 trip++;
1116
1117 if (tz->trips.hot.flags.valid)
1118 trip++;
1119
1120 if (tz->trips.passive.flags.valid) {
1121 trip++;
1122 for (i = 0; i < tz->trips.passive.devices.count;
1123 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001124 handle = tz->trips.passive.devices.handles[i];
1125 status = acpi_bus_get_device(handle, &dev);
1126 if (ACPI_SUCCESS(status) && (dev == device)) {
1127 result = action(thermal, trip, cdev);
1128 if (result)
1129 goto failed;
1130 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001131 }
1132 }
1133
1134 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1135 if (!tz->trips.active[i].flags.valid)
1136 break;
1137 trip++;
1138 for (j = 0;
1139 j < tz->trips.active[i].devices.count;
1140 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001141 handle = tz->trips.active[i].devices.handles[j];
1142 status = acpi_bus_get_device(handle, &dev);
1143 if (ACPI_SUCCESS(status) && (dev == device)) {
1144 result = action(thermal, trip, cdev);
1145 if (result)
1146 goto failed;
1147 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001148 }
1149 }
1150
1151 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001152 handle = tz->devices.handles[i];
1153 status = acpi_bus_get_device(handle, &dev);
1154 if (ACPI_SUCCESS(status) && (dev == device)) {
1155 result = action(thermal, -1, cdev);
1156 if (result)
1157 goto failed;
1158 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001159 }
1160
1161failed:
1162 return result;
1163}
1164
1165static int
1166acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1167 struct thermal_cooling_device *cdev)
1168{
1169 return acpi_thermal_cooling_device_cb(thermal, cdev,
1170 thermal_zone_bind_cooling_device);
1171}
1172
1173static int
1174acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1175 struct thermal_cooling_device *cdev)
1176{
1177 return acpi_thermal_cooling_device_cb(thermal, cdev,
1178 thermal_zone_unbind_cooling_device);
1179}
1180
1181static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1182 .bind = acpi_thermal_bind_cooling_device,
1183 .unbind = acpi_thermal_unbind_cooling_device,
1184 .get_temp = thermal_get_temp,
1185 .get_mode = thermal_get_mode,
1186 .set_mode = thermal_set_mode,
1187 .get_trip_type = thermal_get_trip_type,
1188 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +08001189 .get_crit_temp = thermal_get_crit_temp,
Zhang Rui3f655ef2008-01-17 15:51:11 +08001190};
1191
1192static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1193{
1194 int trips = 0;
1195 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001196 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001197 int i;
1198
1199 if (tz->trips.critical.flags.valid)
1200 trips++;
1201
1202 if (tz->trips.hot.flags.valid)
1203 trips++;
1204
1205 if (tz->trips.passive.flags.valid)
1206 trips++;
1207
1208 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1209 tz->trips.active[i].flags.valid; i++, trips++);
Zhang Ruie9ae7102008-04-22 08:50:09 +08001210 tz->thermal_zone = thermal_zone_device_register("acpitz",
Zhang Rui3f655ef2008-01-17 15:51:11 +08001211 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001212 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001213 return -ENODEV;
1214
1215 result = sysfs_create_link(&tz->device->dev.kobj,
1216 &tz->thermal_zone->device.kobj, "thermal_zone");
1217 if (result)
1218 return result;
1219
1220 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1221 &tz->device->dev.kobj, "device");
1222 if (result)
1223 return result;
1224
Zhang Rui20733932008-01-17 15:51:21 +08001225 status = acpi_attach_data(tz->device->handle,
1226 acpi_bus_private_data_handler,
1227 tz->thermal_zone);
1228 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001229 printk(KERN_ERR PREFIX
1230 "Error attaching device data\n");
Zhang Rui20733932008-01-17 15:51:21 +08001231 return -ENODEV;
1232 }
1233
Zhang Rui3f655ef2008-01-17 15:51:11 +08001234 tz->tz_enabled = 1;
1235
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +02001236 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
1237 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001238 return 0;
1239}
1240
1241static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1242{
1243 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1244 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1245 thermal_zone_device_unregister(tz->thermal_zone);
1246 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001247 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001248}
1249
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/* --------------------------------------------------------------------------
1252 FS Interface (/proc)
1253 -------------------------------------------------------------------------- */
1254
Len Brown4be44fc2005-08-05 00:44:28 -04001255static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1258{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001259 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 if (!tz)
1263 goto end;
1264
1265 seq_puts(seq, "state: ");
1266
Len Brown4be44fc2005-08-05 00:44:28 -04001267 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1268 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 seq_puts(seq, "ok\n");
1270 else {
1271 if (tz->state.critical)
1272 seq_puts(seq, "critical ");
1273 if (tz->state.hot)
1274 seq_puts(seq, "hot ");
1275 if (tz->state.passive)
1276 seq_puts(seq, "passive ");
1277 if (tz->state.active)
1278 seq_printf(seq, "active[%d]", tz->state.active_index);
1279 seq_puts(seq, "\n");
1280 }
1281
Len Brown4be44fc2005-08-05 00:44:28 -04001282 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
1286static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1287{
1288 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1289}
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1292{
Len Brown4be44fc2005-08-05 00:44:28 -04001293 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001294 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (!tz)
1298 goto end;
1299
1300 result = acpi_thermal_get_temperature(tz);
1301 if (result)
1302 goto end;
1303
Len Brown4be44fc2005-08-05 00:44:28 -04001304 seq_printf(seq, "temperature: %ld C\n",
1305 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Len Brown4be44fc2005-08-05 00:44:28 -04001307 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1312{
1313 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1317{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001318 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001319 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001320 acpi_status status;
1321
Len Brown4be44fc2005-08-05 00:44:28 -04001322 int i = 0;
1323 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 if (!tz)
1327 goto end;
1328
1329 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001330 seq_printf(seq, "critical (S5): %ld C%s",
1331 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1332 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001335 seq_printf(seq, "hot (S4): %ld C%s",
1336 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1337 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001340 seq_printf(seq,
1341 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1342 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1343 tz->trips.passive.tc1, tz->trips.passive.tc2,
1344 tz->trips.passive.tsp);
1345 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001346 status = acpi_bus_get_device(tz->trips.passive.devices.
1347 handles[j], &device);
1348 seq_printf(seq, "%4.4s ", status ? "" :
1349 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351 seq_puts(seq, "\n");
1352 }
1353
1354 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1355 if (!(tz->trips.active[i].flags.valid))
1356 break;
1357 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001358 i,
1359 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001360 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001361 status = acpi_bus_get_device(tz->trips.active[i].
1362 devices.handles[j],
1363 &device);
1364 seq_printf(seq, "%4.4s ", status ? "" :
1365 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 seq_puts(seq, "\n");
1368 }
1369
Len Brown4be44fc2005-08-05 00:44:28 -04001370 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
1374static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1375{
1376 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1380{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001381 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if (!tz)
1385 goto end;
1386
Len Browneaca2d32007-04-30 23:27:43 -04001387 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 else
Len Browneaca2d32007-04-30 23:27:43 -04001390 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Len Brown4be44fc2005-08-05 00:44:28 -04001392 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1397{
1398 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001399 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001403acpi_thermal_write_cooling_mode(struct file *file,
1404 const char __user * buffer,
1405 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001407 struct seq_file *m = file->private_data;
1408 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001409 int result = 0;
1410 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001414 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001417 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001420 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001423
1424 result = acpi_thermal_set_cooling_mode(tz,
1425 simple_strtoul(mode_string, NULL,
1426 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001428 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 acpi_thermal_check(tz);
1431
Patrick Mocheld550d982006-06-27 00:41:40 -04001432 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1436{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001437 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 if (!tz)
1441 goto end;
1442
1443 if (!tz->polling_frequency) {
1444 seq_puts(seq, "<polling disabled>\n");
1445 goto end;
1446 }
1447
1448 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001449 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Len Brown4be44fc2005-08-05 00:44:28 -04001451 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
1455static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1456{
1457 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001458 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
1461static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001462acpi_thermal_write_polling(struct file *file,
1463 const char __user * buffer,
1464 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001466 struct seq_file *m = file->private_data;
1467 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001468 int result = 0;
1469 char polling_string[12] = { '\0' };
1470 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001474 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001477 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 polling_string[count] = '\0';
1480
1481 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 result = acpi_thermal_set_polling(tz, seconds);
1484 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001485 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 acpi_thermal_check(tz);
1488
Patrick Mocheld550d982006-06-27 00:41:40 -04001489 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Len Brown4be44fc2005-08-05 00:44:28 -04001492static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Len Brown4be44fc2005-08-05 00:44:28 -04001494 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 if (!acpi_device_dir(device)) {
1498 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001499 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001501 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 acpi_device_dir(device)->owner = THIS_MODULE;
1503 }
1504
1505 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001506 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1507 S_IRUGO, acpi_device_dir(device),
1508 &acpi_thermal_state_fops,
1509 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001511 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001514 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1515 S_IRUGO, acpi_device_dir(device),
1516 &acpi_thermal_temp_fops,
1517 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001519 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001521 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001522 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1523 S_IRUGO,
1524 acpi_device_dir(device),
1525 &acpi_thermal_trip_fops,
1526 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001528 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001531 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1532 S_IFREG | S_IRUGO | S_IWUSR,
1533 acpi_device_dir(device),
1534 &acpi_thermal_cooling_fops,
1535 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001537 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001540 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1541 S_IFREG | S_IRUGO | S_IWUSR,
1542 acpi_device_dir(device),
1543 &acpi_thermal_polling_fops,
1544 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001546 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Len Brown4be44fc2005-08-05 00:44:28 -04001550static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 if (acpi_device_dir(device)) {
1554 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1555 acpi_device_dir(device));
1556 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1557 acpi_device_dir(device));
1558 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1559 acpi_device_dir(device));
1560 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1561 acpi_device_dir(device));
1562 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1563 acpi_device_dir(device));
1564 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1565 acpi_device_dir(device) = NULL;
1566 }
1567
Patrick Mocheld550d982006-06-27 00:41:40 -04001568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/* --------------------------------------------------------------------------
1572 Driver Interface
1573 -------------------------------------------------------------------------- */
1574
Len Brown4be44fc2005-08-05 00:44:28 -04001575static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001577 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001578 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001582 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001584 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 switch (event) {
1587 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1588 acpi_thermal_check(tz);
1589 break;
1590 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001591 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001593 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001594 acpi_bus_generate_netlink_event(device->pnp.device_class,
1595 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
1597 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001598 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1599 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001600 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001601 acpi_bus_generate_netlink_event(device->pnp.device_class,
1602 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 default:
1605 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001606 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 break;
1608 }
1609
Patrick Mocheld550d982006-06-27 00:41:40 -04001610 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Len Brown4be44fc2005-08-05 00:44:28 -04001613static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Len Brown4be44fc2005-08-05 00:44:28 -04001615 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001619 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 /* Get temperature [_TMP] (required) */
1622 result = acpi_thermal_get_temperature(tz);
1623 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001624 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /* Get trip points [_CRT, _PSV, etc.] (required) */
1627 result = acpi_thermal_get_trip_points(tz);
1628 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001629 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 /* Set the cooling mode [_SCP] to active cooling (default) */
1632 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001633 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 /* Get default polling frequency [_TZP] (optional) */
1637 if (tzp)
1638 tz->polling_frequency = tzp;
1639 else
1640 acpi_thermal_get_polling_frequency(tz);
1641
Patrick Mocheld550d982006-06-27 00:41:40 -04001642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
Len Brown4be44fc2005-08-05 00:44:28 -04001645static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Len Brown4be44fc2005-08-05 00:44:28 -04001647 int result = 0;
1648 acpi_status status = AE_OK;
1649 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001653 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Burman Yan36bcbec2006-12-19 12:56:11 -08001655 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001657 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001659 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 strcpy(tz->name, device->pnp.bus_id);
1661 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1662 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001663 device->driver_data = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001664 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001665
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 result = acpi_thermal_get_info(tz);
1668 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001669 goto free_memory;
1670
1671 result = acpi_thermal_register_thermal_zone(tz);
1672 if (result)
1673 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 result = acpi_thermal_add_fs(device);
1676 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001677 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 init_timer(&tz->timer);
1680
Zhao Yakuiea510112008-07-14 15:14:03 +08001681 acpi_thermal_active_off(tz);
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 acpi_thermal_check(tz);
1684
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001685 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001686 ACPI_DEVICE_NOTIFY,
1687 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001690 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692
1693 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001694 acpi_device_name(device), acpi_device_bid(device),
1695 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001696 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Zhang Rui3f655ef2008-01-17 15:51:11 +08001698remove_fs:
1699 acpi_thermal_remove_fs(device);
1700unregister_thermal_zone:
1701 thermal_zone_device_unregister(tz->thermal_zone);
1702free_memory:
1703 kfree(tz);
1704end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001705 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Len Brown4be44fc2005-08-05 00:44:28 -04001708static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Len Brown4be44fc2005-08-05 00:44:28 -04001710 acpi_status status = AE_OK;
1711 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001715 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001717 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 /* avoid timer adding new defer task */
1720 tz->zombie = 1;
1721 /* wait for running timer (on other CPUs) finish */
1722 del_timer_sync(&(tz->timer));
1723 /* synchronize deferred task */
1724 acpi_os_wait_events_complete(NULL);
1725 /* deferred task may reinsert timer */
1726 del_timer_sync(&(tz->timer));
1727
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001728 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001729 ACPI_DEVICE_NOTIFY,
1730 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001733 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 tz->trips.passive.flags.enabled = 0;
1735 acpi_thermal_passive(tz);
1736 }
1737 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001738 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 tz->trips.active[0].flags.enabled = 0;
1740 acpi_thermal_active(tz);
1741 }
1742
1743 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001744 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001745 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001750static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001751{
1752 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001753 int i, j, power_state, result;
1754
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001755
1756 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001757 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001758
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001759 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001760
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001761 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001762 if (!(&tz->trips.active[i]))
1763 break;
1764 if (!tz->trips.active[i].flags.valid)
1765 break;
1766 tz->trips.active[i].flags.enabled = 1;
1767 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1768 result = acpi_bus_get_power(tz->trips.active[i].devices.
1769 handles[j], &power_state);
1770 if (result || (power_state != ACPI_STATE_D0)) {
1771 tz->trips.active[i].flags.enabled = 0;
1772 break;
1773 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001774 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001775 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001776 }
1777
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001778 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001779
1780 return AE_OK;
1781}
1782
Jeff Garzik18552562007-10-03 15:15:40 -04001783static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001784
1785 if (act == 0) {
1786 printk(KERN_NOTICE "ACPI: %s detected: "
1787 "disabling all active thermal trip points\n", d->ident);
1788 act = -1;
1789 }
1790 return 0;
1791}
Jeff Garzik18552562007-10-03 15:15:40 -04001792static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001793
1794 printk(KERN_NOTICE "ACPI: %s detected: "
1795 "disabling all critical thermal trip point actions.\n", d->ident);
1796 nocrt = 1;
1797 return 0;
1798}
Jeff Garzik18552562007-10-03 15:15:40 -04001799static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001800
1801 if (tzp == 0) {
1802 printk(KERN_NOTICE "ACPI: %s detected: "
1803 "enabling thermal zone polling\n", d->ident);
1804 tzp = 300; /* 300 dS = 30 Seconds */
1805 }
1806 return 0;
1807}
Jeff Garzik18552562007-10-03 15:15:40 -04001808static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001809
1810 if (psv == 0) {
1811 printk(KERN_NOTICE "ACPI: %s detected: "
1812 "disabling all passive thermal trip points\n", d->ident);
1813 psv = -1;
1814 }
1815 return 0;
1816}
1817
1818static struct dmi_system_id thermal_dmi_table[] __initdata = {
1819 /*
1820 * Award BIOS on this AOpen makes thermal control almost worthless.
1821 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1822 */
1823 {
1824 .callback = thermal_act,
1825 .ident = "AOpen i915GMm-HFS",
1826 .matches = {
1827 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1828 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1829 },
1830 },
1831 {
1832 .callback = thermal_psv,
1833 .ident = "AOpen i915GMm-HFS",
1834 .matches = {
1835 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1836 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1837 },
1838 },
1839 {
1840 .callback = thermal_tzp,
1841 .ident = "AOpen i915GMm-HFS",
1842 .matches = {
1843 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1844 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1845 },
1846 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001847 {
1848 .callback = thermal_nocrt,
1849 .ident = "Gigabyte GA-7ZX",
1850 .matches = {
1851 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1852 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1853 },
1854 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001855 {}
1856};
Len Brown0b5bfa12007-08-12 00:13:02 -04001857
Len Brown4be44fc2005-08-05 00:44:28 -04001858static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Len Brown4be44fc2005-08-05 00:44:28 -04001860 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Len Brown0b5bfa12007-08-12 00:13:02 -04001862 dmi_check_system(thermal_dmi_table);
1863
Len Brown72b33ef2007-08-12 00:12:17 -04001864 if (off) {
1865 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1866 return -ENODEV;
1867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1869 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001870 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 acpi_thermal_dir->owner = THIS_MODULE;
1872
1873 result = acpi_bus_register_driver(&acpi_thermal_driver);
1874 if (result < 0) {
1875 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001876 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878
Patrick Mocheld550d982006-06-27 00:41:40 -04001879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
Len Brown4be44fc2005-08-05 00:44:28 -04001882static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885 acpi_bus_unregister_driver(&acpi_thermal_driver);
1886
1887 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1888
Patrick Mocheld550d982006-06-27 00:41:40 -04001889 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892module_init(acpi_thermal_init);
1893module_exit(acpi_thermal_exit);