Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 36 | #include <linux/dmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/init.h> |
| 38 | #include <linux/types.h> |
| 39 | #include <linux/proc_fs.h> |
Tim Schmielau | cd354f1 | 2007-02-14 00:33:14 -0800 | [diff] [blame] | 40 | #include <linux/timer.h> |
| 41 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/kmod.h> |
| 43 | #include <linux/seq_file.h> |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 44 | #include <linux/reboot.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/uaccess.h> |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 46 | #include <linux/thermal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <acpi/acpi_bus.h> |
| 48 | #include <acpi/acpi_drivers.h> |
| 49 | |
| 50 | #define ACPI_THERMAL_COMPONENT 0x04000000 |
| 51 | #define ACPI_THERMAL_CLASS "thermal_zone" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #define ACPI_THERMAL_DEVICE_NAME "Thermal Zone" |
| 53 | #define ACPI_THERMAL_FILE_STATE "state" |
| 54 | #define ACPI_THERMAL_FILE_TEMPERATURE "temperature" |
| 55 | #define ACPI_THERMAL_FILE_TRIP_POINTS "trip_points" |
| 56 | #define ACPI_THERMAL_FILE_COOLING_MODE "cooling_mode" |
| 57 | #define ACPI_THERMAL_FILE_POLLING_FREQ "polling_frequency" |
| 58 | #define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80 |
| 59 | #define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81 |
| 60 | #define ACPI_THERMAL_NOTIFY_DEVICES 0x82 |
| 61 | #define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0 |
| 62 | #define ACPI_THERMAL_NOTIFY_HOT 0xF1 |
| 63 | #define ACPI_THERMAL_MODE_ACTIVE 0x00 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | #define ACPI_THERMAL_MAX_ACTIVE 10 |
| 66 | #define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65 |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #define _COMPONENT ACPI_THERMAL_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 69 | ACPI_MODULE_NAME("thermal"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 71 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 72 | MODULE_DESCRIPTION("ACPI Thermal Zone Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | MODULE_LICENSE("GPL"); |
| 74 | |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 75 | static int act; |
| 76 | module_param(act, int, 0644); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 77 | MODULE_PARM_DESC(act, "Disable or override all lowest active trip points."); |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 78 | |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 79 | static int crt; |
| 80 | module_param(crt, int, 0644); |
| 81 | MODULE_PARM_DESC(crt, "Disable or lower all critical trip points."); |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | static int tzp; |
Len Brown | 730ff34 | 2007-08-12 00:12:26 -0400 | [diff] [blame] | 84 | module_param(tzp, int, 0444); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 85 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 87 | static int nocrt; |
| 88 | module_param(nocrt, int, 0); |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 89 | MODULE_PARM_DESC(nocrt, "Set to take no action upon ACPI thermal zone critical trips points."); |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 90 | |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 91 | static int off; |
| 92 | module_param(off, int, 0); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 93 | MODULE_PARM_DESC(off, "Set to disable ACPI thermal support."); |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 94 | |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 95 | static int psv; |
| 96 | module_param(psv, int, 0644); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 97 | MODULE_PARM_DESC(psv, "Disable or override all passive trip points."); |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 98 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 99 | static int acpi_thermal_add(struct acpi_device *device); |
| 100 | static int acpi_thermal_remove(struct acpi_device *device, int type); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 101 | static int acpi_thermal_resume(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file); |
| 103 | static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file); |
| 104 | static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | static ssize_t acpi_thermal_write_cooling_mode(struct file *, |
| 107 | const char __user *, size_t, |
| 108 | loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | static ssize_t acpi_thermal_write_polling(struct file *, const char __user *, |
| 111 | size_t, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 113 | static const struct acpi_device_id thermal_device_ids[] = { |
| 114 | {ACPI_THERMAL_HID, 0}, |
| 115 | {"", 0}, |
| 116 | }; |
| 117 | MODULE_DEVICE_TABLE(acpi, thermal_device_ids); |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | static struct acpi_driver acpi_thermal_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 120 | .name = "thermal", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | .class = ACPI_THERMAL_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 122 | .ids = thermal_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 123 | .ops = { |
| 124 | .add = acpi_thermal_add, |
| 125 | .remove = acpi_thermal_remove, |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 126 | .resume = acpi_thermal_resume, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 127 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct acpi_thermal_state { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 131 | u8 critical:1; |
| 132 | u8 hot:1; |
| 133 | u8 passive:1; |
| 134 | u8 active:1; |
| 135 | u8 reserved:4; |
| 136 | int active_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | }; |
| 138 | |
| 139 | struct acpi_thermal_state_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 140 | u8 valid:1; |
| 141 | u8 enabled:1; |
| 142 | u8 reserved:6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | }; |
| 144 | |
| 145 | struct acpi_thermal_critical { |
| 146 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 147 | unsigned long temperature; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | }; |
| 149 | |
| 150 | struct acpi_thermal_hot { |
| 151 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | unsigned long temperature; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | struct acpi_thermal_passive { |
| 156 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 157 | unsigned long temperature; |
| 158 | unsigned long tc1; |
| 159 | unsigned long tc2; |
| 160 | unsigned long tsp; |
| 161 | struct acpi_handle_list devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | struct acpi_thermal_active { |
| 165 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 166 | unsigned long temperature; |
| 167 | struct acpi_handle_list devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | }; |
| 169 | |
| 170 | struct acpi_thermal_trips { |
| 171 | struct acpi_thermal_critical critical; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | struct acpi_thermal_hot hot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | struct acpi_thermal_passive passive; |
| 174 | struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE]; |
| 175 | }; |
| 176 | |
| 177 | struct acpi_thermal_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | u8 cooling_mode:1; /* _SCP */ |
| 179 | u8 devices:1; /* _TZD */ |
| 180 | u8 reserved:6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | struct acpi_thermal { |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 184 | struct acpi_device * device; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | acpi_bus_id name; |
| 186 | unsigned long temperature; |
| 187 | unsigned long last_temperature; |
| 188 | unsigned long polling_frequency; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | volatile u8 zombie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | struct acpi_thermal_flags flags; |
| 191 | struct acpi_thermal_state state; |
| 192 | struct acpi_thermal_trips trips; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 193 | struct acpi_handle_list devices; |
| 194 | struct timer_list timer; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 195 | struct thermal_zone_device *thermal_zone; |
| 196 | int tz_enabled; |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 197 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | }; |
| 199 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 200 | static const struct file_operations acpi_thermal_state_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | .open = acpi_thermal_state_open_fs, |
| 202 | .read = seq_read, |
| 203 | .llseek = seq_lseek, |
| 204 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 207 | static const struct file_operations acpi_thermal_temp_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 208 | .open = acpi_thermal_temp_open_fs, |
| 209 | .read = seq_read, |
| 210 | .llseek = seq_lseek, |
| 211 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | }; |
| 213 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 214 | static const struct file_operations acpi_thermal_trip_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 215 | .open = acpi_thermal_trip_open_fs, |
| 216 | .read = seq_read, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 217 | .llseek = seq_lseek, |
| 218 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | }; |
| 220 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 221 | static const struct file_operations acpi_thermal_cooling_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | .open = acpi_thermal_cooling_open_fs, |
| 223 | .read = seq_read, |
| 224 | .write = acpi_thermal_write_cooling_mode, |
| 225 | .llseek = seq_lseek, |
| 226 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | }; |
| 228 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 229 | static const struct file_operations acpi_thermal_polling_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | .open = acpi_thermal_polling_open_fs, |
| 231 | .read = seq_read, |
| 232 | .write = acpi_thermal_write_polling, |
| 233 | .llseek = seq_lseek, |
| 234 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | /* -------------------------------------------------------------------------- |
| 238 | Thermal Zone Management |
| 239 | -------------------------------------------------------------------------- */ |
| 240 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 241 | static int acpi_thermal_get_temperature(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 247 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | tz->last_temperature = tz->temperature; |
| 250 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | status = |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 252 | acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 254 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n", |
| 257 | tz->temperature)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 259 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 264 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 268 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 270 | status = |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 271 | acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 272 | &tz->polling_frequency); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 274 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 276 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n", |
| 277 | tz->polling_frequency)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 279 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 282 | static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 286 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
| 288 | tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */ |
| 289 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 290 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 291 | "Polling frequency set to %lu seconds\n", |
Sanjoy Mahajan | 636cedf | 2007-02-16 01:24:43 -0500 | [diff] [blame] | 292 | tz->polling_frequency/10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 294 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 297 | static int acpi_thermal_set_cooling_mode(struct acpi_thermal *tz, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | acpi_status status = AE_OK; |
| 300 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; |
| 301 | struct acpi_object_list arg_list = { 1, &arg0 }; |
| 302 | acpi_handle handle = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 306 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 308 | status = acpi_get_handle(tz->device->handle, "_SCP", &handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | if (ACPI_FAILURE(status)) { |
| 310 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 311 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | arg0.integer.value = mode; |
| 315 | |
| 316 | status = acpi_evaluate_object(handle, NULL, &arg_list, NULL); |
| 317 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 318 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 320 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 323 | #define ACPI_TRIPS_CRITICAL 0x01 |
| 324 | #define ACPI_TRIPS_HOT 0x02 |
| 325 | #define ACPI_TRIPS_PASSIVE 0x04 |
| 326 | #define ACPI_TRIPS_ACTIVE 0x08 |
| 327 | #define ACPI_TRIPS_DEVICES 0x10 |
| 328 | |
| 329 | #define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE) |
| 330 | #define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES |
| 331 | |
| 332 | #define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \ |
| 333 | ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \ |
| 334 | ACPI_TRIPS_DEVICES) |
| 335 | |
| 336 | /* |
| 337 | * This exception is thrown out in two cases: |
| 338 | * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid |
| 339 | * when re-evaluating the AML code. |
| 340 | * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change. |
| 341 | * We need to re-bind the cooling devices of a thermal zone when this occurs. |
| 342 | */ |
| 343 | #define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \ |
| 344 | do { \ |
| 345 | if (flags != ACPI_TRIPS_INIT) \ |
| 346 | ACPI_EXCEPTION((AE_INFO, AE_ERROR, \ |
| 347 | "ACPI thermal trip point %s changed\n" \ |
| 348 | "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \ |
| 349 | } while (0) |
| 350 | |
| 351 | static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 353 | acpi_status status = AE_OK; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 354 | struct acpi_handle_list devices; |
| 355 | int valid = 0; |
| 356 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
| 358 | /* Critical Shutdown (required) */ |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 359 | if (flag & ACPI_TRIPS_CRITICAL) { |
| 360 | status = acpi_evaluate_integer(tz->device->handle, |
| 361 | "_CRT", NULL, &tz->trips.critical.temperature); |
| 362 | if (ACPI_FAILURE(status)) { |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 363 | tz->trips.critical.flags.valid = 0; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 364 | ACPI_EXCEPTION((AE_INFO, status, |
| 365 | "No critical threshold")); |
| 366 | return -ENODEV; |
| 367 | } else { |
| 368 | tz->trips.critical.flags.valid = 1; |
| 369 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 370 | "Found critical threshold [%lu]\n", |
| 371 | tz->trips.critical.temperature)); |
| 372 | } |
| 373 | if (tz->trips.critical.flags.valid == 1) { |
| 374 | if (crt == -1) { |
| 375 | tz->trips.critical.flags.valid = 0; |
| 376 | } else if (crt > 0) { |
| 377 | unsigned long crt_k = CELSIUS_TO_KELVIN(crt); |
| 378 | /* |
| 379 | * Allow override to lower critical threshold |
| 380 | */ |
| 381 | if (crt_k < tz->trips.critical.temperature) |
| 382 | tz->trips.critical.temperature = crt_k; |
| 383 | } |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 384 | } |
| 385 | } |
| 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | /* Critical Sleep (optional) */ |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 388 | if (flag & ACPI_TRIPS_HOT) { |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 389 | status = acpi_evaluate_integer(tz->device->handle, |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 390 | "_HOT", NULL, &tz->trips.hot.temperature); |
| 391 | if (ACPI_FAILURE(status)) { |
| 392 | tz->trips.hot.flags.valid = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 393 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 394 | "No hot threshold\n")); |
| 395 | } else { |
| 396 | tz->trips.hot.flags.valid = 1; |
| 397 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 398 | "Found hot threshold [%lu]\n", |
| 399 | tz->trips.critical.temperature)); |
| 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 403 | /* Passive (optional) */ |
| 404 | if (flag & ACPI_TRIPS_PASSIVE) { |
| 405 | valid = tz->trips.passive.flags.valid; |
| 406 | if (psv == -1) { |
| 407 | status = AE_SUPPORT; |
| 408 | } else if (psv > 0) { |
| 409 | tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv); |
| 410 | status = AE_OK; |
| 411 | } else { |
| 412 | status = acpi_evaluate_integer(tz->device->handle, |
| 413 | "_PSV", NULL, &tz->trips.passive.temperature); |
| 414 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 416 | if (ACPI_FAILURE(status)) |
| 417 | tz->trips.passive.flags.valid = 0; |
| 418 | else { |
| 419 | tz->trips.passive.flags.valid = 1; |
| 420 | if (flag == ACPI_TRIPS_INIT) { |
| 421 | status = acpi_evaluate_integer( |
| 422 | tz->device->handle, "_TC1", |
| 423 | NULL, &tz->trips.passive.tc1); |
| 424 | if (ACPI_FAILURE(status)) |
| 425 | tz->trips.passive.flags.valid = 0; |
| 426 | status = acpi_evaluate_integer( |
| 427 | tz->device->handle, "_TC2", |
| 428 | NULL, &tz->trips.passive.tc2); |
| 429 | if (ACPI_FAILURE(status)) |
| 430 | tz->trips.passive.flags.valid = 0; |
| 431 | status = acpi_evaluate_integer( |
| 432 | tz->device->handle, "_TSP", |
| 433 | NULL, &tz->trips.passive.tsp); |
| 434 | if (ACPI_FAILURE(status)) |
| 435 | tz->trips.passive.flags.valid = 0; |
| 436 | } |
| 437 | } |
| 438 | } |
| 439 | if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) { |
| 440 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 441 | status = acpi_evaluate_reference(tz->device->handle, "_PSL", |
| 442 | NULL, &devices); |
| 443 | if (ACPI_FAILURE(status)) |
| 444 | tz->trips.passive.flags.valid = 0; |
| 445 | else |
| 446 | tz->trips.passive.flags.valid = 1; |
| 447 | |
| 448 | if (memcmp(&tz->trips.passive.devices, &devices, |
| 449 | sizeof(struct acpi_handle_list))) { |
| 450 | memcpy(&tz->trips.passive.devices, &devices, |
| 451 | sizeof(struct acpi_handle_list)); |
| 452 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 453 | } |
| 454 | } |
| 455 | if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) { |
| 456 | if (valid != tz->trips.passive.flags.valid) |
| 457 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state"); |
| 458 | } |
| 459 | |
| 460 | /* Active (optional) */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 461 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 462 | char name[5] = { '_', 'A', 'C', ('0' + i), '\0' }; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 463 | valid = tz->trips.active[i].flags.valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 465 | if (act == -1) |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 466 | break; /* disable all active trip points */ |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 467 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 468 | if (flag & ACPI_TRIPS_ACTIVE) { |
| 469 | status = acpi_evaluate_integer(tz->device->handle, |
| 470 | name, NULL, &tz->trips.active[i].temperature); |
| 471 | if (ACPI_FAILURE(status)) { |
| 472 | tz->trips.active[i].flags.valid = 0; |
| 473 | if (i == 0) |
| 474 | break; |
| 475 | if (act <= 0) |
| 476 | break; |
| 477 | if (i == 1) |
| 478 | tz->trips.active[0].temperature = |
| 479 | CELSIUS_TO_KELVIN(act); |
| 480 | else |
| 481 | /* |
| 482 | * Don't allow override higher than |
| 483 | * the next higher trip point |
| 484 | */ |
| 485 | tz->trips.active[i - 1].temperature = |
| 486 | (tz->trips.active[i - 2].temperature < |
| 487 | CELSIUS_TO_KELVIN(act) ? |
| 488 | tz->trips.active[i - 2].temperature : |
| 489 | CELSIUS_TO_KELVIN(act)); |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 490 | break; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 491 | } else |
| 492 | tz->trips.active[i].flags.valid = 1; |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | name[2] = 'L'; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 496 | if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) { |
| 497 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 498 | status = acpi_evaluate_reference(tz->device->handle, |
| 499 | name, NULL, &devices); |
| 500 | if (ACPI_FAILURE(status)) |
| 501 | tz->trips.active[i].flags.valid = 0; |
| 502 | else |
| 503 | tz->trips.active[i].flags.valid = 1; |
| 504 | |
| 505 | if (memcmp(&tz->trips.active[i].devices, &devices, |
| 506 | sizeof(struct acpi_handle_list))) { |
| 507 | memcpy(&tz->trips.active[i].devices, &devices, |
| 508 | sizeof(struct acpi_handle_list)); |
| 509 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 510 | } |
| 511 | } |
| 512 | if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES)) |
| 513 | if (valid != tz->trips.active[i].flags.valid) |
| 514 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state"); |
| 515 | |
| 516 | if (!tz->trips.active[i].flags.valid) |
| 517 | break; |
| 518 | } |
| 519 | |
| 520 | if (flag & ACPI_TRIPS_DEVICES) { |
| 521 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 522 | status = acpi_evaluate_reference(tz->device->handle, "_TZD", |
| 523 | NULL, &devices); |
| 524 | if (memcmp(&tz->devices, &devices, |
| 525 | sizeof(struct acpi_handle_list))) { |
| 526 | memcpy(&tz->devices, &devices, |
| 527 | sizeof(struct acpi_handle_list)); |
| 528 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 529 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 532 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 535 | static int acpi_thermal_get_trip_points(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | { |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 537 | return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 540 | static int acpi_thermal_critical(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
Zhang Rui | 223630f | 2007-12-06 23:36:35 -0500 | [diff] [blame] | 542 | if (!tz || !tz->trips.critical.flags.valid) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 543 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | if (tz->temperature >= tz->trips.critical.temperature) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 546 | printk(KERN_WARNING PREFIX "Critical trip point\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | tz->trips.critical.flags.enabled = 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 548 | } else if (tz->trips.critical.flags.enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | tz->trips.critical.flags.enabled = 0; |
| 550 | |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 551 | acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 552 | tz->trips.critical.flags.enabled); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 553 | acpi_bus_generate_netlink_event(tz->device->pnp.device_class, |
| 554 | tz->device->dev.bus_id, |
| 555 | ACPI_THERMAL_NOTIFY_CRITICAL, |
| 556 | tz->trips.critical.flags.enabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Zhang Rui | 223630f | 2007-12-06 23:36:35 -0500 | [diff] [blame] | 558 | /* take no action if nocrt is set */ |
| 559 | if(!nocrt) { |
| 560 | printk(KERN_EMERG |
| 561 | "Critical temperature reached (%ld C), shutting down.\n", |
| 562 | KELVIN_TO_CELSIUS(tz->temperature)); |
| 563 | orderly_poweroff(true); |
| 564 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 566 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 569 | static int acpi_thermal_hot(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Zhang Rui | 223630f | 2007-12-06 23:36:35 -0500 | [diff] [blame] | 571 | if (!tz || !tz->trips.hot.flags.valid) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 572 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
| 574 | if (tz->temperature >= tz->trips.hot.temperature) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 575 | printk(KERN_WARNING PREFIX "Hot trip point\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | tz->trips.hot.flags.enabled = 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 577 | } else if (tz->trips.hot.flags.enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | tz->trips.hot.flags.enabled = 0; |
| 579 | |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 580 | acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_HOT, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 581 | tz->trips.hot.flags.enabled); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 582 | acpi_bus_generate_netlink_event(tz->device->pnp.device_class, |
| 583 | tz->device->dev.bus_id, |
| 584 | ACPI_THERMAL_NOTIFY_HOT, |
| 585 | tz->trips.hot.flags.enabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
Zhang Rui | 223630f | 2007-12-06 23:36:35 -0500 | [diff] [blame] | 587 | /* TBD: Call user-mode "sleep(S4)" function if nocrt is cleared */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 589 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 592 | static void acpi_thermal_passive(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 594 | int result = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | struct acpi_thermal_passive *passive = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 596 | int trend = 0; |
| 597 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
| 600 | if (!tz || !tz->trips.passive.flags.valid) |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 601 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
| 603 | passive = &(tz->trips.passive); |
| 604 | |
| 605 | /* |
| 606 | * Above Trip? |
| 607 | * ----------- |
| 608 | * Calculate the thermal trend (using the passive cooling equation) |
| 609 | * and modify the performance limit for all passive cooling devices |
| 610 | * accordingly. Note that we assume symmetry. |
| 611 | */ |
| 612 | if (tz->temperature >= passive->temperature) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | trend = |
| 614 | (passive->tc1 * (tz->temperature - tz->last_temperature)) + |
| 615 | (passive->tc2 * (tz->temperature - passive->temperature)); |
| 616 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 617 | "trend[%d]=(tc1[%lu]*(tmp[%lu]-last[%lu]))+(tc2[%lu]*(tmp[%lu]-psv[%lu]))\n", |
| 618 | trend, passive->tc1, tz->temperature, |
| 619 | tz->last_temperature, passive->tc2, |
| 620 | tz->temperature, passive->temperature)); |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 621 | passive->flags.enabled = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | /* Heating up? */ |
| 623 | if (trend > 0) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 624 | for (i = 0; i < passive->devices.count; i++) |
| 625 | acpi_processor_set_thermal_limit(passive-> |
| 626 | devices. |
| 627 | handles[i], |
| 628 | ACPI_PROCESSOR_LIMIT_INCREMENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | /* Cooling off? */ |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 630 | else if (trend < 0) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | for (i = 0; i < passive->devices.count; i++) |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 632 | /* |
| 633 | * assume that we are on highest |
| 634 | * freq/lowest thrott and can leave |
| 635 | * passive mode, even in error case |
| 636 | */ |
| 637 | if (!acpi_processor_set_thermal_limit |
| 638 | (passive->devices.handles[i], |
| 639 | ACPI_PROCESSOR_LIMIT_DECREMENT)) |
| 640 | result = 0; |
| 641 | /* |
| 642 | * Leave cooling mode, even if the temp might |
| 643 | * higher than trip point This is because some |
| 644 | * machines might have long thermal polling |
| 645 | * frequencies (tsp) defined. We will fall back |
| 646 | * into passive mode in next cycle (probably quicker) |
| 647 | */ |
| 648 | if (result) { |
| 649 | passive->flags.enabled = 0; |
| 650 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 651 | "Disabling passive cooling, still above threshold," |
| 652 | " but we are cooling down\n")); |
| 653 | } |
| 654 | } |
| 655 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | /* |
| 659 | * Below Trip? |
| 660 | * ----------- |
| 661 | * Implement passive cooling hysteresis to slowly increase performance |
| 662 | * and avoid thrashing around the passive trip point. Note that we |
| 663 | * assume symmetry. |
| 664 | */ |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 665 | if (!passive->flags.enabled) |
| 666 | return; |
| 667 | for (i = 0; i < passive->devices.count; i++) |
| 668 | if (!acpi_processor_set_thermal_limit |
| 669 | (passive->devices.handles[i], |
| 670 | ACPI_PROCESSOR_LIMIT_DECREMENT)) |
| 671 | result = 0; |
| 672 | if (result) { |
| 673 | passive->flags.enabled = 0; |
| 674 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 675 | "Disabling passive cooling (zone is cool)\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
| 678 | |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 679 | static void acpi_thermal_active(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 681 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | struct acpi_thermal_active *active = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 683 | int i = 0; |
| 684 | int j = 0; |
| 685 | unsigned long maxtemp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
| 688 | if (!tz) |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 689 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 691 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | active = &(tz->trips.active[i]); |
| 693 | if (!active || !active->flags.valid) |
| 694 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | if (tz->temperature >= active->temperature) { |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 696 | /* |
| 697 | * Above Threshold? |
| 698 | * ---------------- |
| 699 | * If not already enabled, turn ON all cooling devices |
| 700 | * associated with this active threshold. |
| 701 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | if (active->temperature > maxtemp) |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 703 | tz->state.active_index = i; |
| 704 | maxtemp = active->temperature; |
| 705 | if (active->flags.enabled) |
| 706 | continue; |
| 707 | for (j = 0; j < active->devices.count; j++) { |
| 708 | result = |
| 709 | acpi_bus_set_power(active->devices. |
| 710 | handles[j], |
| 711 | ACPI_STATE_D0); |
| 712 | if (result) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 713 | printk(KERN_WARNING PREFIX |
| 714 | "Unable to turn cooling device [%p] 'on'\n", |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 715 | active->devices. |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 716 | handles[j]); |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 717 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | } |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 719 | active->flags.enabled = 1; |
| 720 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 721 | "Cooling device [%p] now 'on'\n", |
| 722 | active->devices.handles[j])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 724 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 726 | if (!active->flags.enabled) |
| 727 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | /* |
| 729 | * Below Threshold? |
| 730 | * ---------------- |
| 731 | * Turn OFF all cooling devices associated with this |
| 732 | * threshold. |
| 733 | */ |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 734 | for (j = 0; j < active->devices.count; j++) { |
| 735 | result = acpi_bus_set_power(active->devices.handles[j], |
| 736 | ACPI_STATE_D3); |
| 737 | if (result) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 738 | printk(KERN_WARNING PREFIX |
| 739 | "Unable to turn cooling device [%p] 'off'\n", |
| 740 | active->devices.handles[j]); |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 741 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 743 | active->flags.enabled = 0; |
| 744 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 745 | "Cooling device [%p] now 'off'\n", |
| 746 | active->devices.handles[j])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | } |
| 748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | } |
| 750 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 751 | static void acpi_thermal_check(void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 753 | static void acpi_thermal_run(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
| 755 | struct acpi_thermal *tz = (struct acpi_thermal *)data; |
| 756 | if (!tz->zombie) |
Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 757 | acpi_os_execute(OSL_GPE_HANDLER, acpi_thermal_check, (void *)data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
| 759 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 760 | static void acpi_thermal_check(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 762 | int result = 0; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 763 | struct acpi_thermal *tz = data; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 764 | unsigned long sleep_time = 0; |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 765 | unsigned long timeout_jiffies = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 766 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | struct acpi_thermal_state state; |
| 768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | if (!tz) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 771 | printk(KERN_ERR PREFIX "Invalid (NULL) context\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 772 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
| 774 | |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 775 | /* Check if someone else is already running */ |
| 776 | if (!mutex_trylock(&tz->lock)) |
| 777 | return; |
| 778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | state = tz->state; |
| 780 | |
| 781 | result = acpi_thermal_get_temperature(tz); |
| 782 | if (result) |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 783 | goto unlock; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 784 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 785 | if (!tz->tz_enabled) |
| 786 | goto unlock; |
| 787 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | memset(&tz->state, 0, sizeof(tz->state)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | /* |
| 791 | * Check Trip Points |
| 792 | * ----------------- |
| 793 | * Compare the current temperature to the trip point values to see |
| 794 | * if we've entered one of the thermal policy states. Note that |
| 795 | * this function determines when a state is entered, but the |
| 796 | * individual policy decides when it is exited (e.g. hysteresis). |
| 797 | */ |
| 798 | if (tz->trips.critical.flags.valid) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 799 | state.critical |= |
| 800 | (tz->temperature >= tz->trips.critical.temperature); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | if (tz->trips.hot.flags.valid) |
| 802 | state.hot |= (tz->temperature >= tz->trips.hot.temperature); |
| 803 | if (tz->trips.passive.flags.valid) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 804 | state.passive |= |
| 805 | (tz->temperature >= tz->trips.passive.temperature); |
| 806 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | if (tz->trips.active[i].flags.valid) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 808 | state.active |= |
| 809 | (tz->temperature >= |
| 810 | tz->trips.active[i].temperature); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * Invoke Policy |
| 814 | * ------------- |
| 815 | * Separated from the above check to allow individual policy to |
| 816 | * determine when to exit a given state. |
| 817 | */ |
| 818 | if (state.critical) |
| 819 | acpi_thermal_critical(tz); |
| 820 | if (state.hot) |
| 821 | acpi_thermal_hot(tz); |
| 822 | if (state.passive) |
| 823 | acpi_thermal_passive(tz); |
| 824 | if (state.active) |
| 825 | acpi_thermal_active(tz); |
| 826 | |
| 827 | /* |
| 828 | * Calculate State |
| 829 | * --------------- |
| 830 | * Again, separated from the above two to allow independent policy |
| 831 | * decisions. |
| 832 | */ |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 833 | tz->state.critical = tz->trips.critical.flags.enabled; |
| 834 | tz->state.hot = tz->trips.hot.flags.enabled; |
| 835 | tz->state.passive = tz->trips.passive.flags.enabled; |
| 836 | tz->state.active = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 837 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 838 | tz->state.active |= tz->trips.active[i].flags.enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | /* |
| 841 | * Calculate Sleep Time |
| 842 | * -------------------- |
| 843 | * If we're in the passive state, use _TSP's value. Otherwise |
| 844 | * use the default polling frequency (e.g. _TZP). If no polling |
| 845 | * frequency is specified then we'll wait forever (at least until |
| 846 | * a thermal event occurs). Note that _TSP and _TZD values are |
| 847 | * given in 1/10th seconds (we must covert to milliseconds). |
| 848 | */ |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 849 | if (tz->state.passive) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | sleep_time = tz->trips.passive.tsp * 100; |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 851 | timeout_jiffies = jiffies + (HZ * sleep_time) / 1000; |
| 852 | } else if (tz->polling_frequency > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | sleep_time = tz->polling_frequency * 100; |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 854 | timeout_jiffies = round_jiffies(jiffies + (HZ * sleep_time) / 1000); |
| 855 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 857 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s: temperature[%lu] sleep[%lu]\n", |
| 858 | tz->name, tz->temperature, sleep_time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
| 860 | /* |
| 861 | * Schedule Next Poll |
| 862 | * ------------------ |
| 863 | */ |
| 864 | if (!sleep_time) { |
| 865 | if (timer_pending(&(tz->timer))) |
| 866 | del_timer(&(tz->timer)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 867 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | if (timer_pending(&(tz->timer))) |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 869 | mod_timer(&(tz->timer), timeout_jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | else { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 871 | tz->timer.data = (unsigned long)tz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | tz->timer.function = acpi_thermal_run; |
Len Brown | 21bc42a | 2007-09-04 12:49:22 -0400 | [diff] [blame] | 873 | tz->timer.expires = timeout_jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | add_timer(&(tz->timer)); |
| 875 | } |
| 876 | } |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 877 | unlock: |
| 878 | mutex_unlock(&tz->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 881 | /* sys I/F for generic thermal sysfs support */ |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 882 | #define KELVIN_TO_MILLICELSIUS(t) (t * 100 - 273200) |
| 883 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 884 | static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf) |
| 885 | { |
| 886 | struct acpi_thermal *tz = thermal->devdata; |
| 887 | |
| 888 | if (!tz) |
| 889 | return -EINVAL; |
| 890 | |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 891 | return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS(tz->temperature)); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | static const char enabled[] = "kernel"; |
| 895 | static const char disabled[] = "user"; |
| 896 | static int thermal_get_mode(struct thermal_zone_device *thermal, |
| 897 | char *buf) |
| 898 | { |
| 899 | struct acpi_thermal *tz = thermal->devdata; |
| 900 | |
| 901 | if (!tz) |
| 902 | return -EINVAL; |
| 903 | |
| 904 | return sprintf(buf, "%s\n", tz->tz_enabled ? |
| 905 | enabled : disabled); |
| 906 | } |
| 907 | |
| 908 | static int thermal_set_mode(struct thermal_zone_device *thermal, |
| 909 | const char *buf) |
| 910 | { |
| 911 | struct acpi_thermal *tz = thermal->devdata; |
| 912 | int enable; |
| 913 | |
| 914 | if (!tz) |
| 915 | return -EINVAL; |
| 916 | |
| 917 | /* |
| 918 | * enable/disable thermal management from ACPI thermal driver |
| 919 | */ |
| 920 | if (!strncmp(buf, enabled, sizeof enabled - 1)) |
| 921 | enable = 1; |
| 922 | else if (!strncmp(buf, disabled, sizeof disabled - 1)) |
| 923 | enable = 0; |
| 924 | else |
| 925 | return -EINVAL; |
| 926 | |
| 927 | if (enable != tz->tz_enabled) { |
| 928 | tz->tz_enabled = enable; |
| 929 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 930 | "%s ACPI thermal control\n", |
| 931 | tz->tz_enabled ? enabled : disabled)); |
| 932 | acpi_thermal_check(tz); |
| 933 | } |
| 934 | return 0; |
| 935 | } |
| 936 | |
| 937 | static int thermal_get_trip_type(struct thermal_zone_device *thermal, |
| 938 | int trip, char *buf) |
| 939 | { |
| 940 | struct acpi_thermal *tz = thermal->devdata; |
| 941 | int i; |
| 942 | |
| 943 | if (!tz || trip < 0) |
| 944 | return -EINVAL; |
| 945 | |
| 946 | if (tz->trips.critical.flags.valid) { |
| 947 | if (!trip) |
| 948 | return sprintf(buf, "critical\n"); |
| 949 | trip--; |
| 950 | } |
| 951 | |
| 952 | if (tz->trips.hot.flags.valid) { |
| 953 | if (!trip) |
| 954 | return sprintf(buf, "hot\n"); |
| 955 | trip--; |
| 956 | } |
| 957 | |
| 958 | if (tz->trips.passive.flags.valid) { |
| 959 | if (!trip) |
| 960 | return sprintf(buf, "passive\n"); |
| 961 | trip--; |
| 962 | } |
| 963 | |
| 964 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 965 | tz->trips.active[i].flags.valid; i++) { |
| 966 | if (!trip) |
| 967 | return sprintf(buf, "active%d\n", i); |
| 968 | trip--; |
| 969 | } |
| 970 | |
| 971 | return -EINVAL; |
| 972 | } |
| 973 | |
| 974 | static int thermal_get_trip_temp(struct thermal_zone_device *thermal, |
| 975 | int trip, char *buf) |
| 976 | { |
| 977 | struct acpi_thermal *tz = thermal->devdata; |
| 978 | int i; |
| 979 | |
| 980 | if (!tz || trip < 0) |
| 981 | return -EINVAL; |
| 982 | |
| 983 | if (tz->trips.critical.flags.valid) { |
| 984 | if (!trip) |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 985 | return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS( |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 986 | tz->trips.critical.temperature)); |
| 987 | trip--; |
| 988 | } |
| 989 | |
| 990 | if (tz->trips.hot.flags.valid) { |
| 991 | if (!trip) |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 992 | return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS( |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 993 | tz->trips.hot.temperature)); |
| 994 | trip--; |
| 995 | } |
| 996 | |
| 997 | if (tz->trips.passive.flags.valid) { |
| 998 | if (!trip) |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 999 | return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS( |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1000 | tz->trips.passive.temperature)); |
| 1001 | trip--; |
| 1002 | } |
| 1003 | |
| 1004 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 1005 | tz->trips.active[i].flags.valid; i++) { |
| 1006 | if (!trip) |
Zhang, Rui | 5e01276 | 2008-02-28 07:51:30 +0800 | [diff] [blame] | 1007 | return sprintf(buf, "%ld\n", KELVIN_TO_MILLICELSIUS( |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1008 | tz->trips.active[i].temperature)); |
| 1009 | trip--; |
| 1010 | } |
| 1011 | |
| 1012 | return -EINVAL; |
| 1013 | } |
| 1014 | |
Zhang, Rui | 9ec732f | 2008-04-10 16:13:10 +0800 | [diff] [blame] | 1015 | static int thermal_get_crit_temp(struct thermal_zone_device *thermal, |
| 1016 | unsigned long *temperature) { |
| 1017 | struct acpi_thermal *tz = thermal->devdata; |
| 1018 | |
| 1019 | if (tz->trips.critical.flags.valid) { |
| 1020 | *temperature = KELVIN_TO_MILLICELSIUS( |
| 1021 | tz->trips.critical.temperature); |
| 1022 | return 0; |
| 1023 | } else |
| 1024 | return -EINVAL; |
| 1025 | } |
| 1026 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1027 | typedef int (*cb)(struct thermal_zone_device *, int, |
| 1028 | struct thermal_cooling_device *); |
| 1029 | static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal, |
| 1030 | struct thermal_cooling_device *cdev, |
| 1031 | cb action) |
| 1032 | { |
| 1033 | struct acpi_device *device = cdev->devdata; |
| 1034 | struct acpi_thermal *tz = thermal->devdata; |
Zhang Rui | 653a00c | 2008-01-17 15:51:18 +0800 | [diff] [blame] | 1035 | struct acpi_device *dev; |
| 1036 | acpi_status status; |
| 1037 | acpi_handle handle; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1038 | int i; |
| 1039 | int j; |
| 1040 | int trip = -1; |
| 1041 | int result = 0; |
| 1042 | |
| 1043 | if (tz->trips.critical.flags.valid) |
| 1044 | trip++; |
| 1045 | |
| 1046 | if (tz->trips.hot.flags.valid) |
| 1047 | trip++; |
| 1048 | |
| 1049 | if (tz->trips.passive.flags.valid) { |
| 1050 | trip++; |
| 1051 | for (i = 0; i < tz->trips.passive.devices.count; |
| 1052 | i++) { |
Zhang Rui | 653a00c | 2008-01-17 15:51:18 +0800 | [diff] [blame] | 1053 | handle = tz->trips.passive.devices.handles[i]; |
| 1054 | status = acpi_bus_get_device(handle, &dev); |
| 1055 | if (ACPI_SUCCESS(status) && (dev == device)) { |
| 1056 | result = action(thermal, trip, cdev); |
| 1057 | if (result) |
| 1058 | goto failed; |
| 1059 | } |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1060 | } |
| 1061 | } |
| 1062 | |
| 1063 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
| 1064 | if (!tz->trips.active[i].flags.valid) |
| 1065 | break; |
| 1066 | trip++; |
| 1067 | for (j = 0; |
| 1068 | j < tz->trips.active[i].devices.count; |
| 1069 | j++) { |
Zhang Rui | 653a00c | 2008-01-17 15:51:18 +0800 | [diff] [blame] | 1070 | handle = tz->trips.active[i].devices.handles[j]; |
| 1071 | status = acpi_bus_get_device(handle, &dev); |
| 1072 | if (ACPI_SUCCESS(status) && (dev == device)) { |
| 1073 | result = action(thermal, trip, cdev); |
| 1074 | if (result) |
| 1075 | goto failed; |
| 1076 | } |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | for (i = 0; i < tz->devices.count; i++) { |
Zhang Rui | 653a00c | 2008-01-17 15:51:18 +0800 | [diff] [blame] | 1081 | handle = tz->devices.handles[i]; |
| 1082 | status = acpi_bus_get_device(handle, &dev); |
| 1083 | if (ACPI_SUCCESS(status) && (dev == device)) { |
| 1084 | result = action(thermal, -1, cdev); |
| 1085 | if (result) |
| 1086 | goto failed; |
| 1087 | } |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | failed: |
| 1091 | return result; |
| 1092 | } |
| 1093 | |
| 1094 | static int |
| 1095 | acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal, |
| 1096 | struct thermal_cooling_device *cdev) |
| 1097 | { |
| 1098 | return acpi_thermal_cooling_device_cb(thermal, cdev, |
| 1099 | thermal_zone_bind_cooling_device); |
| 1100 | } |
| 1101 | |
| 1102 | static int |
| 1103 | acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal, |
| 1104 | struct thermal_cooling_device *cdev) |
| 1105 | { |
| 1106 | return acpi_thermal_cooling_device_cb(thermal, cdev, |
| 1107 | thermal_zone_unbind_cooling_device); |
| 1108 | } |
| 1109 | |
| 1110 | static struct thermal_zone_device_ops acpi_thermal_zone_ops = { |
| 1111 | .bind = acpi_thermal_bind_cooling_device, |
| 1112 | .unbind = acpi_thermal_unbind_cooling_device, |
| 1113 | .get_temp = thermal_get_temp, |
| 1114 | .get_mode = thermal_get_mode, |
| 1115 | .set_mode = thermal_set_mode, |
| 1116 | .get_trip_type = thermal_get_trip_type, |
| 1117 | .get_trip_temp = thermal_get_trip_temp, |
Zhang, Rui | 9ec732f | 2008-04-10 16:13:10 +0800 | [diff] [blame] | 1118 | .get_crit_temp = thermal_get_crit_temp, |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1119 | }; |
| 1120 | |
| 1121 | static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) |
| 1122 | { |
| 1123 | int trips = 0; |
| 1124 | int result; |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame] | 1125 | acpi_status status; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1126 | int i; |
| 1127 | |
| 1128 | if (tz->trips.critical.flags.valid) |
| 1129 | trips++; |
| 1130 | |
| 1131 | if (tz->trips.hot.flags.valid) |
| 1132 | trips++; |
| 1133 | |
| 1134 | if (tz->trips.passive.flags.valid) |
| 1135 | trips++; |
| 1136 | |
| 1137 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 1138 | tz->trips.active[i].flags.valid; i++, trips++); |
Zhang Rui | e9ae710 | 2008-04-22 08:50:09 +0800 | [diff] [blame^] | 1139 | tz->thermal_zone = thermal_zone_device_register("acpitz", |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1140 | trips, tz, &acpi_thermal_zone_ops); |
Krzysztof Helt | bb070e4 | 2008-04-08 17:41:52 -0700 | [diff] [blame] | 1141 | if (IS_ERR(tz->thermal_zone)) |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1142 | return -ENODEV; |
| 1143 | |
| 1144 | result = sysfs_create_link(&tz->device->dev.kobj, |
| 1145 | &tz->thermal_zone->device.kobj, "thermal_zone"); |
| 1146 | if (result) |
| 1147 | return result; |
| 1148 | |
| 1149 | result = sysfs_create_link(&tz->thermal_zone->device.kobj, |
| 1150 | &tz->device->dev.kobj, "device"); |
| 1151 | if (result) |
| 1152 | return result; |
| 1153 | |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame] | 1154 | status = acpi_attach_data(tz->device->handle, |
| 1155 | acpi_bus_private_data_handler, |
| 1156 | tz->thermal_zone); |
| 1157 | if (ACPI_FAILURE(status)) { |
| 1158 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 1159 | "Error attaching device data\n")); |
| 1160 | return -ENODEV; |
| 1161 | } |
| 1162 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1163 | tz->tz_enabled = 1; |
| 1164 | |
| 1165 | printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n", |
| 1166 | tz->device->dev.bus_id, tz->thermal_zone->id); |
| 1167 | return 0; |
| 1168 | } |
| 1169 | |
| 1170 | static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz) |
| 1171 | { |
| 1172 | sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone"); |
| 1173 | sysfs_remove_link(&tz->thermal_zone->device.kobj, "device"); |
| 1174 | thermal_zone_device_unregister(tz->thermal_zone); |
| 1175 | tz->thermal_zone = NULL; |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame] | 1176 | acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | /* -------------------------------------------------------------------------- |
| 1181 | FS Interface (/proc) |
| 1182 | -------------------------------------------------------------------------- */ |
| 1183 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1184 | static struct proc_dir_entry *acpi_thermal_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | |
| 1186 | static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset) |
| 1187 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1188 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | |
| 1191 | if (!tz) |
| 1192 | goto end; |
| 1193 | |
| 1194 | seq_puts(seq, "state: "); |
| 1195 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1196 | if (!tz->state.critical && !tz->state.hot && !tz->state.passive |
| 1197 | && !tz->state.active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | seq_puts(seq, "ok\n"); |
| 1199 | else { |
| 1200 | if (tz->state.critical) |
| 1201 | seq_puts(seq, "critical "); |
| 1202 | if (tz->state.hot) |
| 1203 | seq_puts(seq, "hot "); |
| 1204 | if (tz->state.passive) |
| 1205 | seq_puts(seq, "passive "); |
| 1206 | if (tz->state.active) |
| 1207 | seq_printf(seq, "active[%d]", tz->state.active_index); |
| 1208 | seq_puts(seq, "\n"); |
| 1209 | } |
| 1210 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1211 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1212 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
| 1215 | static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file) |
| 1216 | { |
| 1217 | return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data); |
| 1218 | } |
| 1219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset) |
| 1221 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1222 | int result = 0; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1223 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | |
| 1226 | if (!tz) |
| 1227 | goto end; |
| 1228 | |
| 1229 | result = acpi_thermal_get_temperature(tz); |
| 1230 | if (result) |
| 1231 | goto end; |
| 1232 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1233 | seq_printf(seq, "temperature: %ld C\n", |
| 1234 | KELVIN_TO_CELSIUS(tz->temperature)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1236 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1237 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | } |
| 1239 | |
| 1240 | static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file) |
| 1241 | { |
| 1242 | return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data); |
| 1243 | } |
| 1244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset) |
| 1246 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1247 | struct acpi_thermal *tz = seq->private; |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1248 | struct acpi_device *device; |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1249 | acpi_status status; |
| 1250 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1251 | int i = 0; |
| 1252 | int j = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | |
| 1255 | if (!tz) |
| 1256 | goto end; |
| 1257 | |
| 1258 | if (tz->trips.critical.flags.valid) |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 1259 | seq_printf(seq, "critical (S5): %ld C%s", |
| 1260 | KELVIN_TO_CELSIUS(tz->trips.critical.temperature), |
| 1261 | nocrt ? " <disabled>\n" : "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | |
| 1263 | if (tz->trips.hot.flags.valid) |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 1264 | seq_printf(seq, "hot (S4): %ld C%s", |
| 1265 | KELVIN_TO_CELSIUS(tz->trips.hot.temperature), |
| 1266 | nocrt ? " <disabled>\n" : "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | |
| 1268 | if (tz->trips.passive.flags.valid) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1269 | seq_printf(seq, |
| 1270 | "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=", |
| 1271 | KELVIN_TO_CELSIUS(tz->trips.passive.temperature), |
| 1272 | tz->trips.passive.tc1, tz->trips.passive.tc2, |
| 1273 | tz->trips.passive.tsp); |
| 1274 | for (j = 0; j < tz->trips.passive.devices.count; j++) { |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1275 | status = acpi_bus_get_device(tz->trips.passive.devices. |
| 1276 | handles[j], &device); |
| 1277 | seq_printf(seq, "%4.4s ", status ? "" : |
| 1278 | acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | } |
| 1280 | seq_puts(seq, "\n"); |
| 1281 | } |
| 1282 | |
| 1283 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
| 1284 | if (!(tz->trips.active[i].flags.valid)) |
| 1285 | break; |
| 1286 | seq_printf(seq, "active[%d]: %ld C: devices=", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1287 | i, |
| 1288 | KELVIN_TO_CELSIUS(tz->trips.active[i].temperature)); |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1289 | for (j = 0; j < tz->trips.active[i].devices.count; j++){ |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1290 | status = acpi_bus_get_device(tz->trips.active[i]. |
| 1291 | devices.handles[j], |
| 1292 | &device); |
| 1293 | seq_printf(seq, "%4.4s ", status ? "" : |
| 1294 | acpi_device_bid(device)); |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | seq_puts(seq, "\n"); |
| 1297 | } |
| 1298 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1299 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1300 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
| 1303 | static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file) |
| 1304 | { |
| 1305 | return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data); |
| 1306 | } |
| 1307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset) |
| 1309 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1310 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | |
| 1313 | if (!tz) |
| 1314 | goto end; |
| 1315 | |
Len Brown | eaca2d3 | 2007-04-30 23:27:43 -0400 | [diff] [blame] | 1316 | if (!tz->flags.cooling_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | seq_puts(seq, "<setting not supported>\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | else |
Len Brown | eaca2d3 | 2007-04-30 23:27:43 -0400 | [diff] [blame] | 1319 | seq_puts(seq, "0 - Active; 1 - Passive\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1321 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1322 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file) |
| 1326 | { |
| 1327 | return single_open(file, acpi_thermal_cooling_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1328 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | static ssize_t |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1332 | acpi_thermal_write_cooling_mode(struct file *file, |
| 1333 | const char __user * buffer, |
| 1334 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1336 | struct seq_file *m = file->private_data; |
| 1337 | struct acpi_thermal *tz = m->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1338 | int result = 0; |
| 1339 | char mode_string[12] = { '\0' }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
| 1342 | if (!tz || (count > sizeof(mode_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1343 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | |
| 1345 | if (!tz->flags.cooling_mode) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1346 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | |
| 1348 | if (copy_from_user(mode_string, buffer, count)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1349 | return -EFAULT; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | mode_string[count] = '\0'; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1352 | |
| 1353 | result = acpi_thermal_set_cooling_mode(tz, |
| 1354 | simple_strtoul(mode_string, NULL, |
| 1355 | 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1357 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
| 1359 | acpi_thermal_check(tz); |
| 1360 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1361 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset) |
| 1365 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1366 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
| 1369 | if (!tz) |
| 1370 | goto end; |
| 1371 | |
| 1372 | if (!tz->polling_frequency) { |
| 1373 | seq_puts(seq, "<polling disabled>\n"); |
| 1374 | goto end; |
| 1375 | } |
| 1376 | |
| 1377 | seq_printf(seq, "polling frequency: %lu seconds\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1378 | (tz->polling_frequency / 10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1380 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1381 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file) |
| 1385 | { |
| 1386 | return single_open(file, acpi_thermal_polling_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1387 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | } |
| 1389 | |
| 1390 | static ssize_t |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1391 | acpi_thermal_write_polling(struct file *file, |
| 1392 | const char __user * buffer, |
| 1393 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1395 | struct seq_file *m = file->private_data; |
| 1396 | struct acpi_thermal *tz = m->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1397 | int result = 0; |
| 1398 | char polling_string[12] = { '\0' }; |
| 1399 | int seconds = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | |
| 1402 | if (!tz || (count > sizeof(polling_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1403 | return -EINVAL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | if (copy_from_user(polling_string, buffer, count)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1406 | return -EFAULT; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | polling_string[count] = '\0'; |
| 1409 | |
| 1410 | seconds = simple_strtoul(polling_string, NULL, 0); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | result = acpi_thermal_set_polling(tz, seconds); |
| 1413 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1414 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | |
| 1416 | acpi_thermal_check(tz); |
| 1417 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1418 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | } |
| 1420 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1421 | static int acpi_thermal_add_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1423 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | |
| 1426 | if (!acpi_device_dir(device)) { |
| 1427 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1428 | acpi_thermal_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | if (!acpi_device_dir(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1430 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | acpi_device_dir(device)->owner = THIS_MODULE; |
| 1432 | } |
| 1433 | |
| 1434 | /* 'state' [R] */ |
| 1435 | entry = create_proc_entry(ACPI_THERMAL_FILE_STATE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1436 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1438 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | else { |
| 1440 | entry->proc_fops = &acpi_thermal_state_fops; |
| 1441 | entry->data = acpi_driver_data(device); |
| 1442 | entry->owner = THIS_MODULE; |
| 1443 | } |
| 1444 | |
| 1445 | /* 'temperature' [R] */ |
| 1446 | entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1447 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1449 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | else { |
| 1451 | entry->proc_fops = &acpi_thermal_temp_fops; |
| 1452 | entry->data = acpi_driver_data(device); |
| 1453 | entry->owner = THIS_MODULE; |
| 1454 | } |
| 1455 | |
Pavel Machek | 2db9ccb | 2007-08-24 11:45:50 +0200 | [diff] [blame] | 1456 | /* 'trip_points' [R] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, |
Pavel Machek | 2db9ccb | 2007-08-24 11:45:50 +0200 | [diff] [blame] | 1458 | S_IRUGO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1459 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1461 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | else { |
| 1463 | entry->proc_fops = &acpi_thermal_trip_fops; |
| 1464 | entry->data = acpi_driver_data(device); |
| 1465 | entry->owner = THIS_MODULE; |
| 1466 | } |
| 1467 | |
| 1468 | /* 'cooling_mode' [R/W] */ |
| 1469 | entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1470 | S_IFREG | S_IRUGO | S_IWUSR, |
| 1471 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1473 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | else { |
| 1475 | entry->proc_fops = &acpi_thermal_cooling_fops; |
| 1476 | entry->data = acpi_driver_data(device); |
| 1477 | entry->owner = THIS_MODULE; |
| 1478 | } |
| 1479 | |
| 1480 | /* 'polling_frequency' [R/W] */ |
| 1481 | entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1482 | S_IFREG | S_IRUGO | S_IWUSR, |
| 1483 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1485 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | else { |
| 1487 | entry->proc_fops = &acpi_thermal_polling_fops; |
| 1488 | entry->data = acpi_driver_data(device); |
| 1489 | entry->owner = THIS_MODULE; |
| 1490 | } |
| 1491 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1492 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | } |
| 1494 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1495 | static int acpi_thermal_remove_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | |
| 1498 | if (acpi_device_dir(device)) { |
| 1499 | remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ, |
| 1500 | acpi_device_dir(device)); |
| 1501 | remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE, |
| 1502 | acpi_device_dir(device)); |
| 1503 | remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, |
| 1504 | acpi_device_dir(device)); |
| 1505 | remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE, |
| 1506 | acpi_device_dir(device)); |
| 1507 | remove_proc_entry(ACPI_THERMAL_FILE_STATE, |
| 1508 | acpi_device_dir(device)); |
| 1509 | remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir); |
| 1510 | acpi_device_dir(device) = NULL; |
| 1511 | } |
| 1512 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1513 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | } |
| 1515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | /* -------------------------------------------------------------------------- |
| 1517 | Driver Interface |
| 1518 | -------------------------------------------------------------------------- */ |
| 1519 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1520 | static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1522 | struct acpi_thermal *tz = data; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1523 | struct acpi_device *device = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | |
| 1526 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1527 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1529 | device = tz->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | |
| 1531 | switch (event) { |
| 1532 | case ACPI_THERMAL_NOTIFY_TEMPERATURE: |
| 1533 | acpi_thermal_check(tz); |
| 1534 | break; |
| 1535 | case ACPI_THERMAL_NOTIFY_THRESHOLDS: |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 1536 | acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | acpi_thermal_check(tz); |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 1538 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 1539 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 1540 | device->dev.bus_id, event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | break; |
| 1542 | case ACPI_THERMAL_NOTIFY_DEVICES: |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 1543 | acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES); |
| 1544 | acpi_thermal_check(tz); |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 1545 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 1546 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 1547 | device->dev.bus_id, event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | break; |
| 1549 | default: |
| 1550 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1551 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | break; |
| 1553 | } |
| 1554 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1555 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | } |
| 1557 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1558 | static int acpi_thermal_get_info(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1560 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
| 1563 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1564 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
| 1566 | /* Get temperature [_TMP] (required) */ |
| 1567 | result = acpi_thermal_get_temperature(tz); |
| 1568 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1569 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | |
| 1571 | /* Get trip points [_CRT, _PSV, etc.] (required) */ |
| 1572 | result = acpi_thermal_get_trip_points(tz); |
| 1573 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1574 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | |
| 1576 | /* Set the cooling mode [_SCP] to active cooling (default) */ |
| 1577 | result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1578 | if (!result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | tz->flags.cooling_mode = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | |
| 1581 | /* Get default polling frequency [_TZP] (optional) */ |
| 1582 | if (tzp) |
| 1583 | tz->polling_frequency = tzp; |
| 1584 | else |
| 1585 | acpi_thermal_get_polling_frequency(tz); |
| 1586 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1587 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | } |
| 1589 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1590 | static int acpi_thermal_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1592 | int result = 0; |
| 1593 | acpi_status status = AE_OK; |
| 1594 | struct acpi_thermal *tz = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | |
| 1597 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1598 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1600 | tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1602 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1604 | tz->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | strcpy(tz->name, device->pnp.bus_id); |
| 1606 | strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME); |
| 1607 | strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS); |
| 1608 | acpi_driver_data(device) = tz; |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 1609 | mutex_init(&tz->lock); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1610 | |
| 1611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | result = acpi_thermal_get_info(tz); |
| 1613 | if (result) |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1614 | goto free_memory; |
| 1615 | |
| 1616 | result = acpi_thermal_register_thermal_zone(tz); |
| 1617 | if (result) |
| 1618 | goto free_memory; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
| 1620 | result = acpi_thermal_add_fs(device); |
| 1621 | if (result) |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1622 | goto unregister_thermal_zone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | |
| 1624 | init_timer(&tz->timer); |
| 1625 | |
| 1626 | acpi_thermal_check(tz); |
| 1627 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1628 | status = acpi_install_notify_handler(device->handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1629 | ACPI_DEVICE_NOTIFY, |
| 1630 | acpi_thermal_notify, tz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | result = -ENODEV; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1633 | goto remove_fs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | } |
| 1635 | |
| 1636 | printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1637 | acpi_device_name(device), acpi_device_bid(device), |
| 1638 | KELVIN_TO_CELSIUS(tz->temperature)); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1639 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1641 | remove_fs: |
| 1642 | acpi_thermal_remove_fs(device); |
| 1643 | unregister_thermal_zone: |
| 1644 | thermal_zone_device_unregister(tz->thermal_zone); |
| 1645 | free_memory: |
| 1646 | kfree(tz); |
| 1647 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1648 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1651 | static int acpi_thermal_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1653 | acpi_status status = AE_OK; |
| 1654 | struct acpi_thermal *tz = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | |
| 1657 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1658 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1660 | tz = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
| 1662 | /* avoid timer adding new defer task */ |
| 1663 | tz->zombie = 1; |
| 1664 | /* wait for running timer (on other CPUs) finish */ |
| 1665 | del_timer_sync(&(tz->timer)); |
| 1666 | /* synchronize deferred task */ |
| 1667 | acpi_os_wait_events_complete(NULL); |
| 1668 | /* deferred task may reinsert timer */ |
| 1669 | del_timer_sync(&(tz->timer)); |
| 1670 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1671 | status = acpi_remove_notify_handler(device->handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1672 | ACPI_DEVICE_NOTIFY, |
| 1673 | acpi_thermal_notify); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
| 1675 | /* Terminate policy */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1676 | if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | tz->trips.passive.flags.enabled = 0; |
| 1678 | acpi_thermal_passive(tz); |
| 1679 | } |
| 1680 | if (tz->trips.active[0].flags.valid |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1681 | && tz->trips.active[0].flags.enabled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | tz->trips.active[0].flags.enabled = 0; |
| 1683 | acpi_thermal_active(tz); |
| 1684 | } |
| 1685 | |
| 1686 | acpi_thermal_remove_fs(device); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1687 | acpi_thermal_unregister_thermal_zone(tz); |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 1688 | mutex_destroy(&tz->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | kfree(tz); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1690 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | } |
| 1692 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1693 | static int acpi_thermal_resume(struct acpi_device *device) |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1694 | { |
| 1695 | struct acpi_thermal *tz = NULL; |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1696 | int i, j, power_state, result; |
| 1697 | |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1698 | |
| 1699 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1700 | return -EINVAL; |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1701 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1702 | tz = acpi_driver_data(device); |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1703 | |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1704 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1705 | if (!(&tz->trips.active[i])) |
| 1706 | break; |
| 1707 | if (!tz->trips.active[i].flags.valid) |
| 1708 | break; |
| 1709 | tz->trips.active[i].flags.enabled = 1; |
| 1710 | for (j = 0; j < tz->trips.active[i].devices.count; j++) { |
| 1711 | result = acpi_bus_get_power(tz->trips.active[i].devices. |
| 1712 | handles[j], &power_state); |
| 1713 | if (result || (power_state != ACPI_STATE_D0)) { |
| 1714 | tz->trips.active[i].flags.enabled = 0; |
| 1715 | break; |
| 1716 | } |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1717 | } |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1718 | tz->state.active |= tz->trips.active[i].flags.enabled; |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1719 | } |
| 1720 | |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1721 | acpi_thermal_check(tz); |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1722 | |
| 1723 | return AE_OK; |
| 1724 | } |
| 1725 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1726 | static int thermal_act(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1727 | |
| 1728 | if (act == 0) { |
| 1729 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1730 | "disabling all active thermal trip points\n", d->ident); |
| 1731 | act = -1; |
| 1732 | } |
| 1733 | return 0; |
| 1734 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1735 | static int thermal_nocrt(const struct dmi_system_id *d) { |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 1736 | |
| 1737 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1738 | "disabling all critical thermal trip point actions.\n", d->ident); |
| 1739 | nocrt = 1; |
| 1740 | return 0; |
| 1741 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1742 | static int thermal_tzp(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1743 | |
| 1744 | if (tzp == 0) { |
| 1745 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1746 | "enabling thermal zone polling\n", d->ident); |
| 1747 | tzp = 300; /* 300 dS = 30 Seconds */ |
| 1748 | } |
| 1749 | return 0; |
| 1750 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1751 | static int thermal_psv(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1752 | |
| 1753 | if (psv == 0) { |
| 1754 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1755 | "disabling all passive thermal trip points\n", d->ident); |
| 1756 | psv = -1; |
| 1757 | } |
| 1758 | return 0; |
| 1759 | } |
| 1760 | |
| 1761 | static struct dmi_system_id thermal_dmi_table[] __initdata = { |
| 1762 | /* |
| 1763 | * Award BIOS on this AOpen makes thermal control almost worthless. |
| 1764 | * http://bugzilla.kernel.org/show_bug.cgi?id=8842 |
| 1765 | */ |
| 1766 | { |
| 1767 | .callback = thermal_act, |
| 1768 | .ident = "AOpen i915GMm-HFS", |
| 1769 | .matches = { |
| 1770 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1771 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1772 | }, |
| 1773 | }, |
| 1774 | { |
| 1775 | .callback = thermal_psv, |
| 1776 | .ident = "AOpen i915GMm-HFS", |
| 1777 | .matches = { |
| 1778 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1779 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1780 | }, |
| 1781 | }, |
| 1782 | { |
| 1783 | .callback = thermal_tzp, |
| 1784 | .ident = "AOpen i915GMm-HFS", |
| 1785 | .matches = { |
| 1786 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1787 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1788 | }, |
| 1789 | }, |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 1790 | { |
| 1791 | .callback = thermal_nocrt, |
| 1792 | .ident = "Gigabyte GA-7ZX", |
| 1793 | .matches = { |
| 1794 | DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."), |
| 1795 | DMI_MATCH(DMI_BOARD_NAME, "7ZX"), |
| 1796 | }, |
| 1797 | }, |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1798 | {} |
| 1799 | }; |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1800 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1801 | static int __init acpi_thermal_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1803 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1805 | dmi_check_system(thermal_dmi_table); |
| 1806 | |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 1807 | if (off) { |
| 1808 | printk(KERN_NOTICE "ACPI: thermal control disabled\n"); |
| 1809 | return -ENODEV; |
| 1810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir); |
| 1812 | if (!acpi_thermal_dir) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1813 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | acpi_thermal_dir->owner = THIS_MODULE; |
| 1815 | |
| 1816 | result = acpi_bus_register_driver(&acpi_thermal_driver); |
| 1817 | if (result < 0) { |
| 1818 | remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1819 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | } |
| 1821 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1822 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | } |
| 1824 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1825 | static void __exit acpi_thermal_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | |
| 1828 | acpi_bus_unregister_driver(&acpi_thermal_driver); |
| 1829 | |
| 1830 | remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir); |
| 1831 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1832 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | } |
| 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | module_init(acpi_thermal_init); |
| 1836 | module_exit(acpi_thermal_exit); |