blob: 73f276bc6e4f5a49e735b9bd08a50fb4fcbdf83c [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 = {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 .open = acpi_thermal_state_open_fs,
202 .read = seq_read,
203 .llseek = seq_lseek,
204 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Arjan van de Vend7508032006-07-04 13:06:00 -0400207static const struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400208 .open = acpi_thermal_temp_open_fs,
209 .read = seq_read,
210 .llseek = seq_lseek,
211 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Arjan van de Vend7508032006-07-04 13:06:00 -0400214static const struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400215 .open = acpi_thermal_trip_open_fs,
216 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 .llseek = seq_lseek,
218 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Arjan van de Vend7508032006-07-04 13:06:00 -0400221static const struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400222 .open = acpi_thermal_cooling_open_fs,
223 .read = seq_read,
224 .write = acpi_thermal_write_cooling_mode,
225 .llseek = seq_lseek,
226 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
Arjan van de Vend7508032006-07-04 13:06:00 -0400229static const struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400230 .open = acpi_thermal_polling_open_fs,
231 .read = seq_read,
232 .write = acpi_thermal_write_polling,
233 .llseek = seq_lseek,
234 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
237/* --------------------------------------------------------------------------
238 Thermal Zone Management
239 -------------------------------------------------------------------------- */
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Len Brown4be44fc2005-08-05 00:44:28 -0400243 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400247 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 tz->last_temperature = tz->temperature;
250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400252 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400254 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
257 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Len Brown4be44fc2005-08-05 00:44:28 -0400264 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400268 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400271 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400272 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Len Brown4be44fc2005-08-05 00:44:28 -0400276 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
277 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Patrick Mocheld550d982006-06-27 00:41:40 -0400279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Len Brown4be44fc2005-08-05 00:44:28 -0400282static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
291 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500292 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Len Brown4be44fc2005-08-05 00:44:28 -0400297static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Len Brown4be44fc2005-08-05 00:44:28 -0400299 acpi_status status = AE_OK;
300 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
301 struct acpi_object_list arg_list = { 1, &arg0 };
302 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400308 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (ACPI_FAILURE(status)) {
310 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 arg0.integer.value = mode;
315
316 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
317 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400318 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Patrick Mocheld550d982006-06-27 00:41:40 -0400320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Zhang Ruice44e192008-01-17 15:51:25 +0800323#define ACPI_TRIPS_CRITICAL 0x01
324#define ACPI_TRIPS_HOT 0x02
325#define ACPI_TRIPS_PASSIVE 0x04
326#define ACPI_TRIPS_ACTIVE 0x08
327#define ACPI_TRIPS_DEVICES 0x10
328
329#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
330#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
331
332#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
333 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
334 ACPI_TRIPS_DEVICES)
335
336/*
337 * This exception is thrown out in two cases:
338 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
339 * when re-evaluating the AML code.
340 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
341 * We need to re-bind the cooling devices of a thermal zone when this occurs.
342 */
343#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
344do { \
345 if (flags != ACPI_TRIPS_INIT) \
346 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
347 "ACPI thermal trip point %s changed\n" \
348 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
349} while (0)
350
351static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Len Brown4be44fc2005-08-05 00:44:28 -0400353 acpi_status status = AE_OK;
Zhang Ruice44e192008-01-17 15:51:25 +0800354 struct acpi_handle_list devices;
355 int valid = 0;
356 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /* Critical Shutdown (required) */
Zhang Ruice44e192008-01-17 15:51:25 +0800359 if (flag & ACPI_TRIPS_CRITICAL) {
360 status = acpi_evaluate_integer(tz->device->handle,
361 "_CRT", NULL, &tz->trips.critical.temperature);
362 if (ACPI_FAILURE(status)) {
Len Brownc52a7412007-08-14 15:49:32 -0400363 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800364 ACPI_EXCEPTION((AE_INFO, status,
365 "No critical threshold"));
366 return -ENODEV;
367 } else {
368 tz->trips.critical.flags.valid = 1;
369 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
370 "Found critical threshold [%lu]\n",
371 tz->trips.critical.temperature));
372 }
373 if (tz->trips.critical.flags.valid == 1) {
374 if (crt == -1) {
375 tz->trips.critical.flags.valid = 0;
376 } else if (crt > 0) {
377 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
378 /*
379 * Allow override to lower critical threshold
380 */
381 if (crt_k < tz->trips.critical.temperature)
382 tz->trips.critical.temperature = crt_k;
383 }
Len Brownc52a7412007-08-14 15:49:32 -0400384 }
385 }
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800388 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400389 status = acpi_evaluate_integer(tz->device->handle,
Zhang Ruice44e192008-01-17 15:51:25 +0800390 "_HOT", NULL, &tz->trips.hot.temperature);
391 if (ACPI_FAILURE(status)) {
392 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400393 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800394 "No hot threshold\n"));
395 } else {
396 tz->trips.hot.flags.valid = 1;
397 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
398 "Found hot threshold [%lu]\n",
399 tz->trips.critical.temperature));
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
Zhang Ruice44e192008-01-17 15:51:25 +0800403 /* Passive (optional) */
404 if (flag & ACPI_TRIPS_PASSIVE) {
405 valid = tz->trips.passive.flags.valid;
406 if (psv == -1) {
407 status = AE_SUPPORT;
408 } else if (psv > 0) {
409 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
410 status = AE_OK;
411 } else {
412 status = acpi_evaluate_integer(tz->device->handle,
413 "_PSV", NULL, &tz->trips.passive.temperature);
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Zhang Ruice44e192008-01-17 15:51:25 +0800416 if (ACPI_FAILURE(status))
417 tz->trips.passive.flags.valid = 0;
418 else {
419 tz->trips.passive.flags.valid = 1;
420 if (flag == ACPI_TRIPS_INIT) {
421 status = acpi_evaluate_integer(
422 tz->device->handle, "_TC1",
423 NULL, &tz->trips.passive.tc1);
424 if (ACPI_FAILURE(status))
425 tz->trips.passive.flags.valid = 0;
426 status = acpi_evaluate_integer(
427 tz->device->handle, "_TC2",
428 NULL, &tz->trips.passive.tc2);
429 if (ACPI_FAILURE(status))
430 tz->trips.passive.flags.valid = 0;
431 status = acpi_evaluate_integer(
432 tz->device->handle, "_TSP",
433 NULL, &tz->trips.passive.tsp);
434 if (ACPI_FAILURE(status))
435 tz->trips.passive.flags.valid = 0;
436 }
437 }
438 }
439 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
440 memset(&devices, 0, sizeof(struct acpi_handle_list));
441 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
442 NULL, &devices);
443 if (ACPI_FAILURE(status))
444 tz->trips.passive.flags.valid = 0;
445 else
446 tz->trips.passive.flags.valid = 1;
447
448 if (memcmp(&tz->trips.passive.devices, &devices,
449 sizeof(struct acpi_handle_list))) {
450 memcpy(&tz->trips.passive.devices, &devices,
451 sizeof(struct acpi_handle_list));
452 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
453 }
454 }
455 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
456 if (valid != tz->trips.passive.flags.valid)
457 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
458 }
459
460 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400461 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400462 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800463 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Len Brownf8707ec2007-08-12 00:12:54 -0400465 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800466 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400467
Zhang Ruice44e192008-01-17 15:51:25 +0800468 if (flag & ACPI_TRIPS_ACTIVE) {
469 status = acpi_evaluate_integer(tz->device->handle,
470 name, NULL, &tz->trips.active[i].temperature);
471 if (ACPI_FAILURE(status)) {
472 tz->trips.active[i].flags.valid = 0;
473 if (i == 0)
474 break;
475 if (act <= 0)
476 break;
477 if (i == 1)
478 tz->trips.active[0].temperature =
479 CELSIUS_TO_KELVIN(act);
480 else
481 /*
482 * Don't allow override higher than
483 * the next higher trip point
484 */
485 tz->trips.active[i - 1].temperature =
486 (tz->trips.active[i - 2].temperature <
487 CELSIUS_TO_KELVIN(act) ?
488 tz->trips.active[i - 2].temperature :
489 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400490 break;
Zhang Ruice44e192008-01-17 15:51:25 +0800491 } else
492 tz->trips.active[i].flags.valid = 1;
Len Brownf8707ec2007-08-12 00:12:54 -0400493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800496 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
497 memset(&devices, 0, sizeof(struct acpi_handle_list));
498 status = acpi_evaluate_reference(tz->device->handle,
499 name, NULL, &devices);
500 if (ACPI_FAILURE(status))
501 tz->trips.active[i].flags.valid = 0;
502 else
503 tz->trips.active[i].flags.valid = 1;
504
505 if (memcmp(&tz->trips.active[i].devices, &devices,
506 sizeof(struct acpi_handle_list))) {
507 memcpy(&tz->trips.active[i].devices, &devices,
508 sizeof(struct acpi_handle_list));
509 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
510 }
511 }
512 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
513 if (valid != tz->trips.active[i].flags.valid)
514 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
515
516 if (!tz->trips.active[i].flags.valid)
517 break;
518 }
519
520 if (flag & ACPI_TRIPS_DEVICES) {
521 memset(&devices, 0, sizeof(struct acpi_handle_list));
522 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
523 NULL, &devices);
524 if (memcmp(&tz->devices, &devices,
525 sizeof(struct acpi_handle_list))) {
526 memcpy(&tz->devices, &devices,
527 sizeof(struct acpi_handle_list));
528 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
Patrick Mocheld550d982006-06-27 00:41:40 -0400532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Zhang Ruice44e192008-01-17 15:51:25 +0800535static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Zhang Ruice44e192008-01-17 15:51:25 +0800537 return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Len Brown4be44fc2005-08-05 00:44:28 -0400540static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Len Brownf5487142007-08-12 00:12:44 -0400542 if (!tz || !tz->trips.critical.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400543 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400546 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400548 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 tz->trips.critical.flags.enabled = 0;
550
Len Brown4be44fc2005-08-05 00:44:28 -0400551 printk(KERN_EMERG
552 "Critical temperature reached (%ld C), shutting down.\n",
553 KELVIN_TO_CELSIUS(tz->temperature));
Len Brown14e04fb2007-08-23 15:20:26 -0400554 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400555 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800556 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
557 tz->device->dev.bus_id,
558 ACPI_THERMAL_NOTIFY_CRITICAL,
559 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700561 orderly_poweroff(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Patrick Mocheld550d982006-06-27 00:41:40 -0400563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Len Brown4be44fc2005-08-05 00:44:28 -0400566static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Len Brownf5487142007-08-12 00:12:44 -0400568 if (!tz || !tz->trips.hot.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400572 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400574 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 tz->trips.hot.flags.enabled = 0;
576
Len Brown14e04fb2007-08-23 15:20:26 -0400577 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400578 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800579 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
580 tz->device->dev.bus_id,
581 ACPI_THERMAL_NOTIFY_HOT,
582 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* TBD: Call user-mode "sleep(S4)" function */
585
Patrick Mocheld550d982006-06-27 00:41:40 -0400586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400589static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400591 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400593 int trend = 0;
594 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400598 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 passive = &(tz->trips.passive);
601
602 /*
603 * Above Trip?
604 * -----------
605 * Calculate the thermal trend (using the passive cooling equation)
606 * and modify the performance limit for all passive cooling devices
607 * accordingly. Note that we assume symmetry.
608 */
609 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400610 trend =
611 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
612 (passive->tc2 * (tz->temperature - passive->temperature));
613 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
614 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
615 trend, passive->tc1, tz->temperature,
616 tz->last_temperature, passive->tc2,
617 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400618 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Heating up? */
620 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400621 for (i = 0; i < passive->devices.count; i++)
622 acpi_processor_set_thermal_limit(passive->
623 devices.
624 handles[i],
625 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400627 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400628 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400629 /*
630 * assume that we are on highest
631 * freq/lowest thrott and can leave
632 * passive mode, even in error case
633 */
634 if (!acpi_processor_set_thermal_limit
635 (passive->devices.handles[i],
636 ACPI_PROCESSOR_LIMIT_DECREMENT))
637 result = 0;
638 /*
639 * Leave cooling mode, even if the temp might
640 * higher than trip point This is because some
641 * machines might have long thermal polling
642 * frequencies (tsp) defined. We will fall back
643 * into passive mode in next cycle (probably quicker)
644 */
645 if (result) {
646 passive->flags.enabled = 0;
647 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
648 "Disabling passive cooling, still above threshold,"
649 " but we are cooling down\n"));
650 }
651 }
652 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
655 /*
656 * Below Trip?
657 * -----------
658 * Implement passive cooling hysteresis to slowly increase performance
659 * and avoid thrashing around the passive trip point. Note that we
660 * assume symmetry.
661 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400662 if (!passive->flags.enabled)
663 return;
664 for (i = 0; i < passive->devices.count; i++)
665 if (!acpi_processor_set_thermal_limit
666 (passive->devices.handles[i],
667 ACPI_PROCESSOR_LIMIT_DECREMENT))
668 result = 0;
669 if (result) {
670 passive->flags.enabled = 0;
671 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
672 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400676static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Len Brown4be44fc2005-08-05 00:44:28 -0400678 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400680 int i = 0;
681 int j = 0;
682 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Len Brown4be44fc2005-08-05 00:44:28 -0400688 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 active = &(tz->trips.active[i]);
690 if (!active || !active->flags.valid)
691 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400693 /*
694 * Above Threshold?
695 * ----------------
696 * If not already enabled, turn ON all cooling devices
697 * associated with this active threshold.
698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400700 tz->state.active_index = i;
701 maxtemp = active->temperature;
702 if (active->flags.enabled)
703 continue;
704 for (j = 0; j < active->devices.count; j++) {
705 result =
706 acpi_bus_set_power(active->devices.
707 handles[j],
708 ACPI_STATE_D0);
709 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400710 printk(KERN_WARNING PREFIX
711 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400712 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400713 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400714 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400716 active->flags.enabled = 1;
717 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
718 "Cooling device [%p] now 'on'\n",
719 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400721 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400723 if (!active->flags.enabled)
724 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
726 * Below Threshold?
727 * ----------------
728 * Turn OFF all cooling devices associated with this
729 * threshold.
730 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400731 for (j = 0; j < active->devices.count; j++) {
732 result = acpi_bus_set_power(active->devices.handles[j],
733 ACPI_STATE_D3);
734 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400735 printk(KERN_WARNING PREFIX
736 "Unable to turn cooling device [%p] 'off'\n",
737 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400738 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400740 active->flags.enabled = 0;
741 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
742 "Cooling device [%p] now 'off'\n",
743 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Len Brown4be44fc2005-08-05 00:44:28 -0400748static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Len Brown4be44fc2005-08-05 00:44:28 -0400750static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct acpi_thermal *tz = (struct acpi_thermal *)data;
753 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400754 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Len Brown4be44fc2005-08-05 00:44:28 -0400757static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Len Brown4be44fc2005-08-05 00:44:28 -0400759 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200760 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400761 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400762 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400763 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct acpi_thermal_state state;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400768 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400769 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400772 /* Check if someone else is already running */
773 if (!mutex_trylock(&tz->lock))
774 return;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 state = tz->state;
777
778 result = acpi_thermal_get_temperature(tz);
779 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400780 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400781
Zhang Rui3f655ef2008-01-17 15:51:11 +0800782 if (!tz->tz_enabled)
783 goto unlock;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /*
788 * Check Trip Points
789 * -----------------
790 * Compare the current temperature to the trip point values to see
791 * if we've entered one of the thermal policy states. Note that
792 * this function determines when a state is entered, but the
793 * individual policy decides when it is exited (e.g. hysteresis).
794 */
795 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400796 state.critical |=
797 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (tz->trips.hot.flags.valid)
799 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
800 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400801 state.passive |=
802 (tz->temperature >= tz->trips.passive.temperature);
803 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400805 state.active |=
806 (tz->temperature >=
807 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /*
810 * Invoke Policy
811 * -------------
812 * Separated from the above check to allow individual policy to
813 * determine when to exit a given state.
814 */
815 if (state.critical)
816 acpi_thermal_critical(tz);
817 if (state.hot)
818 acpi_thermal_hot(tz);
819 if (state.passive)
820 acpi_thermal_passive(tz);
821 if (state.active)
822 acpi_thermal_active(tz);
823
824 /*
825 * Calculate State
826 * ---------------
827 * Again, separated from the above two to allow independent policy
828 * decisions.
829 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400830 tz->state.critical = tz->trips.critical.flags.enabled;
831 tz->state.hot = tz->trips.hot.flags.enabled;
832 tz->state.passive = tz->trips.passive.flags.enabled;
833 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400834 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400835 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 /*
838 * Calculate Sleep Time
839 * --------------------
840 * If we're in the passive state, use _TSP's value. Otherwise
841 * use the default polling frequency (e.g. _TZP). If no polling
842 * frequency is specified then we'll wait forever (at least until
843 * a thermal event occurs). Note that _TSP and _TZD values are
844 * given in 1/10th seconds (we must covert to milliseconds).
845 */
Len Brown21bc42a2007-09-04 12:49:22 -0400846 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400848 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
849 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400851 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Len Brown4be44fc2005-08-05 00:44:28 -0400854 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
855 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 /*
858 * Schedule Next Poll
859 * ------------------
860 */
861 if (!sleep_time) {
862 if (timer_pending(&(tz->timer)))
863 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400864 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400866 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400868 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400870 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 add_timer(&(tz->timer));
872 }
873 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400874 unlock:
875 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Zhang Rui3f655ef2008-01-17 15:51:11 +0800878/* sys I/F for generic thermal sysfs support */
879static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
880{
881 struct acpi_thermal *tz = thermal->devdata;
882
883 if (!tz)
884 return -EINVAL;
885
886 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(tz->temperature));
887}
888
889static const char enabled[] = "kernel";
890static const char disabled[] = "user";
891static int thermal_get_mode(struct thermal_zone_device *thermal,
892 char *buf)
893{
894 struct acpi_thermal *tz = thermal->devdata;
895
896 if (!tz)
897 return -EINVAL;
898
899 return sprintf(buf, "%s\n", tz->tz_enabled ?
900 enabled : disabled);
901}
902
903static int thermal_set_mode(struct thermal_zone_device *thermal,
904 const char *buf)
905{
906 struct acpi_thermal *tz = thermal->devdata;
907 int enable;
908
909 if (!tz)
910 return -EINVAL;
911
912 /*
913 * enable/disable thermal management from ACPI thermal driver
914 */
915 if (!strncmp(buf, enabled, sizeof enabled - 1))
916 enable = 1;
917 else if (!strncmp(buf, disabled, sizeof disabled - 1))
918 enable = 0;
919 else
920 return -EINVAL;
921
922 if (enable != tz->tz_enabled) {
923 tz->tz_enabled = enable;
924 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
925 "%s ACPI thermal control\n",
926 tz->tz_enabled ? enabled : disabled));
927 acpi_thermal_check(tz);
928 }
929 return 0;
930}
931
932static int thermal_get_trip_type(struct thermal_zone_device *thermal,
933 int trip, char *buf)
934{
935 struct acpi_thermal *tz = thermal->devdata;
936 int i;
937
938 if (!tz || trip < 0)
939 return -EINVAL;
940
941 if (tz->trips.critical.flags.valid) {
942 if (!trip)
943 return sprintf(buf, "critical\n");
944 trip--;
945 }
946
947 if (tz->trips.hot.flags.valid) {
948 if (!trip)
949 return sprintf(buf, "hot\n");
950 trip--;
951 }
952
953 if (tz->trips.passive.flags.valid) {
954 if (!trip)
955 return sprintf(buf, "passive\n");
956 trip--;
957 }
958
959 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
960 tz->trips.active[i].flags.valid; i++) {
961 if (!trip)
962 return sprintf(buf, "active%d\n", i);
963 trip--;
964 }
965
966 return -EINVAL;
967}
968
969static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
970 int trip, char *buf)
971{
972 struct acpi_thermal *tz = thermal->devdata;
973 int i;
974
975 if (!tz || trip < 0)
976 return -EINVAL;
977
978 if (tz->trips.critical.flags.valid) {
979 if (!trip)
980 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
981 tz->trips.critical.temperature));
982 trip--;
983 }
984
985 if (tz->trips.hot.flags.valid) {
986 if (!trip)
987 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
988 tz->trips.hot.temperature));
989 trip--;
990 }
991
992 if (tz->trips.passive.flags.valid) {
993 if (!trip)
994 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
995 tz->trips.passive.temperature));
996 trip--;
997 }
998
999 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1000 tz->trips.active[i].flags.valid; i++) {
1001 if (!trip)
1002 return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(
1003 tz->trips.active[i].temperature));
1004 trip--;
1005 }
1006
1007 return -EINVAL;
1008}
1009
1010typedef int (*cb)(struct thermal_zone_device *, int,
1011 struct thermal_cooling_device *);
1012static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1013 struct thermal_cooling_device *cdev,
1014 cb action)
1015{
1016 struct acpi_device *device = cdev->devdata;
1017 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001018 struct acpi_device *dev;
1019 acpi_status status;
1020 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001021 int i;
1022 int j;
1023 int trip = -1;
1024 int result = 0;
1025
1026 if (tz->trips.critical.flags.valid)
1027 trip++;
1028
1029 if (tz->trips.hot.flags.valid)
1030 trip++;
1031
1032 if (tz->trips.passive.flags.valid) {
1033 trip++;
1034 for (i = 0; i < tz->trips.passive.devices.count;
1035 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001036 handle = tz->trips.passive.devices.handles[i];
1037 status = acpi_bus_get_device(handle, &dev);
1038 if (ACPI_SUCCESS(status) && (dev == device)) {
1039 result = action(thermal, trip, cdev);
1040 if (result)
1041 goto failed;
1042 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001043 }
1044 }
1045
1046 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1047 if (!tz->trips.active[i].flags.valid)
1048 break;
1049 trip++;
1050 for (j = 0;
1051 j < tz->trips.active[i].devices.count;
1052 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001053 handle = tz->trips.active[i].devices.handles[j];
1054 status = acpi_bus_get_device(handle, &dev);
1055 if (ACPI_SUCCESS(status) && (dev == device)) {
1056 result = action(thermal, trip, cdev);
1057 if (result)
1058 goto failed;
1059 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001060 }
1061 }
1062
1063 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001064 handle = tz->devices.handles[i];
1065 status = acpi_bus_get_device(handle, &dev);
1066 if (ACPI_SUCCESS(status) && (dev == device)) {
1067 result = action(thermal, -1, cdev);
1068 if (result)
1069 goto failed;
1070 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001071 }
1072
1073failed:
1074 return result;
1075}
1076
1077static int
1078acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1079 struct thermal_cooling_device *cdev)
1080{
1081 return acpi_thermal_cooling_device_cb(thermal, cdev,
1082 thermal_zone_bind_cooling_device);
1083}
1084
1085static int
1086acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1087 struct thermal_cooling_device *cdev)
1088{
1089 return acpi_thermal_cooling_device_cb(thermal, cdev,
1090 thermal_zone_unbind_cooling_device);
1091}
1092
1093static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1094 .bind = acpi_thermal_bind_cooling_device,
1095 .unbind = acpi_thermal_unbind_cooling_device,
1096 .get_temp = thermal_get_temp,
1097 .get_mode = thermal_get_mode,
1098 .set_mode = thermal_set_mode,
1099 .get_trip_type = thermal_get_trip_type,
1100 .get_trip_temp = thermal_get_trip_temp,
1101};
1102
1103static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1104{
1105 int trips = 0;
1106 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001107 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001108 int i;
1109
1110 if (tz->trips.critical.flags.valid)
1111 trips++;
1112
1113 if (tz->trips.hot.flags.valid)
1114 trips++;
1115
1116 if (tz->trips.passive.flags.valid)
1117 trips++;
1118
1119 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1120 tz->trips.active[i].flags.valid; i++, trips++);
1121 tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone",
1122 trips, tz, &acpi_thermal_zone_ops);
1123 if (!tz->thermal_zone)
1124 return -ENODEV;
1125
1126 result = sysfs_create_link(&tz->device->dev.kobj,
1127 &tz->thermal_zone->device.kobj, "thermal_zone");
1128 if (result)
1129 return result;
1130
1131 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1132 &tz->device->dev.kobj, "device");
1133 if (result)
1134 return result;
1135
Zhang Rui20733932008-01-17 15:51:21 +08001136 status = acpi_attach_data(tz->device->handle,
1137 acpi_bus_private_data_handler,
1138 tz->thermal_zone);
1139 if (ACPI_FAILURE(status)) {
1140 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1141 "Error attaching device data\n"));
1142 return -ENODEV;
1143 }
1144
Zhang Rui3f655ef2008-01-17 15:51:11 +08001145 tz->tz_enabled = 1;
1146
1147 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1148 tz->device->dev.bus_id, tz->thermal_zone->id);
1149 return 0;
1150}
1151
1152static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1153{
1154 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1155 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1156 thermal_zone_device_unregister(tz->thermal_zone);
1157 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001158 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001159}
1160
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/* --------------------------------------------------------------------------
1163 FS Interface (/proc)
1164 -------------------------------------------------------------------------- */
1165
Len Brown4be44fc2005-08-05 00:44:28 -04001166static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1169{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001170 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 if (!tz)
1174 goto end;
1175
1176 seq_puts(seq, "state: ");
1177
Len Brown4be44fc2005-08-05 00:44:28 -04001178 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1179 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 seq_puts(seq, "ok\n");
1181 else {
1182 if (tz->state.critical)
1183 seq_puts(seq, "critical ");
1184 if (tz->state.hot)
1185 seq_puts(seq, "hot ");
1186 if (tz->state.passive)
1187 seq_puts(seq, "passive ");
1188 if (tz->state.active)
1189 seq_printf(seq, "active[%d]", tz->state.active_index);
1190 seq_puts(seq, "\n");
1191 }
1192
Len Brown4be44fc2005-08-05 00:44:28 -04001193 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1198{
1199 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1203{
Len Brown4be44fc2005-08-05 00:44:28 -04001204 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001205 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 if (!tz)
1209 goto end;
1210
1211 result = acpi_thermal_get_temperature(tz);
1212 if (result)
1213 goto end;
1214
Len Brown4be44fc2005-08-05 00:44:28 -04001215 seq_printf(seq, "temperature: %ld C\n",
1216 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Len Brown4be44fc2005-08-05 00:44:28 -04001218 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1223{
1224 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1225}
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1228{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001229 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001230 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001231 acpi_status status;
1232
Len Brown4be44fc2005-08-05 00:44:28 -04001233 int i = 0;
1234 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (!tz)
1238 goto end;
1239
1240 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001241 seq_printf(seq, "critical (S5): %ld C%s",
1242 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1243 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001246 seq_printf(seq, "hot (S4): %ld C%s",
1247 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1248 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001251 seq_printf(seq,
1252 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1253 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1254 tz->trips.passive.tc1, tz->trips.passive.tc2,
1255 tz->trips.passive.tsp);
1256 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001257 status = acpi_bus_get_device(tz->trips.passive.devices.
1258 handles[j], &device);
1259 seq_printf(seq, "%4.4s ", status ? "" :
1260 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262 seq_puts(seq, "\n");
1263 }
1264
1265 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1266 if (!(tz->trips.active[i].flags.valid))
1267 break;
1268 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001269 i,
1270 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001271 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001272 status = acpi_bus_get_device(tz->trips.active[i].
1273 devices.handles[j],
1274 &device);
1275 seq_printf(seq, "%4.4s ", status ? "" :
1276 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 seq_puts(seq, "\n");
1279 }
1280
Len Brown4be44fc2005-08-05 00:44:28 -04001281 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1286{
1287 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1288}
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1291{
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
Len Browneaca2d32007-04-30 23:27:43 -04001298 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 else
Len Browneaca2d32007-04-30 23:27:43 -04001301 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Len Brown4be44fc2005-08-05 00:44:28 -04001303 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
1307static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1308{
1309 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001310 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001314acpi_thermal_write_cooling_mode(struct file *file,
1315 const char __user * buffer,
1316 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001318 struct seq_file *m = file->private_data;
1319 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001320 int result = 0;
1321 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001328 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001331 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001334
1335 result = acpi_thermal_set_cooling_mode(tz,
1336 simple_strtoul(mode_string, NULL,
1337 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001339 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 acpi_thermal_check(tz);
1342
Patrick Mocheld550d982006-06-27 00:41:40 -04001343 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1347{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001348 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 if (!tz)
1352 goto end;
1353
1354 if (!tz->polling_frequency) {
1355 seq_puts(seq, "<polling disabled>\n");
1356 goto end;
1357 }
1358
1359 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001360 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Len Brown4be44fc2005-08-05 00:44:28 -04001362 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1367{
1368 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001369 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001373acpi_thermal_write_polling(struct file *file,
1374 const char __user * buffer,
1375 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001377 struct seq_file *m = file->private_data;
1378 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001379 int result = 0;
1380 char polling_string[12] = { '\0' };
1381 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001385 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001388 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 polling_string[count] = '\0';
1391
1392 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 result = acpi_thermal_set_polling(tz, seconds);
1395 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001396 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 acpi_thermal_check(tz);
1399
Patrick Mocheld550d982006-06-27 00:41:40 -04001400 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
Len Brown4be44fc2005-08-05 00:44:28 -04001403static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Len Brown4be44fc2005-08-05 00:44:28 -04001405 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 if (!acpi_device_dir(device)) {
1409 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001410 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001412 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 acpi_device_dir(device)->owner = THIS_MODULE;
1414 }
1415
1416 /* 'state' [R] */
1417 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001418 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001420 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 else {
1422 entry->proc_fops = &acpi_thermal_state_fops;
1423 entry->data = acpi_driver_data(device);
1424 entry->owner = THIS_MODULE;
1425 }
1426
1427 /* 'temperature' [R] */
1428 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001429 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001431 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 else {
1433 entry->proc_fops = &acpi_thermal_temp_fops;
1434 entry->data = acpi_driver_data(device);
1435 entry->owner = THIS_MODULE;
1436 }
1437
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001438 /* 'trip_points' [R] */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001440 S_IRUGO,
Len Brown4be44fc2005-08-05 00:44:28 -04001441 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001443 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 else {
1445 entry->proc_fops = &acpi_thermal_trip_fops;
1446 entry->data = acpi_driver_data(device);
1447 entry->owner = THIS_MODULE;
1448 }
1449
1450 /* 'cooling_mode' [R/W] */
1451 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001452 S_IFREG | S_IRUGO | S_IWUSR,
1453 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001455 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 else {
1457 entry->proc_fops = &acpi_thermal_cooling_fops;
1458 entry->data = acpi_driver_data(device);
1459 entry->owner = THIS_MODULE;
1460 }
1461
1462 /* 'polling_frequency' [R/W] */
1463 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001464 S_IFREG | S_IRUGO | S_IWUSR,
1465 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001467 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 else {
1469 entry->proc_fops = &acpi_thermal_polling_fops;
1470 entry->data = acpi_driver_data(device);
1471 entry->owner = THIS_MODULE;
1472 }
1473
Patrick Mocheld550d982006-06-27 00:41:40 -04001474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Len Brown4be44fc2005-08-05 00:44:28 -04001477static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 if (acpi_device_dir(device)) {
1481 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1482 acpi_device_dir(device));
1483 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1484 acpi_device_dir(device));
1485 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1486 acpi_device_dir(device));
1487 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1488 acpi_device_dir(device));
1489 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1490 acpi_device_dir(device));
1491 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1492 acpi_device_dir(device) = NULL;
1493 }
1494
Patrick Mocheld550d982006-06-27 00:41:40 -04001495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/* --------------------------------------------------------------------------
1499 Driver Interface
1500 -------------------------------------------------------------------------- */
1501
Len Brown4be44fc2005-08-05 00:44:28 -04001502static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001504 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001505 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001509 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001511 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 switch (event) {
1514 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1515 acpi_thermal_check(tz);
1516 break;
1517 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001518 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001520 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001521 acpi_bus_generate_netlink_event(device->pnp.device_class,
1522 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 break;
1524 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001525 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1526 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001527 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001528 acpi_bus_generate_netlink_event(device->pnp.device_class,
1529 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 break;
1531 default:
1532 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001533 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 break;
1535 }
1536
Patrick Mocheld550d982006-06-27 00:41:40 -04001537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Len Brown4be44fc2005-08-05 00:44:28 -04001540static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Len Brown4be44fc2005-08-05 00:44:28 -04001542 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001546 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 /* Get temperature [_TMP] (required) */
1549 result = acpi_thermal_get_temperature(tz);
1550 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001551 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /* Get trip points [_CRT, _PSV, etc.] (required) */
1554 result = acpi_thermal_get_trip_points(tz);
1555 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001556 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 /* Set the cooling mode [_SCP] to active cooling (default) */
1559 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001560 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /* Get default polling frequency [_TZP] (optional) */
1564 if (tzp)
1565 tz->polling_frequency = tzp;
1566 else
1567 acpi_thermal_get_polling_frequency(tz);
1568
Patrick Mocheld550d982006-06-27 00:41:40 -04001569 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
Len Brown4be44fc2005-08-05 00:44:28 -04001572static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Len Brown4be44fc2005-08-05 00:44:28 -04001574 int result = 0;
1575 acpi_status status = AE_OK;
1576 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001580 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Burman Yan36bcbec2006-12-19 12:56:11 -08001582 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001584 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001586 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 strcpy(tz->name, device->pnp.bus_id);
1588 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1589 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1590 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001591 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001592
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 result = acpi_thermal_get_info(tz);
1595 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001596 goto free_memory;
1597
1598 result = acpi_thermal_register_thermal_zone(tz);
1599 if (result)
1600 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 result = acpi_thermal_add_fs(device);
1603 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001604 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 init_timer(&tz->timer);
1607
1608 acpi_thermal_check(tz);
1609
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001610 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001611 ACPI_DEVICE_NOTIFY,
1612 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001615 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617
1618 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001619 acpi_device_name(device), acpi_device_bid(device),
1620 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001621 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Zhang Rui3f655ef2008-01-17 15:51:11 +08001623remove_fs:
1624 acpi_thermal_remove_fs(device);
1625unregister_thermal_zone:
1626 thermal_zone_device_unregister(tz->thermal_zone);
1627free_memory:
1628 kfree(tz);
1629end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001630 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
Len Brown4be44fc2005-08-05 00:44:28 -04001633static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Len Brown4be44fc2005-08-05 00:44:28 -04001635 acpi_status status = AE_OK;
1636 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001640 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001642 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 /* avoid timer adding new defer task */
1645 tz->zombie = 1;
1646 /* wait for running timer (on other CPUs) finish */
1647 del_timer_sync(&(tz->timer));
1648 /* synchronize deferred task */
1649 acpi_os_wait_events_complete(NULL);
1650 /* deferred task may reinsert timer */
1651 del_timer_sync(&(tz->timer));
1652
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001653 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001654 ACPI_DEVICE_NOTIFY,
1655 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001658 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 tz->trips.passive.flags.enabled = 0;
1660 acpi_thermal_passive(tz);
1661 }
1662 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001663 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 tz->trips.active[0].flags.enabled = 0;
1665 acpi_thermal_active(tz);
1666 }
1667
1668 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001669 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001670 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001672 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001675static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001676{
1677 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001678 int i, j, power_state, result;
1679
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001680
1681 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001682 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001683
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001684 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001685
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001686 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001687 if (!(&tz->trips.active[i]))
1688 break;
1689 if (!tz->trips.active[i].flags.valid)
1690 break;
1691 tz->trips.active[i].flags.enabled = 1;
1692 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1693 result = acpi_bus_get_power(tz->trips.active[i].devices.
1694 handles[j], &power_state);
1695 if (result || (power_state != ACPI_STATE_D0)) {
1696 tz->trips.active[i].flags.enabled = 0;
1697 break;
1698 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001699 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001700 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001701 }
1702
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001703 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001704
1705 return AE_OK;
1706}
1707
Len Brown0b5bfa12007-08-12 00:13:02 -04001708#ifdef CONFIG_DMI
Jeff Garzik18552562007-10-03 15:15:40 -04001709static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001710
1711 if (act == 0) {
1712 printk(KERN_NOTICE "ACPI: %s detected: "
1713 "disabling all active thermal trip points\n", d->ident);
1714 act = -1;
1715 }
1716 return 0;
1717}
Jeff Garzik18552562007-10-03 15:15:40 -04001718static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001719
1720 printk(KERN_NOTICE "ACPI: %s detected: "
1721 "disabling all critical thermal trip point actions.\n", d->ident);
1722 nocrt = 1;
1723 return 0;
1724}
Jeff Garzik18552562007-10-03 15:15:40 -04001725static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001726
1727 if (tzp == 0) {
1728 printk(KERN_NOTICE "ACPI: %s detected: "
1729 "enabling thermal zone polling\n", d->ident);
1730 tzp = 300; /* 300 dS = 30 Seconds */
1731 }
1732 return 0;
1733}
Jeff Garzik18552562007-10-03 15:15:40 -04001734static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001735
1736 if (psv == 0) {
1737 printk(KERN_NOTICE "ACPI: %s detected: "
1738 "disabling all passive thermal trip points\n", d->ident);
1739 psv = -1;
1740 }
1741 return 0;
1742}
1743
1744static struct dmi_system_id thermal_dmi_table[] __initdata = {
1745 /*
1746 * Award BIOS on this AOpen makes thermal control almost worthless.
1747 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1748 */
1749 {
1750 .callback = thermal_act,
1751 .ident = "AOpen i915GMm-HFS",
1752 .matches = {
1753 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1754 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1755 },
1756 },
1757 {
1758 .callback = thermal_psv,
1759 .ident = "AOpen i915GMm-HFS",
1760 .matches = {
1761 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1762 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1763 },
1764 },
1765 {
1766 .callback = thermal_tzp,
1767 .ident = "AOpen i915GMm-HFS",
1768 .matches = {
1769 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1770 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1771 },
1772 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001773 {
1774 .callback = thermal_nocrt,
1775 .ident = "Gigabyte GA-7ZX",
1776 .matches = {
1777 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1778 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1779 },
1780 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001781 {}
1782};
1783#endif /* CONFIG_DMI */
1784
Len Brown4be44fc2005-08-05 00:44:28 -04001785static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Len Brown4be44fc2005-08-05 00:44:28 -04001787 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Len Brown0b5bfa12007-08-12 00:13:02 -04001789 dmi_check_system(thermal_dmi_table);
1790
Len Brown72b33ef2007-08-12 00:12:17 -04001791 if (off) {
1792 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1793 return -ENODEV;
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1796 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001797 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 acpi_thermal_dir->owner = THIS_MODULE;
1799
1800 result = acpi_bus_register_driver(&acpi_thermal_driver);
1801 if (result < 0) {
1802 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001803 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805
Patrick Mocheld550d982006-06-27 00:41:40 -04001806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
Len Brown4be44fc2005-08-05 00:44:28 -04001809static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 acpi_bus_unregister_driver(&acpi_thermal_driver);
1813
1814 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1815
Patrick Mocheld550d982006-06-27 00:41:40 -04001816 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819module_init(acpi_thermal_init);
1820module_exit(acpi_thermal_exit);