blob: 57d05ff44dd1a4c1a0b72aaec3f43c2e730e160e [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>
36#include <linux/init.h>
37#include <linux/types.h>
38#include <linux/proc_fs.h>
Tim Schmielaucd354f12007-02-14 00:33:14 -080039#include <linux/timer.h>
40#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kmod.h>
42#include <linux/seq_file.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070043#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
45
46#include <acpi/acpi_bus.h>
47#include <acpi/acpi_drivers.h>
48
49#define ACPI_THERMAL_COMPONENT 0x04000000
50#define ACPI_THERMAL_CLASS "thermal_zone"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
52#define ACPI_THERMAL_FILE_STATE "state"
53#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
54#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
55#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
56#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
57#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
58#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
59#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
60#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
61#define ACPI_THERMAL_NOTIFY_HOT 0xF1
62#define ACPI_THERMAL_MODE_ACTIVE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#define ACPI_THERMAL_MAX_ACTIVE 10
65#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
66
67#define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732>=0) ? ((long)t-2732+5)/10 : ((long)t-2732-5)/10)
68#define CELSIUS_TO_KELVIN(t) ((t+273)*10)
69
70#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050071ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040073MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050074MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_LICENSE("GPL");
76
77static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040078module_param(tzp, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n");
80
Len Brownf5487142007-08-12 00:12:44 -040081static int nocrt;
82module_param(nocrt, int, 0);
83MODULE_PARM_DESC(nocrt, "Set to disable action on ACPI thermal zone critical and hot trips.\n");
84
Len Brown72b33ef2007-08-12 00:12:17 -040085static int off;
86module_param(off, int, 0);
87MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.\n");
88
Len Browna70cdc52007-08-12 00:12:35 -040089static int psv;
90module_param(psv, int, 0644);
91MODULE_PARM_DESC(psv, "Disable or override all passive trip points.\n");
92
Len Brown4be44fc2005-08-05 00:44:28 -040093static int acpi_thermal_add(struct acpi_device *device);
94static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +080095static int acpi_thermal_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
97static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
98static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400100static ssize_t acpi_thermal_write_cooling_mode(struct file *,
101 const char __user *, size_t,
102 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400104static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
105 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200107static const struct acpi_device_id thermal_device_ids[] = {
108 {ACPI_THERMAL_HID, 0},
109 {"", 0},
110};
111MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500114 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400115 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200116 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400117 .ops = {
118 .add = acpi_thermal_add,
119 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400120 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400121 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u8 critical:1;
126 u8 hot:1;
127 u8 passive:1;
128 u8 active:1;
129 u8 reserved:4;
130 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400134 u8 valid:1;
135 u8 enabled:1;
136 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139struct acpi_thermal_critical {
140 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400141 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144struct acpi_thermal_hot {
145 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400146 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149struct acpi_thermal_passive {
150 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400151 unsigned long temperature;
152 unsigned long tc1;
153 unsigned long tc2;
154 unsigned long tsp;
155 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct acpi_thermal_active {
159 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 unsigned long temperature;
161 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
164struct acpi_thermal_trips {
165 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct acpi_thermal_passive passive;
168 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
169};
170
171struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400172 u8 cooling_mode:1; /* _SCP */
173 u8 devices:1; /* _TZD */
174 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
177struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400178 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 acpi_bus_id name;
180 unsigned long temperature;
181 unsigned long last_temperature;
182 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400183 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct acpi_thermal_flags flags;
185 struct acpi_thermal_state state;
186 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400187 struct acpi_handle_list devices;
188 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189};
190
Arjan van de Vend7508032006-07-04 13:06:00 -0400191static const struct file_operations acpi_thermal_state_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400192 .open = acpi_thermal_state_open_fs,
193 .read = seq_read,
194 .llseek = seq_lseek,
195 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
Arjan van de Vend7508032006-07-04 13:06:00 -0400198static const struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 .open = acpi_thermal_temp_open_fs,
200 .read = seq_read,
201 .llseek = seq_lseek,
202 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Arjan van de Vend7508032006-07-04 13:06:00 -0400205static const struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400206 .open = acpi_thermal_trip_open_fs,
207 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400208 .llseek = seq_lseek,
209 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Arjan van de Vend7508032006-07-04 13:06:00 -0400212static const struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400213 .open = acpi_thermal_cooling_open_fs,
214 .read = seq_read,
215 .write = acpi_thermal_write_cooling_mode,
216 .llseek = seq_lseek,
217 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Arjan van de Vend7508032006-07-04 13:06:00 -0400220static const struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400221 .open = acpi_thermal_polling_open_fs,
222 .read = seq_read,
223 .write = acpi_thermal_write_polling,
224 .llseek = seq_lseek,
225 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228/* --------------------------------------------------------------------------
229 Thermal Zone Management
230 -------------------------------------------------------------------------- */
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Len Brown4be44fc2005-08-05 00:44:28 -0400234 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400238 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 tz->last_temperature = tz->temperature;
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400243 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400245 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Len Brown4be44fc2005-08-05 00:44:28 -0400247 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
248 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Patrick Mocheld550d982006-06-27 00:41:40 -0400250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Len Brown4be44fc2005-08-05 00:44:28 -0400255 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400262 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400263 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400265 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Len Brown4be44fc2005-08-05 00:44:28 -0400267 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
268 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Len Brown4be44fc2005-08-05 00:44:28 -0400273static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400277 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
282 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500283 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Patrick Mocheld550d982006-06-27 00:41:40 -0400285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Len Brown4be44fc2005-08-05 00:44:28 -0400290 acpi_status status = AE_OK;
291 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
292 struct acpi_object_list arg_list = { 1, &arg0 };
293 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400297 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400299 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (ACPI_FAILURE(status)) {
301 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400302 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
305 arg0.integer.value = mode;
306
307 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
308 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400309 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Len Brown4be44fc2005-08-05 00:44:28 -0400316 acpi_status status = AE_OK;
317 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Critical Shutdown (required) */
324
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400325 status = acpi_evaluate_integer(tz->device->handle, "_CRT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400326 &tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (ACPI_FAILURE(status)) {
328 tz->trips.critical.flags.valid = 0;
Thomas Renningera6fc6722006-06-26 23:58:43 -0400329 ACPI_EXCEPTION((AE_INFO, status, "No critical threshold"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400331 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 tz->trips.critical.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400333 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
334 "Found critical threshold [%lu]\n",
335 tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
338 /* Critical Sleep (optional) */
339
Len Brown4be44fc2005-08-05 00:44:28 -0400340 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400341 acpi_evaluate_integer(tz->device->handle, "_HOT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400342 &tz->trips.hot.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (ACPI_FAILURE(status)) {
344 tz->trips.hot.flags.valid = 0;
345 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No hot threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400346 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 tz->trips.hot.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400348 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found hot threshold [%lu]\n",
349 tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 /* Passive: Processors (optional) */
353
Len Browna70cdc52007-08-12 00:12:35 -0400354 if (psv == -1) {
355 status = AE_SUPPORT;
356 } else if (psv > 0) {
357 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv);
358 status = AE_OK;
359 } else {
360 status = acpi_evaluate_integer(tz->device->handle,
361 "_PSV", NULL, &tz->trips.passive.temperature);
362 }
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (ACPI_FAILURE(status)) {
365 tz->trips.passive.flags.valid = 0;
366 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No passive threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400367 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 tz->trips.passive.flags.valid = 1;
369
Len Brown4be44fc2005-08-05 00:44:28 -0400370 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400371 acpi_evaluate_integer(tz->device->handle, "_TC1", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400372 &tz->trips.passive.tc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (ACPI_FAILURE(status))
374 tz->trips.passive.flags.valid = 0;
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400377 acpi_evaluate_integer(tz->device->handle, "_TC2", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400378 &tz->trips.passive.tc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (ACPI_FAILURE(status))
380 tz->trips.passive.flags.valid = 0;
381
Len Brown4be44fc2005-08-05 00:44:28 -0400382 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400383 acpi_evaluate_integer(tz->device->handle, "_TSP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400384 &tz->trips.passive.tsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (ACPI_FAILURE(status))
386 tz->trips.passive.flags.valid = 0;
387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400389 acpi_evaluate_reference(tz->device->handle, "_PSL", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400390 &tz->trips.passive.devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (ACPI_FAILURE(status))
392 tz->trips.passive.flags.valid = 0;
393
394 if (!tz->trips.passive.flags.valid)
Len Browncece9292006-06-26 23:04:31 -0400395 printk(KERN_WARNING PREFIX "Invalid passive threshold\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 else
Len Brown4be44fc2005-08-05 00:44:28 -0400397 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
398 "Found passive threshold [%lu]\n",
399 tz->trips.passive.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 /* Active: Fans, etc. (optional) */
403
Len Brown4be44fc2005-08-05 00:44:28 -0400404 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Len Brown4be44fc2005-08-05 00:44:28 -0400406 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400409 acpi_evaluate_integer(tz->device->handle, name, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400410 &tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (ACPI_FAILURE(status))
412 break;
413
414 name[2] = 'L';
Len Brown4be44fc2005-08-05 00:44:28 -0400415 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400416 acpi_evaluate_reference(tz->device->handle, name, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400417 &tz->trips.active[i].devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (ACPI_SUCCESS(status)) {
419 tz->trips.active[i].flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400420 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
421 "Found active threshold [%d]:[%lu]\n",
422 i, tz->trips.active[i].temperature));
423 } else
Thomas Renningera6fc6722006-06-26 23:58:43 -0400424 ACPI_EXCEPTION((AE_INFO, status,
425 "Invalid active threshold [%d]", i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Patrick Mocheld550d982006-06-27 00:41:40 -0400428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431static int acpi_thermal_get_devices(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Len Brown4be44fc2005-08-05 00:44:28 -0400433 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400437 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Len Brown4be44fc2005-08-05 00:44:28 -0400439 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400440 acpi_evaluate_reference(tz->device->handle, "_TZD", NULL, &tz->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400442 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Patrick Mocheld550d982006-06-27 00:41:40 -0400444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Len Brown4be44fc2005-08-05 00:44:28 -0400447static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Len Brownf5487142007-08-12 00:12:44 -0400449 if (!tz || !tz->trips.critical.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400450 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400453 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400455 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 tz->trips.critical.flags.enabled = 0;
457
Len Brown4be44fc2005-08-05 00:44:28 -0400458 printk(KERN_EMERG
459 "Critical temperature reached (%ld C), shutting down.\n",
460 KELVIN_TO_CELSIUS(tz->temperature));
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400461 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400462 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700464 orderly_poweroff(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Patrick Mocheld550d982006-06-27 00:41:40 -0400466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Len Brown4be44fc2005-08-05 00:44:28 -0400469static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Len Brownf5487142007-08-12 00:12:44 -0400471 if (!tz || !tz->trips.hot.flags.valid || nocrt)
Patrick Mocheld550d982006-06-27 00:41:40 -0400472 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400475 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400477 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 tz->trips.hot.flags.enabled = 0;
479
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400480 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400481 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* TBD: Call user-mode "sleep(S4)" function */
484
Patrick Mocheld550d982006-06-27 00:41:40 -0400485 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400488static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400490 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400492 int trend = 0;
493 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400497 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 passive = &(tz->trips.passive);
500
501 /*
502 * Above Trip?
503 * -----------
504 * Calculate the thermal trend (using the passive cooling equation)
505 * and modify the performance limit for all passive cooling devices
506 * accordingly. Note that we assume symmetry.
507 */
508 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400509 trend =
510 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
511 (passive->tc2 * (tz->temperature - passive->temperature));
512 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
513 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
514 trend, passive->tc1, tz->temperature,
515 tz->last_temperature, passive->tc2,
516 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400517 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Heating up? */
519 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400520 for (i = 0; i < passive->devices.count; i++)
521 acpi_processor_set_thermal_limit(passive->
522 devices.
523 handles[i],
524 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400526 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400527 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400528 /*
529 * assume that we are on highest
530 * freq/lowest thrott and can leave
531 * passive mode, even in error case
532 */
533 if (!acpi_processor_set_thermal_limit
534 (passive->devices.handles[i],
535 ACPI_PROCESSOR_LIMIT_DECREMENT))
536 result = 0;
537 /*
538 * Leave cooling mode, even if the temp might
539 * higher than trip point This is because some
540 * machines might have long thermal polling
541 * frequencies (tsp) defined. We will fall back
542 * into passive mode in next cycle (probably quicker)
543 */
544 if (result) {
545 passive->flags.enabled = 0;
546 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
547 "Disabling passive cooling, still above threshold,"
548 " but we are cooling down\n"));
549 }
550 }
551 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
554 /*
555 * Below Trip?
556 * -----------
557 * Implement passive cooling hysteresis to slowly increase performance
558 * and avoid thrashing around the passive trip point. Note that we
559 * assume symmetry.
560 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400561 if (!passive->flags.enabled)
562 return;
563 for (i = 0; i < passive->devices.count; i++)
564 if (!acpi_processor_set_thermal_limit
565 (passive->devices.handles[i],
566 ACPI_PROCESSOR_LIMIT_DECREMENT))
567 result = 0;
568 if (result) {
569 passive->flags.enabled = 0;
570 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
571 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400575static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Len Brown4be44fc2005-08-05 00:44:28 -0400577 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400579 int i = 0;
580 int j = 0;
581 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400585 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Len Brown4be44fc2005-08-05 00:44:28 -0400587 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 active = &(tz->trips.active[i]);
589 if (!active || !active->flags.valid)
590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400592 /*
593 * Above Threshold?
594 * ----------------
595 * If not already enabled, turn ON all cooling devices
596 * associated with this active threshold.
597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400599 tz->state.active_index = i;
600 maxtemp = active->temperature;
601 if (active->flags.enabled)
602 continue;
603 for (j = 0; j < active->devices.count; j++) {
604 result =
605 acpi_bus_set_power(active->devices.
606 handles[j],
607 ACPI_STATE_D0);
608 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400609 printk(KERN_WARNING PREFIX
610 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400611 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400612 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400613 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400615 active->flags.enabled = 1;
616 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
617 "Cooling device [%p] now 'on'\n",
618 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400620 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400622 if (!active->flags.enabled)
623 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * Below Threshold?
626 * ----------------
627 * Turn OFF all cooling devices associated with this
628 * threshold.
629 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400630 for (j = 0; j < active->devices.count; j++) {
631 result = acpi_bus_set_power(active->devices.handles[j],
632 ACPI_STATE_D3);
633 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400634 printk(KERN_WARNING PREFIX
635 "Unable to turn cooling device [%p] 'off'\n",
636 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400637 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400639 active->flags.enabled = 0;
640 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
641 "Cooling device [%p] now 'off'\n",
642 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Len Brown4be44fc2005-08-05 00:44:28 -0400647static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Len Brown4be44fc2005-08-05 00:44:28 -0400649static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 struct acpi_thermal *tz = (struct acpi_thermal *)data;
652 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400653 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Len Brown4be44fc2005-08-05 00:44:28 -0400656static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Len Brown4be44fc2005-08-05 00:44:28 -0400658 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200659 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400660 unsigned long sleep_time = 0;
661 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 struct acpi_thermal_state state;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400666 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400667 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
670 state = tz->state;
671
672 result = acpi_thermal_get_temperature(tz);
673 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return;
Len Brown4be44fc2005-08-05 00:44:28 -0400675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 /*
679 * Check Trip Points
680 * -----------------
681 * Compare the current temperature to the trip point values to see
682 * if we've entered one of the thermal policy states. Note that
683 * this function determines when a state is entered, but the
684 * individual policy decides when it is exited (e.g. hysteresis).
685 */
686 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400687 state.critical |=
688 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (tz->trips.hot.flags.valid)
690 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
691 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400692 state.passive |=
693 (tz->temperature >= tz->trips.passive.temperature);
694 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400696 state.active |=
697 (tz->temperature >=
698 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
701 * Invoke Policy
702 * -------------
703 * Separated from the above check to allow individual policy to
704 * determine when to exit a given state.
705 */
706 if (state.critical)
707 acpi_thermal_critical(tz);
708 if (state.hot)
709 acpi_thermal_hot(tz);
710 if (state.passive)
711 acpi_thermal_passive(tz);
712 if (state.active)
713 acpi_thermal_active(tz);
714
715 /*
716 * Calculate State
717 * ---------------
718 * Again, separated from the above two to allow independent policy
719 * decisions.
720 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400721 tz->state.critical = tz->trips.critical.flags.enabled;
722 tz->state.hot = tz->trips.hot.flags.enabled;
723 tz->state.passive = tz->trips.passive.flags.enabled;
724 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400725 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400726 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /*
729 * Calculate Sleep Time
730 * --------------------
731 * If we're in the passive state, use _TSP's value. Otherwise
732 * use the default polling frequency (e.g. _TZP). If no polling
733 * frequency is specified then we'll wait forever (at least until
734 * a thermal event occurs). Note that _TSP and _TZD values are
735 * given in 1/10th seconds (we must covert to milliseconds).
736 */
737 if (tz->state.passive)
738 sleep_time = tz->trips.passive.tsp * 100;
739 else if (tz->polling_frequency > 0)
740 sleep_time = tz->polling_frequency * 100;
741
Len Brown4be44fc2005-08-05 00:44:28 -0400742 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
743 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /*
746 * Schedule Next Poll
747 * ------------------
748 */
749 if (!sleep_time) {
750 if (timer_pending(&(tz->timer)))
751 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400752 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (timer_pending(&(tz->timer)))
Andrew Morton94e22e12007-04-23 14:41:13 -0700754 mod_timer(&(tz->timer),
755 jiffies + (HZ * sleep_time) / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400757 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 tz->timer.function = acpi_thermal_run;
759 tz->timer.expires = jiffies + (HZ * sleep_time) / 1000;
760 add_timer(&(tz->timer));
761 }
762 }
763
Patrick Mocheld550d982006-06-27 00:41:40 -0400764 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/* --------------------------------------------------------------------------
768 FS Interface (/proc)
769 -------------------------------------------------------------------------- */
770
Len Brown4be44fc2005-08-05 00:44:28 -0400771static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
774{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200775 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (!tz)
779 goto end;
780
781 seq_puts(seq, "state: ");
782
Len Brown4be44fc2005-08-05 00:44:28 -0400783 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
784 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 seq_puts(seq, "ok\n");
786 else {
787 if (tz->state.critical)
788 seq_puts(seq, "critical ");
789 if (tz->state.hot)
790 seq_puts(seq, "hot ");
791 if (tz->state.passive)
792 seq_puts(seq, "passive ");
793 if (tz->state.active)
794 seq_printf(seq, "active[%d]", tz->state.active_index);
795 seq_puts(seq, "\n");
796 }
797
Len Brown4be44fc2005-08-05 00:44:28 -0400798 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
803{
804 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
805}
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
808{
Len Brown4be44fc2005-08-05 00:44:28 -0400809 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200810 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (!tz)
814 goto end;
815
816 result = acpi_thermal_get_temperature(tz);
817 if (result)
818 goto end;
819
Len Brown4be44fc2005-08-05 00:44:28 -0400820 seq_printf(seq, "temperature: %ld C\n",
821 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Len Brown4be44fc2005-08-05 00:44:28 -0400823 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
828{
829 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
833{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200834 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100835 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -0400836 acpi_status status;
837
Len Brown4be44fc2005-08-05 00:44:28 -0400838 int i = 0;
839 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (!tz)
843 goto end;
844
845 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -0400846 seq_printf(seq, "critical (S5): %ld C%s",
847 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
848 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -0400851 seq_printf(seq, "hot (S4): %ld C%s",
852 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
853 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -0400856 seq_printf(seq,
857 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
858 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
859 tz->trips.passive.tc1, tz->trips.passive.tc2,
860 tz->trips.passive.tsp);
861 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -0400862 status = acpi_bus_get_device(tz->trips.passive.devices.
863 handles[j], &device);
864 seq_printf(seq, "%4.4s ", status ? "" :
865 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867 seq_puts(seq, "\n");
868 }
869
870 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
871 if (!(tz->trips.active[i].flags.valid))
872 break;
873 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -0400874 i,
875 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100876 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -0400877 status = acpi_bus_get_device(tz->trips.active[i].
878 devices.handles[j],
879 &device);
880 seq_printf(seq, "%4.4s ", status ? "" :
881 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +0100882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 seq_puts(seq, "\n");
884 }
885
Len Brown4be44fc2005-08-05 00:44:28 -0400886 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
891{
892 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
896{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200897 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!tz)
901 goto end;
902
Len Browneaca2d32007-04-30 23:27:43 -0400903 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 else
Len Browneaca2d32007-04-30 23:27:43 -0400906 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Len Brown4be44fc2005-08-05 00:44:28 -0400908 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400909 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
913{
914 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400915 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400919acpi_thermal_write_cooling_mode(struct file *file,
920 const char __user * buffer,
921 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200923 struct seq_file *m = file->private_data;
924 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400925 int result = 0;
926 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400930 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -0400933 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -0400936 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -0400939
940 result = acpi_thermal_set_cooling_mode(tz,
941 simple_strtoul(mode_string, NULL,
942 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400944 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 acpi_thermal_check(tz);
947
Patrick Mocheld550d982006-06-27 00:41:40 -0400948 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
952{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200953 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if (!tz)
957 goto end;
958
959 if (!tz->polling_frequency) {
960 seq_puts(seq, "<polling disabled>\n");
961 goto end;
962 }
963
964 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400965 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Len Brown4be44fc2005-08-05 00:44:28 -0400967 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400968 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
972{
973 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400974 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400978acpi_thermal_write_polling(struct file *file,
979 const char __user * buffer,
980 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200982 struct seq_file *m = file->private_data;
983 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400984 int result = 0;
985 char polling_string[12] = { '\0' };
986 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400990 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -0400993 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 polling_string[count] = '\0';
996
997 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 result = acpi_thermal_set_polling(tz, seconds);
1000 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001001 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 acpi_thermal_check(tz);
1004
Patrick Mocheld550d982006-06-27 00:41:40 -04001005 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Len Brown4be44fc2005-08-05 00:44:28 -04001008static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Len Brown4be44fc2005-08-05 00:44:28 -04001010 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 if (!acpi_device_dir(device)) {
1014 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001015 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001017 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 acpi_device_dir(device)->owner = THIS_MODULE;
1019 }
1020
1021 /* 'state' [R] */
1022 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001023 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001025 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 else {
1027 entry->proc_fops = &acpi_thermal_state_fops;
1028 entry->data = acpi_driver_data(device);
1029 entry->owner = THIS_MODULE;
1030 }
1031
1032 /* 'temperature' [R] */
1033 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001034 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001036 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 else {
1038 entry->proc_fops = &acpi_thermal_temp_fops;
1039 entry->data = acpi_driver_data(device);
1040 entry->owner = THIS_MODULE;
1041 }
1042
1043 /* 'trip_points' [R/W] */
1044 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Len Brown4be44fc2005-08-05 00:44:28 -04001045 S_IFREG | S_IRUGO | S_IWUSR,
1046 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001048 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 else {
1050 entry->proc_fops = &acpi_thermal_trip_fops;
1051 entry->data = acpi_driver_data(device);
1052 entry->owner = THIS_MODULE;
1053 }
1054
1055 /* 'cooling_mode' [R/W] */
1056 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001057 S_IFREG | S_IRUGO | S_IWUSR,
1058 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001060 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 else {
1062 entry->proc_fops = &acpi_thermal_cooling_fops;
1063 entry->data = acpi_driver_data(device);
1064 entry->owner = THIS_MODULE;
1065 }
1066
1067 /* 'polling_frequency' [R/W] */
1068 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001069 S_IFREG | S_IRUGO | S_IWUSR,
1070 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001072 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 else {
1074 entry->proc_fops = &acpi_thermal_polling_fops;
1075 entry->data = acpi_driver_data(device);
1076 entry->owner = THIS_MODULE;
1077 }
1078
Patrick Mocheld550d982006-06-27 00:41:40 -04001079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Len Brown4be44fc2005-08-05 00:44:28 -04001082static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 if (acpi_device_dir(device)) {
1086 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1087 acpi_device_dir(device));
1088 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1089 acpi_device_dir(device));
1090 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1091 acpi_device_dir(device));
1092 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1093 acpi_device_dir(device));
1094 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1095 acpi_device_dir(device));
1096 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1097 acpi_device_dir(device) = NULL;
1098 }
1099
Patrick Mocheld550d982006-06-27 00:41:40 -04001100 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103/* --------------------------------------------------------------------------
1104 Driver Interface
1105 -------------------------------------------------------------------------- */
1106
Len Brown4be44fc2005-08-05 00:44:28 -04001107static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001109 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001110 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001114 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001116 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 switch (event) {
1119 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1120 acpi_thermal_check(tz);
1121 break;
1122 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
1123 acpi_thermal_get_trip_points(tz);
1124 acpi_thermal_check(tz);
1125 acpi_bus_generate_event(device, event, 0);
1126 break;
1127 case ACPI_THERMAL_NOTIFY_DEVICES:
1128 if (tz->flags.devices)
1129 acpi_thermal_get_devices(tz);
1130 acpi_bus_generate_event(device, event, 0);
1131 break;
1132 default:
1133 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001134 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136 }
1137
Patrick Mocheld550d982006-06-27 00:41:40 -04001138 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Len Brown4be44fc2005-08-05 00:44:28 -04001141static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Len Brown4be44fc2005-08-05 00:44:28 -04001143 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001147 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 /* Get temperature [_TMP] (required) */
1150 result = acpi_thermal_get_temperature(tz);
1151 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001152 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /* Get trip points [_CRT, _PSV, etc.] (required) */
1155 result = acpi_thermal_get_trip_points(tz);
1156 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001157 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* Set the cooling mode [_SCP] to active cooling (default) */
1160 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001161 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /* Get default polling frequency [_TZP] (optional) */
1165 if (tzp)
1166 tz->polling_frequency = tzp;
1167 else
1168 acpi_thermal_get_polling_frequency(tz);
1169
1170 /* Get devices in this thermal zone [_TZD] (optional) */
1171 result = acpi_thermal_get_devices(tz);
1172 if (!result)
1173 tz->flags.devices = 1;
1174
Patrick Mocheld550d982006-06-27 00:41:40 -04001175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
Len Brown4be44fc2005-08-05 00:44:28 -04001178static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Len Brown4be44fc2005-08-05 00:44:28 -04001180 int result = 0;
1181 acpi_status status = AE_OK;
1182 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001186 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Burman Yan36bcbec2006-12-19 12:56:11 -08001188 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001190 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001192 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 strcpy(tz->name, device->pnp.bus_id);
1194 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1195 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1196 acpi_driver_data(device) = tz;
1197
1198 result = acpi_thermal_get_info(tz);
1199 if (result)
1200 goto end;
1201
1202 result = acpi_thermal_add_fs(device);
1203 if (result)
Vasily Averin09047e72006-04-27 05:25:00 -04001204 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 init_timer(&tz->timer);
1207
1208 acpi_thermal_check(tz);
1209
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001210 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001211 ACPI_DEVICE_NOTIFY,
1212 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 result = -ENODEV;
1215 goto end;
1216 }
1217
1218 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001219 acpi_device_name(device), acpi_device_bid(device),
1220 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Len Brown4be44fc2005-08-05 00:44:28 -04001222 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (result) {
1224 acpi_thermal_remove_fs(device);
1225 kfree(tz);
1226 }
1227
Patrick Mocheld550d982006-06-27 00:41:40 -04001228 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Len Brown4be44fc2005-08-05 00:44:28 -04001231static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Len Brown4be44fc2005-08-05 00:44:28 -04001233 acpi_status status = AE_OK;
1234 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001238 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001240 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 /* avoid timer adding new defer task */
1243 tz->zombie = 1;
1244 /* wait for running timer (on other CPUs) finish */
1245 del_timer_sync(&(tz->timer));
1246 /* synchronize deferred task */
1247 acpi_os_wait_events_complete(NULL);
1248 /* deferred task may reinsert timer */
1249 del_timer_sync(&(tz->timer));
1250
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001251 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001252 ACPI_DEVICE_NOTIFY,
1253 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001256 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 tz->trips.passive.flags.enabled = 0;
1258 acpi_thermal_passive(tz);
1259 }
1260 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001261 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 tz->trips.active[0].flags.enabled = 0;
1263 acpi_thermal_active(tz);
1264 }
1265
1266 acpi_thermal_remove_fs(device);
1267
1268 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001272static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001273{
1274 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001275 int i, j, power_state, result;
1276
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001277
1278 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001279 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001280
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001281 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001282
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001283 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001284 if (!(&tz->trips.active[i]))
1285 break;
1286 if (!tz->trips.active[i].flags.valid)
1287 break;
1288 tz->trips.active[i].flags.enabled = 1;
1289 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1290 result = acpi_bus_get_power(tz->trips.active[i].devices.
1291 handles[j], &power_state);
1292 if (result || (power_state != ACPI_STATE_D0)) {
1293 tz->trips.active[i].flags.enabled = 0;
1294 break;
1295 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001296 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001297 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001298 }
1299
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001300 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001301
1302 return AE_OK;
1303}
1304
Len Brown4be44fc2005-08-05 00:44:28 -04001305static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Len Brown4be44fc2005-08-05 00:44:28 -04001307 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Len Brown72b33ef2007-08-12 00:12:17 -04001309 if (off) {
1310 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1311 return -ENODEV;
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1314 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001315 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 acpi_thermal_dir->owner = THIS_MODULE;
1317
1318 result = acpi_bus_register_driver(&acpi_thermal_driver);
1319 if (result < 0) {
1320 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001321 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
1323
Patrick Mocheld550d982006-06-27 00:41:40 -04001324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Len Brown4be44fc2005-08-05 00:44:28 -04001327static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 acpi_bus_unregister_driver(&acpi_thermal_driver);
1331
1332 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1333
Patrick Mocheld550d982006-06-27 00:41:40 -04001334 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337module_init(acpi_thermal_init);
1338module_exit(acpi_thermal_exit);