blob: 986afd470a148fabd84911a0e65bd44184f11295 [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>
43#include <asm/uaccess.h>
44
45#include <acpi/acpi_bus.h>
46#include <acpi/acpi_drivers.h>
47
48#define ACPI_THERMAL_COMPONENT 0x04000000
49#define ACPI_THERMAL_CLASS "thermal_zone"
50#define ACPI_THERMAL_DRIVER_NAME "ACPI Thermal Zone Driver"
51#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
63#define ACPI_THERMAL_MODE_PASSIVE 0x01
64#define ACPI_THERMAL_MODE_CRITICAL 0xff
65#define ACPI_THERMAL_PATH_POWEROFF "/sbin/poweroff"
66
67#define ACPI_THERMAL_MAX_ACTIVE 10
68#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
69
70#define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732>=0) ? ((long)t-2732+5)/10 : ((long)t-2732-5)/10)
71#define CELSIUS_TO_KELVIN(t) ((t+273)*10)
72
73#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040074ACPI_MODULE_NAME("acpi_thermal")
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040076MODULE_AUTHOR("Paul Diefenbaugh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077MODULE_DESCRIPTION(ACPI_THERMAL_DRIVER_NAME);
78MODULE_LICENSE("GPL");
79
80static int tzp;
81module_param(tzp, int, 0);
82MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n");
83
Len Brown4be44fc2005-08-05 00:44:28 -040084static int acpi_thermal_add(struct acpi_device *device);
85static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +080086static int acpi_thermal_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
88static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
89static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040090static ssize_t acpi_thermal_write_trip_points(struct file *,
91 const char __user *, size_t,
92 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040094static ssize_t acpi_thermal_write_cooling_mode(struct file *,
95 const char __user *, size_t,
96 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040098static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
99 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101static struct acpi_driver acpi_thermal_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -0400102 .name = ACPI_THERMAL_DRIVER_NAME,
103 .class = ACPI_THERMAL_CLASS,
104 .ids = ACPI_THERMAL_HID,
105 .ops = {
106 .add = acpi_thermal_add,
107 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce1462006-05-08 08:32:00 -0400108 .resume = acpi_thermal_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400109 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
112struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400113 u8 critical:1;
114 u8 hot:1;
115 u8 passive:1;
116 u8 active:1;
117 u8 reserved:4;
118 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
121struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400122 u8 valid:1;
123 u8 enabled:1;
124 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127struct acpi_thermal_critical {
128 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400129 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132struct acpi_thermal_hot {
133 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400134 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137struct acpi_thermal_passive {
138 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400139 unsigned long temperature;
140 unsigned long tc1;
141 unsigned long tc2;
142 unsigned long tsp;
143 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146struct acpi_thermal_active {
147 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400148 unsigned long temperature;
149 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
152struct acpi_thermal_trips {
153 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400154 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct acpi_thermal_passive passive;
156 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
157};
158
159struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400160 u8 cooling_mode:1; /* _SCP */
161 u8 devices:1; /* _TZD */
162 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400166 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400167 acpi_bus_id name;
168 unsigned long temperature;
169 unsigned long last_temperature;
170 unsigned long polling_frequency;
171 u8 cooling_mode;
172 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct acpi_thermal_flags flags;
174 struct acpi_thermal_state state;
175 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400176 struct acpi_handle_list devices;
177 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Arjan van de Vend7508032006-07-04 13:06:00 -0400180static const struct file_operations acpi_thermal_state_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400181 .open = acpi_thermal_state_open_fs,
182 .read = seq_read,
183 .llseek = seq_lseek,
184 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
Arjan van de Vend7508032006-07-04 13:06:00 -0400187static const struct file_operations acpi_thermal_temp_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400188 .open = acpi_thermal_temp_open_fs,
189 .read = seq_read,
190 .llseek = seq_lseek,
191 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193
Arjan van de Vend7508032006-07-04 13:06:00 -0400194static const struct file_operations acpi_thermal_trip_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400195 .open = acpi_thermal_trip_open_fs,
196 .read = seq_read,
197 .write = acpi_thermal_write_trip_points,
198 .llseek = seq_lseek,
199 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Arjan van de Vend7508032006-07-04 13:06:00 -0400202static const struct file_operations acpi_thermal_cooling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400203 .open = acpi_thermal_cooling_open_fs,
204 .read = seq_read,
205 .write = acpi_thermal_write_cooling_mode,
206 .llseek = seq_lseek,
207 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Arjan van de Vend7508032006-07-04 13:06:00 -0400210static const struct file_operations acpi_thermal_polling_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400211 .open = acpi_thermal_polling_open_fs,
212 .read = seq_read,
213 .write = acpi_thermal_write_polling,
214 .llseek = seq_lseek,
215 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
218/* --------------------------------------------------------------------------
219 Thermal Zone Management
220 -------------------------------------------------------------------------- */
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Len Brown4be44fc2005-08-05 00:44:28 -0400224 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400228 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 tz->last_temperature = tz->temperature;
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400233 acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Len Brown4be44fc2005-08-05 00:44:28 -0400237 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
238 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Patrick Mocheld550d982006-06-27 00:41:40 -0400240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400249 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400252 acpi_evaluate_integer(tz->device->handle, "_TZP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400253 &tz->polling_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Len Brown4be44fc2005-08-05 00:44:28 -0400257 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
258 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Patrick Mocheld550d982006-06-27 00:41:40 -0400260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Len Brown4be44fc2005-08-05 00:44:28 -0400263static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
272 "Polling frequency set to %lu seconds\n",
273 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Patrick Mocheld550d982006-06-27 00:41:40 -0400275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Len Brown4be44fc2005-08-05 00:44:28 -0400278static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Len Brown4be44fc2005-08-05 00:44:28 -0400280 acpi_status status = AE_OK;
281 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
282 struct acpi_object_list arg_list = { 1, &arg0 };
283 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400287 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400289 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (ACPI_FAILURE(status)) {
291 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400292 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
295 arg0.integer.value = mode;
296
297 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
298 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400299 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 tz->cooling_mode = mode;
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Cooling mode [%s]\n",
304 mode ? "passive" : "active"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Len Brown4be44fc2005-08-05 00:44:28 -0400311 acpi_status status = AE_OK;
312 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400316 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* Critical Shutdown (required) */
319
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400320 status = acpi_evaluate_integer(tz->device->handle, "_CRT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400321 &tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (ACPI_FAILURE(status)) {
323 tz->trips.critical.flags.valid = 0;
Thomas Renningera6fc6722006-06-26 23:58:43 -0400324 ACPI_EXCEPTION((AE_INFO, status, "No critical threshold"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400326 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 tz->trips.critical.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400328 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
329 "Found critical threshold [%lu]\n",
330 tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
333 /* Critical Sleep (optional) */
334
Len Brown4be44fc2005-08-05 00:44:28 -0400335 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400336 acpi_evaluate_integer(tz->device->handle, "_HOT", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400337 &tz->trips.hot.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (ACPI_FAILURE(status)) {
339 tz->trips.hot.flags.valid = 0;
340 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No hot threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400341 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 tz->trips.hot.flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400343 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found hot threshold [%lu]\n",
344 tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 /* Passive: Processors (optional) */
348
Len Brown4be44fc2005-08-05 00:44:28 -0400349 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400350 acpi_evaluate_integer(tz->device->handle, "_PSV", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400351 &tz->trips.passive.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (ACPI_FAILURE(status)) {
353 tz->trips.passive.flags.valid = 0;
354 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No passive threshold\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400355 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 tz->trips.passive.flags.valid = 1;
357
Len Brown4be44fc2005-08-05 00:44:28 -0400358 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400359 acpi_evaluate_integer(tz->device->handle, "_TC1", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400360 &tz->trips.passive.tc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (ACPI_FAILURE(status))
362 tz->trips.passive.flags.valid = 0;
363
Len Brown4be44fc2005-08-05 00:44:28 -0400364 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400365 acpi_evaluate_integer(tz->device->handle, "_TC2", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400366 &tz->trips.passive.tc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ACPI_FAILURE(status))
368 tz->trips.passive.flags.valid = 0;
369
Len Brown4be44fc2005-08-05 00:44:28 -0400370 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400371 acpi_evaluate_integer(tz->device->handle, "_TSP", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400372 &tz->trips.passive.tsp);
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_reference(tz->device->handle, "_PSL", NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400378 &tz->trips.passive.devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (ACPI_FAILURE(status))
380 tz->trips.passive.flags.valid = 0;
381
382 if (!tz->trips.passive.flags.valid)
Len Browncece9292006-06-26 23:04:31 -0400383 printk(KERN_WARNING PREFIX "Invalid passive threshold\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 else
Len Brown4be44fc2005-08-05 00:44:28 -0400385 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
386 "Found passive threshold [%lu]\n",
387 tz->trips.passive.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
390 /* Active: Fans, etc. (optional) */
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Len Brown4be44fc2005-08-05 00:44:28 -0400394 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400397 acpi_evaluate_integer(tz->device->handle, name, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400398 &tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (ACPI_FAILURE(status))
400 break;
401
402 name[2] = 'L';
Len Brown4be44fc2005-08-05 00:44:28 -0400403 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400404 acpi_evaluate_reference(tz->device->handle, name, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400405 &tz->trips.active[i].devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (ACPI_SUCCESS(status)) {
407 tz->trips.active[i].flags.valid = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400408 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
409 "Found active threshold [%d]:[%lu]\n",
410 i, tz->trips.active[i].temperature));
411 } else
Thomas Renningera6fc6722006-06-26 23:58:43 -0400412 ACPI_EXCEPTION((AE_INFO, status,
413 "Invalid active threshold [%d]", i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
Patrick Mocheld550d982006-06-27 00:41:40 -0400416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Len Brown4be44fc2005-08-05 00:44:28 -0400419static int acpi_thermal_get_devices(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Len Brown4be44fc2005-08-05 00:44:28 -0400421 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400425 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 status =
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400428 acpi_evaluate_reference(tz->device->handle, "_TZD", NULL, &tz->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400430 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Patrick Mocheld550d982006-06-27 00:41:40 -0400432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Len Brown4be44fc2005-08-05 00:44:28 -0400435static int acpi_thermal_call_usermode(char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Len Brown4be44fc2005-08-05 00:44:28 -0400437 char *argv[2] = { NULL, NULL };
438 char *envp[3] = { NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (!path)
Patrick Mocheld550d982006-06-27 00:41:40 -0400442 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 argv[0] = path;
445
446 /* minimal command environment */
447 envp[0] = "HOME=/";
448 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
Len Brown4be44fc2005-08-05 00:44:28 -0400449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 call_usermodehelper(argv[0], argv, envp, 0);
451
Patrick Mocheld550d982006-06-27 00:41:40 -0400452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Len Brown4be44fc2005-08-05 00:44:28 -0400455static int acpi_thermal_critical(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (!tz || !tz->trips.critical.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400458 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 if (tz->temperature >= tz->trips.critical.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400461 printk(KERN_WARNING PREFIX "Critical trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 tz->trips.critical.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400463 } else if (tz->trips.critical.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 tz->trips.critical.flags.enabled = 0;
465
Len Brown4be44fc2005-08-05 00:44:28 -0400466 printk(KERN_EMERG
467 "Critical temperature reached (%ld C), shutting down.\n",
468 KELVIN_TO_CELSIUS(tz->temperature));
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400469 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL,
Len Brown4be44fc2005-08-05 00:44:28 -0400470 tz->trips.critical.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 acpi_thermal_call_usermode(ACPI_THERMAL_PATH_POWEROFF);
473
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Len Brown4be44fc2005-08-05 00:44:28 -0400477static int acpi_thermal_hot(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (!tz || !tz->trips.hot.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400480 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 if (tz->temperature >= tz->trips.hot.temperature) {
Len Browncece9292006-06-26 23:04:31 -0400483 printk(KERN_WARNING PREFIX "Hot trip point\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 tz->trips.hot.flags.enabled = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400485 } else if (tz->trips.hot.flags.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 tz->trips.hot.flags.enabled = 0;
487
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400488 acpi_bus_generate_event(tz->device, ACPI_THERMAL_NOTIFY_HOT,
Len Brown4be44fc2005-08-05 00:44:28 -0400489 tz->trips.hot.flags.enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* TBD: Call user-mode "sleep(S4)" function */
492
Patrick Mocheld550d982006-06-27 00:41:40 -0400493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400496static void acpi_thermal_passive(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400498 int result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct acpi_thermal_passive *passive = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400500 int trend = 0;
501 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (!tz || !tz->trips.passive.flags.valid)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400505 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 passive = &(tz->trips.passive);
508
509 /*
510 * Above Trip?
511 * -----------
512 * Calculate the thermal trend (using the passive cooling equation)
513 * and modify the performance limit for all passive cooling devices
514 * accordingly. Note that we assume symmetry.
515 */
516 if (tz->temperature >= passive->temperature) {
Len Brown4be44fc2005-08-05 00:44:28 -0400517 trend =
518 (passive->tc1 * (tz->temperature - tz->last_temperature)) +
519 (passive->tc2 * (tz->temperature - passive->temperature));
520 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
521 "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n",
522 trend, passive->tc1, tz->temperature,
523 tz->last_temperature, passive->tc2,
524 tz->temperature, passive->temperature));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400525 passive->flags.enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* Heating up? */
527 if (trend > 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400528 for (i = 0; i < passive->devices.count; i++)
529 acpi_processor_set_thermal_limit(passive->
530 devices.
531 handles[i],
532 ACPI_PROCESSOR_LIMIT_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* Cooling off? */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400534 else if (trend < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400535 for (i = 0; i < passive->devices.count; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400536 /*
537 * assume that we are on highest
538 * freq/lowest thrott and can leave
539 * passive mode, even in error case
540 */
541 if (!acpi_processor_set_thermal_limit
542 (passive->devices.handles[i],
543 ACPI_PROCESSOR_LIMIT_DECREMENT))
544 result = 0;
545 /*
546 * Leave cooling mode, even if the temp might
547 * higher than trip point This is because some
548 * machines might have long thermal polling
549 * frequencies (tsp) defined. We will fall back
550 * into passive mode in next cycle (probably quicker)
551 */
552 if (result) {
553 passive->flags.enabled = 0;
554 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
555 "Disabling passive cooling, still above threshold,"
556 " but we are cooling down\n"));
557 }
558 }
559 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561
562 /*
563 * Below Trip?
564 * -----------
565 * Implement passive cooling hysteresis to slowly increase performance
566 * and avoid thrashing around the passive trip point. Note that we
567 * assume symmetry.
568 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400569 if (!passive->flags.enabled)
570 return;
571 for (i = 0; i < passive->devices.count; i++)
572 if (!acpi_processor_set_thermal_limit
573 (passive->devices.handles[i],
574 ACPI_PROCESSOR_LIMIT_DECREMENT))
575 result = 0;
576 if (result) {
577 passive->flags.enabled = 0;
578 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
579 "Disabling passive cooling (zone is cool)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400583static void acpi_thermal_active(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Len Brown4be44fc2005-08-05 00:44:28 -0400585 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct acpi_thermal_active *active = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400587 int i = 0;
588 int j = 0;
589 unsigned long maxtemp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!tz)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400593 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Len Brown4be44fc2005-08-05 00:44:28 -0400595 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 active = &(tz->trips.active[i]);
597 if (!active || !active->flags.valid)
598 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (tz->temperature >= active->temperature) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400600 /*
601 * Above Threshold?
602 * ----------------
603 * If not already enabled, turn ON all cooling devices
604 * associated with this active threshold.
605 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (active->temperature > maxtemp)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400607 tz->state.active_index = i;
608 maxtemp = active->temperature;
609 if (active->flags.enabled)
610 continue;
611 for (j = 0; j < active->devices.count; j++) {
612 result =
613 acpi_bus_set_power(active->devices.
614 handles[j],
615 ACPI_STATE_D0);
616 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400617 printk(KERN_WARNING PREFIX
618 "Unable to turn cooling device [%p] 'on'\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400619 active->devices.
Len Browncece9292006-06-26 23:04:31 -0400620 handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400621 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400623 active->flags.enabled = 1;
624 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
625 "Cooling device [%p] now 'on'\n",
626 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400628 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400630 if (!active->flags.enabled)
631 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * Below Threshold?
634 * ----------------
635 * Turn OFF all cooling devices associated with this
636 * threshold.
637 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400638 for (j = 0; j < active->devices.count; j++) {
639 result = acpi_bus_set_power(active->devices.handles[j],
640 ACPI_STATE_D3);
641 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400642 printk(KERN_WARNING PREFIX
643 "Unable to turn cooling device [%p] 'off'\n",
644 active->devices.handles[j]);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400645 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400647 active->flags.enabled = 0;
648 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
649 "Cooling device [%p] now 'off'\n",
650 active->devices.handles[j]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Len Brown4be44fc2005-08-05 00:44:28 -0400655static void acpi_thermal_check(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Len Brown4be44fc2005-08-05 00:44:28 -0400657static void acpi_thermal_run(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 struct acpi_thermal *tz = (struct acpi_thermal *)data;
660 if (!tz->zombie)
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400661 acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Len Brown4be44fc2005-08-05 00:44:28 -0400664static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Len Brown4be44fc2005-08-05 00:44:28 -0400666 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200667 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400668 unsigned long sleep_time = 0;
669 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct acpi_thermal_state state;
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 if (!tz) {
Len Brown64684632006-06-26 23:41:38 -0400674 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400675 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 state = tz->state;
679
680 result = acpi_thermal_get_temperature(tz);
681 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400682 return;
Len Brown4be44fc2005-08-05 00:44:28 -0400683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 memset(&tz->state, 0, sizeof(tz->state));
Len Brown4be44fc2005-08-05 00:44:28 -0400685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * Check Trip Points
688 * -----------------
689 * Compare the current temperature to the trip point values to see
690 * if we've entered one of the thermal policy states. Note that
691 * this function determines when a state is entered, but the
692 * individual policy decides when it is exited (e.g. hysteresis).
693 */
694 if (tz->trips.critical.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400695 state.critical |=
696 (tz->temperature >= tz->trips.critical.temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (tz->trips.hot.flags.valid)
698 state.hot |= (tz->temperature >= tz->trips.hot.temperature);
699 if (tz->trips.passive.flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400700 state.passive |=
701 (tz->temperature >= tz->trips.passive.temperature);
702 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (tz->trips.active[i].flags.valid)
Len Brown4be44fc2005-08-05 00:44:28 -0400704 state.active |=
705 (tz->temperature >=
706 tz->trips.active[i].temperature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /*
709 * Invoke Policy
710 * -------------
711 * Separated from the above check to allow individual policy to
712 * determine when to exit a given state.
713 */
714 if (state.critical)
715 acpi_thermal_critical(tz);
716 if (state.hot)
717 acpi_thermal_hot(tz);
718 if (state.passive)
719 acpi_thermal_passive(tz);
720 if (state.active)
721 acpi_thermal_active(tz);
722
723 /*
724 * Calculate State
725 * ---------------
726 * Again, separated from the above two to allow independent policy
727 * decisions.
728 */
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400729 tz->state.critical = tz->trips.critical.flags.enabled;
730 tz->state.hot = tz->trips.hot.flags.enabled;
731 tz->state.passive = tz->trips.passive.flags.enabled;
732 tz->state.active = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400733 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400734 tz->state.active |= tz->trips.active[i].flags.enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /*
737 * Calculate Sleep Time
738 * --------------------
739 * If we're in the passive state, use _TSP's value. Otherwise
740 * use the default polling frequency (e.g. _TZP). If no polling
741 * frequency is specified then we'll wait forever (at least until
742 * a thermal event occurs). Note that _TSP and _TZD values are
743 * given in 1/10th seconds (we must covert to milliseconds).
744 */
745 if (tz->state.passive)
746 sleep_time = tz->trips.passive.tsp * 100;
747 else if (tz->polling_frequency > 0)
748 sleep_time = tz->polling_frequency * 100;
749
Len Brown4be44fc2005-08-05 00:44:28 -0400750 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n",
751 tz->name, tz->temperature, sleep_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /*
754 * Schedule Next Poll
755 * ------------------
756 */
757 if (!sleep_time) {
758 if (timer_pending(&(tz->timer)))
759 del_timer(&(tz->timer));
Len Brown4be44fc2005-08-05 00:44:28 -0400760 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (timer_pending(&(tz->timer)))
762 mod_timer(&(tz->timer), (HZ * sleep_time) / 1000);
763 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400764 tz->timer.data = (unsigned long)tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 tz->timer.function = acpi_thermal_run;
766 tz->timer.expires = jiffies + (HZ * sleep_time) / 1000;
767 add_timer(&(tz->timer));
768 }
769 }
770
Patrick Mocheld550d982006-06-27 00:41:40 -0400771 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/* --------------------------------------------------------------------------
775 FS Interface (/proc)
776 -------------------------------------------------------------------------- */
777
Len Brown4be44fc2005-08-05 00:44:28 -0400778static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
781{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200782 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 if (!tz)
786 goto end;
787
788 seq_puts(seq, "state: ");
789
Len Brown4be44fc2005-08-05 00:44:28 -0400790 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
791 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 seq_puts(seq, "ok\n");
793 else {
794 if (tz->state.critical)
795 seq_puts(seq, "critical ");
796 if (tz->state.hot)
797 seq_puts(seq, "hot ");
798 if (tz->state.passive)
799 seq_puts(seq, "passive ");
800 if (tz->state.active)
801 seq_printf(seq, "active[%d]", tz->state.active_index);
802 seq_puts(seq, "\n");
803 }
804
Len Brown4be44fc2005-08-05 00:44:28 -0400805 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
810{
811 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
812}
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
815{
Len Brown4be44fc2005-08-05 00:44:28 -0400816 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200817 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 if (!tz)
821 goto end;
822
823 result = acpi_thermal_get_temperature(tz);
824 if (result)
825 goto end;
826
Len Brown4be44fc2005-08-05 00:44:28 -0400827 seq_printf(seq, "temperature: %ld C\n",
828 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Len Brown4be44fc2005-08-05 00:44:28 -0400830 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
835{
836 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
840{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200841 struct acpi_thermal *tz = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400842 int i = 0;
843 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if (!tz)
847 goto end;
848
849 if (tz->trips.critical.flags.valid)
850 seq_printf(seq, "critical (S5): %ld C\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400851 KELVIN_TO_CELSIUS(tz->trips.critical.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (tz->trips.hot.flags.valid)
854 seq_printf(seq, "hot (S4): %ld C\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400855 KELVIN_TO_CELSIUS(tz->trips.hot.temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -0400858 seq_printf(seq,
859 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
860 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
861 tz->trips.passive.tc1, tz->trips.passive.tc2,
862 tz->trips.passive.tsp);
863 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Len Brown4be44fc2005-08-05 00:44:28 -0400865 seq_printf(seq, "0x%p ",
866 tz->trips.passive.devices.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868 seq_puts(seq, "\n");
869 }
870
871 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
872 if (!(tz->trips.active[i].flags.valid))
873 break;
874 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -0400875 i,
876 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
877 for (j = 0; j < tz->trips.active[i].devices.count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 seq_printf(seq, "0x%p ",
Len Brown4be44fc2005-08-05 00:44:28 -0400879 tz->trips.active[i].devices.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 seq_puts(seq, "\n");
881 }
882
Len Brown4be44fc2005-08-05 00:44:28 -0400883 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
888{
889 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
890}
891
892static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400893acpi_thermal_write_trip_points(struct file *file,
894 const char __user * buffer,
895 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200897 struct seq_file *m = file->private_data;
898 struct acpi_thermal *tz = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Len Brown4be44fc2005-08-05 00:44:28 -0400900 char *limit_string;
901 int num, critical, hot, passive;
902 int *active;
903 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Burman Yan36bcbec2006-12-19 12:56:11 -0800906 limit_string = kzalloc(ACPI_THERMAL_MAX_LIMIT_STR_LEN, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400907 if (!limit_string)
Patrick Mocheld550d982006-06-27 00:41:40 -0400908 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Len Brown4be44fc2005-08-05 00:44:28 -0400910 active = kmalloc(ACPI_THERMAL_MAX_ACTIVE * sizeof(int), GFP_KERNEL);
Dave Jonesfdc136c2006-03-08 22:12:00 -0500911 if (!active) {
912 kfree(limit_string);
Patrick Mocheld550d982006-06-27 00:41:40 -0400913 return -ENOMEM;
Dave Jonesfdc136c2006-03-08 22:12:00 -0500914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 if (!tz || (count > ACPI_THERMAL_MAX_LIMIT_STR_LEN - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 count = -EINVAL;
918 goto end;
919 }
Len Brown4be44fc2005-08-05 00:44:28 -0400920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (copy_from_user(limit_string, buffer, count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 count = -EFAULT;
923 goto end;
924 }
Len Brown4be44fc2005-08-05 00:44:28 -0400925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 limit_string[count] = '\0';
927
928 num = sscanf(limit_string, "%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d",
Len Brown4be44fc2005-08-05 00:44:28 -0400929 &critical, &hot, &passive,
930 &active[0], &active[1], &active[2], &active[3], &active[4],
931 &active[5], &active[6], &active[7], &active[8],
932 &active[9]);
933 if (!(num >= 5 && num < (ACPI_THERMAL_MAX_ACTIVE + 3))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 count = -EINVAL;
935 goto end;
936 }
937
938 tz->trips.critical.temperature = CELSIUS_TO_KELVIN(critical);
939 tz->trips.hot.temperature = CELSIUS_TO_KELVIN(hot);
940 tz->trips.passive.temperature = CELSIUS_TO_KELVIN(passive);
941 for (i = 0; i < num - 3; i++) {
942 if (!(tz->trips.active[i].flags.valid))
943 break;
944 tz->trips.active[i].temperature = CELSIUS_TO_KELVIN(active[i]);
945 }
Len Brown4be44fc2005-08-05 00:44:28 -0400946
947 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 kfree(active);
949 kfree(limit_string);
Patrick Mocheld550d982006-06-27 00:41:40 -0400950 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
954{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200955 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (!tz)
959 goto end;
960
961 if (!tz->flags.cooling_mode) {
962 seq_puts(seq, "<setting not supported>\n");
963 }
964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 if (tz->cooling_mode == ACPI_THERMAL_MODE_CRITICAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 seq_printf(seq, "cooling mode: critical\n");
967 else
968 seq_printf(seq, "cooling mode: %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400969 tz->cooling_mode ? "passive" : "active");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Len Brown4be44fc2005-08-05 00:44:28 -0400971 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
976{
977 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400978 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
981static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400982acpi_thermal_write_cooling_mode(struct file *file,
983 const char __user * buffer,
984 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200986 struct seq_file *m = file->private_data;
987 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400988 int result = 0;
989 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -0400996 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -0400999 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001002
1003 result = acpi_thermal_set_cooling_mode(tz,
1004 simple_strtoul(mode_string, NULL,
1005 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001007 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 acpi_thermal_check(tz);
1010
Patrick Mocheld550d982006-06-27 00:41:40 -04001011 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1015{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001016 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (!tz)
1020 goto end;
1021
1022 if (!tz->polling_frequency) {
1023 seq_puts(seq, "<polling disabled>\n");
1024 goto end;
1025 }
1026
1027 seq_printf(seq, "polling frequency: %lu seconds\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001028 (tz->polling_frequency / 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Len Brown4be44fc2005-08-05 00:44:28 -04001030 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001031 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
1034static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1035{
1036 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001037 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001041acpi_thermal_write_polling(struct file *file,
1042 const char __user * buffer,
1043 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001045 struct seq_file *m = file->private_data;
1046 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001047 int result = 0;
1048 char polling_string[12] = { '\0' };
1049 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001053 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001056 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 polling_string[count] = '\0';
1059
1060 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 result = acpi_thermal_set_polling(tz, seconds);
1063 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001064 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 acpi_thermal_check(tz);
1067
Patrick Mocheld550d982006-06-27 00:41:40 -04001068 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
Len Brown4be44fc2005-08-05 00:44:28 -04001071static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Len Brown4be44fc2005-08-05 00:44:28 -04001073 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (!acpi_device_dir(device)) {
1077 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001078 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001080 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 acpi_device_dir(device)->owner = THIS_MODULE;
1082 }
1083
1084 /* 'state' [R] */
1085 entry = create_proc_entry(ACPI_THERMAL_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -04001086 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001088 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 else {
1090 entry->proc_fops = &acpi_thermal_state_fops;
1091 entry->data = acpi_driver_data(device);
1092 entry->owner = THIS_MODULE;
1093 }
1094
1095 /* 'temperature' [R] */
1096 entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
Len Brown4be44fc2005-08-05 00:44:28 -04001097 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001099 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 else {
1101 entry->proc_fops = &acpi_thermal_temp_fops;
1102 entry->data = acpi_driver_data(device);
1103 entry->owner = THIS_MODULE;
1104 }
1105
1106 /* 'trip_points' [R/W] */
1107 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
Len Brown4be44fc2005-08-05 00:44:28 -04001108 S_IFREG | S_IRUGO | S_IWUSR,
1109 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001111 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 else {
1113 entry->proc_fops = &acpi_thermal_trip_fops;
1114 entry->data = acpi_driver_data(device);
1115 entry->owner = THIS_MODULE;
1116 }
1117
1118 /* 'cooling_mode' [R/W] */
1119 entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
Len Brown4be44fc2005-08-05 00:44:28 -04001120 S_IFREG | S_IRUGO | S_IWUSR,
1121 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001123 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 else {
1125 entry->proc_fops = &acpi_thermal_cooling_fops;
1126 entry->data = acpi_driver_data(device);
1127 entry->owner = THIS_MODULE;
1128 }
1129
1130 /* 'polling_frequency' [R/W] */
1131 entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
Len Brown4be44fc2005-08-05 00:44:28 -04001132 S_IFREG | S_IRUGO | S_IWUSR,
1133 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001135 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 else {
1137 entry->proc_fops = &acpi_thermal_polling_fops;
1138 entry->data = acpi_driver_data(device);
1139 entry->owner = THIS_MODULE;
1140 }
1141
Patrick Mocheld550d982006-06-27 00:41:40 -04001142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
Len Brown4be44fc2005-08-05 00:44:28 -04001145static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (acpi_device_dir(device)) {
1149 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1150 acpi_device_dir(device));
1151 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1152 acpi_device_dir(device));
1153 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1154 acpi_device_dir(device));
1155 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1156 acpi_device_dir(device));
1157 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1158 acpi_device_dir(device));
1159 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1160 acpi_device_dir(device) = NULL;
1161 }
1162
Patrick Mocheld550d982006-06-27 00:41:40 -04001163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166/* --------------------------------------------------------------------------
1167 Driver Interface
1168 -------------------------------------------------------------------------- */
1169
Len Brown4be44fc2005-08-05 00:44:28 -04001170static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001172 struct acpi_thermal *tz = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001173 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001177 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001179 device = tz->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 switch (event) {
1182 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1183 acpi_thermal_check(tz);
1184 break;
1185 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
1186 acpi_thermal_get_trip_points(tz);
1187 acpi_thermal_check(tz);
1188 acpi_bus_generate_event(device, event, 0);
1189 break;
1190 case ACPI_THERMAL_NOTIFY_DEVICES:
1191 if (tz->flags.devices)
1192 acpi_thermal_get_devices(tz);
1193 acpi_bus_generate_event(device, event, 0);
1194 break;
1195 default:
1196 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001197 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 break;
1199 }
1200
Patrick Mocheld550d982006-06-27 00:41:40 -04001201 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
Len Brown4be44fc2005-08-05 00:44:28 -04001204static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Len Brown4be44fc2005-08-05 00:44:28 -04001206 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001210 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 /* Get temperature [_TMP] (required) */
1213 result = acpi_thermal_get_temperature(tz);
1214 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001215 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /* Get trip points [_CRT, _PSV, etc.] (required) */
1218 result = acpi_thermal_get_trip_points(tz);
1219 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001220 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* Set the cooling mode [_SCP] to active cooling (default) */
1223 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001224 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 tz->flags.cooling_mode = 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001226 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* Oh,we have not _SCP method.
Len Brown4be44fc2005-08-05 00:44:28 -04001228 Generally show cooling_mode by _ACx, _PSV,spec 12.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 tz->flags.cooling_mode = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001230 if (tz->trips.active[0].flags.valid
1231 && tz->trips.passive.flags.valid) {
1232 if (tz->trips.passive.temperature >
1233 tz->trips.active[0].temperature)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 tz->cooling_mode = ACPI_THERMAL_MODE_ACTIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001235 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 tz->cooling_mode = ACPI_THERMAL_MODE_PASSIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001237 } else if (!tz->trips.active[0].flags.valid
1238 && tz->trips.passive.flags.valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 tz->cooling_mode = ACPI_THERMAL_MODE_PASSIVE;
Len Brown4be44fc2005-08-05 00:44:28 -04001240 } else if (tz->trips.active[0].flags.valid
1241 && !tz->trips.passive.flags.valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 tz->cooling_mode = ACPI_THERMAL_MODE_ACTIVE;
1243 } else {
1244 /* _ACx and _PSV are optional, but _CRT is required */
1245 tz->cooling_mode = ACPI_THERMAL_MODE_CRITICAL;
1246 }
1247 }
1248
1249 /* Get default polling frequency [_TZP] (optional) */
1250 if (tzp)
1251 tz->polling_frequency = tzp;
1252 else
1253 acpi_thermal_get_polling_frequency(tz);
1254
1255 /* Get devices in this thermal zone [_TZD] (optional) */
1256 result = acpi_thermal_get_devices(tz);
1257 if (!result)
1258 tz->flags.devices = 1;
1259
Patrick Mocheld550d982006-06-27 00:41:40 -04001260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
Len Brown4be44fc2005-08-05 00:44:28 -04001263static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Len Brown4be44fc2005-08-05 00:44:28 -04001265 int result = 0;
1266 acpi_status status = AE_OK;
1267 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001271 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Burman Yan36bcbec2006-12-19 12:56:11 -08001273 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001275 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001277 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 strcpy(tz->name, device->pnp.bus_id);
1279 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1280 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
1281 acpi_driver_data(device) = tz;
1282
1283 result = acpi_thermal_get_info(tz);
1284 if (result)
1285 goto end;
1286
1287 result = acpi_thermal_add_fs(device);
1288 if (result)
Vasily Averin09047e72006-04-27 05:25:00 -04001289 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 init_timer(&tz->timer);
1292
1293 acpi_thermal_check(tz);
1294
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001295 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001296 ACPI_DEVICE_NOTIFY,
1297 acpi_thermal_notify, tz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 result = -ENODEV;
1300 goto end;
1301 }
1302
1303 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001304 acpi_device_name(device), acpi_device_bid(device),
1305 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Len Brown4be44fc2005-08-05 00:44:28 -04001307 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (result) {
1309 acpi_thermal_remove_fs(device);
1310 kfree(tz);
1311 }
1312
Patrick Mocheld550d982006-06-27 00:41:40 -04001313 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Len Brown4be44fc2005-08-05 00:44:28 -04001316static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Len Brown4be44fc2005-08-05 00:44:28 -04001318 acpi_status status = AE_OK;
1319 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001323 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001325 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /* avoid timer adding new defer task */
1328 tz->zombie = 1;
1329 /* wait for running timer (on other CPUs) finish */
1330 del_timer_sync(&(tz->timer));
1331 /* synchronize deferred task */
1332 acpi_os_wait_events_complete(NULL);
1333 /* deferred task may reinsert timer */
1334 del_timer_sync(&(tz->timer));
1335
Patrick Mochel38ba7c92006-05-19 16:54:48 -04001336 status = acpi_remove_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001337 ACPI_DEVICE_NOTIFY,
1338 acpi_thermal_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* Terminate policy */
Len Brown4be44fc2005-08-05 00:44:28 -04001341 if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 tz->trips.passive.flags.enabled = 0;
1343 acpi_thermal_passive(tz);
1344 }
1345 if (tz->trips.active[0].flags.valid
Len Brown4be44fc2005-08-05 00:44:28 -04001346 && tz->trips.active[0].flags.enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 tz->trips.active[0].flags.enabled = 0;
1348 acpi_thermal_active(tz);
1349 }
1350
1351 acpi_thermal_remove_fs(device);
1352
1353 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001357static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001358{
1359 struct acpi_thermal *tz = NULL;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001360 int i;
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001361
1362 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001363 return -EINVAL;
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001364
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001365 tz = acpi_driver_data(device);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001366
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001367 acpi_thermal_get_temperature(tz);
1368
1369 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1370 if (tz->trips.active[i].flags.valid) {
1371 tz->temperature = tz->trips.active[i].temperature;
1372 tz->trips.active[i].flags.enabled = 0;
1373
1374 acpi_thermal_active(tz);
1375
1376 tz->state.active |= tz->trips.active[i].flags.enabled;
1377 tz->state.active_index = i;
1378 }
1379 }
1380
1381 acpi_thermal_check(tz);
Konstantin Karasyov74ce1462006-05-08 08:32:00 -04001382
1383 return AE_OK;
1384}
1385
Len Brown4be44fc2005-08-05 00:44:28 -04001386static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Len Brown4be44fc2005-08-05 00:44:28 -04001388 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1392 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001393 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 acpi_thermal_dir->owner = THIS_MODULE;
1395
1396 result = acpi_bus_register_driver(&acpi_thermal_driver);
1397 if (result < 0) {
1398 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
Patrick Mocheld550d982006-06-27 00:41:40 -04001402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Len Brown4be44fc2005-08-05 00:44:28 -04001405static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 acpi_bus_unregister_driver(&acpi_thermal_driver);
1409
1410 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1411
Patrick Mocheld550d982006-06-27 00:41:40 -04001412 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415module_init(acpi_thermal_init);
1416module_exit(acpi_thermal_exit);