blob: e9f28e075cf86d4828bbd3901004318a90a8d110 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_thermal.c - ACPI Thermal Zone Driver ($Revision: 41 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 *
25 * This driver fully implements the ACPI thermal policy as described in the
26 * ACPI 2.0 Specification.
27 *
28 * TBD: 1. Implement passive cooling hysteresis.
29 * 2. Enhance passive cooling (CPU) states/limit interface to support
30 * concepts of 'multiple limiters', upper/lower limits, etc.
31 *
32 */
33
34#include <linux/kernel.h>
35#include <linux/module.h>
Len Brown0b5bfa12007-08-12 00:13:02 -040036#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/proc_fs.h>
Tim Schmielaucd354f12007-02-14 00:33:14 -080040#include <linux/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>
Stephen Rothwellf6f5c452009-03-03 12:47:17 +110044#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
Zhang Rui3f655ef2008-01-17 15:51:11 +080046#include <linux/thermal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <acpi/acpi_bus.h>
48#include <acpi/acpi_drivers.h>
49
Len Browna192a952009-07-28 16:45:54 -040050#define PREFIX "ACPI: "
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_THERMAL_CLASS "thermal_zone"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
54#define ACPI_THERMAL_FILE_STATE "state"
55#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
56#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
57#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
58#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
59#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
60#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
61#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
62#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
63#define ACPI_THERMAL_NOTIFY_HOT 0xF1
64#define ACPI_THERMAL_MODE_ACTIVE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#define ACPI_THERMAL_MAX_ACTIVE 10
67#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050070ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040072MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050073MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074MODULE_LICENSE("GPL");
75
Len Brownf8707ec2007-08-12 00:12:54 -040076static int act;
77module_param(act, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040078MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
Len Brownf8707ec2007-08-12 00:12:54 -040079
Len Brownc52a7412007-08-14 15:49:32 -040080static int crt;
81module_param(crt, int, 0644);
82MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040085module_param(tzp, int, 0444);
Len Brown3c1d36d2007-08-14 15:12:56 -040086MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Len Brownf5487142007-08-12 00:12:44 -040088static int nocrt;
89module_param(nocrt, int, 0);
Len Brown8c99fdc2007-08-20 18:46:50 -040090MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
Len Brownf5487142007-08-12 00:12:44 -040091
Len Brown72b33ef2007-08-12 00:12:17 -040092static int off;
93module_param(off, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040094MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
Len Brown72b33ef2007-08-12 00:12:17 -040095
Len Browna70cdc52007-08-12 00:12:35 -040096static int psv;
97module_param(psv, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040098MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
Len Browna70cdc52007-08-12 00:12:35 -040099
Len Brown4be44fc2005-08-05 00:44:28 -0400100static int acpi_thermal_add(struct acpi_device *device);
101static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800102static int acpi_thermal_resume(struct acpi_device *device);
Bjorn Helgaas342d5502009-04-07 15:37:06 +0000103static void acpi_thermal_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
105static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
106static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400108static ssize_t acpi_thermal_write_cooling_mode(struct file *,
109 const char __user *, size_t,
110 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400112static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
113 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200115static const struct acpi_device_id thermal_device_ids[] = {
116 {ACPI_THERMAL_HID, 0},
117 {"", 0},
118};
119MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500122 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400123 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200124 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400125 .ops = {
126 .add = acpi_thermal_add,
127 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400128 .resume = acpi_thermal_resume,
Bjorn Helgaas342d5502009-04-07 15:37:06 +0000129 .notify = acpi_thermal_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400130 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400134 u8 critical:1;
135 u8 hot:1;
136 u8 passive:1;
137 u8 active:1;
138 u8 reserved:4;
139 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400143 u8 valid:1;
144 u8 enabled:1;
145 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148struct acpi_thermal_critical {
149 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400150 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153struct acpi_thermal_hot {
154 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct acpi_thermal_passive {
159 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 unsigned long temperature;
161 unsigned long tc1;
162 unsigned long tc2;
163 unsigned long tsp;
164 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167struct acpi_thermal_active {
168 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400169 unsigned long temperature;
170 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173struct acpi_thermal_trips {
174 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct acpi_thermal_passive passive;
177 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
178};
179
180struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400181 u8 cooling_mode:1; /* _SCP */
182 u8 devices:1; /* _TZD */
183 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
186struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400187 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400188 acpi_bus_id name;
189 unsigned long temperature;
190 unsigned long last_temperature;
191 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct acpi_thermal_flags flags;
194 struct acpi_thermal_state state;
195 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400196 struct acpi_handle_list devices;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800197 struct thermal_zone_device *thermal_zone;
198 int tz_enabled;
Jean Delvare13614e32009-04-06 16:01:46 +0200199 int kelvin_offset;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400200 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
Arjan van de Vend7508032006-07-04 13:06:00 -0400203static const struct file_operations acpi_thermal_state_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700204 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400205 .open = acpi_thermal_state_open_fs,
206 .read = seq_read,
207 .llseek = seq_lseek,
208 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Arjan van de Vend7508032006-07-04 13:06:00 -0400211static const struct file_operations acpi_thermal_temp_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700212 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 .open = acpi_thermal_temp_open_fs,
214 .read = seq_read,
215 .llseek = seq_lseek,
216 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
Arjan van de Vend7508032006-07-04 13:06:00 -0400219static const struct file_operations acpi_thermal_trip_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700220 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400221 .open = acpi_thermal_trip_open_fs,
222 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400223 .llseek = seq_lseek,
224 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
226
Arjan van de Vend7508032006-07-04 13:06:00 -0400227static const struct file_operations acpi_thermal_cooling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700228 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400229 .open = acpi_thermal_cooling_open_fs,
230 .read = seq_read,
231 .write = acpi_thermal_write_cooling_mode,
232 .llseek = seq_lseek,
233 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Arjan van de Vend7508032006-07-04 13:06:00 -0400236static const struct file_operations acpi_thermal_polling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700237 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400238 .open = acpi_thermal_polling_open_fs,
239 .read = seq_read,
240 .write = acpi_thermal_write_polling,
241 .llseek = seq_lseek,
242 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
245/* --------------------------------------------------------------------------
246 Thermal Zone Management
247 -------------------------------------------------------------------------- */
248
Len Brown4be44fc2005-08-05 00:44:28 -0400249static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Len Brown4be44fc2005-08-05 00:44:28 -0400251 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400252 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 tz->last_temperature = tz->temperature;
258
Matthew Wilcox27663c52008-10-10 02:22:59 -0400259 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Matthew Wilcox27663c52008-10-10 02:22:59 -0400263 tz->temperature = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400264 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
265 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Len Brown4be44fc2005-08-05 00:44:28 -0400272 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400273 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400276 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Matthew Wilcox27663c52008-10-10 02:22:59 -0400278 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400280 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Matthew Wilcox27663c52008-10-10 02:22:59 -0400282 tz->polling_frequency = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400283 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
284 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Len Brown4be44fc2005-08-05 00:44:28 -0400289static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
296
Matthew Garrettb1569e92008-12-03 17:55:32 +0000297 tz->thermal_zone->polling_delay = seconds * 1000;
298
299 if (tz->tz_enabled)
300 thermal_zone_device_update(tz->thermal_zone);
301
Len Brown4be44fc2005-08-05 00:44:28 -0400302 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
303 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500304 tz->polling_frequency/10));
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_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Len Brown4be44fc2005-08-05 00:44:28 -0400311 acpi_status status = AE_OK;
312 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
313 struct acpi_object_list arg_list = { 1, &arg0 };
314 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400318 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400320 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (ACPI_FAILURE(status)) {
322 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
326 arg0.integer.value = mode;
327
328 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
329 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Patrick Mocheld550d982006-06-27 00:41:40 -0400332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Zhang Ruice44e192008-01-17 15:51:25 +0800335#define ACPI_TRIPS_CRITICAL 0x01
336#define ACPI_TRIPS_HOT 0x02
337#define ACPI_TRIPS_PASSIVE 0x04
338#define ACPI_TRIPS_ACTIVE 0x08
339#define ACPI_TRIPS_DEVICES 0x10
340
341#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
342#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
343
344#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
345 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
346 ACPI_TRIPS_DEVICES)
347
348/*
349 * This exception is thrown out in two cases:
350 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
351 * when re-evaluating the AML code.
352 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
353 * We need to re-bind the cooling devices of a thermal zone when this occurs.
354 */
355#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
356do { \
357 if (flags != ACPI_TRIPS_INIT) \
358 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
359 "ACPI thermal trip point %s changed\n" \
360 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
361} while (0)
362
363static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Len Brown4be44fc2005-08-05 00:44:28 -0400365 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400366 unsigned long long tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800367 struct acpi_handle_list devices;
368 int valid = 0;
369 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 /* Critical Shutdown (required) */
Zhang Ruice44e192008-01-17 15:51:25 +0800372 if (flag & ACPI_TRIPS_CRITICAL) {
373 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400374 "_CRT", NULL, &tmp);
375 tz->trips.critical.temperature = tmp;
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700376 /*
377 * Treat freezing temperatures as invalid as well; some
378 * BIOSes return really low values and cause reboots at startup.
Adam Buchbinderb731d7b2009-03-13 12:15:26 -0400379 * Below zero (Celsius) values clearly aren't right for sure..
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700380 * ... so lets discard those as invalid.
381 */
382 if (ACPI_FAILURE(status) ||
383 tz->trips.critical.temperature <= 2732) {
Len Brownc52a7412007-08-14 15:49:32 -0400384 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800385 ACPI_EXCEPTION((AE_INFO, status,
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700386 "No or invalid critical threshold"));
Zhang Ruice44e192008-01-17 15:51:25 +0800387 return -ENODEV;
388 } else {
389 tz->trips.critical.flags.valid = 1;
390 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
391 "Found critical threshold [%lu]\n",
392 tz->trips.critical.temperature));
393 }
394 if (tz->trips.critical.flags.valid == 1) {
395 if (crt == -1) {
396 tz->trips.critical.flags.valid = 0;
397 } else if (crt > 0) {
398 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
399 /*
Zhang Rui22a94d72008-10-17 02:41:20 -0400400 * Allow override critical threshold
Zhang Ruice44e192008-01-17 15:51:25 +0800401 */
Zhang Rui22a94d72008-10-17 02:41:20 -0400402 if (crt_k > tz->trips.critical.temperature)
403 printk(KERN_WARNING PREFIX
404 "Critical threshold %d C\n", crt);
405 tz->trips.critical.temperature = crt_k;
Zhang Ruice44e192008-01-17 15:51:25 +0800406 }
Len Brownc52a7412007-08-14 15:49:32 -0400407 }
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800411 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400412 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400413 "_HOT", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800414 if (ACPI_FAILURE(status)) {
415 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400416 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800417 "No hot threshold\n"));
418 } else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400419 tz->trips.hot.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800420 tz->trips.hot.flags.valid = 1;
421 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
422 "Found hot threshold [%lu]\n",
423 tz->trips.critical.temperature));
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
Zhang Ruice44e192008-01-17 15:51:25 +0800427 /* Passive (optional) */
Zhang Rui0e4240d2009-01-16 12:53:42 -0500428 if (((flag & ACPI_TRIPS_PASSIVE) && tz->trips.passive.flags.valid) ||
429 (flag == ACPI_TRIPS_INIT)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800430 valid = tz->trips.passive.flags.valid;
431 if (psv == -1) {
432 status = AE_SUPPORT;
433 } else if (psv > 0) {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400434 tmp = CELSIUS_TO_KELVIN(psv);
Zhang Ruice44e192008-01-17 15:51:25 +0800435 status = AE_OK;
436 } else {
437 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400438 "_PSV", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Zhang Ruice44e192008-01-17 15:51:25 +0800441 if (ACPI_FAILURE(status))
442 tz->trips.passive.flags.valid = 0;
443 else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400444 tz->trips.passive.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800445 tz->trips.passive.flags.valid = 1;
446 if (flag == ACPI_TRIPS_INIT) {
447 status = acpi_evaluate_integer(
448 tz->device->handle, "_TC1",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400449 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800450 if (ACPI_FAILURE(status))
451 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400452 else
453 tz->trips.passive.tc1 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800454 status = acpi_evaluate_integer(
455 tz->device->handle, "_TC2",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400456 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800457 if (ACPI_FAILURE(status))
458 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400459 else
460 tz->trips.passive.tc2 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800461 status = acpi_evaluate_integer(
462 tz->device->handle, "_TSP",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400463 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800464 if (ACPI_FAILURE(status))
465 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400466 else
467 tz->trips.passive.tsp = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800468 }
469 }
470 }
471 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
472 memset(&devices, 0, sizeof(struct acpi_handle_list));
473 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
474 NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500475 if (ACPI_FAILURE(status)) {
476 printk(KERN_WARNING PREFIX
477 "Invalid passive threshold\n");
Zhang Ruice44e192008-01-17 15:51:25 +0800478 tz->trips.passive.flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500479 }
Zhang Ruice44e192008-01-17 15:51:25 +0800480 else
481 tz->trips.passive.flags.valid = 1;
482
483 if (memcmp(&tz->trips.passive.devices, &devices,
484 sizeof(struct acpi_handle_list))) {
485 memcpy(&tz->trips.passive.devices, &devices,
486 sizeof(struct acpi_handle_list));
487 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
488 }
489 }
490 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
491 if (valid != tz->trips.passive.flags.valid)
492 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
493 }
494
495 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400496 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400497 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800498 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Len Brownf8707ec2007-08-12 00:12:54 -0400500 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800501 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400502
Zhang Rui0e4240d2009-01-16 12:53:42 -0500503 if ((flag == ACPI_TRIPS_INIT) || ((flag & ACPI_TRIPS_ACTIVE) &&
504 tz->trips.active[i].flags.valid)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800505 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400506 name, NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800507 if (ACPI_FAILURE(status)) {
508 tz->trips.active[i].flags.valid = 0;
509 if (i == 0)
510 break;
511 if (act <= 0)
512 break;
513 if (i == 1)
514 tz->trips.active[0].temperature =
515 CELSIUS_TO_KELVIN(act);
516 else
517 /*
518 * Don't allow override higher than
519 * the next higher trip point
520 */
521 tz->trips.active[i - 1].temperature =
522 (tz->trips.active[i - 2].temperature <
523 CELSIUS_TO_KELVIN(act) ?
524 tz->trips.active[i - 2].temperature :
525 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400526 break;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400527 } else {
528 tz->trips.active[i].temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800529 tz->trips.active[i].flags.valid = 1;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400530 }
Len Brownf8707ec2007-08-12 00:12:54 -0400531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800534 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
535 memset(&devices, 0, sizeof(struct acpi_handle_list));
536 status = acpi_evaluate_reference(tz->device->handle,
537 name, NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500538 if (ACPI_FAILURE(status)) {
539 printk(KERN_WARNING PREFIX
540 "Invalid active%d threshold\n", i);
Zhang Ruice44e192008-01-17 15:51:25 +0800541 tz->trips.active[i].flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500542 }
Zhang Ruice44e192008-01-17 15:51:25 +0800543 else
544 tz->trips.active[i].flags.valid = 1;
545
546 if (memcmp(&tz->trips.active[i].devices, &devices,
547 sizeof(struct acpi_handle_list))) {
548 memcpy(&tz->trips.active[i].devices, &devices,
549 sizeof(struct acpi_handle_list));
550 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
551 }
552 }
553 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
554 if (valid != tz->trips.active[i].flags.valid)
555 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
556
557 if (!tz->trips.active[i].flags.valid)
558 break;
559 }
560
561 if (flag & ACPI_TRIPS_DEVICES) {
562 memset(&devices, 0, sizeof(struct acpi_handle_list));
563 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
564 NULL, &devices);
565 if (memcmp(&tz->devices, &devices,
566 sizeof(struct acpi_handle_list))) {
567 memcpy(&tz->devices, &devices,
568 sizeof(struct acpi_handle_list));
569 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
Patrick Mocheld550d982006-06-27 00:41:40 -0400573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Zhang Ruice44e192008-01-17 15:51:25 +0800576static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Thomas Renninger8b7ef6d2010-02-16 22:55:51 +0100578 int i, valid, ret = acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
579
580 if (ret)
581 return ret;
582
583 valid = tz->trips.critical.flags.valid |
584 tz->trips.hot.flags.valid |
585 tz->trips.passive.flags.valid;
586
587 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
588 valid |= tz->trips.active[i].flags.valid;
589
590 if (!valid) {
591 printk(KERN_WARNING FW_BUG "No valid trip found\n");
592 return -ENODEV;
593 }
594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200599 struct acpi_thermal *tz = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Matthew Garrettb1569e92008-12-03 17:55:32 +0000601 thermal_zone_device_update(tz->thermal_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Zhang Rui3f655ef2008-01-17 15:51:11 +0800604/* sys I/F for generic thermal sysfs support */
Jean Delvare13614e32009-04-06 16:01:46 +0200605#define KELVIN_TO_MILLICELSIUS(t, off) (((t) - (off)) * 100)
Zhang, Rui5e012762008-02-28 07:51:30 +0800606
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000607static int thermal_get_temp(struct thermal_zone_device *thermal,
608 unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800609{
610 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800611 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800612
613 if (!tz)
614 return -EINVAL;
615
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800616 result = acpi_thermal_get_temperature(tz);
617 if (result)
618 return result;
619
Jean Delvare13614e32009-04-06 16:01:46 +0200620 *temp = KELVIN_TO_MILLICELSIUS(tz->temperature, tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000621 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800622}
623
624static const char enabled[] = "kernel";
625static const char disabled[] = "user";
626static int thermal_get_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000627 enum thermal_device_mode *mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800628{
629 struct acpi_thermal *tz = thermal->devdata;
630
631 if (!tz)
632 return -EINVAL;
633
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000634 *mode = tz->tz_enabled ? THERMAL_DEVICE_ENABLED :
635 THERMAL_DEVICE_DISABLED;
636
637 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800638}
639
640static int thermal_set_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000641 enum thermal_device_mode mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800642{
643 struct acpi_thermal *tz = thermal->devdata;
644 int enable;
645
646 if (!tz)
647 return -EINVAL;
648
649 /*
650 * enable/disable thermal management from ACPI thermal driver
651 */
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000652 if (mode == THERMAL_DEVICE_ENABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800653 enable = 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000654 else if (mode == THERMAL_DEVICE_DISABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800655 enable = 0;
656 else
657 return -EINVAL;
658
659 if (enable != tz->tz_enabled) {
660 tz->tz_enabled = enable;
661 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
662 "%s ACPI thermal control\n",
663 tz->tz_enabled ? enabled : disabled));
664 acpi_thermal_check(tz);
665 }
666 return 0;
667}
668
669static int thermal_get_trip_type(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000670 int trip, enum thermal_trip_type *type)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800671{
672 struct acpi_thermal *tz = thermal->devdata;
673 int i;
674
675 if (!tz || trip < 0)
676 return -EINVAL;
677
678 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000679 if (!trip) {
680 *type = THERMAL_TRIP_CRITICAL;
681 return 0;
682 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800683 trip--;
684 }
685
686 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000687 if (!trip) {
688 *type = THERMAL_TRIP_HOT;
689 return 0;
690 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800691 trip--;
692 }
693
694 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000695 if (!trip) {
696 *type = THERMAL_TRIP_PASSIVE;
697 return 0;
698 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800699 trip--;
700 }
701
702 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
703 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000704 if (!trip) {
705 *type = THERMAL_TRIP_ACTIVE;
706 return 0;
707 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800708 trip--;
709 }
710
711 return -EINVAL;
712}
713
714static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000715 int trip, unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800716{
717 struct acpi_thermal *tz = thermal->devdata;
718 int i;
719
720 if (!tz || trip < 0)
721 return -EINVAL;
722
723 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000724 if (!trip) {
725 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200726 tz->trips.critical.temperature,
727 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000728 return 0;
729 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800730 trip--;
731 }
732
733 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000734 if (!trip) {
735 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200736 tz->trips.hot.temperature,
737 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000738 return 0;
739 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800740 trip--;
741 }
742
743 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000744 if (!trip) {
745 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200746 tz->trips.passive.temperature,
747 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000748 return 0;
749 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800750 trip--;
751 }
752
753 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
754 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000755 if (!trip) {
756 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200757 tz->trips.active[i].temperature,
758 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000759 return 0;
760 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800761 trip--;
762 }
763
764 return -EINVAL;
765}
766
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800767static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
768 unsigned long *temperature) {
769 struct acpi_thermal *tz = thermal->devdata;
770
771 if (tz->trips.critical.flags.valid) {
772 *temperature = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200773 tz->trips.critical.temperature,
774 tz->kelvin_offset);
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800775 return 0;
776 } else
777 return -EINVAL;
778}
779
Matthew Garrettb1569e92008-12-03 17:55:32 +0000780static int thermal_notify(struct thermal_zone_device *thermal, int trip,
781 enum thermal_trip_type trip_type)
782{
783 u8 type = 0;
784 struct acpi_thermal *tz = thermal->devdata;
785
786 if (trip_type == THERMAL_TRIP_CRITICAL)
787 type = ACPI_THERMAL_NOTIFY_CRITICAL;
788 else if (trip_type == THERMAL_TRIP_HOT)
789 type = ACPI_THERMAL_NOTIFY_HOT;
790 else
791 return 0;
792
793 acpi_bus_generate_proc_event(tz->device, type, 1);
794 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
Stephen Rothwellf6f5c452009-03-03 12:47:17 +1100795 dev_name(&tz->device->dev), type, 1);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000796
797 if (trip_type == THERMAL_TRIP_CRITICAL && nocrt)
798 return 1;
799
800 return 0;
801}
802
Zhang Rui3f655ef2008-01-17 15:51:11 +0800803typedef int (*cb)(struct thermal_zone_device *, int,
804 struct thermal_cooling_device *);
805static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
806 struct thermal_cooling_device *cdev,
807 cb action)
808{
809 struct acpi_device *device = cdev->devdata;
810 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +0800811 struct acpi_device *dev;
812 acpi_status status;
813 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800814 int i;
815 int j;
816 int trip = -1;
817 int result = 0;
818
819 if (tz->trips.critical.flags.valid)
820 trip++;
821
822 if (tz->trips.hot.flags.valid)
823 trip++;
824
825 if (tz->trips.passive.flags.valid) {
826 trip++;
827 for (i = 0; i < tz->trips.passive.devices.count;
828 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800829 handle = tz->trips.passive.devices.handles[i];
830 status = acpi_bus_get_device(handle, &dev);
831 if (ACPI_SUCCESS(status) && (dev == device)) {
832 result = action(thermal, trip, cdev);
833 if (result)
834 goto failed;
835 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800836 }
837 }
838
839 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
840 if (!tz->trips.active[i].flags.valid)
841 break;
842 trip++;
843 for (j = 0;
844 j < tz->trips.active[i].devices.count;
845 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800846 handle = tz->trips.active[i].devices.handles[j];
847 status = acpi_bus_get_device(handle, &dev);
848 if (ACPI_SUCCESS(status) && (dev == device)) {
849 result = action(thermal, trip, cdev);
850 if (result)
851 goto failed;
852 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800853 }
854 }
855
856 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800857 handle = tz->devices.handles[i];
858 status = acpi_bus_get_device(handle, &dev);
859 if (ACPI_SUCCESS(status) && (dev == device)) {
860 result = action(thermal, -1, cdev);
861 if (result)
862 goto failed;
863 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800864 }
865
866failed:
867 return result;
868}
869
870static int
871acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
872 struct thermal_cooling_device *cdev)
873{
874 return acpi_thermal_cooling_device_cb(thermal, cdev,
875 thermal_zone_bind_cooling_device);
876}
877
878static int
879acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
880 struct thermal_cooling_device *cdev)
881{
882 return acpi_thermal_cooling_device_cb(thermal, cdev,
883 thermal_zone_unbind_cooling_device);
884}
885
886static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
887 .bind = acpi_thermal_bind_cooling_device,
888 .unbind = acpi_thermal_unbind_cooling_device,
889 .get_temp = thermal_get_temp,
890 .get_mode = thermal_get_mode,
891 .set_mode = thermal_set_mode,
892 .get_trip_type = thermal_get_trip_type,
893 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800894 .get_crit_temp = thermal_get_crit_temp,
Matthew Garrettb1569e92008-12-03 17:55:32 +0000895 .notify = thermal_notify,
Zhang Rui3f655ef2008-01-17 15:51:11 +0800896};
897
898static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
899{
900 int trips = 0;
901 int result;
Zhang Rui20733932008-01-17 15:51:21 +0800902 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800903 int i;
904
905 if (tz->trips.critical.flags.valid)
906 trips++;
907
908 if (tz->trips.hot.flags.valid)
909 trips++;
910
911 if (tz->trips.passive.flags.valid)
912 trips++;
913
914 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
915 tz->trips.active[i].flags.valid; i++, trips++);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000916
917 if (tz->trips.passive.flags.valid)
918 tz->thermal_zone =
919 thermal_zone_device_register("acpitz", trips, tz,
920 &acpi_thermal_zone_ops,
921 tz->trips.passive.tc1,
922 tz->trips.passive.tc2,
923 tz->trips.passive.tsp*100,
924 tz->polling_frequency*100);
925 else
926 tz->thermal_zone =
927 thermal_zone_device_register("acpitz", trips, tz,
928 &acpi_thermal_zone_ops,
929 0, 0, 0,
Matthew Garrett67405432009-04-14 20:16:45 +0100930 tz->polling_frequency*100);
Krzysztof Heltbb070e42008-04-08 17:41:52 -0700931 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +0800932 return -ENODEV;
933
934 result = sysfs_create_link(&tz->device->dev.kobj,
935 &tz->thermal_zone->device.kobj, "thermal_zone");
936 if (result)
937 return result;
938
939 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
940 &tz->device->dev.kobj, "device");
941 if (result)
942 return result;
943
Zhang Rui20733932008-01-17 15:51:21 +0800944 status = acpi_attach_data(tz->device->handle,
945 acpi_bus_private_data_handler,
946 tz->thermal_zone);
947 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800948 printk(KERN_ERR PREFIX
949 "Error attaching device data\n");
Zhang Rui20733932008-01-17 15:51:21 +0800950 return -ENODEV;
951 }
952
Zhang Rui3f655ef2008-01-17 15:51:11 +0800953 tz->tz_enabled = 1;
954
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200955 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
956 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800957 return 0;
958}
959
960static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
961{
962 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
963 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
964 thermal_zone_device_unregister(tz->thermal_zone);
965 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +0800966 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800967}
968
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970/* --------------------------------------------------------------------------
971 FS Interface (/proc)
972 -------------------------------------------------------------------------- */
973
Len Brown4be44fc2005-08-05 00:44:28 -0400974static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
977{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200978 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 if (!tz)
982 goto end;
983
984 seq_puts(seq, "state: ");
985
Len Brown4be44fc2005-08-05 00:44:28 -0400986 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
987 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 seq_puts(seq, "ok\n");
989 else {
990 if (tz->state.critical)
991 seq_puts(seq, "critical ");
992 if (tz->state.hot)
993 seq_puts(seq, "hot ");
994 if (tz->state.passive)
995 seq_puts(seq, "passive ");
996 if (tz->state.active)
997 seq_printf(seq, "active[%d]", tz->state.active_index);
998 seq_puts(seq, "\n");
999 }
1000
Len Brown4be44fc2005-08-05 00:44:28 -04001001 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001002 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1006{
1007 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1011{
Len Brown4be44fc2005-08-05 00:44:28 -04001012 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001013 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 if (!tz)
1017 goto end;
1018
1019 result = acpi_thermal_get_temperature(tz);
1020 if (result)
1021 goto end;
1022
Len Brown4be44fc2005-08-05 00:44:28 -04001023 seq_printf(seq, "temperature: %ld C\n",
1024 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Len Brown4be44fc2005-08-05 00:44:28 -04001026 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1031{
1032 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1033}
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1036{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001037 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001038 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001039 acpi_status status;
1040
Len Brown4be44fc2005-08-05 00:44:28 -04001041 int i = 0;
1042 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 if (!tz)
1046 goto end;
1047
1048 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001049 seq_printf(seq, "critical (S5): %ld C%s",
1050 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1051 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001054 seq_printf(seq, "hot (S4): %ld C%s",
1055 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1056 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001059 seq_printf(seq,
1060 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1061 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1062 tz->trips.passive.tc1, tz->trips.passive.tc2,
1063 tz->trips.passive.tsp);
1064 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001065 status = acpi_bus_get_device(tz->trips.passive.devices.
1066 handles[j], &device);
1067 seq_printf(seq, "%4.4s ", status ? "" :
1068 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070 seq_puts(seq, "\n");
Frans Pop7fb26162009-10-26 08:39:01 +01001071 } else {
1072 seq_printf(seq, "passive (forced):");
1073 if (tz->thermal_zone->forced_passive)
1074 seq_printf(seq, " %i C\n",
1075 tz->thermal_zone->forced_passive / 1000);
1076 else
1077 seq_printf(seq, "<not set>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
1080 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1081 if (!(tz->trips.active[i].flags.valid))
1082 break;
1083 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001084 i,
1085 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001086 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001087 status = acpi_bus_get_device(tz->trips.active[i].
1088 devices.handles[j],
1089 &device);
1090 seq_printf(seq, "%4.4s ", status ? "" :
1091 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 seq_puts(seq, "\n");
1094 }
1095
Len Brown4be44fc2005-08-05 00:44:28 -04001096 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1101{
1102 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1106{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001107 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (!tz)
1111 goto end;
1112
Len Browneaca2d32007-04-30 23:27:43 -04001113 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 else
Len Browneaca2d32007-04-30 23:27:43 -04001116 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Len Brown4be44fc2005-08-05 00:44:28 -04001118 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1123{
1124 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001125 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
1128static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001129acpi_thermal_write_cooling_mode(struct file *file,
1130 const char __user * buffer,
1131 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001133 struct seq_file *m = file->private_data;
1134 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001135 int result = 0;
1136 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001140 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001143 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001146 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001149
1150 result = acpi_thermal_set_cooling_mode(tz,
1151 simple_strtoul(mode_string, NULL,
1152 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001154 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 acpi_thermal_check(tz);
1157
Patrick Mocheld550d982006-06-27 00:41:40 -04001158 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1162{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001163 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (!tz)
1167 goto end;
1168
Matthew Garrettb1569e92008-12-03 17:55:32 +00001169 if (!tz->thermal_zone->polling_delay) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 seq_puts(seq, "<polling disabled>\n");
1171 goto end;
1172 }
1173
Matthew Garrettb1569e92008-12-03 17:55:32 +00001174 seq_printf(seq, "polling frequency: %d seconds\n",
1175 (tz->thermal_zone->polling_delay / 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Len Brown4be44fc2005-08-05 00:44:28 -04001177 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1182{
1183 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001184 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
1187static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001188acpi_thermal_write_polling(struct file *file,
1189 const char __user * buffer,
1190 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001192 struct seq_file *m = file->private_data;
1193 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001194 int result = 0;
1195 char polling_string[12] = { '\0' };
1196 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001200 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001203 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 polling_string[count] = '\0';
1206
1207 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 result = acpi_thermal_set_polling(tz, seconds);
1210 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001211 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 acpi_thermal_check(tz);
1214
Patrick Mocheld550d982006-06-27 00:41:40 -04001215 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Len Brown4be44fc2005-08-05 00:44:28 -04001218static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Len Brown4be44fc2005-08-05 00:44:28 -04001220 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (!acpi_device_dir(device)) {
1224 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001225 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001227 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
1230 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001231 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1232 S_IRUGO, acpi_device_dir(device),
1233 &acpi_thermal_state_fops,
1234 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001236 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001239 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1240 S_IRUGO, acpi_device_dir(device),
1241 &acpi_thermal_temp_fops,
1242 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001244 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001246 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001247 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1248 S_IRUGO,
1249 acpi_device_dir(device),
1250 &acpi_thermal_trip_fops,
1251 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001253 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001256 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1257 S_IFREG | S_IRUGO | S_IWUSR,
1258 acpi_device_dir(device),
1259 &acpi_thermal_cooling_fops,
1260 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001262 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001265 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1266 S_IFREG | S_IRUGO | S_IWUSR,
1267 acpi_device_dir(device),
1268 &acpi_thermal_polling_fops,
1269 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001271 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
Len Brown4be44fc2005-08-05 00:44:28 -04001275static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 if (acpi_device_dir(device)) {
1279 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1280 acpi_device_dir(device));
1281 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1282 acpi_device_dir(device));
1283 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1284 acpi_device_dir(device));
1285 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1286 acpi_device_dir(device));
1287 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1288 acpi_device_dir(device));
1289 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1290 acpi_device_dir(device) = NULL;
1291 }
1292
Patrick Mocheld550d982006-06-27 00:41:40 -04001293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296/* --------------------------------------------------------------------------
1297 Driver Interface
1298 -------------------------------------------------------------------------- */
1299
Bjorn Helgaas342d5502009-04-07 15:37:06 +00001300static void acpi_thermal_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Bjorn Helgaas342d5502009-04-07 15:37:06 +00001302 struct acpi_thermal *tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001306 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 switch (event) {
1309 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1310 acpi_thermal_check(tz);
1311 break;
1312 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001313 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001315 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001316 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001317 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 break;
1319 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001320 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1321 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001322 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001323 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001324 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 break;
1326 default:
1327 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001328 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Len Brown4be44fc2005-08-05 00:44:28 -04001333static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Len Brown4be44fc2005-08-05 00:44:28 -04001335 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001339 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 /* Get temperature [_TMP] (required) */
1342 result = acpi_thermal_get_temperature(tz);
1343 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001344 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 /* Get trip points [_CRT, _PSV, etc.] (required) */
1347 result = acpi_thermal_get_trip_points(tz);
1348 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001349 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 /* Set the cooling mode [_SCP] to active cooling (default) */
1352 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001353 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 /* Get default polling frequency [_TZP] (optional) */
1357 if (tzp)
1358 tz->polling_frequency = tzp;
1359 else
1360 acpi_thermal_get_polling_frequency(tz);
1361
Patrick Mocheld550d982006-06-27 00:41:40 -04001362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Jean Delvare13614e32009-04-06 16:01:46 +02001365/*
1366 * The exact offset between Kelvin and degree Celsius is 273.15. However ACPI
1367 * handles temperature values with a single decimal place. As a consequence,
1368 * some implementations use an offset of 273.1 and others use an offset of
1369 * 273.2. Try to find out which one is being used, to present the most
1370 * accurate and visually appealing number.
1371 *
1372 * The heuristic below should work for all ACPI thermal zones which have a
1373 * critical trip point with a value being a multiple of 0.5 degree Celsius.
1374 */
1375static void acpi_thermal_guess_offset(struct acpi_thermal *tz)
1376{
1377 if (tz->trips.critical.flags.valid &&
1378 (tz->trips.critical.temperature % 5) == 1)
1379 tz->kelvin_offset = 2731;
1380 else
1381 tz->kelvin_offset = 2732;
1382}
1383
Len Brown4be44fc2005-08-05 00:44:28 -04001384static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Len Brown4be44fc2005-08-05 00:44:28 -04001386 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001387 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001391 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Burman Yan36bcbec2006-12-19 12:56:11 -08001393 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001395 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001397 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 strcpy(tz->name, device->pnp.bus_id);
1399 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1400 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001401 device->driver_data = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001402 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001403
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 result = acpi_thermal_get_info(tz);
1406 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001407 goto free_memory;
1408
Jean Delvare13614e32009-04-06 16:01:46 +02001409 acpi_thermal_guess_offset(tz);
1410
Zhang Rui3f655ef2008-01-17 15:51:11 +08001411 result = acpi_thermal_register_thermal_zone(tz);
1412 if (result)
1413 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 result = acpi_thermal_add_fs(device);
1416 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001417 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001420 acpi_device_name(device), acpi_device_bid(device),
1421 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001422 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Zhang Rui3f655ef2008-01-17 15:51:11 +08001424unregister_thermal_zone:
1425 thermal_zone_device_unregister(tz->thermal_zone);
1426free_memory:
1427 kfree(tz);
1428end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001429 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Len Brown4be44fc2005-08-05 00:44:28 -04001432static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Len Brown4be44fc2005-08-05 00:44:28 -04001434 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001437 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001439 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001442 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001443 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001445 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001448static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001449{
1450 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001451 int i, j, power_state, result;
1452
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001453
1454 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001455 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001456
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001457 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001458
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001459 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001460 if (!(&tz->trips.active[i]))
1461 break;
1462 if (!tz->trips.active[i].flags.valid)
1463 break;
1464 tz->trips.active[i].flags.enabled = 1;
1465 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1466 result = acpi_bus_get_power(tz->trips.active[i].devices.
1467 handles[j], &power_state);
1468 if (result || (power_state != ACPI_STATE_D0)) {
1469 tz->trips.active[i].flags.enabled = 0;
1470 break;
1471 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001472 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001473 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001474 }
1475
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001476 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001477
1478 return AE_OK;
1479}
1480
Jeff Garzik18552562007-10-03 15:15:40 -04001481static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001482
1483 if (act == 0) {
1484 printk(KERN_NOTICE "ACPI: %s detected: "
1485 "disabling all active thermal trip points\n", d->ident);
1486 act = -1;
1487 }
1488 return 0;
1489}
Jeff Garzik18552562007-10-03 15:15:40 -04001490static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001491
1492 printk(KERN_NOTICE "ACPI: %s detected: "
1493 "disabling all critical thermal trip point actions.\n", d->ident);
1494 nocrt = 1;
1495 return 0;
1496}
Jeff Garzik18552562007-10-03 15:15:40 -04001497static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001498
1499 if (tzp == 0) {
1500 printk(KERN_NOTICE "ACPI: %s detected: "
1501 "enabling thermal zone polling\n", d->ident);
1502 tzp = 300; /* 300 dS = 30 Seconds */
1503 }
1504 return 0;
1505}
Jeff Garzik18552562007-10-03 15:15:40 -04001506static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001507
1508 if (psv == 0) {
1509 printk(KERN_NOTICE "ACPI: %s detected: "
1510 "disabling all passive thermal trip points\n", d->ident);
1511 psv = -1;
1512 }
1513 return 0;
1514}
1515
1516static struct dmi_system_id thermal_dmi_table[] __initdata = {
1517 /*
1518 * Award BIOS on this AOpen makes thermal control almost worthless.
1519 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1520 */
1521 {
1522 .callback = thermal_act,
1523 .ident = "AOpen i915GMm-HFS",
1524 .matches = {
1525 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1526 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1527 },
1528 },
1529 {
1530 .callback = thermal_psv,
1531 .ident = "AOpen i915GMm-HFS",
1532 .matches = {
1533 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1534 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1535 },
1536 },
1537 {
1538 .callback = thermal_tzp,
1539 .ident = "AOpen i915GMm-HFS",
1540 .matches = {
1541 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1542 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1543 },
1544 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001545 {
1546 .callback = thermal_nocrt,
1547 .ident = "Gigabyte GA-7ZX",
1548 .matches = {
1549 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1550 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1551 },
1552 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001553 {}
1554};
Len Brown0b5bfa12007-08-12 00:13:02 -04001555
Len Brown4be44fc2005-08-05 00:44:28 -04001556static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Len Brown4be44fc2005-08-05 00:44:28 -04001558 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Len Brown0b5bfa12007-08-12 00:13:02 -04001560 dmi_check_system(thermal_dmi_table);
1561
Len Brown72b33ef2007-08-12 00:12:17 -04001562 if (off) {
1563 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1564 return -ENODEV;
1565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1567 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001568 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 result = acpi_bus_register_driver(&acpi_thermal_driver);
1571 if (result < 0) {
1572 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001573 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
Patrick Mocheld550d982006-06-27 00:41:40 -04001576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Len Brown4be44fc2005-08-05 00:44:28 -04001579static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 acpi_bus_unregister_driver(&acpi_thermal_driver);
1583
1584 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1585
Patrick Mocheld550d982006-06-27 00:41:40 -04001586 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589module_init(acpi_thermal_init);
1590module_exit(acpi_thermal_exit);