blob: 1bcecc7dd2cab63abd3f06e5d3750694a4fe95e6 [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{
Zhang Rui223630f2007-12-06 23:36:35 -0500542 if (!tz || !tz->trips.critical.flags.valid)
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 Brown14e04fb2007-08-23 15:20:26 -0400551 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400552 tz->trips.critical.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800553 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
554 tz->device->dev.bus_id,
555 ACPI_THERMAL_NOTIFY_CRITICAL,
556 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Zhang Rui223630f2007-12-06 23:36:35 -0500558 /* take no action if nocrt is set */
559 if(!nocrt) {
560 printk(KERN_EMERG
561 "Critical temperature reached (%ld C), shutting down.\n",
562 KELVIN_TO_CELSIUS(tz->temperature));
563 orderly_poweroff(true);
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Patrick Mocheld550d982006-06-27 00:41:40 -0400566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Len Brown4be44fc2005-08-05 00:44:28 -0400569static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Zhang Rui223630f2007-12-06 23:36:35 -0500571 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400575 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400577 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 tz->trips.hot.flags.enabled = 0;
579
Len Brown14e04fb2007-08-23 15:20:26 -0400580 acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400581 tz->trips.hot.flags.enabled);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800582 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
583 tz->device->dev.bus_id,
584 ACPI_THERMAL_NOTIFY_HOT,
585 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Zhang Rui223630f2007-12-06 23:36:35 -0500587 /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400592static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400594 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400596 int trend = 0;
597 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 passive = &(tz->trips.passive);
604
605 /*
606 * Above Trip?
607 * -----------
608 * Calculate the thermal trend (using the passive cooling equation)
609 * and modify the performance limit for all passive cooling devices
610 * accordingly. Note that we assume symmetry.
611 */
612 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400613 trend =
614 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
615 (passive->tc2 * (tz->temperature - passive->temperature));
616 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
617 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
618 trend, passive->tc1, tz->temperature,
619 tz->last_temperature, passive->tc2,
620 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400621 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Heating up? */
623 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400624 for (i = 0; i < passive->devices.count; i++)
625 acpi_processor_set_thermal_limit(passive->
626 devices.
627 handles[i],
628 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400630 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400631 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400632 /*
633 * assume that we are on highest
634 * freq/lowest thrott and can leave
635 * passive mode, even in error case
636 */
637 if (!acpi_processor_set_thermal_limit
638 (passive->devices.handles[i],
639 ACPI_PROCESSOR_LIMIT_DECREMENT))
640 result = 0;
641 /*
642 * Leave cooling mode, even if the temp might
643 * higher than trip point This is because some
644 * machines might have long thermal polling
645 * frequencies (tsp) defined. We will fall back
646 * into passive mode in next cycle (probably quicker)
647 */
648 if (result) {
649 passive->flags.enabled = 0;
650 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
651 "Disabling passive cooling, still above threshold,"
652 " but we are cooling down\n"));
653 }
654 }
655 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 /*
659 * Below Trip?
660 * -----------
661 * Implement passive cooling hysteresis to slowly increase performance
662 * and avoid thrashing around the passive trip point. Note that we
663 * assume symmetry.
664 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400665 if (!passive->flags.enabled)
666 return;
667 for (i = 0; i < passive->devices.count; i++)
668 if (!acpi_processor_set_thermal_limit
669 (passive->devices.handles[i],
670 ACPI_PROCESSOR_LIMIT_DECREMENT))
671 result = 0;
672 if (result) {
673 passive->flags.enabled = 0;
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
675 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400679static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Len Brown4be44fc2005-08-05 00:44:28 -0400681 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400683 int i = 0;
684 int j = 0;
685 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Len Brown4be44fc2005-08-05 00:44:28 -0400691 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 active = &(tz->trips.active[i]);
693 if (!active || !active->flags.valid)
694 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400696 /*
697 * Above Threshold?
698 * ----------------
699 * If not already enabled, turn ON all cooling devices
700 * associated with this active threshold.
701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400703 tz->state.active_index = i;
704 maxtemp = active->temperature;
705 if (active->flags.enabled)
706 continue;
707 for (j = 0; j < active->devices.count; j++) {
708 result =
709 acpi_bus_set_power(active->devices.
710 handles[j],
711 ACPI_STATE_D0);
712 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400713 printk(KERN_WARNING PREFIX
714 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400715 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400716 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400717 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400719 active->flags.enabled = 1;
720 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
721 "Cooling device [%p] now 'on'\n",
722 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400724 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400726 if (!active->flags.enabled)
727 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /*
729 * Below Threshold?
730 * ----------------
731 * Turn OFF all cooling devices associated with this
732 * threshold.
733 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400734 for (j = 0; j < active->devices.count; j++) {
735 result = acpi_bus_set_power(active->devices.handles[j],
736 ACPI_STATE_D3);
737 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400738 printk(KERN_WARNING PREFIX
739 "Unable to turn cooling device [%p] 'off'\n",
740 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400741 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400743 active->flags.enabled = 0;
744 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
745 "Cooling device [%p] now 'off'\n",
746 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Len Brown4be44fc2005-08-05 00:44:28 -0400751static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Len Brown4be44fc2005-08-05 00:44:28 -0400753static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct acpi_thermal *tz = (struct acpi_thermal *)data;
756 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400757 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Len Brown4be44fc2005-08-05 00:44:28 -0400762 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200763 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400764 unsigned long sleep_time = 0;
Len Brown21bc42a2007-09-04 12:49:22 -0400765 unsigned long timeout_jiffies = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400766 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct acpi_thermal_state state;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400771 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400772 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400775 /* Check if someone else is already running */
776 if (!mutex_trylock(&tz->lock))
777 return;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 state = tz->state;
780
781 result = acpi_thermal_get_temperature(tz);
782 if (result)
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400783 goto unlock;
Len Brown4be44fc2005-08-05 00:44:28 -0400784
Zhang Rui3f655ef2008-01-17 15:51:11 +0800785 if (!tz->tz_enabled)
786 goto unlock;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * Check Trip Points
792 * -----------------
793 * Compare the current temperature to the trip point values to see
794 * if we've entered one of the thermal policy states. Note that
795 * this function determines when a state is entered, but the
796 * individual policy decides when it is exited (e.g. hysteresis).
797 */
798 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400799 state.critical |=
800 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (tz->trips.hot.flags.valid)
802 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
803 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400804 state.passive |=
805 (tz->temperature >= tz->trips.passive.temperature);
806 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400808 state.active |=
809 (tz->temperature >=
810 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /*
813 * Invoke Policy
814 * -------------
815 * Separated from the above check to allow individual policy to
816 * determine when to exit a given state.
817 */
818 if (state.critical)
819 acpi_thermal_critical(tz);
820 if (state.hot)
821 acpi_thermal_hot(tz);
822 if (state.passive)
823 acpi_thermal_passive(tz);
824 if (state.active)
825 acpi_thermal_active(tz);
826
827 /*
828 * Calculate State
829 * ---------------
830 * Again, separated from the above two to allow independent policy
831 * decisions.
832 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400833 tz->state.critical = tz->trips.critical.flags.enabled;
834 tz->state.hot = tz->trips.hot.flags.enabled;
835 tz->state.passive = tz->trips.passive.flags.enabled;
836 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400837 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400838 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
841 * Calculate Sleep Time
842 * --------------------
843 * If we're in the passive state, use _TSP's value. Otherwise
844 * use the default polling frequency (e.g. _TZP). If no polling
845 * frequency is specified then we'll wait forever (at least until
846 * a thermal event occurs). Note that _TSP and _TZD values are
847 * given in 1/10th seconds (we must covert to milliseconds).
848 */
Len Brown21bc42a2007-09-04 12:49:22 -0400849 if (tz->state.passive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 sleep_time = tz->trips.passive.tsp * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400851 timeout_jiffies = jiffies + (HZ * sleep_time) / 1000;
852 } else if (tz->polling_frequency > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 sleep_time = tz->polling_frequency * 100;
Len Brown21bc42a2007-09-04 12:49:22 -0400854 timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000);
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Len Brown4be44fc2005-08-05 00:44:28 -0400857 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
858 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /*
861 * Schedule Next Poll
862 * ------------------
863 */
864 if (!sleep_time) {
865 if (timer_pending(&(tz->timer)))
866 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400867 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (timer_pending(&(tz->timer)))
Len Brown21bc42a2007-09-04 12:49:22 -0400869 mod_timer(&(tz->timer), timeout_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400871 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 tz->timer.function = acpi_thermal_run;
Len Brown21bc42a2007-09-04 12:49:22 -0400873 tz->timer.expires = timeout_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 add_timer(&(tz->timer));
875 }
876 }
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400877 unlock:
878 mutex_unlock(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Zhang Rui3f655ef2008-01-17 15:51:11 +0800881/* sys I/F for generic thermal sysfs support */
Zhang, Rui5e012762008-02-28 07:51:30 +0800882#define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200)
883
Zhang Rui3f655ef2008-01-17 15:51:11 +0800884static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf)
885{
886 struct acpi_thermal *tz = thermal->devdata;
887
888 if (!tz)
889 return -EINVAL;
890
Zhang, Rui5e012762008-02-28 07:51:30 +0800891 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +0800892}
893
894static const char enabled[] = "kernel";
895static const char disabled[] = "user";
896static int thermal_get_mode(struct thermal_zone_device *thermal,
897 char *buf)
898{
899 struct acpi_thermal *tz = thermal->devdata;
900
901 if (!tz)
902 return -EINVAL;
903
904 return sprintf(buf, "%s\n", tz->tz_enabled ?
905 enabled : disabled);
906}
907
908static int thermal_set_mode(struct thermal_zone_device *thermal,
909 const char *buf)
910{
911 struct acpi_thermal *tz = thermal->devdata;
912 int enable;
913
914 if (!tz)
915 return -EINVAL;
916
917 /*
918 * enable/disable thermal management from ACPI thermal driver
919 */
920 if (!strncmp(buf, enabled, sizeof enabled - 1))
921 enable = 1;
922 else if (!strncmp(buf, disabled, sizeof disabled - 1))
923 enable = 0;
924 else
925 return -EINVAL;
926
927 if (enable != tz->tz_enabled) {
928 tz->tz_enabled = enable;
929 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
930 "%s ACPI thermal control\n",
931 tz->tz_enabled ? enabled : disabled));
932 acpi_thermal_check(tz);
933 }
934 return 0;
935}
936
937static int thermal_get_trip_type(struct thermal_zone_device *thermal,
938 int trip, char *buf)
939{
940 struct acpi_thermal *tz = thermal->devdata;
941 int i;
942
943 if (!tz || trip < 0)
944 return -EINVAL;
945
946 if (tz->trips.critical.flags.valid) {
947 if (!trip)
948 return sprintf(buf, "critical\n");
949 trip--;
950 }
951
952 if (tz->trips.hot.flags.valid) {
953 if (!trip)
954 return sprintf(buf, "hot\n");
955 trip--;
956 }
957
958 if (tz->trips.passive.flags.valid) {
959 if (!trip)
960 return sprintf(buf, "passive\n");
961 trip--;
962 }
963
964 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
965 tz->trips.active[i].flags.valid; i++) {
966 if (!trip)
967 return sprintf(buf, "active%d\n", i);
968 trip--;
969 }
970
971 return -EINVAL;
972}
973
974static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
975 int trip, char *buf)
976{
977 struct acpi_thermal *tz = thermal->devdata;
978 int i;
979
980 if (!tz || trip < 0)
981 return -EINVAL;
982
983 if (tz->trips.critical.flags.valid) {
984 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +0800985 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +0800986 tz->trips.critical.temperature));
987 trip--;
988 }
989
990 if (tz->trips.hot.flags.valid) {
991 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +0800992 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +0800993 tz->trips.hot.temperature));
994 trip--;
995 }
996
997 if (tz->trips.passive.flags.valid) {
998 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +0800999 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001000 tz->trips.passive.temperature));
1001 trip--;
1002 }
1003
1004 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1005 tz->trips.active[i].flags.valid; i++) {
1006 if (!trip)
Zhang, Rui5e012762008-02-28 07:51:30 +08001007 return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(
Zhang Rui3f655ef2008-01-17 15:51:11 +08001008 tz->trips.active[i].temperature));
1009 trip--;
1010 }
1011
1012 return -EINVAL;
1013}
1014
1015typedef int (*cb)(struct thermal_zone_device *, int,
1016 struct thermal_cooling_device *);
1017static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
1018 struct thermal_cooling_device *cdev,
1019 cb action)
1020{
1021 struct acpi_device *device = cdev->devdata;
1022 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +08001023 struct acpi_device *dev;
1024 acpi_status status;
1025 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001026 int i;
1027 int j;
1028 int trip = -1;
1029 int result = 0;
1030
1031 if (tz->trips.critical.flags.valid)
1032 trip++;
1033
1034 if (tz->trips.hot.flags.valid)
1035 trip++;
1036
1037 if (tz->trips.passive.flags.valid) {
1038 trip++;
1039 for (i = 0; i < tz->trips.passive.devices.count;
1040 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001041 handle = tz->trips.passive.devices.handles[i];
1042 status = acpi_bus_get_device(handle, &dev);
1043 if (ACPI_SUCCESS(status) && (dev == device)) {
1044 result = action(thermal, trip, cdev);
1045 if (result)
1046 goto failed;
1047 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001048 }
1049 }
1050
1051 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1052 if (!tz->trips.active[i].flags.valid)
1053 break;
1054 trip++;
1055 for (j = 0;
1056 j < tz->trips.active[i].devices.count;
1057 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001058 handle = tz->trips.active[i].devices.handles[j];
1059 status = acpi_bus_get_device(handle, &dev);
1060 if (ACPI_SUCCESS(status) && (dev == device)) {
1061 result = action(thermal, trip, cdev);
1062 if (result)
1063 goto failed;
1064 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001065 }
1066 }
1067
1068 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +08001069 handle = tz->devices.handles[i];
1070 status = acpi_bus_get_device(handle, &dev);
1071 if (ACPI_SUCCESS(status) && (dev == device)) {
1072 result = action(thermal, -1, cdev);
1073 if (result)
1074 goto failed;
1075 }
Zhang Rui3f655ef2008-01-17 15:51:11 +08001076 }
1077
1078failed:
1079 return result;
1080}
1081
1082static int
1083acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
1084 struct thermal_cooling_device *cdev)
1085{
1086 return acpi_thermal_cooling_device_cb(thermal, cdev,
1087 thermal_zone_bind_cooling_device);
1088}
1089
1090static int
1091acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
1092 struct thermal_cooling_device *cdev)
1093{
1094 return acpi_thermal_cooling_device_cb(thermal, cdev,
1095 thermal_zone_unbind_cooling_device);
1096}
1097
1098static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
1099 .bind = acpi_thermal_bind_cooling_device,
1100 .unbind = acpi_thermal_unbind_cooling_device,
1101 .get_temp = thermal_get_temp,
1102 .get_mode = thermal_get_mode,
1103 .set_mode = thermal_set_mode,
1104 .get_trip_type = thermal_get_trip_type,
1105 .get_trip_temp = thermal_get_trip_temp,
1106};
1107
1108static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
1109{
1110 int trips = 0;
1111 int result;
Zhang Rui20733932008-01-17 15:51:21 +08001112 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001113 int i;
1114
1115 if (tz->trips.critical.flags.valid)
1116 trips++;
1117
1118 if (tz->trips.hot.flags.valid)
1119 trips++;
1120
1121 if (tz->trips.passive.flags.valid)
1122 trips++;
1123
1124 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
1125 tz->trips.active[i].flags.valid; i++, trips++);
1126 tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone",
1127 trips, tz, &acpi_thermal_zone_ops);
Krzysztof Heltbb070e42008-04-08 17:41:52 -07001128 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +08001129 return -ENODEV;
1130
1131 result = sysfs_create_link(&tz->device->dev.kobj,
1132 &tz->thermal_zone->device.kobj, "thermal_zone");
1133 if (result)
1134 return result;
1135
1136 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
1137 &tz->device->dev.kobj, "device");
1138 if (result)
1139 return result;
1140
Zhang Rui20733932008-01-17 15:51:21 +08001141 status = acpi_attach_data(tz->device->handle,
1142 acpi_bus_private_data_handler,
1143 tz->thermal_zone);
1144 if (ACPI_FAILURE(status)) {
1145 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1146 "Error attaching device data\n"));
1147 return -ENODEV;
1148 }
1149
Zhang Rui3f655ef2008-01-17 15:51:11 +08001150 tz->tz_enabled = 1;
1151
1152 printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n",
1153 tz->device->dev.bus_id, tz->thermal_zone->id);
1154 return 0;
1155}
1156
1157static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
1158{
1159 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
1160 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
1161 thermal_zone_device_unregister(tz->thermal_zone);
1162 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +08001163 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001164}
1165
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167/* --------------------------------------------------------------------------
1168 FS Interface (/proc)
1169 -------------------------------------------------------------------------- */
1170
Len Brown4be44fc2005-08-05 00:44:28 -04001171static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
1174{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001175 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 if (!tz)
1179 goto end;
1180
1181 seq_puts(seq, "state: ");
1182
Len Brown4be44fc2005-08-05 00:44:28 -04001183 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
1184 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 seq_puts(seq, "ok\n");
1186 else {
1187 if (tz->state.critical)
1188 seq_puts(seq, "critical ");
1189 if (tz->state.hot)
1190 seq_puts(seq, "hot ");
1191 if (tz->state.passive)
1192 seq_puts(seq, "passive ");
1193 if (tz->state.active)
1194 seq_printf(seq, "active[%d]", tz->state.active_index);
1195 seq_puts(seq, "\n");
1196 }
1197
Len Brown4be44fc2005-08-05 00:44:28 -04001198 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1203{
1204 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1205}
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1208{
Len Brown4be44fc2005-08-05 00:44:28 -04001209 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001210 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 if (!tz)
1214 goto end;
1215
1216 result = acpi_thermal_get_temperature(tz);
1217 if (result)
1218 goto end;
1219
Len Brown4be44fc2005-08-05 00:44:28 -04001220 seq_printf(seq, "temperature: %ld C\n",
1221 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Len Brown4be44fc2005-08-05 00:44:28 -04001223 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1228{
1229 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1230}
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1233{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001234 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001235 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001236 acpi_status status;
1237
Len Brown4be44fc2005-08-05 00:44:28 -04001238 int i = 0;
1239 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 if (!tz)
1243 goto end;
1244
1245 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001246 seq_printf(seq, "critical (S5): %ld C%s",
1247 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1248 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001251 seq_printf(seq, "hot (S4): %ld C%s",
1252 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1253 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001256 seq_printf(seq,
1257 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1258 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1259 tz->trips.passive.tc1, tz->trips.passive.tc2,
1260 tz->trips.passive.tsp);
1261 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001262 status = acpi_bus_get_device(tz->trips.passive.devices.
1263 handles[j], &device);
1264 seq_printf(seq, "%4.4s ", status ? "" :
1265 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267 seq_puts(seq, "\n");
1268 }
1269
1270 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1271 if (!(tz->trips.active[i].flags.valid))
1272 break;
1273 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001274 i,
1275 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001276 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001277 status = acpi_bus_get_device(tz->trips.active[i].
1278 devices.handles[j],
1279 &device);
1280 seq_printf(seq, "%4.4s ", status ? "" :
1281 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 seq_puts(seq, "\n");
1284 }
1285
Len Brown4be44fc2005-08-05 00:44:28 -04001286 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1291{
1292 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1296{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001297 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 if (!tz)
1301 goto end;
1302
Len Browneaca2d32007-04-30 23:27:43 -04001303 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 else
Len Browneaca2d32007-04-30 23:27:43 -04001306 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Len Brown4be44fc2005-08-05 00:44:28 -04001308 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001309 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
1312static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1313{
1314 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001315 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001319acpi_thermal_write_cooling_mode(struct file *file,
1320 const char __user * buffer,
1321 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001323 struct seq_file *m = file->private_data;
1324 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001325 int result = 0;
1326 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001330 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001333 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001336 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001339
1340 result = acpi_thermal_set_cooling_mode(tz,
1341 simple_strtoul(mode_string, NULL,
1342 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001344 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 acpi_thermal_check(tz);
1347
Patrick Mocheld550d982006-06-27 00:41:40 -04001348 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1352{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001353 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 if (!tz)
1357 goto end;
1358
1359 if (!tz->polling_frequency) {
1360 seq_puts(seq, "<polling disabled>\n");
1361 goto end;
1362 }
1363
1364 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001365 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Len Brown4be44fc2005-08-05 00:44:28 -04001367 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
1371static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1372{
1373 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001374 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001378acpi_thermal_write_polling(struct file *file,
1379 const char __user * buffer,
1380 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001382 struct seq_file *m = file->private_data;
1383 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001384 int result = 0;
1385 char polling_string[12] = { '\0' };
1386 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001390 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001393 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 polling_string[count] = '\0';
1396
1397 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 result = acpi_thermal_set_polling(tz, seconds);
1400 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001401 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 acpi_thermal_check(tz);
1404
Patrick Mocheld550d982006-06-27 00:41:40 -04001405 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Len Brown4be44fc2005-08-05 00:44:28 -04001408static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Len Brown4be44fc2005-08-05 00:44:28 -04001410 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 if (!acpi_device_dir(device)) {
1414 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001415 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001417 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 acpi_device_dir(device)->owner = THIS_MODULE;
1419 }
1420
1421 /* 'state' [R] */
1422 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001423 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001425 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 else {
1427 entry->proc_fops = &acpi_thermal_state_fops;
1428 entry->data = acpi_driver_data(device);
1429 entry->owner = THIS_MODULE;
1430 }
1431
1432 /* 'temperature' [R] */
1433 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001434 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001436 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 else {
1438 entry->proc_fops = &acpi_thermal_temp_fops;
1439 entry->data = acpi_driver_data(device);
1440 entry->owner = THIS_MODULE;
1441 }
1442
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001443 /* 'trip_points' [R] */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001445 S_IRUGO,
Len Brown4be44fc2005-08-05 00:44:28 -04001446 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001448 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 else {
1450 entry->proc_fops = &acpi_thermal_trip_fops;
1451 entry->data = acpi_driver_data(device);
1452 entry->owner = THIS_MODULE;
1453 }
1454
1455 /* 'cooling_mode' [R/W] */
1456 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001457 S_IFREG | S_IRUGO | S_IWUSR,
1458 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001460 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 else {
1462 entry->proc_fops = &acpi_thermal_cooling_fops;
1463 entry->data = acpi_driver_data(device);
1464 entry->owner = THIS_MODULE;
1465 }
1466
1467 /* 'polling_frequency' [R/W] */
1468 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001469 S_IFREG | S_IRUGO | S_IWUSR,
1470 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001472 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 else {
1474 entry->proc_fops = &acpi_thermal_polling_fops;
1475 entry->data = acpi_driver_data(device);
1476 entry->owner = THIS_MODULE;
1477 }
1478
Patrick Mocheld550d982006-06-27 00:41:40 -04001479 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Len Brown4be44fc2005-08-05 00:44:28 -04001482static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 if (acpi_device_dir(device)) {
1486 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1487 acpi_device_dir(device));
1488 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1489 acpi_device_dir(device));
1490 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1491 acpi_device_dir(device));
1492 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1493 acpi_device_dir(device));
1494 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1495 acpi_device_dir(device));
1496 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1497 acpi_device_dir(device) = NULL;
1498 }
1499
Patrick Mocheld550d982006-06-27 00:41:40 -04001500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503/* --------------------------------------------------------------------------
1504 Driver Interface
1505 -------------------------------------------------------------------------- */
1506
Len Brown4be44fc2005-08-05 00:44:28 -04001507static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001509 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001510 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001516 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 switch (event) {
1519 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1520 acpi_thermal_check(tz);
1521 break;
1522 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001523 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001525 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001526 acpi_bus_generate_netlink_event(device->pnp.device_class,
1527 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 break;
1529 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001530 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1531 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001532 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001533 acpi_bus_generate_netlink_event(device->pnp.device_class,
1534 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 break;
1536 default:
1537 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001538 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 break;
1540 }
1541
Patrick Mocheld550d982006-06-27 00:41:40 -04001542 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
Len Brown4be44fc2005-08-05 00:44:28 -04001545static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Len Brown4be44fc2005-08-05 00:44:28 -04001547 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001551 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /* Get temperature [_TMP] (required) */
1554 result = acpi_thermal_get_temperature(tz);
1555 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001556 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 /* Get trip points [_CRT, _PSV, etc.] (required) */
1559 result = acpi_thermal_get_trip_points(tz);
1560 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001561 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /* Set the cooling mode [_SCP] to active cooling (default) */
1564 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001565 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 /* Get default polling frequency [_TZP] (optional) */
1569 if (tzp)
1570 tz->polling_frequency = tzp;
1571 else
1572 acpi_thermal_get_polling_frequency(tz);
1573
Patrick Mocheld550d982006-06-27 00:41:40 -04001574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Len Brown4be44fc2005-08-05 00:44:28 -04001577static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Len Brown4be44fc2005-08-05 00:44:28 -04001579 int result = 0;
1580 acpi_status status = AE_OK;
1581 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001585 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Burman Yan36bcbec2006-12-19 12:56:11 -08001587 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001589 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001591 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 strcpy(tz->name, device->pnp.bus_id);
1593 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1594 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1595 acpi_driver_data(device) = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001596 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001597
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 result = acpi_thermal_get_info(tz);
1600 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001601 goto free_memory;
1602
1603 result = acpi_thermal_register_thermal_zone(tz);
1604 if (result)
1605 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 result = acpi_thermal_add_fs(device);
1608 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001609 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 init_timer(&tz->timer);
1612
1613 acpi_thermal_check(tz);
1614
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001615 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001616 ACPI_DEVICE_NOTIFY,
1617 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 result = -ENODEV;
Zhang Rui3f655ef2008-01-17 15:51:11 +08001620 goto remove_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622
1623 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001624 acpi_device_name(device), acpi_device_bid(device),
1625 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001626 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Zhang Rui3f655ef2008-01-17 15:51:11 +08001628remove_fs:
1629 acpi_thermal_remove_fs(device);
1630unregister_thermal_zone:
1631 thermal_zone_device_unregister(tz->thermal_zone);
1632free_memory:
1633 kfree(tz);
1634end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001635 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
Len Brown4be44fc2005-08-05 00:44:28 -04001638static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Len Brown4be44fc2005-08-05 00:44:28 -04001640 acpi_status status = AE_OK;
1641 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001645 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001647 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 /* avoid timer adding new defer task */
1650 tz->zombie = 1;
1651 /* wait for running timer (on other CPUs) finish */
1652 del_timer_sync(&(tz->timer));
1653 /* synchronize deferred task */
1654 acpi_os_wait_events_complete(NULL);
1655 /* deferred task may reinsert timer */
1656 del_timer_sync(&(tz->timer));
1657
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001658 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001659 ACPI_DEVICE_NOTIFY,
1660 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001663 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 tz->trips.passive.flags.enabled = 0;
1665 acpi_thermal_passive(tz);
1666 }
1667 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001668 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 tz->trips.active[0].flags.enabled = 0;
1670 acpi_thermal_active(tz);
1671 }
1672
1673 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001674 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001675 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001677 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001680static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001681{
1682 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001683 int i, j, power_state, result;
1684
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001685
1686 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001687 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001688
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001689 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001690
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001691 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001692 if (!(&tz->trips.active[i]))
1693 break;
1694 if (!tz->trips.active[i].flags.valid)
1695 break;
1696 tz->trips.active[i].flags.enabled = 1;
1697 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1698 result = acpi_bus_get_power(tz->trips.active[i].devices.
1699 handles[j], &power_state);
1700 if (result || (power_state != ACPI_STATE_D0)) {
1701 tz->trips.active[i].flags.enabled = 0;
1702 break;
1703 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001704 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001705 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001706 }
1707
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001708 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001709
1710 return AE_OK;
1711}
1712
Len Brown0b5bfa12007-08-12 00:13:02 -04001713#ifdef CONFIG_DMI
Jeff Garzik18552562007-10-03 15:15:40 -04001714static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001715
1716 if (act == 0) {
1717 printk(KERN_NOTICE "ACPI: %s detected: "
1718 "disabling all active thermal trip points\n", d->ident);
1719 act = -1;
1720 }
1721 return 0;
1722}
Jeff Garzik18552562007-10-03 15:15:40 -04001723static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001724
1725 printk(KERN_NOTICE "ACPI: %s detected: "
1726 "disabling all critical thermal trip point actions.\n", d->ident);
1727 nocrt = 1;
1728 return 0;
1729}
Jeff Garzik18552562007-10-03 15:15:40 -04001730static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001731
1732 if (tzp == 0) {
1733 printk(KERN_NOTICE "ACPI: %s detected: "
1734 "enabling thermal zone polling\n", d->ident);
1735 tzp = 300; /* 300 dS = 30 Seconds */
1736 }
1737 return 0;
1738}
Jeff Garzik18552562007-10-03 15:15:40 -04001739static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001740
1741 if (psv == 0) {
1742 printk(KERN_NOTICE "ACPI: %s detected: "
1743 "disabling all passive thermal trip points\n", d->ident);
1744 psv = -1;
1745 }
1746 return 0;
1747}
1748
1749static struct dmi_system_id thermal_dmi_table[] __initdata = {
1750 /*
1751 * Award BIOS on this AOpen makes thermal control almost worthless.
1752 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1753 */
1754 {
1755 .callback = thermal_act,
1756 .ident = "AOpen i915GMm-HFS",
1757 .matches = {
1758 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1759 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1760 },
1761 },
1762 {
1763 .callback = thermal_psv,
1764 .ident = "AOpen i915GMm-HFS",
1765 .matches = {
1766 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1767 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1768 },
1769 },
1770 {
1771 .callback = thermal_tzp,
1772 .ident = "AOpen i915GMm-HFS",
1773 .matches = {
1774 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1775 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1776 },
1777 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001778 {
1779 .callback = thermal_nocrt,
1780 .ident = "Gigabyte GA-7ZX",
1781 .matches = {
1782 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1783 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1784 },
1785 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001786 {}
1787};
1788#endif /* CONFIG_DMI */
1789
Len Brown4be44fc2005-08-05 00:44:28 -04001790static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Len Brown4be44fc2005-08-05 00:44:28 -04001792 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Len Brown0b5bfa12007-08-12 00:13:02 -04001794 dmi_check_system(thermal_dmi_table);
1795
Len Brown72b33ef2007-08-12 00:12:17 -04001796 if (off) {
1797 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1798 return -ENODEV;
1799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1801 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001802 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 acpi_thermal_dir->owner = THIS_MODULE;
1804
1805 result = acpi_bus_register_driver(&acpi_thermal_driver);
1806 if (result < 0) {
1807 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001808 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810
Patrick Mocheld550d982006-06-27 00:41:40 -04001811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
Len Brown4be44fc2005-08-05 00:44:28 -04001814static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 acpi_bus_unregister_driver(&acpi_thermal_driver);
1818
1819 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1820
Patrick Mocheld550d982006-06-27 00:41:40 -04001821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824module_init(acpi_thermal_init);
1825module_exit(acpi_thermal_exit);