blob: efad1f33aeb588b1c4910697ac97dfcfc2ad2b92 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/proc_fs.h>
Tim Schmielaucd354f12007-02-14 00:33:14 -080041#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/kmod.h>
43#include <linux/seq_file.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070044#include <linux/reboot.h>
Stephen Rothwellf6f5c452009-03-03 12:47:17 +110045#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/uaccess.h>
Zhang Rui3f655ef2008-01-17 15:51:11 +080047#include <linux/thermal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <acpi/acpi_bus.h>
49#include <acpi/acpi_drivers.h>
50
Len Browna192a952009-07-28 16:45:54 -040051#define PREFIX "ACPI: "
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_THERMAL_CLASS "thermal_zone"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
55#define ACPI_THERMAL_FILE_STATE "state"
56#define ACPI_THERMAL_FILE_TEMPERATURE "temperature"
57#define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points"
58#define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode"
59#define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency"
60#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
61#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
62#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
63#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
64#define ACPI_THERMAL_NOTIFY_HOT 0xF1
65#define ACPI_THERMAL_MODE_ACTIVE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#define ACPI_THERMAL_MAX_ACTIVE 10
68#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define _COMPONENT ACPI_THERMAL_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050071ACPI_MODULE_NAME("thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Thomas Renninger1cbf4c52004-09-16 11:07:00 -040073MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050074MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_LICENSE("GPL");
76
Len Brownf8707ec2007-08-12 00:12:54 -040077static int act;
78module_param(act, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040079MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
Len Brownf8707ec2007-08-12 00:12:54 -040080
Len Brownc52a7412007-08-14 15:49:32 -040081static int crt;
82module_param(crt, int, 0644);
83MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int tzp;
Len Brown730ff342007-08-12 00:12:26 -040086module_param(tzp, int, 0444);
Len Brown3c1d36d2007-08-14 15:12:56 -040087MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Len Brownf5487142007-08-12 00:12:44 -040089static int nocrt;
90module_param(nocrt, int, 0);
Len Brown8c99fdc2007-08-20 18:46:50 -040091MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points.");
Len Brownf5487142007-08-12 00:12:44 -040092
Len Brown72b33ef2007-08-12 00:12:17 -040093static int off;
94module_param(off, int, 0);
Len Brown3c1d36d2007-08-14 15:12:56 -040095MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
Len Brown72b33ef2007-08-12 00:12:17 -040096
Len Browna70cdc52007-08-12 00:12:35 -040097static int psv;
98module_param(psv, int, 0644);
Len Brown3c1d36d2007-08-14 15:12:56 -040099MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
Len Browna70cdc52007-08-12 00:12:35 -0400100
Len Brown4be44fc2005-08-05 00:44:28 -0400101static int acpi_thermal_add(struct acpi_device *device);
102static int acpi_thermal_remove(struct acpi_device *device, int type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800103static int acpi_thermal_resume(struct acpi_device *device);
Bjorn Helgaas342d5502009-04-07 15:37:06 +0000104static void acpi_thermal_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file);
106static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file);
107static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400109static ssize_t acpi_thermal_write_cooling_mode(struct file *,
110 const char __user *, size_t,
111 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -0400113static ssize_t acpi_thermal_write_polling(struct file *, const char __user *,
114 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200116static const struct acpi_device_id thermal_device_ids[] = {
117 {ACPI_THERMAL_HID, 0},
118 {"", 0},
119};
120MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct acpi_driver acpi_thermal_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500123 .name = "thermal",
Len Brown4be44fc2005-08-05 00:44:28 -0400124 .class = ACPI_THERMAL_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200125 .ids = thermal_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400126 .ops = {
127 .add = acpi_thermal_add,
128 .remove = acpi_thermal_remove,
Konstantin Karasyov74ce14682006-05-08 08:32:00 -0400129 .resume = acpi_thermal_resume,
Bjorn Helgaas342d5502009-04-07 15:37:06 +0000130 .notify = acpi_thermal_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400131 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
134struct acpi_thermal_state {
Len Brown4be44fc2005-08-05 00:44:28 -0400135 u8 critical:1;
136 u8 hot:1;
137 u8 passive:1;
138 u8 active:1;
139 u8 reserved:4;
140 int active_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct acpi_thermal_state_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400144 u8 valid:1;
145 u8 enabled:1;
146 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149struct acpi_thermal_critical {
150 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400151 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154struct acpi_thermal_hot {
155 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400156 unsigned long temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159struct acpi_thermal_passive {
160 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400161 unsigned long temperature;
162 unsigned long tc1;
163 unsigned long tc2;
164 unsigned long tsp;
165 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166};
167
168struct acpi_thermal_active {
169 struct acpi_thermal_state_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400170 unsigned long temperature;
171 struct acpi_handle_list devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172};
173
174struct acpi_thermal_trips {
175 struct acpi_thermal_critical critical;
Len Brown4be44fc2005-08-05 00:44:28 -0400176 struct acpi_thermal_hot hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct acpi_thermal_passive passive;
178 struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
179};
180
181struct acpi_thermal_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400182 u8 cooling_mode:1; /* _SCP */
183 u8 devices:1; /* _TZD */
184 u8 reserved:6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187struct acpi_thermal {
Patrick Mochel8348e1b2006-05-19 16:54:40 -0400188 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400189 acpi_bus_id name;
190 unsigned long temperature;
191 unsigned long last_temperature;
192 unsigned long polling_frequency;
Len Brown4be44fc2005-08-05 00:44:28 -0400193 volatile u8 zombie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct acpi_thermal_flags flags;
195 struct acpi_thermal_state state;
196 struct acpi_thermal_trips trips;
Len Brown4be44fc2005-08-05 00:44:28 -0400197 struct acpi_handle_list devices;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800198 struct thermal_zone_device *thermal_zone;
199 int tz_enabled;
Jean Delvare13614e32009-04-06 16:01:46 +0200200 int kelvin_offset;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +0400201 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202};
203
Arjan van de Vend7508032006-07-04 13:06:00 -0400204static const struct file_operations acpi_thermal_state_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700205 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400206 .open = acpi_thermal_state_open_fs,
207 .read = seq_read,
208 .llseek = seq_lseek,
209 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Arjan van de Vend7508032006-07-04 13:06:00 -0400212static const struct file_operations acpi_thermal_temp_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700213 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400214 .open = acpi_thermal_temp_open_fs,
215 .read = seq_read,
216 .llseek = seq_lseek,
217 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Arjan van de Vend7508032006-07-04 13:06:00 -0400220static const struct file_operations acpi_thermal_trip_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700221 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400222 .open = acpi_thermal_trip_open_fs,
223 .read = seq_read,
Len Brown4be44fc2005-08-05 00:44:28 -0400224 .llseek = seq_lseek,
225 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
Arjan van de Vend7508032006-07-04 13:06:00 -0400228static const struct file_operations acpi_thermal_cooling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700229 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 .open = acpi_thermal_cooling_open_fs,
231 .read = seq_read,
232 .write = acpi_thermal_write_cooling_mode,
233 .llseek = seq_lseek,
234 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
Arjan van de Vend7508032006-07-04 13:06:00 -0400237static const struct file_operations acpi_thermal_polling_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700238 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400239 .open = acpi_thermal_polling_open_fs,
240 .read = seq_read,
241 .write = acpi_thermal_write_polling,
242 .llseek = seq_lseek,
243 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
246/* --------------------------------------------------------------------------
247 Thermal Zone Management
248 -------------------------------------------------------------------------- */
249
Len Brown4be44fc2005-08-05 00:44:28 -0400250static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Len Brown4be44fc2005-08-05 00:44:28 -0400252 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400253 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400256 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 tz->last_temperature = tz->temperature;
259
Matthew Wilcox27663c52008-10-10 02:22:59 -0400260 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Matthew Wilcox27663c52008-10-10 02:22:59 -0400264 tz->temperature = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n",
266 tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Patrick Mocheld550d982006-06-27 00:41:40 -0400268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Len Brown4be44fc2005-08-05 00:44:28 -0400273 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400274 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400277 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Matthew Wilcox27663c52008-10-10 02:22:59 -0400279 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400281 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Matthew Wilcox27663c52008-10-10 02:22:59 -0400283 tz->polling_frequency = tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400284 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n",
285 tz->polling_frequency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Patrick Mocheld550d982006-06-27 00:41:40 -0400287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */
297
Matthew Garrettb1569e92008-12-03 17:55:32 +0000298 tz->thermal_zone->polling_delay = seconds * 1000;
299
300 if (tz->tz_enabled)
301 thermal_zone_device_update(tz->thermal_zone);
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
304 "Polling frequency set to %lu seconds\n",
Sanjoy Mahajan636cedf2007-02-16 01:24:43 -0500305 tz->polling_frequency/10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Patrick Mocheld550d982006-06-27 00:41:40 -0400307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Len Brown4be44fc2005-08-05 00:44:28 -0400310static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Len Brown4be44fc2005-08-05 00:44:28 -0400312 acpi_status status = AE_OK;
313 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
314 struct acpi_object_list arg_list = { 1, &arg0 };
315 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -0400319 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Patrick Mochel38ba7c92006-05-19 16:54:48 -0400321 status = acpi_get_handle(tz->device->handle, "_SCP", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (ACPI_FAILURE(status)) {
323 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400324 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
327 arg0.integer.value = mode;
328
329 status = acpi_evaluate_object(handle, NULL, &arg_list, NULL);
330 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400331 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Patrick Mocheld550d982006-06-27 00:41:40 -0400333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Zhang Ruice44e192008-01-17 15:51:25 +0800336#define ACPI_TRIPS_CRITICAL 0x01
337#define ACPI_TRIPS_HOT 0x02
338#define ACPI_TRIPS_PASSIVE 0x04
339#define ACPI_TRIPS_ACTIVE 0x08
340#define ACPI_TRIPS_DEVICES 0x10
341
342#define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE)
343#define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES
344
345#define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \
346 ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \
347 ACPI_TRIPS_DEVICES)
348
349/*
350 * This exception is thrown out in two cases:
351 * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
352 * when re-evaluating the AML code.
353 * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
354 * We need to re-bind the cooling devices of a thermal zone when this occurs.
355 */
356#define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \
357do { \
358 if (flags != ACPI_TRIPS_INIT) \
359 ACPI_EXCEPTION((AE_INFO, AE_ERROR, \
360 "ACPI thermal trip point %s changed\n" \
361 "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \
362} while (0)
363
364static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Len Brown4be44fc2005-08-05 00:44:28 -0400366 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400367 unsigned long long tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800368 struct acpi_handle_list devices;
369 int valid = 0;
370 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Thomas Renningerfa809452010-02-20 11:44:27 +0100372 /* Critical Shutdown */
Zhang Ruice44e192008-01-17 15:51:25 +0800373 if (flag & ACPI_TRIPS_CRITICAL) {
374 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400375 "_CRT", NULL, &tmp);
376 tz->trips.critical.temperature = tmp;
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700377 /*
378 * Treat freezing temperatures as invalid as well; some
379 * BIOSes return really low values and cause reboots at startup.
Adam Buchbinderb731d7b2009-03-13 12:15:26 -0400380 * Below zero (Celsius) values clearly aren't right for sure..
Arjan van de Vena39a2d72008-05-19 15:55:15 -0700381 * ... so lets discard those as invalid.
382 */
Thomas Renningerfa809452010-02-20 11:44:27 +0100383 if (ACPI_FAILURE(status)) {
Len Brownc52a7412007-08-14 15:49:32 -0400384 tz->trips.critical.flags.valid = 0;
Thomas Renningerfa809452010-02-20 11:44:27 +0100385 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
386 "No critical threshold\n"));
387 } else if (tmp <= 2732) {
388 printk(KERN_WARNING FW_BUG "Invalid critical threshold "
389 "(%llu)\n", tmp);
390 tz->trips.critical.flags.valid = 0;
Zhang Ruice44e192008-01-17 15:51:25 +0800391 } else {
392 tz->trips.critical.flags.valid = 1;
393 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Thomas Renningerfa809452010-02-20 11:44:27 +0100394 "Found critical threshold [%lu]\n",
395 tz->trips.critical.temperature));
Zhang Ruice44e192008-01-17 15:51:25 +0800396 }
397 if (tz->trips.critical.flags.valid == 1) {
398 if (crt == -1) {
399 tz->trips.critical.flags.valid = 0;
400 } else if (crt > 0) {
401 unsigned long crt_k = CELSIUS_TO_KELVIN(crt);
402 /*
Zhang Rui22a94d72008-10-17 02:41:20 -0400403 * Allow override critical threshold
Zhang Ruice44e192008-01-17 15:51:25 +0800404 */
Zhang Rui22a94d72008-10-17 02:41:20 -0400405 if (crt_k > tz->trips.critical.temperature)
406 printk(KERN_WARNING PREFIX
407 "Critical threshold %d C\n", crt);
408 tz->trips.critical.temperature = crt_k;
Zhang Ruice44e192008-01-17 15:51:25 +0800409 }
Len Brownc52a7412007-08-14 15:49:32 -0400410 }
411 }
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Critical Sleep (optional) */
Zhang Ruice44e192008-01-17 15:51:25 +0800414 if (flag & ACPI_TRIPS_HOT) {
Len Browna70cdc52007-08-12 00:12:35 -0400415 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400416 "_HOT", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800417 if (ACPI_FAILURE(status)) {
418 tz->trips.hot.flags.valid = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400419 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Zhang Ruice44e192008-01-17 15:51:25 +0800420 "No hot threshold\n"));
421 } else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400422 tz->trips.hot.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800423 tz->trips.hot.flags.valid = 1;
424 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
425 "Found hot threshold [%lu]\n",
426 tz->trips.critical.temperature));
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Zhang Ruice44e192008-01-17 15:51:25 +0800430 /* Passive (optional) */
Zhang Rui0e4240d2009-01-16 12:53:42 -0500431 if (((flag & ACPI_TRIPS_PASSIVE) && tz->trips.passive.flags.valid) ||
432 (flag == ACPI_TRIPS_INIT)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800433 valid = tz->trips.passive.flags.valid;
434 if (psv == -1) {
435 status = AE_SUPPORT;
436 } else if (psv > 0) {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400437 tmp = CELSIUS_TO_KELVIN(psv);
Zhang Ruice44e192008-01-17 15:51:25 +0800438 status = AE_OK;
439 } else {
440 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400441 "_PSV", NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Zhang Ruice44e192008-01-17 15:51:25 +0800444 if (ACPI_FAILURE(status))
445 tz->trips.passive.flags.valid = 0;
446 else {
Matthew Wilcox27663c52008-10-10 02:22:59 -0400447 tz->trips.passive.temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800448 tz->trips.passive.flags.valid = 1;
449 if (flag == ACPI_TRIPS_INIT) {
450 status = acpi_evaluate_integer(
451 tz->device->handle, "_TC1",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400452 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800453 if (ACPI_FAILURE(status))
454 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400455 else
456 tz->trips.passive.tc1 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800457 status = acpi_evaluate_integer(
458 tz->device->handle, "_TC2",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400459 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800460 if (ACPI_FAILURE(status))
461 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400462 else
463 tz->trips.passive.tc2 = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800464 status = acpi_evaluate_integer(
465 tz->device->handle, "_TSP",
Matthew Wilcox27663c52008-10-10 02:22:59 -0400466 NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800467 if (ACPI_FAILURE(status))
468 tz->trips.passive.flags.valid = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400469 else
470 tz->trips.passive.tsp = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800471 }
472 }
473 }
474 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) {
475 memset(&devices, 0, sizeof(struct acpi_handle_list));
476 status = acpi_evaluate_reference(tz->device->handle, "_PSL",
477 NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500478 if (ACPI_FAILURE(status)) {
479 printk(KERN_WARNING PREFIX
480 "Invalid passive threshold\n");
Zhang Ruice44e192008-01-17 15:51:25 +0800481 tz->trips.passive.flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500482 }
Zhang Ruice44e192008-01-17 15:51:25 +0800483 else
484 tz->trips.passive.flags.valid = 1;
485
486 if (memcmp(&tz->trips.passive.devices, &devices,
487 sizeof(struct acpi_handle_list))) {
488 memcpy(&tz->trips.passive.devices, &devices,
489 sizeof(struct acpi_handle_list));
490 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
491 }
492 }
493 if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) {
494 if (valid != tz->trips.passive.flags.valid)
495 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
496 }
497
498 /* Active (optional) */
Len Brown4be44fc2005-08-05 00:44:28 -0400499 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400500 char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
Zhang Ruice44e192008-01-17 15:51:25 +0800501 valid = tz->trips.active[i].flags.valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Len Brownf8707ec2007-08-12 00:12:54 -0400503 if (act == -1)
Zhang Ruice44e192008-01-17 15:51:25 +0800504 break; /* disable all active trip points */
Len Brownf8707ec2007-08-12 00:12:54 -0400505
Zhang Rui0e4240d2009-01-16 12:53:42 -0500506 if ((flag == ACPI_TRIPS_INIT) || ((flag & ACPI_TRIPS_ACTIVE) &&
507 tz->trips.active[i].flags.valid)) {
Zhang Ruice44e192008-01-17 15:51:25 +0800508 status = acpi_evaluate_integer(tz->device->handle,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400509 name, NULL, &tmp);
Zhang Ruice44e192008-01-17 15:51:25 +0800510 if (ACPI_FAILURE(status)) {
511 tz->trips.active[i].flags.valid = 0;
512 if (i == 0)
513 break;
514 if (act <= 0)
515 break;
516 if (i == 1)
517 tz->trips.active[0].temperature =
518 CELSIUS_TO_KELVIN(act);
519 else
520 /*
521 * Don't allow override higher than
522 * the next higher trip point
523 */
524 tz->trips.active[i - 1].temperature =
525 (tz->trips.active[i - 2].temperature <
526 CELSIUS_TO_KELVIN(act) ?
527 tz->trips.active[i - 2].temperature :
528 CELSIUS_TO_KELVIN(act));
Len Brownf8707ec2007-08-12 00:12:54 -0400529 break;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400530 } else {
531 tz->trips.active[i].temperature = tmp;
Zhang Ruice44e192008-01-17 15:51:25 +0800532 tz->trips.active[i].flags.valid = 1;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400533 }
Len Brownf8707ec2007-08-12 00:12:54 -0400534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 name[2] = 'L';
Zhang Ruice44e192008-01-17 15:51:25 +0800537 if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) {
538 memset(&devices, 0, sizeof(struct acpi_handle_list));
539 status = acpi_evaluate_reference(tz->device->handle,
540 name, NULL, &devices);
Zhang Rui0e4240d2009-01-16 12:53:42 -0500541 if (ACPI_FAILURE(status)) {
542 printk(KERN_WARNING PREFIX
543 "Invalid active%d threshold\n", i);
Zhang Ruice44e192008-01-17 15:51:25 +0800544 tz->trips.active[i].flags.valid = 0;
Zhang Rui0e4240d2009-01-16 12:53:42 -0500545 }
Zhang Ruice44e192008-01-17 15:51:25 +0800546 else
547 tz->trips.active[i].flags.valid = 1;
548
549 if (memcmp(&tz->trips.active[i].devices, &devices,
550 sizeof(struct acpi_handle_list))) {
551 memcpy(&tz->trips.active[i].devices, &devices,
552 sizeof(struct acpi_handle_list));
553 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
554 }
555 }
556 if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES))
557 if (valid != tz->trips.active[i].flags.valid)
558 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state");
559
560 if (!tz->trips.active[i].flags.valid)
561 break;
562 }
563
564 if (flag & ACPI_TRIPS_DEVICES) {
565 memset(&devices, 0, sizeof(struct acpi_handle_list));
566 status = acpi_evaluate_reference(tz->device->handle, "_TZD",
567 NULL, &devices);
568 if (memcmp(&tz->devices, &devices,
569 sizeof(struct acpi_handle_list))) {
570 memcpy(&tz->devices, &devices,
571 sizeof(struct acpi_handle_list));
572 ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
Patrick Mocheld550d982006-06-27 00:41:40 -0400576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Zhang Ruice44e192008-01-17 15:51:25 +0800579static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Thomas Renninger8b7ef6d2010-02-16 22:55:51 +0100581 int i, valid, ret = acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT);
582
583 if (ret)
584 return ret;
585
586 valid = tz->trips.critical.flags.valid |
587 tz->trips.hot.flags.valid |
588 tz->trips.passive.flags.valid;
589
590 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
591 valid |= tz->trips.active[i].flags.valid;
592
593 if (!valid) {
594 printk(KERN_WARNING FW_BUG "No valid trip found\n");
595 return -ENODEV;
596 }
597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Len Brown4be44fc2005-08-05 00:44:28 -0400600static void acpi_thermal_check(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200602 struct acpi_thermal *tz = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Matthew Garrettb1569e92008-12-03 17:55:32 +0000604 thermal_zone_device_update(tz->thermal_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Zhang Rui3f655ef2008-01-17 15:51:11 +0800607/* sys I/F for generic thermal sysfs support */
Jean Delvare13614e32009-04-06 16:01:46 +0200608#define KELVIN_TO_MILLICELSIUS(t, off) (((t) - (off)) * 100)
Zhang, Rui5e012762008-02-28 07:51:30 +0800609
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000610static int thermal_get_temp(struct thermal_zone_device *thermal,
611 unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800612{
613 struct acpi_thermal *tz = thermal->devdata;
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800614 int result;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800615
616 if (!tz)
617 return -EINVAL;
618
Zhang, Rui76ecb4f2008-04-10 16:20:23 +0800619 result = acpi_thermal_get_temperature(tz);
620 if (result)
621 return result;
622
Jean Delvare13614e32009-04-06 16:01:46 +0200623 *temp = KELVIN_TO_MILLICELSIUS(tz->temperature, tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000624 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800625}
626
627static const char enabled[] = "kernel";
628static const char disabled[] = "user";
629static int thermal_get_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000630 enum thermal_device_mode *mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800631{
632 struct acpi_thermal *tz = thermal->devdata;
633
634 if (!tz)
635 return -EINVAL;
636
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000637 *mode = tz->tz_enabled ? THERMAL_DEVICE_ENABLED :
638 THERMAL_DEVICE_DISABLED;
639
640 return 0;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800641}
642
643static int thermal_set_mode(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000644 enum thermal_device_mode mode)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800645{
646 struct acpi_thermal *tz = thermal->devdata;
647 int enable;
648
649 if (!tz)
650 return -EINVAL;
651
652 /*
653 * enable/disable thermal management from ACPI thermal driver
654 */
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000655 if (mode == THERMAL_DEVICE_ENABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800656 enable = 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000657 else if (mode == THERMAL_DEVICE_DISABLED)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800658 enable = 0;
659 else
660 return -EINVAL;
661
662 if (enable != tz->tz_enabled) {
663 tz->tz_enabled = enable;
664 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
665 "%s ACPI thermal control\n",
666 tz->tz_enabled ? enabled : disabled));
667 acpi_thermal_check(tz);
668 }
669 return 0;
670}
671
672static int thermal_get_trip_type(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000673 int trip, enum thermal_trip_type *type)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800674{
675 struct acpi_thermal *tz = thermal->devdata;
676 int i;
677
678 if (!tz || trip < 0)
679 return -EINVAL;
680
681 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000682 if (!trip) {
683 *type = THERMAL_TRIP_CRITICAL;
684 return 0;
685 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800686 trip--;
687 }
688
689 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000690 if (!trip) {
691 *type = THERMAL_TRIP_HOT;
692 return 0;
693 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800694 trip--;
695 }
696
697 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000698 if (!trip) {
699 *type = THERMAL_TRIP_PASSIVE;
700 return 0;
701 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800702 trip--;
703 }
704
705 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
706 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000707 if (!trip) {
708 *type = THERMAL_TRIP_ACTIVE;
709 return 0;
710 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800711 trip--;
712 }
713
714 return -EINVAL;
715}
716
717static int thermal_get_trip_temp(struct thermal_zone_device *thermal,
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000718 int trip, unsigned long *temp)
Zhang Rui3f655ef2008-01-17 15:51:11 +0800719{
720 struct acpi_thermal *tz = thermal->devdata;
721 int i;
722
723 if (!tz || trip < 0)
724 return -EINVAL;
725
726 if (tz->trips.critical.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000727 if (!trip) {
728 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200729 tz->trips.critical.temperature,
730 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000731 return 0;
732 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800733 trip--;
734 }
735
736 if (tz->trips.hot.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000737 if (!trip) {
738 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200739 tz->trips.hot.temperature,
740 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000741 return 0;
742 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800743 trip--;
744 }
745
746 if (tz->trips.passive.flags.valid) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000747 if (!trip) {
748 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200749 tz->trips.passive.temperature,
750 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000751 return 0;
752 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800753 trip--;
754 }
755
756 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
757 tz->trips.active[i].flags.valid; i++) {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000758 if (!trip) {
759 *temp = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200760 tz->trips.active[i].temperature,
761 tz->kelvin_offset);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000762 return 0;
763 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800764 trip--;
765 }
766
767 return -EINVAL;
768}
769
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800770static int thermal_get_crit_temp(struct thermal_zone_device *thermal,
771 unsigned long *temperature) {
772 struct acpi_thermal *tz = thermal->devdata;
773
774 if (tz->trips.critical.flags.valid) {
775 *temperature = KELVIN_TO_MILLICELSIUS(
Jean Delvare13614e32009-04-06 16:01:46 +0200776 tz->trips.critical.temperature,
777 tz->kelvin_offset);
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800778 return 0;
779 } else
780 return -EINVAL;
781}
782
Matthew Garrettb1569e92008-12-03 17:55:32 +0000783static int thermal_notify(struct thermal_zone_device *thermal, int trip,
784 enum thermal_trip_type trip_type)
785{
786 u8 type = 0;
787 struct acpi_thermal *tz = thermal->devdata;
788
789 if (trip_type == THERMAL_TRIP_CRITICAL)
790 type = ACPI_THERMAL_NOTIFY_CRITICAL;
791 else if (trip_type == THERMAL_TRIP_HOT)
792 type = ACPI_THERMAL_NOTIFY_HOT;
793 else
794 return 0;
795
796 acpi_bus_generate_proc_event(tz->device, type, 1);
797 acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
Stephen Rothwellf6f5c452009-03-03 12:47:17 +1100798 dev_name(&tz->device->dev), type, 1);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000799
800 if (trip_type == THERMAL_TRIP_CRITICAL && nocrt)
801 return 1;
802
803 return 0;
804}
805
Zhang Rui3f655ef2008-01-17 15:51:11 +0800806typedef int (*cb)(struct thermal_zone_device *, int,
807 struct thermal_cooling_device *);
808static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal,
809 struct thermal_cooling_device *cdev,
810 cb action)
811{
812 struct acpi_device *device = cdev->devdata;
813 struct acpi_thermal *tz = thermal->devdata;
Zhang Rui653a00c2008-01-17 15:51:18 +0800814 struct acpi_device *dev;
815 acpi_status status;
816 acpi_handle handle;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800817 int i;
818 int j;
819 int trip = -1;
820 int result = 0;
821
822 if (tz->trips.critical.flags.valid)
823 trip++;
824
825 if (tz->trips.hot.flags.valid)
826 trip++;
827
828 if (tz->trips.passive.flags.valid) {
829 trip++;
830 for (i = 0; i < tz->trips.passive.devices.count;
831 i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800832 handle = tz->trips.passive.devices.handles[i];
833 status = acpi_bus_get_device(handle, &dev);
834 if (ACPI_SUCCESS(status) && (dev == device)) {
835 result = action(thermal, trip, cdev);
836 if (result)
837 goto failed;
838 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800839 }
840 }
841
842 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
843 if (!tz->trips.active[i].flags.valid)
844 break;
845 trip++;
846 for (j = 0;
847 j < tz->trips.active[i].devices.count;
848 j++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800849 handle = tz->trips.active[i].devices.handles[j];
850 status = acpi_bus_get_device(handle, &dev);
851 if (ACPI_SUCCESS(status) && (dev == device)) {
852 result = action(thermal, trip, cdev);
853 if (result)
854 goto failed;
855 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800856 }
857 }
858
859 for (i = 0; i < tz->devices.count; i++) {
Zhang Rui653a00c2008-01-17 15:51:18 +0800860 handle = tz->devices.handles[i];
861 status = acpi_bus_get_device(handle, &dev);
862 if (ACPI_SUCCESS(status) && (dev == device)) {
863 result = action(thermal, -1, cdev);
864 if (result)
865 goto failed;
866 }
Zhang Rui3f655ef2008-01-17 15:51:11 +0800867 }
868
869failed:
870 return result;
871}
872
873static int
874acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
875 struct thermal_cooling_device *cdev)
876{
877 return acpi_thermal_cooling_device_cb(thermal, cdev,
878 thermal_zone_bind_cooling_device);
879}
880
881static int
882acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
883 struct thermal_cooling_device *cdev)
884{
885 return acpi_thermal_cooling_device_cb(thermal, cdev,
886 thermal_zone_unbind_cooling_device);
887}
888
889static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
890 .bind = acpi_thermal_bind_cooling_device,
891 .unbind = acpi_thermal_unbind_cooling_device,
892 .get_temp = thermal_get_temp,
893 .get_mode = thermal_get_mode,
894 .set_mode = thermal_set_mode,
895 .get_trip_type = thermal_get_trip_type,
896 .get_trip_temp = thermal_get_trip_temp,
Zhang, Rui9ec732f2008-04-10 16:13:10 +0800897 .get_crit_temp = thermal_get_crit_temp,
Matthew Garrettb1569e92008-12-03 17:55:32 +0000898 .notify = thermal_notify,
Zhang Rui3f655ef2008-01-17 15:51:11 +0800899};
900
901static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
902{
903 int trips = 0;
904 int result;
Zhang Rui20733932008-01-17 15:51:21 +0800905 acpi_status status;
Zhang Rui3f655ef2008-01-17 15:51:11 +0800906 int i;
907
908 if (tz->trips.critical.flags.valid)
909 trips++;
910
911 if (tz->trips.hot.flags.valid)
912 trips++;
913
914 if (tz->trips.passive.flags.valid)
915 trips++;
916
917 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE &&
918 tz->trips.active[i].flags.valid; i++, trips++);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000919
920 if (tz->trips.passive.flags.valid)
921 tz->thermal_zone =
922 thermal_zone_device_register("acpitz", trips, tz,
923 &acpi_thermal_zone_ops,
924 tz->trips.passive.tc1,
925 tz->trips.passive.tc2,
926 tz->trips.passive.tsp*100,
927 tz->polling_frequency*100);
928 else
929 tz->thermal_zone =
930 thermal_zone_device_register("acpitz", trips, tz,
931 &acpi_thermal_zone_ops,
932 0, 0, 0,
Matthew Garrett67405432009-04-14 20:16:45 +0100933 tz->polling_frequency*100);
Krzysztof Heltbb070e42008-04-08 17:41:52 -0700934 if (IS_ERR(tz->thermal_zone))
Zhang Rui3f655ef2008-01-17 15:51:11 +0800935 return -ENODEV;
936
937 result = sysfs_create_link(&tz->device->dev.kobj,
938 &tz->thermal_zone->device.kobj, "thermal_zone");
939 if (result)
940 return result;
941
942 result = sysfs_create_link(&tz->thermal_zone->device.kobj,
943 &tz->device->dev.kobj, "device");
944 if (result)
945 return result;
946
Zhang Rui20733932008-01-17 15:51:21 +0800947 status = acpi_attach_data(tz->device->handle,
948 acpi_bus_private_data_handler,
949 tz->thermal_zone);
950 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800951 printk(KERN_ERR PREFIX
952 "Error attaching device data\n");
Zhang Rui20733932008-01-17 15:51:21 +0800953 return -ENODEV;
954 }
955
Zhang Rui3f655ef2008-01-17 15:51:11 +0800956 tz->tz_enabled = 1;
957
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200958 dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
959 tz->thermal_zone->id);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800960 return 0;
961}
962
963static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
964{
965 sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
966 sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
967 thermal_zone_device_unregister(tz->thermal_zone);
968 tz->thermal_zone = NULL;
Zhang Rui20733932008-01-17 15:51:21 +0800969 acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler);
Zhang Rui3f655ef2008-01-17 15:51:11 +0800970}
971
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/* --------------------------------------------------------------------------
974 FS Interface (/proc)
975 -------------------------------------------------------------------------- */
976
Len Brown4be44fc2005-08-05 00:44:28 -0400977static struct proc_dir_entry *acpi_thermal_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset)
980{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200981 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 if (!tz)
985 goto end;
986
987 seq_puts(seq, "state: ");
988
Len Brown4be44fc2005-08-05 00:44:28 -0400989 if (!tz->state.critical && !tz->state.hot && !tz->state.passive
990 && !tz->state.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 seq_puts(seq, "ok\n");
992 else {
993 if (tz->state.critical)
994 seq_puts(seq, "critical ");
995 if (tz->state.hot)
996 seq_puts(seq, "hot ");
997 if (tz->state.passive)
998 seq_puts(seq, "passive ");
999 if (tz->state.active)
1000 seq_printf(seq, "active[%d]", tz->state.active_index);
1001 seq_puts(seq, "\n");
1002 }
1003
Len Brown4be44fc2005-08-05 00:44:28 -04001004 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001005 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file)
1009{
1010 return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data);
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset)
1014{
Len Brown4be44fc2005-08-05 00:44:28 -04001015 int result = 0;
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 result = acpi_thermal_get_temperature(tz);
1023 if (result)
1024 goto end;
1025
Len Brown4be44fc2005-08-05 00:44:28 -04001026 seq_printf(seq, "temperature: %ld C\n",
1027 KELVIN_TO_CELSIUS(tz->temperature));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Len Brown4be44fc2005-08-05 00:44:28 -04001029 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
1033static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file)
1034{
1035 return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data);
1036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset)
1039{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001040 struct acpi_thermal *tz = seq->private;
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001041 struct acpi_device *device;
Thomas Renningere7c746e2007-06-18 00:40:51 -04001042 acpi_status status;
1043
Len Brown4be44fc2005-08-05 00:44:28 -04001044 int i = 0;
1045 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 if (!tz)
1049 goto end;
1050
1051 if (tz->trips.critical.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001052 seq_printf(seq, "critical (S5): %ld C%s",
1053 KELVIN_TO_CELSIUS(tz->trips.critical.temperature),
1054 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (tz->trips.hot.flags.valid)
Len Brownf5487142007-08-12 00:12:44 -04001057 seq_printf(seq, "hot (S4): %ld C%s",
1058 KELVIN_TO_CELSIUS(tz->trips.hot.temperature),
1059 nocrt ? " <disabled>\n" : "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (tz->trips.passive.flags.valid) {
Len Brown4be44fc2005-08-05 00:44:28 -04001062 seq_printf(seq,
1063 "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=",
1064 KELVIN_TO_CELSIUS(tz->trips.passive.temperature),
1065 tz->trips.passive.tc1, tz->trips.passive.tc2,
1066 tz->trips.passive.tsp);
1067 for (j = 0; j < tz->trips.passive.devices.count; j++) {
Thomas Renningere7c746e2007-06-18 00:40:51 -04001068 status = acpi_bus_get_device(tz->trips.passive.devices.
1069 handles[j], &device);
1070 seq_printf(seq, "%4.4s ", status ? "" :
1071 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 seq_puts(seq, "\n");
Frans Pop7fb26162009-10-26 08:39:01 +01001074 } else {
1075 seq_printf(seq, "passive (forced):");
1076 if (tz->thermal_zone->forced_passive)
1077 seq_printf(seq, " %i C\n",
1078 tz->thermal_zone->forced_passive / 1000);
1079 else
1080 seq_printf(seq, "<not set>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
1083 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
1084 if (!(tz->trips.active[i].flags.valid))
1085 break;
1086 seq_printf(seq, "active[%d]: %ld C: devices=",
Len Brown4be44fc2005-08-05 00:44:28 -04001087 i,
1088 KELVIN_TO_CELSIUS(tz->trips.active[i].temperature));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001089 for (j = 0; j < tz->trips.active[i].devices.count; j++){
Thomas Renningere7c746e2007-06-18 00:40:51 -04001090 status = acpi_bus_get_device(tz->trips.active[i].
1091 devices.handles[j],
1092 &device);
1093 seq_printf(seq, "%4.4s ", status ? "" :
1094 acpi_device_bid(device));
Thomas Renninger68ccfaa2006-11-19 23:01:40 +01001095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 seq_puts(seq, "\n");
1097 }
1098
Len Brown4be44fc2005-08-05 00:44:28 -04001099 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001100 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
1104{
1105 return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data);
1106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset)
1109{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001110 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (!tz)
1114 goto end;
1115
Len Browneaca2d32007-04-30 23:27:43 -04001116 if (!tz->flags.cooling_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 seq_puts(seq, "<setting not supported>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 else
Len Browneaca2d32007-04-30 23:27:43 -04001119 seq_puts(seq, "0 - Active; 1 - Passive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Len Brown4be44fc2005-08-05 00:44:28 -04001121 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
1126{
1127 return single_open(file, acpi_thermal_cooling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001128 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
1131static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001132acpi_thermal_write_cooling_mode(struct file *file,
1133 const char __user * buffer,
1134 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001136 struct seq_file *m = file->private_data;
1137 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001138 int result = 0;
1139 char mode_string[12] = { '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 if (!tz || (count > sizeof(mode_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001143 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (!tz->flags.cooling_mode)
Patrick Mocheld550d982006-06-27 00:41:40 -04001146 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (copy_from_user(mode_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001149 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 mode_string[count] = '\0';
Len Brown4be44fc2005-08-05 00:44:28 -04001152
1153 result = acpi_thermal_set_cooling_mode(tz,
1154 simple_strtoul(mode_string, NULL,
1155 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001157 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 acpi_thermal_check(tz);
1160
Patrick Mocheld550d982006-06-27 00:41:40 -04001161 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset)
1165{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001166 struct acpi_thermal *tz = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 if (!tz)
1170 goto end;
1171
Matthew Garrettb1569e92008-12-03 17:55:32 +00001172 if (!tz->thermal_zone->polling_delay) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 seq_puts(seq, "<polling disabled>\n");
1174 goto end;
1175 }
1176
Matthew Garrettb1569e92008-12-03 17:55:32 +00001177 seq_printf(seq, "polling frequency: %d seconds\n",
1178 (tz->thermal_zone->polling_delay / 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Len Brown4be44fc2005-08-05 00:44:28 -04001180 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
1184static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
1185{
1186 return single_open(file, acpi_thermal_polling_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001187 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
1190static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001191acpi_thermal_write_polling(struct file *file,
1192 const char __user * buffer,
1193 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001195 struct seq_file *m = file->private_data;
1196 struct acpi_thermal *tz = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001197 int result = 0;
1198 char polling_string[12] = { '\0' };
1199 int seconds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 if (!tz || (count > sizeof(polling_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001203 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -04001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (copy_from_user(polling_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001206 return -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -04001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 polling_string[count] = '\0';
1209
1210 seconds = simple_strtoul(polling_string, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 result = acpi_thermal_set_polling(tz, seconds);
1213 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001214 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 acpi_thermal_check(tz);
1217
Patrick Mocheld550d982006-06-27 00:41:40 -04001218 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Len Brown4be44fc2005-08-05 00:44:28 -04001221static int acpi_thermal_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Len Brown4be44fc2005-08-05 00:44:28 -04001223 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 if (!acpi_device_dir(device)) {
1227 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -04001228 acpi_thermal_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001230 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232
1233 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001234 entry = proc_create_data(ACPI_THERMAL_FILE_STATE,
1235 S_IRUGO, acpi_device_dir(device),
1236 &acpi_thermal_state_fops,
1237 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001239 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 /* 'temperature' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001242 entry = proc_create_data(ACPI_THERMAL_FILE_TEMPERATURE,
1243 S_IRUGO, acpi_device_dir(device),
1244 &acpi_thermal_temp_fops,
1245 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001247 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Pavel Machek2db9ccb2007-08-24 11:45:50 +02001249 /* 'trip_points' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001250 entry = proc_create_data(ACPI_THERMAL_FILE_TRIP_POINTS,
1251 S_IRUGO,
1252 acpi_device_dir(device),
1253 &acpi_thermal_trip_fops,
1254 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001256 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /* 'cooling_mode' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001259 entry = proc_create_data(ACPI_THERMAL_FILE_COOLING_MODE,
1260 S_IFREG | S_IRUGO | S_IWUSR,
1261 acpi_device_dir(device),
1262 &acpi_thermal_cooling_fops,
1263 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001265 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /* 'polling_frequency' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001268 entry = proc_create_data(ACPI_THERMAL_FILE_POLLING_FREQ,
1269 S_IFREG | S_IRUGO | S_IWUSR,
1270 acpi_device_dir(device),
1271 &acpi_thermal_polling_fops,
1272 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -04001274 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -04001275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Len Brown4be44fc2005-08-05 00:44:28 -04001278static int acpi_thermal_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 if (acpi_device_dir(device)) {
1282 remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ,
1283 acpi_device_dir(device));
1284 remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE,
1285 acpi_device_dir(device));
1286 remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1287 acpi_device_dir(device));
1288 remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE,
1289 acpi_device_dir(device));
1290 remove_proc_entry(ACPI_THERMAL_FILE_STATE,
1291 acpi_device_dir(device));
1292 remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir);
1293 acpi_device_dir(device) = NULL;
1294 }
1295
Patrick Mocheld550d982006-06-27 00:41:40 -04001296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299/* --------------------------------------------------------------------------
1300 Driver Interface
1301 -------------------------------------------------------------------------- */
1302
Bjorn Helgaas342d5502009-04-07 15:37:06 +00001303static void acpi_thermal_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Bjorn Helgaas342d5502009-04-07 15:37:06 +00001305 struct acpi_thermal *tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001309 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 switch (event) {
1312 case ACPI_THERMAL_NOTIFY_TEMPERATURE:
1313 acpi_thermal_check(tz);
1314 break;
1315 case ACPI_THERMAL_NOTIFY_THRESHOLDS:
Zhang Ruice44e192008-01-17 15:51:25 +08001316 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001318 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001319 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001320 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 break;
1322 case ACPI_THERMAL_NOTIFY_DEVICES:
Zhang Ruice44e192008-01-17 15:51:25 +08001323 acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES);
1324 acpi_thermal_check(tz);
Len Brown14e04fb2007-08-23 15:20:26 -04001325 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08001326 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001327 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 break;
1329 default:
1330 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001331 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 break;
1333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
Len Brown4be44fc2005-08-05 00:44:28 -04001336static int acpi_thermal_get_info(struct acpi_thermal *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Len Brown4be44fc2005-08-05 00:44:28 -04001338 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /* Get temperature [_TMP] (required) */
1345 result = acpi_thermal_get_temperature(tz);
1346 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001347 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 /* Get trip points [_CRT, _PSV, etc.] (required) */
1350 result = acpi_thermal_get_trip_points(tz);
1351 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001352 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 /* Set the cooling mode [_SCP] to active cooling (default) */
1355 result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE);
Len Brown4be44fc2005-08-05 00:44:28 -04001356 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 tz->flags.cooling_mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /* Get default polling frequency [_TZP] (optional) */
1360 if (tzp)
1361 tz->polling_frequency = tzp;
1362 else
1363 acpi_thermal_get_polling_frequency(tz);
1364
Patrick Mocheld550d982006-06-27 00:41:40 -04001365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Jean Delvare13614e32009-04-06 16:01:46 +02001368/*
1369 * The exact offset between Kelvin and degree Celsius is 273.15. However ACPI
1370 * handles temperature values with a single decimal place. As a consequence,
1371 * some implementations use an offset of 273.1 and others use an offset of
1372 * 273.2. Try to find out which one is being used, to present the most
1373 * accurate and visually appealing number.
1374 *
1375 * The heuristic below should work for all ACPI thermal zones which have a
1376 * critical trip point with a value being a multiple of 0.5 degree Celsius.
1377 */
1378static void acpi_thermal_guess_offset(struct acpi_thermal *tz)
1379{
1380 if (tz->trips.critical.flags.valid &&
1381 (tz->trips.critical.temperature % 5) == 1)
1382 tz->kelvin_offset = 2731;
1383 else
1384 tz->kelvin_offset = 2732;
1385}
1386
Len Brown4be44fc2005-08-05 00:44:28 -04001387static int acpi_thermal_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Len Brown4be44fc2005-08-05 00:44:28 -04001389 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001390 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001394 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Burman Yan36bcbec2006-12-19 12:56:11 -08001396 tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (!tz)
Patrick Mocheld550d982006-06-27 00:41:40 -04001398 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Patrick Mochel8348e1b2006-05-19 16:54:40 -04001400 tz->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 strcpy(tz->name, device->pnp.bus_id);
1402 strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
1403 strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001404 device->driver_data = tz;
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001405 mutex_init(&tz->lock);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001406
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 result = acpi_thermal_get_info(tz);
1409 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001410 goto free_memory;
1411
Jean Delvare13614e32009-04-06 16:01:46 +02001412 acpi_thermal_guess_offset(tz);
1413
Zhang Rui3f655ef2008-01-17 15:51:11 +08001414 result = acpi_thermal_register_thermal_zone(tz);
1415 if (result)
1416 goto free_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 result = acpi_thermal_add_fs(device);
1419 if (result)
Zhang Rui3f655ef2008-01-17 15:51:11 +08001420 goto unregister_thermal_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001423 acpi_device_name(device), acpi_device_bid(device),
1424 KELVIN_TO_CELSIUS(tz->temperature));
Zhang Rui3f655ef2008-01-17 15:51:11 +08001425 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Zhang Rui3f655ef2008-01-17 15:51:11 +08001427unregister_thermal_zone:
1428 thermal_zone_device_unregister(tz->thermal_zone);
1429free_memory:
1430 kfree(tz);
1431end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001432 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Len Brown4be44fc2005-08-05 00:44:28 -04001435static int acpi_thermal_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Len Brown4be44fc2005-08-05 00:44:28 -04001437 struct acpi_thermal *tz = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001440 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001442 tz = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 acpi_thermal_remove_fs(device);
Zhang Rui3f655ef2008-01-17 15:51:11 +08001445 acpi_thermal_unregister_thermal_zone(tz);
Alexey Starikovskiy6e215782007-09-01 00:11:59 +04001446 mutex_destroy(&tz->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 kfree(tz);
Patrick Mocheld550d982006-06-27 00:41:40 -04001448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001451static int acpi_thermal_resume(struct acpi_device *device)
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001452{
1453 struct acpi_thermal *tz = NULL;
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001454 int i, j, power_state, result;
1455
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001456
1457 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001458 return -EINVAL;
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001459
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001460 tz = acpi_driver_data(device);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001461
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001462 for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001463 if (!(&tz->trips.active[i]))
1464 break;
1465 if (!tz->trips.active[i].flags.valid)
1466 break;
1467 tz->trips.active[i].flags.enabled = 1;
1468 for (j = 0; j < tz->trips.active[i].devices.count; j++) {
1469 result = acpi_bus_get_power(tz->trips.active[i].devices.
1470 handles[j], &power_state);
1471 if (result || (power_state != ACPI_STATE_D0)) {
1472 tz->trips.active[i].flags.enabled = 0;
1473 break;
1474 }
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001475 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001476 tz->state.active |= tz->trips.active[i].flags.enabled;
Konstantin Karasyovbed936f2006-07-10 04:44:26 -07001477 }
1478
Konstantin Karasyovb1028c52007-02-16 02:23:07 -05001479 acpi_thermal_check(tz);
Konstantin Karasyov74ce14682006-05-08 08:32:00 -04001480
1481 return AE_OK;
1482}
1483
Jeff Garzik18552562007-10-03 15:15:40 -04001484static int thermal_act(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001485
1486 if (act == 0) {
1487 printk(KERN_NOTICE "ACPI: %s detected: "
1488 "disabling all active thermal trip points\n", d->ident);
1489 act = -1;
1490 }
1491 return 0;
1492}
Jeff Garzik18552562007-10-03 15:15:40 -04001493static int thermal_nocrt(const struct dmi_system_id *d) {
Len Brown8c99fdc2007-08-20 18:46:50 -04001494
1495 printk(KERN_NOTICE "ACPI: %s detected: "
1496 "disabling all critical thermal trip point actions.\n", d->ident);
1497 nocrt = 1;
1498 return 0;
1499}
Jeff Garzik18552562007-10-03 15:15:40 -04001500static int thermal_tzp(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001501
1502 if (tzp == 0) {
1503 printk(KERN_NOTICE "ACPI: %s detected: "
1504 "enabling thermal zone polling\n", d->ident);
1505 tzp = 300; /* 300 dS = 30 Seconds */
1506 }
1507 return 0;
1508}
Jeff Garzik18552562007-10-03 15:15:40 -04001509static int thermal_psv(const struct dmi_system_id *d) {
Len Brown0b5bfa12007-08-12 00:13:02 -04001510
1511 if (psv == 0) {
1512 printk(KERN_NOTICE "ACPI: %s detected: "
1513 "disabling all passive thermal trip points\n", d->ident);
1514 psv = -1;
1515 }
1516 return 0;
1517}
1518
1519static struct dmi_system_id thermal_dmi_table[] __initdata = {
1520 /*
1521 * Award BIOS on this AOpen makes thermal control almost worthless.
1522 * http://bugzilla.kernel.org/show_bug.cgi?id=8842
1523 */
1524 {
1525 .callback = thermal_act,
1526 .ident = "AOpen i915GMm-HFS",
1527 .matches = {
1528 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1529 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1530 },
1531 },
1532 {
1533 .callback = thermal_psv,
1534 .ident = "AOpen i915GMm-HFS",
1535 .matches = {
1536 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1537 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1538 },
1539 },
1540 {
1541 .callback = thermal_tzp,
1542 .ident = "AOpen i915GMm-HFS",
1543 .matches = {
1544 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
1545 DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
1546 },
1547 },
Len Brown8c99fdc2007-08-20 18:46:50 -04001548 {
1549 .callback = thermal_nocrt,
1550 .ident = "Gigabyte GA-7ZX",
1551 .matches = {
1552 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
1553 DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
1554 },
1555 },
Len Brown0b5bfa12007-08-12 00:13:02 -04001556 {}
1557};
Len Brown0b5bfa12007-08-12 00:13:02 -04001558
Len Brown4be44fc2005-08-05 00:44:28 -04001559static int __init acpi_thermal_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
Len Brown4be44fc2005-08-05 00:44:28 -04001561 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Len Brown0b5bfa12007-08-12 00:13:02 -04001563 dmi_check_system(thermal_dmi_table);
1564
Len Brown72b33ef2007-08-12 00:12:17 -04001565 if (off) {
1566 printk(KERN_NOTICE "ACPI: thermal control disabled\n");
1567 return -ENODEV;
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir);
1570 if (!acpi_thermal_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001571 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 result = acpi_bus_register_driver(&acpi_thermal_driver);
1574 if (result < 0) {
1575 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001576 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
1578
Patrick Mocheld550d982006-06-27 00:41:40 -04001579 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Len Brown4be44fc2005-08-05 00:44:28 -04001582static void __exit acpi_thermal_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 acpi_bus_unregister_driver(&acpi_thermal_driver);
1586
1587 remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir);
1588
Patrick Mocheld550d982006-06-27 00:41:40 -04001589 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592module_init(acpi_thermal_init);
1593module_exit(acpi_thermal_exit);