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 | |
| 68 | #define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732>=0) ? ((long)t-2732+5)/10 : ((long)t-2732-5)/10) |
| 69 | #define CELSIUS_TO_KELVIN(t) ((t+273)*10) |
| 70 | |
| 71 | #define _COMPONENT ACPI_THERMAL_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 72 | ACPI_MODULE_NAME("thermal"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Thomas Renninger | 1cbf4c5 | 2004-09-16 11:07:00 -0400 | [diff] [blame] | 74 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 75 | MODULE_DESCRIPTION("ACPI Thermal Zone Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | MODULE_LICENSE("GPL"); |
| 77 | |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 78 | static int act; |
| 79 | module_param(act, int, 0644); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 80 | MODULE_PARM_DESC(act, "Disable or override all lowest active trip points."); |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 81 | |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 82 | static int crt; |
| 83 | module_param(crt, int, 0644); |
| 84 | MODULE_PARM_DESC(crt, "Disable or lower all critical trip points."); |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | static int tzp; |
Len Brown | 730ff34 | 2007-08-12 00:12:26 -0400 | [diff] [blame] | 87 | module_param(tzp, int, 0444); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 88 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 90 | static int nocrt; |
| 91 | module_param(nocrt, int, 0); |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 92 | 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] | 93 | |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 94 | static int off; |
| 95 | module_param(off, int, 0); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 96 | MODULE_PARM_DESC(off, "Set to disable ACPI thermal support."); |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 97 | |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 98 | static int psv; |
| 99 | module_param(psv, int, 0644); |
Len Brown | 3c1d36d | 2007-08-14 15:12:56 -0400 | [diff] [blame] | 100 | MODULE_PARM_DESC(psv, "Disable or override all passive trip points."); |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 101 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | static int acpi_thermal_add(struct acpi_device *device); |
| 103 | static int acpi_thermal_remove(struct acpi_device *device, int type); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 104 | static int acpi_thermal_resume(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file); |
| 106 | static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file); |
| 107 | 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] | 108 | 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] | 109 | static ssize_t acpi_thermal_write_cooling_mode(struct file *, |
| 110 | const char __user *, size_t, |
| 111 | loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | 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] | 113 | static ssize_t acpi_thermal_write_polling(struct file *, const char __user *, |
| 114 | size_t, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 116 | static const struct acpi_device_id thermal_device_ids[] = { |
| 117 | {ACPI_THERMAL_HID, 0}, |
| 118 | {"", 0}, |
| 119 | }; |
| 120 | MODULE_DEVICE_TABLE(acpi, thermal_device_ids); |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | static struct acpi_driver acpi_thermal_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 123 | .name = "thermal", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | .class = ACPI_THERMAL_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 125 | .ids = thermal_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | .ops = { |
| 127 | .add = acpi_thermal_add, |
| 128 | .remove = acpi_thermal_remove, |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 129 | .resume = acpi_thermal_resume, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | }; |
| 132 | |
| 133 | struct acpi_thermal_state { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 134 | u8 critical:1; |
| 135 | u8 hot:1; |
| 136 | u8 passive:1; |
| 137 | u8 active:1; |
| 138 | u8 reserved:4; |
| 139 | int active_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | struct acpi_thermal_state_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 143 | u8 valid:1; |
| 144 | u8 enabled:1; |
| 145 | u8 reserved:6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | struct acpi_thermal_critical { |
| 149 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 150 | unsigned long temperature; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | struct acpi_thermal_hot { |
| 154 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | unsigned long temperature; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | struct acpi_thermal_passive { |
| 159 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 160 | unsigned long temperature; |
| 161 | unsigned long tc1; |
| 162 | unsigned long tc2; |
| 163 | unsigned long tsp; |
| 164 | struct acpi_handle_list devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
| 167 | struct acpi_thermal_active { |
| 168 | struct acpi_thermal_state_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | unsigned long temperature; |
| 170 | struct acpi_handle_list devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | struct acpi_thermal_trips { |
| 174 | struct acpi_thermal_critical critical; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | struct acpi_thermal_hot hot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | struct acpi_thermal_passive passive; |
| 177 | struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE]; |
| 178 | }; |
| 179 | |
| 180 | struct acpi_thermal_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 181 | u8 cooling_mode:1; /* _SCP */ |
| 182 | u8 devices:1; /* _TZD */ |
| 183 | u8 reserved:6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | struct acpi_thermal { |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 187 | struct acpi_device * device; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 188 | acpi_bus_id name; |
| 189 | unsigned long temperature; |
| 190 | unsigned long last_temperature; |
| 191 | unsigned long polling_frequency; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | volatile u8 zombie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | struct acpi_thermal_flags flags; |
| 194 | struct acpi_thermal_state state; |
| 195 | struct acpi_thermal_trips trips; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 196 | struct acpi_handle_list devices; |
| 197 | struct timer_list timer; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 198 | struct thermal_zone_device *thermal_zone; |
| 199 | int tz_enabled; |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 200 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | }; |
| 202 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 203 | static const struct file_operations acpi_thermal_state_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | .open = acpi_thermal_state_open_fs, |
| 205 | .read = seq_read, |
| 206 | .llseek = seq_lseek, |
| 207 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | }; |
| 209 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 210 | static const struct file_operations acpi_thermal_temp_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 211 | .open = acpi_thermal_temp_open_fs, |
| 212 | .read = seq_read, |
| 213 | .llseek = seq_lseek, |
| 214 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | }; |
| 216 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 217 | static const struct file_operations acpi_thermal_trip_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 218 | .open = acpi_thermal_trip_open_fs, |
| 219 | .read = seq_read, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 220 | .llseek = seq_lseek, |
| 221 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | }; |
| 223 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 224 | static const struct file_operations acpi_thermal_cooling_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | .open = acpi_thermal_cooling_open_fs, |
| 226 | .read = seq_read, |
| 227 | .write = acpi_thermal_write_cooling_mode, |
| 228 | .llseek = seq_lseek, |
| 229 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | }; |
| 231 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 232 | static const struct file_operations acpi_thermal_polling_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | .open = acpi_thermal_polling_open_fs, |
| 234 | .read = seq_read, |
| 235 | .write = acpi_thermal_write_polling, |
| 236 | .llseek = seq_lseek, |
| 237 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | /* -------------------------------------------------------------------------- |
| 241 | Thermal Zone Management |
| 242 | -------------------------------------------------------------------------- */ |
| 243 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | static int acpi_thermal_get_temperature(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 246 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 250 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | tz->last_temperature = tz->temperature; |
| 253 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | status = |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 255 | acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tz->temperature); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 257 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 259 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Temperature is %lu dK\n", |
| 260 | tz->temperature)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 262 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 265 | static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 267 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
| 270 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 271 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | status = |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 274 | acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 275 | &tz->polling_frequency); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 277 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Polling frequency is %lu dS\n", |
| 280 | tz->polling_frequency)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 282 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | static int acpi_thermal_set_polling(struct acpi_thermal *tz, int seconds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
| 288 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 289 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
| 291 | tz->polling_frequency = seconds * 10; /* Convert value to deci-seconds */ |
| 292 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 293 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 294 | "Polling frequency set to %lu seconds\n", |
Sanjoy Mahajan | 636cedf | 2007-02-16 01:24:43 -0500 | [diff] [blame] | 295 | tz->polling_frequency/10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 297 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 300 | 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] | 301 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | acpi_status status = AE_OK; |
| 303 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; |
| 304 | struct acpi_object_list arg_list = { 1, &arg0 }; |
| 305 | acpi_handle handle = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 309 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 311 | status = acpi_get_handle(tz->device->handle, "_SCP", &handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | if (ACPI_FAILURE(status)) { |
| 313 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "_SCP not present\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 314 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | arg0.integer.value = mode; |
| 318 | |
| 319 | status = acpi_evaluate_object(handle, NULL, &arg_list, NULL); |
| 320 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 321 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 323 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } |
| 325 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 326 | #define ACPI_TRIPS_CRITICAL 0x01 |
| 327 | #define ACPI_TRIPS_HOT 0x02 |
| 328 | #define ACPI_TRIPS_PASSIVE 0x04 |
| 329 | #define ACPI_TRIPS_ACTIVE 0x08 |
| 330 | #define ACPI_TRIPS_DEVICES 0x10 |
| 331 | |
| 332 | #define ACPI_TRIPS_REFRESH_THRESHOLDS (ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE) |
| 333 | #define ACPI_TRIPS_REFRESH_DEVICES ACPI_TRIPS_DEVICES |
| 334 | |
| 335 | #define ACPI_TRIPS_INIT (ACPI_TRIPS_CRITICAL | ACPI_TRIPS_HOT | \ |
| 336 | ACPI_TRIPS_PASSIVE | ACPI_TRIPS_ACTIVE | \ |
| 337 | ACPI_TRIPS_DEVICES) |
| 338 | |
| 339 | /* |
| 340 | * This exception is thrown out in two cases: |
| 341 | * 1.An invalid trip point becomes invalid or a valid trip point becomes invalid |
| 342 | * when re-evaluating the AML code. |
| 343 | * 2.TODO: Devices listed in _PSL, _ALx, _TZD may change. |
| 344 | * We need to re-bind the cooling devices of a thermal zone when this occurs. |
| 345 | */ |
| 346 | #define ACPI_THERMAL_TRIPS_EXCEPTION(flags, str) \ |
| 347 | do { \ |
| 348 | if (flags != ACPI_TRIPS_INIT) \ |
| 349 | ACPI_EXCEPTION((AE_INFO, AE_ERROR, \ |
| 350 | "ACPI thermal trip point %s changed\n" \ |
| 351 | "Please send acpidump to linux-acpi@vger.kernel.org\n", str)); \ |
| 352 | } while (0) |
| 353 | |
| 354 | static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | acpi_status status = AE_OK; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 357 | struct acpi_handle_list devices; |
| 358 | int valid = 0; |
| 359 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | /* Critical Shutdown (required) */ |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 362 | if (flag & ACPI_TRIPS_CRITICAL) { |
| 363 | status = acpi_evaluate_integer(tz->device->handle, |
| 364 | "_CRT", NULL, &tz->trips.critical.temperature); |
| 365 | if (ACPI_FAILURE(status)) { |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 366 | tz->trips.critical.flags.valid = 0; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 367 | ACPI_EXCEPTION((AE_INFO, status, |
| 368 | "No critical threshold")); |
| 369 | return -ENODEV; |
| 370 | } else { |
| 371 | tz->trips.critical.flags.valid = 1; |
| 372 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 373 | "Found critical threshold [%lu]\n", |
| 374 | tz->trips.critical.temperature)); |
| 375 | } |
| 376 | if (tz->trips.critical.flags.valid == 1) { |
| 377 | if (crt == -1) { |
| 378 | tz->trips.critical.flags.valid = 0; |
| 379 | } else if (crt > 0) { |
| 380 | unsigned long crt_k = CELSIUS_TO_KELVIN(crt); |
| 381 | /* |
| 382 | * Allow override to lower critical threshold |
| 383 | */ |
| 384 | if (crt_k < tz->trips.critical.temperature) |
| 385 | tz->trips.critical.temperature = crt_k; |
| 386 | } |
Len Brown | c52a741 | 2007-08-14 15:49:32 -0400 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | /* Critical Sleep (optional) */ |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 391 | if (flag & ACPI_TRIPS_HOT) { |
Len Brown | a70cdc5 | 2007-08-12 00:12:35 -0400 | [diff] [blame] | 392 | status = acpi_evaluate_integer(tz->device->handle, |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 393 | "_HOT", NULL, &tz->trips.hot.temperature); |
| 394 | if (ACPI_FAILURE(status)) { |
| 395 | tz->trips.hot.flags.valid = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 396 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 397 | "No hot threshold\n")); |
| 398 | } else { |
| 399 | tz->trips.hot.flags.valid = 1; |
| 400 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 401 | "Found hot threshold [%lu]\n", |
| 402 | tz->trips.critical.temperature)); |
| 403 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 406 | /* Passive (optional) */ |
| 407 | if (flag & ACPI_TRIPS_PASSIVE) { |
| 408 | valid = tz->trips.passive.flags.valid; |
| 409 | if (psv == -1) { |
| 410 | status = AE_SUPPORT; |
| 411 | } else if (psv > 0) { |
| 412 | tz->trips.passive.temperature = CELSIUS_TO_KELVIN(psv); |
| 413 | status = AE_OK; |
| 414 | } else { |
| 415 | status = acpi_evaluate_integer(tz->device->handle, |
| 416 | "_PSV", NULL, &tz->trips.passive.temperature); |
| 417 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 419 | if (ACPI_FAILURE(status)) |
| 420 | tz->trips.passive.flags.valid = 0; |
| 421 | else { |
| 422 | tz->trips.passive.flags.valid = 1; |
| 423 | if (flag == ACPI_TRIPS_INIT) { |
| 424 | status = acpi_evaluate_integer( |
| 425 | tz->device->handle, "_TC1", |
| 426 | NULL, &tz->trips.passive.tc1); |
| 427 | if (ACPI_FAILURE(status)) |
| 428 | tz->trips.passive.flags.valid = 0; |
| 429 | status = acpi_evaluate_integer( |
| 430 | tz->device->handle, "_TC2", |
| 431 | NULL, &tz->trips.passive.tc2); |
| 432 | if (ACPI_FAILURE(status)) |
| 433 | tz->trips.passive.flags.valid = 0; |
| 434 | status = acpi_evaluate_integer( |
| 435 | tz->device->handle, "_TSP", |
| 436 | NULL, &tz->trips.passive.tsp); |
| 437 | if (ACPI_FAILURE(status)) |
| 438 | tz->trips.passive.flags.valid = 0; |
| 439 | } |
| 440 | } |
| 441 | } |
| 442 | if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.passive.flags.valid) { |
| 443 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 444 | status = acpi_evaluate_reference(tz->device->handle, "_PSL", |
| 445 | NULL, &devices); |
| 446 | if (ACPI_FAILURE(status)) |
| 447 | tz->trips.passive.flags.valid = 0; |
| 448 | else |
| 449 | tz->trips.passive.flags.valid = 1; |
| 450 | |
| 451 | if (memcmp(&tz->trips.passive.devices, &devices, |
| 452 | sizeof(struct acpi_handle_list))) { |
| 453 | memcpy(&tz->trips.passive.devices, &devices, |
| 454 | sizeof(struct acpi_handle_list)); |
| 455 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 456 | } |
| 457 | } |
| 458 | if ((flag & ACPI_TRIPS_PASSIVE) || (flag & ACPI_TRIPS_DEVICES)) { |
| 459 | if (valid != tz->trips.passive.flags.valid) |
| 460 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state"); |
| 461 | } |
| 462 | |
| 463 | /* Active (optional) */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 464 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 465 | char name[5] = { '_', 'A', 'C', ('0' + i), '\0' }; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 466 | valid = tz->trips.active[i].flags.valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 468 | if (act == -1) |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 469 | break; /* disable all active trip points */ |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 470 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 471 | if (flag & ACPI_TRIPS_ACTIVE) { |
| 472 | status = acpi_evaluate_integer(tz->device->handle, |
| 473 | name, NULL, &tz->trips.active[i].temperature); |
| 474 | if (ACPI_FAILURE(status)) { |
| 475 | tz->trips.active[i].flags.valid = 0; |
| 476 | if (i == 0) |
| 477 | break; |
| 478 | if (act <= 0) |
| 479 | break; |
| 480 | if (i == 1) |
| 481 | tz->trips.active[0].temperature = |
| 482 | CELSIUS_TO_KELVIN(act); |
| 483 | else |
| 484 | /* |
| 485 | * Don't allow override higher than |
| 486 | * the next higher trip point |
| 487 | */ |
| 488 | tz->trips.active[i - 1].temperature = |
| 489 | (tz->trips.active[i - 2].temperature < |
| 490 | CELSIUS_TO_KELVIN(act) ? |
| 491 | tz->trips.active[i - 2].temperature : |
| 492 | CELSIUS_TO_KELVIN(act)); |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 493 | break; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 494 | } else |
| 495 | tz->trips.active[i].flags.valid = 1; |
Len Brown | f8707ec | 2007-08-12 00:12:54 -0400 | [diff] [blame] | 496 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | name[2] = 'L'; |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 499 | if ((flag & ACPI_TRIPS_DEVICES) && tz->trips.active[i].flags.valid ) { |
| 500 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 501 | status = acpi_evaluate_reference(tz->device->handle, |
| 502 | name, NULL, &devices); |
| 503 | if (ACPI_FAILURE(status)) |
| 504 | tz->trips.active[i].flags.valid = 0; |
| 505 | else |
| 506 | tz->trips.active[i].flags.valid = 1; |
| 507 | |
| 508 | if (memcmp(&tz->trips.active[i].devices, &devices, |
| 509 | sizeof(struct acpi_handle_list))) { |
| 510 | memcpy(&tz->trips.active[i].devices, &devices, |
| 511 | sizeof(struct acpi_handle_list)); |
| 512 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 513 | } |
| 514 | } |
| 515 | if ((flag & ACPI_TRIPS_ACTIVE) || (flag & ACPI_TRIPS_DEVICES)) |
| 516 | if (valid != tz->trips.active[i].flags.valid) |
| 517 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "state"); |
| 518 | |
| 519 | if (!tz->trips.active[i].flags.valid) |
| 520 | break; |
| 521 | } |
| 522 | |
| 523 | if (flag & ACPI_TRIPS_DEVICES) { |
| 524 | memset(&devices, 0, sizeof(struct acpi_handle_list)); |
| 525 | status = acpi_evaluate_reference(tz->device->handle, "_TZD", |
| 526 | NULL, &devices); |
| 527 | if (memcmp(&tz->devices, &devices, |
| 528 | sizeof(struct acpi_handle_list))) { |
| 529 | memcpy(&tz->devices, &devices, |
| 530 | sizeof(struct acpi_handle_list)); |
| 531 | ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device"); |
| 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 535 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 538 | static int acpi_thermal_get_trip_points(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 540 | return acpi_thermal_trips_update(tz, ACPI_TRIPS_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 543 | static int acpi_thermal_critical(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 545 | if (!tz || !tz->trips.critical.flags.valid || nocrt) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 546 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | if (tz->temperature >= tz->trips.critical.temperature) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 549 | printk(KERN_WARNING PREFIX "Critical trip point\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | tz->trips.critical.flags.enabled = 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 551 | } else if (tz->trips.critical.flags.enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | tz->trips.critical.flags.enabled = 0; |
| 553 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 554 | printk(KERN_EMERG |
| 555 | "Critical temperature reached (%ld C), shutting down.\n", |
| 556 | KELVIN_TO_CELSIUS(tz->temperature)); |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 557 | acpi_bus_generate_proc_event(tz->device, ACPI_THERMAL_NOTIFY_CRITICAL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 558 | tz->trips.critical.flags.enabled); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 559 | acpi_bus_generate_netlink_event(tz->device->pnp.device_class, |
| 560 | tz->device->dev.bus_id, |
| 561 | ACPI_THERMAL_NOTIFY_CRITICAL, |
| 562 | tz->trips.critical.flags.enabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 564 | orderly_poweroff(true); |
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 | { |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 571 | if (!tz || !tz->trips.hot.flags.valid || nocrt) |
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 | 14e04fb3 | 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 | |
| 587 | /* TBD: Call user-mode "sleep(S4)" function */ |
| 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 */ |
| 882 | static int thermal_get_temp(struct thermal_zone_device *thermal, char *buf) |
| 883 | { |
| 884 | struct acpi_thermal *tz = thermal->devdata; |
| 885 | |
| 886 | if (!tz) |
| 887 | return -EINVAL; |
| 888 | |
| 889 | return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS(tz->temperature)); |
| 890 | } |
| 891 | |
| 892 | static const char enabled[] = "kernel"; |
| 893 | static const char disabled[] = "user"; |
| 894 | static int thermal_get_mode(struct thermal_zone_device *thermal, |
| 895 | char *buf) |
| 896 | { |
| 897 | struct acpi_thermal *tz = thermal->devdata; |
| 898 | |
| 899 | if (!tz) |
| 900 | return -EINVAL; |
| 901 | |
| 902 | return sprintf(buf, "%s\n", tz->tz_enabled ? |
| 903 | enabled : disabled); |
| 904 | } |
| 905 | |
| 906 | static int thermal_set_mode(struct thermal_zone_device *thermal, |
| 907 | const char *buf) |
| 908 | { |
| 909 | struct acpi_thermal *tz = thermal->devdata; |
| 910 | int enable; |
| 911 | |
| 912 | if (!tz) |
| 913 | return -EINVAL; |
| 914 | |
| 915 | /* |
| 916 | * enable/disable thermal management from ACPI thermal driver |
| 917 | */ |
| 918 | if (!strncmp(buf, enabled, sizeof enabled - 1)) |
| 919 | enable = 1; |
| 920 | else if (!strncmp(buf, disabled, sizeof disabled - 1)) |
| 921 | enable = 0; |
| 922 | else |
| 923 | return -EINVAL; |
| 924 | |
| 925 | if (enable != tz->tz_enabled) { |
| 926 | tz->tz_enabled = enable; |
| 927 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 928 | "%s ACPI thermal control\n", |
| 929 | tz->tz_enabled ? enabled : disabled)); |
| 930 | acpi_thermal_check(tz); |
| 931 | } |
| 932 | return 0; |
| 933 | } |
| 934 | |
| 935 | static int thermal_get_trip_type(struct thermal_zone_device *thermal, |
| 936 | int trip, char *buf) |
| 937 | { |
| 938 | struct acpi_thermal *tz = thermal->devdata; |
| 939 | int i; |
| 940 | |
| 941 | if (!tz || trip < 0) |
| 942 | return -EINVAL; |
| 943 | |
| 944 | if (tz->trips.critical.flags.valid) { |
| 945 | if (!trip) |
| 946 | return sprintf(buf, "critical\n"); |
| 947 | trip--; |
| 948 | } |
| 949 | |
| 950 | if (tz->trips.hot.flags.valid) { |
| 951 | if (!trip) |
| 952 | return sprintf(buf, "hot\n"); |
| 953 | trip--; |
| 954 | } |
| 955 | |
| 956 | if (tz->trips.passive.flags.valid) { |
| 957 | if (!trip) |
| 958 | return sprintf(buf, "passive\n"); |
| 959 | trip--; |
| 960 | } |
| 961 | |
| 962 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 963 | tz->trips.active[i].flags.valid; i++) { |
| 964 | if (!trip) |
| 965 | return sprintf(buf, "active%d\n", i); |
| 966 | trip--; |
| 967 | } |
| 968 | |
| 969 | return -EINVAL; |
| 970 | } |
| 971 | |
| 972 | static int thermal_get_trip_temp(struct thermal_zone_device *thermal, |
| 973 | int trip, char *buf) |
| 974 | { |
| 975 | struct acpi_thermal *tz = thermal->devdata; |
| 976 | int i; |
| 977 | |
| 978 | if (!tz || trip < 0) |
| 979 | return -EINVAL; |
| 980 | |
| 981 | if (tz->trips.critical.flags.valid) { |
| 982 | if (!trip) |
| 983 | return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS( |
| 984 | tz->trips.critical.temperature)); |
| 985 | trip--; |
| 986 | } |
| 987 | |
| 988 | if (tz->trips.hot.flags.valid) { |
| 989 | if (!trip) |
| 990 | return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS( |
| 991 | tz->trips.hot.temperature)); |
| 992 | trip--; |
| 993 | } |
| 994 | |
| 995 | if (tz->trips.passive.flags.valid) { |
| 996 | if (!trip) |
| 997 | return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS( |
| 998 | tz->trips.passive.temperature)); |
| 999 | trip--; |
| 1000 | } |
| 1001 | |
| 1002 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 1003 | tz->trips.active[i].flags.valid; i++) { |
| 1004 | if (!trip) |
| 1005 | return sprintf(buf, "%ld\n", KELVIN_TO_CELSIUS( |
| 1006 | tz->trips.active[i].temperature)); |
| 1007 | trip--; |
| 1008 | } |
| 1009 | |
| 1010 | return -EINVAL; |
| 1011 | } |
| 1012 | |
| 1013 | typedef int (*cb)(struct thermal_zone_device *, int, |
| 1014 | struct thermal_cooling_device *); |
| 1015 | static int acpi_thermal_cooling_device_cb(struct thermal_zone_device *thermal, |
| 1016 | struct thermal_cooling_device *cdev, |
| 1017 | cb action) |
| 1018 | { |
| 1019 | struct acpi_device *device = cdev->devdata; |
| 1020 | struct acpi_thermal *tz = thermal->devdata; |
| 1021 | acpi_handle handle = device->handle; |
| 1022 | int i; |
| 1023 | int j; |
| 1024 | int trip = -1; |
| 1025 | int result = 0; |
| 1026 | |
| 1027 | if (tz->trips.critical.flags.valid) |
| 1028 | trip++; |
| 1029 | |
| 1030 | if (tz->trips.hot.flags.valid) |
| 1031 | trip++; |
| 1032 | |
| 1033 | if (tz->trips.passive.flags.valid) { |
| 1034 | trip++; |
| 1035 | for (i = 0; i < tz->trips.passive.devices.count; |
| 1036 | i++) { |
| 1037 | if (tz->trips.passive.devices.handles[i] != |
| 1038 | handle) |
| 1039 | continue; |
| 1040 | result = action(thermal, trip, cdev); |
| 1041 | if (result) |
| 1042 | goto failed; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
| 1047 | if (!tz->trips.active[i].flags.valid) |
| 1048 | break; |
| 1049 | trip++; |
| 1050 | for (j = 0; |
| 1051 | j < tz->trips.active[i].devices.count; |
| 1052 | j++) { |
| 1053 | if (tz->trips.active[i].devices. |
| 1054 | handles[j] != handle) |
| 1055 | continue; |
| 1056 | result = action(thermal, trip, cdev); |
| 1057 | if (result) |
| 1058 | goto failed; |
| 1059 | } |
| 1060 | } |
| 1061 | |
| 1062 | for (i = 0; i < tz->devices.count; i++) { |
| 1063 | if (tz->devices.handles[i] != handle) |
| 1064 | continue; |
| 1065 | result = action(thermal, -1, cdev); |
| 1066 | if (result) |
| 1067 | goto failed; |
| 1068 | } |
| 1069 | |
| 1070 | failed: |
| 1071 | return result; |
| 1072 | } |
| 1073 | |
| 1074 | static int |
| 1075 | acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal, |
| 1076 | struct thermal_cooling_device *cdev) |
| 1077 | { |
| 1078 | return acpi_thermal_cooling_device_cb(thermal, cdev, |
| 1079 | thermal_zone_bind_cooling_device); |
| 1080 | } |
| 1081 | |
| 1082 | static int |
| 1083 | acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal, |
| 1084 | struct thermal_cooling_device *cdev) |
| 1085 | { |
| 1086 | return acpi_thermal_cooling_device_cb(thermal, cdev, |
| 1087 | thermal_zone_unbind_cooling_device); |
| 1088 | } |
| 1089 | |
| 1090 | static struct thermal_zone_device_ops acpi_thermal_zone_ops = { |
| 1091 | .bind = acpi_thermal_bind_cooling_device, |
| 1092 | .unbind = acpi_thermal_unbind_cooling_device, |
| 1093 | .get_temp = thermal_get_temp, |
| 1094 | .get_mode = thermal_get_mode, |
| 1095 | .set_mode = thermal_set_mode, |
| 1096 | .get_trip_type = thermal_get_trip_type, |
| 1097 | .get_trip_temp = thermal_get_trip_temp, |
| 1098 | }; |
| 1099 | |
| 1100 | static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) |
| 1101 | { |
| 1102 | int trips = 0; |
| 1103 | int result; |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame^] | 1104 | acpi_status status; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1105 | int i; |
| 1106 | |
| 1107 | if (tz->trips.critical.flags.valid) |
| 1108 | trips++; |
| 1109 | |
| 1110 | if (tz->trips.hot.flags.valid) |
| 1111 | trips++; |
| 1112 | |
| 1113 | if (tz->trips.passive.flags.valid) |
| 1114 | trips++; |
| 1115 | |
| 1116 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE && |
| 1117 | tz->trips.active[i].flags.valid; i++, trips++); |
| 1118 | tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone", |
| 1119 | trips, tz, &acpi_thermal_zone_ops); |
| 1120 | if (!tz->thermal_zone) |
| 1121 | return -ENODEV; |
| 1122 | |
| 1123 | result = sysfs_create_link(&tz->device->dev.kobj, |
| 1124 | &tz->thermal_zone->device.kobj, "thermal_zone"); |
| 1125 | if (result) |
| 1126 | return result; |
| 1127 | |
| 1128 | result = sysfs_create_link(&tz->thermal_zone->device.kobj, |
| 1129 | &tz->device->dev.kobj, "device"); |
| 1130 | if (result) |
| 1131 | return result; |
| 1132 | |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame^] | 1133 | status = acpi_attach_data(tz->device->handle, |
| 1134 | acpi_bus_private_data_handler, |
| 1135 | tz->thermal_zone); |
| 1136 | if (ACPI_FAILURE(status)) { |
| 1137 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 1138 | "Error attaching device data\n")); |
| 1139 | return -ENODEV; |
| 1140 | } |
| 1141 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1142 | tz->tz_enabled = 1; |
| 1143 | |
| 1144 | printk(KERN_INFO PREFIX "%s is registered as thermal_zone%d\n", |
| 1145 | tz->device->dev.bus_id, tz->thermal_zone->id); |
| 1146 | return 0; |
| 1147 | } |
| 1148 | |
| 1149 | static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz) |
| 1150 | { |
| 1151 | sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone"); |
| 1152 | sysfs_remove_link(&tz->thermal_zone->device.kobj, "device"); |
| 1153 | thermal_zone_device_unregister(tz->thermal_zone); |
| 1154 | tz->thermal_zone = NULL; |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame^] | 1155 | acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | /* -------------------------------------------------------------------------- |
| 1160 | FS Interface (/proc) |
| 1161 | -------------------------------------------------------------------------- */ |
| 1162 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1163 | static struct proc_dir_entry *acpi_thermal_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | |
| 1165 | static int acpi_thermal_state_seq_show(struct seq_file *seq, void *offset) |
| 1166 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1167 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | if (!tz) |
| 1171 | goto end; |
| 1172 | |
| 1173 | seq_puts(seq, "state: "); |
| 1174 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1175 | if (!tz->state.critical && !tz->state.hot && !tz->state.passive |
| 1176 | && !tz->state.active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | seq_puts(seq, "ok\n"); |
| 1178 | else { |
| 1179 | if (tz->state.critical) |
| 1180 | seq_puts(seq, "critical "); |
| 1181 | if (tz->state.hot) |
| 1182 | seq_puts(seq, "hot "); |
| 1183 | if (tz->state.passive) |
| 1184 | seq_puts(seq, "passive "); |
| 1185 | if (tz->state.active) |
| 1186 | seq_printf(seq, "active[%d]", tz->state.active_index); |
| 1187 | seq_puts(seq, "\n"); |
| 1188 | } |
| 1189 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1190 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1191 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | static int acpi_thermal_state_open_fs(struct inode *inode, struct file *file) |
| 1195 | { |
| 1196 | return single_open(file, acpi_thermal_state_seq_show, PDE(inode)->data); |
| 1197 | } |
| 1198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | static int acpi_thermal_temp_seq_show(struct seq_file *seq, void *offset) |
| 1200 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1201 | int result = 0; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1202 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | |
| 1205 | if (!tz) |
| 1206 | goto end; |
| 1207 | |
| 1208 | result = acpi_thermal_get_temperature(tz); |
| 1209 | if (result) |
| 1210 | goto end; |
| 1211 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1212 | seq_printf(seq, "temperature: %ld C\n", |
| 1213 | KELVIN_TO_CELSIUS(tz->temperature)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1215 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1216 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | static int acpi_thermal_temp_open_fs(struct inode *inode, struct file *file) |
| 1220 | { |
| 1221 | return single_open(file, acpi_thermal_temp_seq_show, PDE(inode)->data); |
| 1222 | } |
| 1223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | static int acpi_thermal_trip_seq_show(struct seq_file *seq, void *offset) |
| 1225 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1226 | struct acpi_thermal *tz = seq->private; |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1227 | struct acpi_device *device; |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1228 | acpi_status status; |
| 1229 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1230 | int i = 0; |
| 1231 | int j = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | |
| 1234 | if (!tz) |
| 1235 | goto end; |
| 1236 | |
| 1237 | if (tz->trips.critical.flags.valid) |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 1238 | seq_printf(seq, "critical (S5): %ld C%s", |
| 1239 | KELVIN_TO_CELSIUS(tz->trips.critical.temperature), |
| 1240 | nocrt ? " <disabled>\n" : "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
| 1242 | if (tz->trips.hot.flags.valid) |
Len Brown | f548714 | 2007-08-12 00:12:44 -0400 | [diff] [blame] | 1243 | seq_printf(seq, "hot (S4): %ld C%s", |
| 1244 | KELVIN_TO_CELSIUS(tz->trips.hot.temperature), |
| 1245 | nocrt ? " <disabled>\n" : "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | |
| 1247 | if (tz->trips.passive.flags.valid) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1248 | seq_printf(seq, |
| 1249 | "passive: %ld C: tc1=%lu tc2=%lu tsp=%lu devices=", |
| 1250 | KELVIN_TO_CELSIUS(tz->trips.passive.temperature), |
| 1251 | tz->trips.passive.tc1, tz->trips.passive.tc2, |
| 1252 | tz->trips.passive.tsp); |
| 1253 | for (j = 0; j < tz->trips.passive.devices.count; j++) { |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1254 | status = acpi_bus_get_device(tz->trips.passive.devices. |
| 1255 | handles[j], &device); |
| 1256 | seq_printf(seq, "%4.4s ", status ? "" : |
| 1257 | acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
| 1259 | seq_puts(seq, "\n"); |
| 1260 | } |
| 1261 | |
| 1262 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
| 1263 | if (!(tz->trips.active[i].flags.valid)) |
| 1264 | break; |
| 1265 | seq_printf(seq, "active[%d]: %ld C: devices=", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1266 | i, |
| 1267 | KELVIN_TO_CELSIUS(tz->trips.active[i].temperature)); |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1268 | for (j = 0; j < tz->trips.active[i].devices.count; j++){ |
Thomas Renninger | e7c746e | 2007-06-18 00:40:51 -0400 | [diff] [blame] | 1269 | status = acpi_bus_get_device(tz->trips.active[i]. |
| 1270 | devices.handles[j], |
| 1271 | &device); |
| 1272 | seq_printf(seq, "%4.4s ", status ? "" : |
| 1273 | acpi_device_bid(device)); |
Thomas Renninger | 68ccfaa | 2006-11-19 23:01:40 +0100 | [diff] [blame] | 1274 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | seq_puts(seq, "\n"); |
| 1276 | } |
| 1277 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1278 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1279 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file) |
| 1283 | { |
| 1284 | return single_open(file, acpi_thermal_trip_seq_show, PDE(inode)->data); |
| 1285 | } |
| 1286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | static int acpi_thermal_cooling_seq_show(struct seq_file *seq, void *offset) |
| 1288 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1289 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
| 1292 | if (!tz) |
| 1293 | goto end; |
| 1294 | |
Len Brown | eaca2d3 | 2007-04-30 23:27:43 -0400 | [diff] [blame] | 1295 | if (!tz->flags.cooling_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | seq_puts(seq, "<setting not supported>\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | else |
Len Brown | eaca2d3 | 2007-04-30 23:27:43 -0400 | [diff] [blame] | 1298 | seq_puts(seq, "0 - Active; 1 - Passive\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1300 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1301 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
| 1304 | static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file) |
| 1305 | { |
| 1306 | return single_open(file, acpi_thermal_cooling_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1307 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | static ssize_t |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1311 | acpi_thermal_write_cooling_mode(struct file *file, |
| 1312 | const char __user * buffer, |
| 1313 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1315 | struct seq_file *m = file->private_data; |
| 1316 | struct acpi_thermal *tz = m->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1317 | int result = 0; |
| 1318 | char mode_string[12] = { '\0' }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
| 1321 | if (!tz || (count > sizeof(mode_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1322 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
| 1324 | if (!tz->flags.cooling_mode) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1325 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | |
| 1327 | if (copy_from_user(mode_string, buffer, count)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1328 | return -EFAULT; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | mode_string[count] = '\0'; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1331 | |
| 1332 | result = acpi_thermal_set_cooling_mode(tz, |
| 1333 | simple_strtoul(mode_string, NULL, |
| 1334 | 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1336 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | |
| 1338 | acpi_thermal_check(tz); |
| 1339 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1340 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | } |
| 1342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | static int acpi_thermal_polling_seq_show(struct seq_file *seq, void *offset) |
| 1344 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1345 | struct acpi_thermal *tz = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | |
| 1348 | if (!tz) |
| 1349 | goto end; |
| 1350 | |
| 1351 | if (!tz->polling_frequency) { |
| 1352 | seq_puts(seq, "<polling disabled>\n"); |
| 1353 | goto end; |
| 1354 | } |
| 1355 | |
| 1356 | seq_printf(seq, "polling frequency: %lu seconds\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1357 | (tz->polling_frequency / 10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1359 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1360 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | } |
| 1362 | |
| 1363 | static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file) |
| 1364 | { |
| 1365 | return single_open(file, acpi_thermal_polling_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1366 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | } |
| 1368 | |
| 1369 | static ssize_t |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1370 | acpi_thermal_write_polling(struct file *file, |
| 1371 | const char __user * buffer, |
| 1372 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1374 | struct seq_file *m = file->private_data; |
| 1375 | struct acpi_thermal *tz = m->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1376 | int result = 0; |
| 1377 | char polling_string[12] = { '\0' }; |
| 1378 | int seconds = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | |
| 1381 | if (!tz || (count > sizeof(polling_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1382 | return -EINVAL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | if (copy_from_user(polling_string, buffer, count)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1385 | return -EFAULT; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | polling_string[count] = '\0'; |
| 1388 | |
| 1389 | seconds = simple_strtoul(polling_string, NULL, 0); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | result = acpi_thermal_set_polling(tz, seconds); |
| 1392 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1393 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | |
| 1395 | acpi_thermal_check(tz); |
| 1396 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1397 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | } |
| 1399 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1400 | static int acpi_thermal_add_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1402 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | |
| 1405 | if (!acpi_device_dir(device)) { |
| 1406 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1407 | acpi_thermal_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | if (!acpi_device_dir(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1409 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | acpi_device_dir(device)->owner = THIS_MODULE; |
| 1411 | } |
| 1412 | |
| 1413 | /* 'state' [R] */ |
| 1414 | entry = create_proc_entry(ACPI_THERMAL_FILE_STATE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1415 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1417 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | else { |
| 1419 | entry->proc_fops = &acpi_thermal_state_fops; |
| 1420 | entry->data = acpi_driver_data(device); |
| 1421 | entry->owner = THIS_MODULE; |
| 1422 | } |
| 1423 | |
| 1424 | /* 'temperature' [R] */ |
| 1425 | entry = create_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1426 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1428 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | else { |
| 1430 | entry->proc_fops = &acpi_thermal_temp_fops; |
| 1431 | entry->data = acpi_driver_data(device); |
| 1432 | entry->owner = THIS_MODULE; |
| 1433 | } |
| 1434 | |
Pavel Machek | 2db9ccb | 2007-08-24 11:45:50 +0200 | [diff] [blame] | 1435 | /* 'trip_points' [R] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, |
Pavel Machek | 2db9ccb | 2007-08-24 11:45:50 +0200 | [diff] [blame] | 1437 | S_IRUGO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1438 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1440 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | else { |
| 1442 | entry->proc_fops = &acpi_thermal_trip_fops; |
| 1443 | entry->data = acpi_driver_data(device); |
| 1444 | entry->owner = THIS_MODULE; |
| 1445 | } |
| 1446 | |
| 1447 | /* 'cooling_mode' [R/W] */ |
| 1448 | entry = create_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1449 | S_IFREG | S_IRUGO | S_IWUSR, |
| 1450 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1452 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | else { |
| 1454 | entry->proc_fops = &acpi_thermal_cooling_fops; |
| 1455 | entry->data = acpi_driver_data(device); |
| 1456 | entry->owner = THIS_MODULE; |
| 1457 | } |
| 1458 | |
| 1459 | /* 'polling_frequency' [R/W] */ |
| 1460 | entry = create_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1461 | S_IFREG | S_IRUGO | S_IWUSR, |
| 1462 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1464 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | else { |
| 1466 | entry->proc_fops = &acpi_thermal_polling_fops; |
| 1467 | entry->data = acpi_driver_data(device); |
| 1468 | entry->owner = THIS_MODULE; |
| 1469 | } |
| 1470 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1471 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | } |
| 1473 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1474 | static int acpi_thermal_remove_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
| 1477 | if (acpi_device_dir(device)) { |
| 1478 | remove_proc_entry(ACPI_THERMAL_FILE_POLLING_FREQ, |
| 1479 | acpi_device_dir(device)); |
| 1480 | remove_proc_entry(ACPI_THERMAL_FILE_COOLING_MODE, |
| 1481 | acpi_device_dir(device)); |
| 1482 | remove_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, |
| 1483 | acpi_device_dir(device)); |
| 1484 | remove_proc_entry(ACPI_THERMAL_FILE_TEMPERATURE, |
| 1485 | acpi_device_dir(device)); |
| 1486 | remove_proc_entry(ACPI_THERMAL_FILE_STATE, |
| 1487 | acpi_device_dir(device)); |
| 1488 | remove_proc_entry(acpi_device_bid(device), acpi_thermal_dir); |
| 1489 | acpi_device_dir(device) = NULL; |
| 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | /* -------------------------------------------------------------------------- |
| 1496 | Driver Interface |
| 1497 | -------------------------------------------------------------------------- */ |
| 1498 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1499 | static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1501 | struct acpi_thermal *tz = data; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1502 | struct acpi_device *device = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
| 1505 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1506 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1508 | device = tz->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | |
| 1510 | switch (event) { |
| 1511 | case ACPI_THERMAL_NOTIFY_TEMPERATURE: |
| 1512 | acpi_thermal_check(tz); |
| 1513 | break; |
| 1514 | case ACPI_THERMAL_NOTIFY_THRESHOLDS: |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 1515 | acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_THRESHOLDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | acpi_thermal_check(tz); |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 1517 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 1518 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 1519 | device->dev.bus_id, event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | break; |
| 1521 | case ACPI_THERMAL_NOTIFY_DEVICES: |
Zhang Rui | ce44e19 | 2008-01-17 15:51:25 +0800 | [diff] [blame] | 1522 | acpi_thermal_trips_update(tz, ACPI_TRIPS_REFRESH_DEVICES); |
| 1523 | acpi_thermal_check(tz); |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 1524 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 1525 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 1526 | device->dev.bus_id, event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | break; |
| 1528 | default: |
| 1529 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1530 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | break; |
| 1532 | } |
| 1533 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1534 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1537 | static int acpi_thermal_get_info(struct acpi_thermal *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1539 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | |
| 1542 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1543 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | |
| 1545 | /* Get temperature [_TMP] (required) */ |
| 1546 | result = acpi_thermal_get_temperature(tz); |
| 1547 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1548 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
| 1550 | /* Get trip points [_CRT, _PSV, etc.] (required) */ |
| 1551 | result = acpi_thermal_get_trip_points(tz); |
| 1552 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1553 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | |
| 1555 | /* Set the cooling mode [_SCP] to active cooling (default) */ |
| 1556 | result = acpi_thermal_set_cooling_mode(tz, ACPI_THERMAL_MODE_ACTIVE); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1557 | if (!result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | tz->flags.cooling_mode = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | |
| 1560 | /* Get default polling frequency [_TZP] (optional) */ |
| 1561 | if (tzp) |
| 1562 | tz->polling_frequency = tzp; |
| 1563 | else |
| 1564 | acpi_thermal_get_polling_frequency(tz); |
| 1565 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1566 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | } |
| 1568 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1569 | static int acpi_thermal_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1571 | int result = 0; |
| 1572 | acpi_status status = AE_OK; |
| 1573 | struct acpi_thermal *tz = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | |
| 1576 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1577 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1579 | tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | if (!tz) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1581 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | |
Patrick Mochel | 8348e1b | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1583 | tz->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | strcpy(tz->name, device->pnp.bus_id); |
| 1585 | strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME); |
| 1586 | strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS); |
| 1587 | acpi_driver_data(device) = tz; |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 1588 | mutex_init(&tz->lock); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1589 | |
| 1590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | result = acpi_thermal_get_info(tz); |
| 1592 | if (result) |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1593 | goto free_memory; |
| 1594 | |
| 1595 | result = acpi_thermal_register_thermal_zone(tz); |
| 1596 | if (result) |
| 1597 | goto free_memory; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | |
| 1599 | result = acpi_thermal_add_fs(device); |
| 1600 | if (result) |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1601 | goto unregister_thermal_zone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | |
| 1603 | init_timer(&tz->timer); |
| 1604 | |
| 1605 | acpi_thermal_check(tz); |
| 1606 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1607 | status = acpi_install_notify_handler(device->handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1608 | ACPI_DEVICE_NOTIFY, |
| 1609 | acpi_thermal_notify, tz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | result = -ENODEV; |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1612 | goto remove_fs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | } |
| 1614 | |
| 1615 | printk(KERN_INFO PREFIX "%s [%s] (%ld C)\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1616 | acpi_device_name(device), acpi_device_bid(device), |
| 1617 | KELVIN_TO_CELSIUS(tz->temperature)); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1618 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1620 | remove_fs: |
| 1621 | acpi_thermal_remove_fs(device); |
| 1622 | unregister_thermal_zone: |
| 1623 | thermal_zone_device_unregister(tz->thermal_zone); |
| 1624 | free_memory: |
| 1625 | kfree(tz); |
| 1626 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1627 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | } |
| 1629 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1630 | static int acpi_thermal_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1632 | acpi_status status = AE_OK; |
| 1633 | struct acpi_thermal *tz = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
| 1636 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1637 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1639 | tz = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | |
| 1641 | /* avoid timer adding new defer task */ |
| 1642 | tz->zombie = 1; |
| 1643 | /* wait for running timer (on other CPUs) finish */ |
| 1644 | del_timer_sync(&(tz->timer)); |
| 1645 | /* synchronize deferred task */ |
| 1646 | acpi_os_wait_events_complete(NULL); |
| 1647 | /* deferred task may reinsert timer */ |
| 1648 | del_timer_sync(&(tz->timer)); |
| 1649 | |
Patrick Mochel | 38ba7c9 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1650 | status = acpi_remove_notify_handler(device->handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1651 | ACPI_DEVICE_NOTIFY, |
| 1652 | acpi_thermal_notify); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | |
| 1654 | /* Terminate policy */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1655 | if (tz->trips.passive.flags.valid && tz->trips.passive.flags.enabled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | tz->trips.passive.flags.enabled = 0; |
| 1657 | acpi_thermal_passive(tz); |
| 1658 | } |
| 1659 | if (tz->trips.active[0].flags.valid |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1660 | && tz->trips.active[0].flags.enabled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | tz->trips.active[0].flags.enabled = 0; |
| 1662 | acpi_thermal_active(tz); |
| 1663 | } |
| 1664 | |
| 1665 | acpi_thermal_remove_fs(device); |
Zhang Rui | 3f655ef | 2008-01-17 15:51:11 +0800 | [diff] [blame] | 1666 | acpi_thermal_unregister_thermal_zone(tz); |
Alexey Starikovskiy | 6e21578 | 2007-09-01 00:11:59 +0400 | [diff] [blame] | 1667 | mutex_destroy(&tz->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | kfree(tz); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1669 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | } |
| 1671 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1672 | static int acpi_thermal_resume(struct acpi_device *device) |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1673 | { |
| 1674 | struct acpi_thermal *tz = NULL; |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1675 | int i, j, power_state, result; |
| 1676 | |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1677 | |
| 1678 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1679 | return -EINVAL; |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1680 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1681 | tz = acpi_driver_data(device); |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1682 | |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1683 | for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) { |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1684 | if (!(&tz->trips.active[i])) |
| 1685 | break; |
| 1686 | if (!tz->trips.active[i].flags.valid) |
| 1687 | break; |
| 1688 | tz->trips.active[i].flags.enabled = 1; |
| 1689 | for (j = 0; j < tz->trips.active[i].devices.count; j++) { |
| 1690 | result = acpi_bus_get_power(tz->trips.active[i].devices. |
| 1691 | handles[j], &power_state); |
| 1692 | if (result || (power_state != ACPI_STATE_D0)) { |
| 1693 | tz->trips.active[i].flags.enabled = 0; |
| 1694 | break; |
| 1695 | } |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1696 | } |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1697 | tz->state.active |= tz->trips.active[i].flags.enabled; |
Konstantin Karasyov | bed936f | 2006-07-10 04:44:26 -0700 | [diff] [blame] | 1698 | } |
| 1699 | |
Konstantin Karasyov | b1028c5 | 2007-02-16 02:23:07 -0500 | [diff] [blame] | 1700 | acpi_thermal_check(tz); |
Konstantin Karasyov | 74ce1468 | 2006-05-08 08:32:00 -0400 | [diff] [blame] | 1701 | |
| 1702 | return AE_OK; |
| 1703 | } |
| 1704 | |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1705 | #ifdef CONFIG_DMI |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1706 | static int thermal_act(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1707 | |
| 1708 | if (act == 0) { |
| 1709 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1710 | "disabling all active thermal trip points\n", d->ident); |
| 1711 | act = -1; |
| 1712 | } |
| 1713 | return 0; |
| 1714 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1715 | static int thermal_nocrt(const struct dmi_system_id *d) { |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 1716 | |
| 1717 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1718 | "disabling all critical thermal trip point actions.\n", d->ident); |
| 1719 | nocrt = 1; |
| 1720 | return 0; |
| 1721 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1722 | static int thermal_tzp(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1723 | |
| 1724 | if (tzp == 0) { |
| 1725 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1726 | "enabling thermal zone polling\n", d->ident); |
| 1727 | tzp = 300; /* 300 dS = 30 Seconds */ |
| 1728 | } |
| 1729 | return 0; |
| 1730 | } |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1731 | static int thermal_psv(const struct dmi_system_id *d) { |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1732 | |
| 1733 | if (psv == 0) { |
| 1734 | printk(KERN_NOTICE "ACPI: %s detected: " |
| 1735 | "disabling all passive thermal trip points\n", d->ident); |
| 1736 | psv = -1; |
| 1737 | } |
| 1738 | return 0; |
| 1739 | } |
| 1740 | |
| 1741 | static struct dmi_system_id thermal_dmi_table[] __initdata = { |
| 1742 | /* |
| 1743 | * Award BIOS on this AOpen makes thermal control almost worthless. |
| 1744 | * http://bugzilla.kernel.org/show_bug.cgi?id=8842 |
| 1745 | */ |
| 1746 | { |
| 1747 | .callback = thermal_act, |
| 1748 | .ident = "AOpen i915GMm-HFS", |
| 1749 | .matches = { |
| 1750 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1751 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1752 | }, |
| 1753 | }, |
| 1754 | { |
| 1755 | .callback = thermal_psv, |
| 1756 | .ident = "AOpen i915GMm-HFS", |
| 1757 | .matches = { |
| 1758 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1759 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1760 | }, |
| 1761 | }, |
| 1762 | { |
| 1763 | .callback = thermal_tzp, |
| 1764 | .ident = "AOpen i915GMm-HFS", |
| 1765 | .matches = { |
| 1766 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 1767 | DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"), |
| 1768 | }, |
| 1769 | }, |
Len Brown | 8c99fdc | 2007-08-20 18:46:50 -0400 | [diff] [blame] | 1770 | { |
| 1771 | .callback = thermal_nocrt, |
| 1772 | .ident = "Gigabyte GA-7ZX", |
| 1773 | .matches = { |
| 1774 | DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."), |
| 1775 | DMI_MATCH(DMI_BOARD_NAME, "7ZX"), |
| 1776 | }, |
| 1777 | }, |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1778 | {} |
| 1779 | }; |
| 1780 | #endif /* CONFIG_DMI */ |
| 1781 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1782 | static int __init acpi_thermal_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1784 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | |
Len Brown | 0b5bfa1 | 2007-08-12 00:13:02 -0400 | [diff] [blame] | 1786 | dmi_check_system(thermal_dmi_table); |
| 1787 | |
Len Brown | 72b33ef | 2007-08-12 00:12:17 -0400 | [diff] [blame] | 1788 | if (off) { |
| 1789 | printk(KERN_NOTICE "ACPI: thermal control disabled\n"); |
| 1790 | return -ENODEV; |
| 1791 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir); |
| 1793 | if (!acpi_thermal_dir) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1794 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | acpi_thermal_dir->owner = THIS_MODULE; |
| 1796 | |
| 1797 | result = acpi_bus_register_driver(&acpi_thermal_driver); |
| 1798 | if (result < 0) { |
| 1799 | remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1800 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | } |
| 1802 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1803 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | } |
| 1805 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1806 | static void __exit acpi_thermal_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | |
| 1809 | acpi_bus_unregister_driver(&acpi_thermal_driver); |
| 1810 | |
| 1811 | remove_proc_entry(ACPI_THERMAL_CLASS, acpi_root_dir); |
| 1812 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1813 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | } |
| 1815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | module_init(acpi_thermal_init); |
| 1817 | module_exit(acpi_thermal_exit); |