Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * processor_throttling.c - Throttling submodule of the ACPI processor driver |
| 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 | * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de> |
| 7 | * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
| 8 | * - Added processor hotplug support |
| 9 | * |
| 10 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or (at |
| 15 | * your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, but |
| 18 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 20 | * General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along |
| 23 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 24 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 25 | * |
| 26 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 27 | */ |
| 28 | |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/cpufreq.h> |
| 33 | #include <linux/proc_fs.h> |
| 34 | #include <linux/seq_file.h> |
| 35 | |
| 36 | #include <asm/io.h> |
| 37 | #include <asm/uaccess.h> |
| 38 | |
| 39 | #include <acpi/acpi_bus.h> |
| 40 | #include <acpi/processor.h> |
| 41 | |
| 42 | #define ACPI_PROCESSOR_COMPONENT 0x01000000 |
| 43 | #define ACPI_PROCESSOR_CLASS "processor" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define _COMPONENT ACPI_PROCESSOR_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 45 | ACPI_MODULE_NAME("processor_throttling"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 47 | static int acpi_processor_get_throttling(struct acpi_processor *pr); |
| 48 | int acpi_processor_set_throttling(struct acpi_processor *pr, int state); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 49 | |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 50 | /* |
| 51 | * _TPC - Throttling Present Capabilities |
| 52 | */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 53 | static int acpi_processor_get_platform_limit(struct acpi_processor *pr) |
| 54 | { |
| 55 | acpi_status status = 0; |
| 56 | unsigned long tpc = 0; |
| 57 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 58 | if (!pr) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 59 | return -EINVAL; |
| 60 | status = acpi_evaluate_integer(pr->handle, "_TPC", NULL, &tpc); |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 61 | if (ACPI_FAILURE(status)) { |
| 62 | if (status != AE_NOT_FOUND) { |
| 63 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TPC")); |
| 64 | } |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 65 | return -ENODEV; |
| 66 | } |
| 67 | pr->throttling_platform_limit = (int)tpc; |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | int acpi_processor_tstate_has_changed(struct acpi_processor *pr) |
| 72 | { |
Zhao Yakui | ef54d5a | 2007-11-15 16:59:30 +0800 | [diff] [blame] | 73 | int result = 0; |
| 74 | int throttling_limit; |
| 75 | int current_state; |
| 76 | struct acpi_processor_limit *limit; |
| 77 | int target_state; |
| 78 | |
| 79 | result = acpi_processor_get_platform_limit(pr); |
| 80 | if (result) { |
| 81 | /* Throttling Limit is unsupported */ |
| 82 | return result; |
| 83 | } |
| 84 | |
| 85 | throttling_limit = pr->throttling_platform_limit; |
| 86 | if (throttling_limit >= pr->throttling.state_count) { |
| 87 | /* Uncorrect Throttling Limit */ |
| 88 | return -EINVAL; |
| 89 | } |
| 90 | |
| 91 | current_state = pr->throttling.state; |
| 92 | if (current_state > throttling_limit) { |
| 93 | /* |
| 94 | * The current state can meet the requirement of |
| 95 | * _TPC limit. But it is reasonable that OSPM changes |
| 96 | * t-states from high to low for better performance. |
| 97 | * Of course the limit condition of thermal |
| 98 | * and user should be considered. |
| 99 | */ |
| 100 | limit = &pr->limit; |
| 101 | target_state = throttling_limit; |
| 102 | if (limit->thermal.tx > target_state) |
| 103 | target_state = limit->thermal.tx; |
| 104 | if (limit->user.tx > target_state) |
| 105 | target_state = limit->user.tx; |
| 106 | } else if (current_state == throttling_limit) { |
| 107 | /* |
| 108 | * Unnecessary to change the throttling state |
| 109 | */ |
| 110 | return 0; |
| 111 | } else { |
| 112 | /* |
| 113 | * If the current state is lower than the limit of _TPC, it |
| 114 | * will be forced to switch to the throttling state defined |
| 115 | * by throttling_platfor_limit. |
| 116 | * Because the previous state meets with the limit condition |
| 117 | * of thermal and user, it is unnecessary to check it again. |
| 118 | */ |
| 119 | target_state = throttling_limit; |
| 120 | } |
| 121 | return acpi_processor_set_throttling(pr, target_state); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 122 | } |
| 123 | |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 124 | /* |
| 125 | * _PTC - Processor Throttling Control (and status) register location |
| 126 | */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 127 | static int acpi_processor_get_throttling_control(struct acpi_processor *pr) |
| 128 | { |
| 129 | int result = 0; |
| 130 | acpi_status status = 0; |
| 131 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 132 | union acpi_object *ptc = NULL; |
| 133 | union acpi_object obj = { 0 }; |
| 134 | |
| 135 | status = acpi_evaluate_object(pr->handle, "_PTC", NULL, &buffer); |
| 136 | if (ACPI_FAILURE(status)) { |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 137 | if (status != AE_NOT_FOUND) { |
| 138 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PTC")); |
| 139 | } |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 140 | return -ENODEV; |
| 141 | } |
| 142 | |
| 143 | ptc = (union acpi_object *)buffer.pointer; |
| 144 | if (!ptc || (ptc->type != ACPI_TYPE_PACKAGE) |
| 145 | || (ptc->package.count != 2)) { |
| 146 | printk(KERN_ERR PREFIX "Invalid _PTC data\n"); |
| 147 | result = -EFAULT; |
| 148 | goto end; |
| 149 | } |
| 150 | |
| 151 | /* |
| 152 | * control_register |
| 153 | */ |
| 154 | |
| 155 | obj = ptc->package.elements[0]; |
| 156 | |
| 157 | if ((obj.type != ACPI_TYPE_BUFFER) |
| 158 | || (obj.buffer.length < sizeof(struct acpi_ptc_register)) |
| 159 | || (obj.buffer.pointer == NULL)) { |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 160 | printk(KERN_ERR PREFIX |
| 161 | "Invalid _PTC data (control_register)\n"); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 162 | result = -EFAULT; |
| 163 | goto end; |
| 164 | } |
| 165 | memcpy(&pr->throttling.control_register, obj.buffer.pointer, |
| 166 | sizeof(struct acpi_ptc_register)); |
| 167 | |
| 168 | /* |
| 169 | * status_register |
| 170 | */ |
| 171 | |
| 172 | obj = ptc->package.elements[1]; |
| 173 | |
| 174 | if ((obj.type != ACPI_TYPE_BUFFER) |
| 175 | || (obj.buffer.length < sizeof(struct acpi_ptc_register)) |
| 176 | || (obj.buffer.pointer == NULL)) { |
| 177 | printk(KERN_ERR PREFIX "Invalid _PTC data (status_register)\n"); |
| 178 | result = -EFAULT; |
| 179 | goto end; |
| 180 | } |
| 181 | |
| 182 | memcpy(&pr->throttling.status_register, obj.buffer.pointer, |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 183 | sizeof(struct acpi_ptc_register)); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 184 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 185 | end: |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 186 | kfree(buffer.pointer); |
| 187 | |
| 188 | return result; |
| 189 | } |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 190 | |
| 191 | /* |
| 192 | * _TSS - Throttling Supported States |
| 193 | */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 194 | static int acpi_processor_get_throttling_states(struct acpi_processor *pr) |
| 195 | { |
| 196 | int result = 0; |
| 197 | acpi_status status = AE_OK; |
| 198 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 199 | struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" }; |
| 200 | struct acpi_buffer state = { 0, NULL }; |
| 201 | union acpi_object *tss = NULL; |
| 202 | int i; |
| 203 | |
| 204 | status = acpi_evaluate_object(pr->handle, "_TSS", NULL, &buffer); |
| 205 | if (ACPI_FAILURE(status)) { |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 206 | if (status != AE_NOT_FOUND) { |
| 207 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSS")); |
| 208 | } |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 209 | return -ENODEV; |
| 210 | } |
| 211 | |
| 212 | tss = buffer.pointer; |
| 213 | if (!tss || (tss->type != ACPI_TYPE_PACKAGE)) { |
| 214 | printk(KERN_ERR PREFIX "Invalid _TSS data\n"); |
| 215 | result = -EFAULT; |
| 216 | goto end; |
| 217 | } |
| 218 | |
| 219 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n", |
| 220 | tss->package.count)); |
| 221 | |
| 222 | pr->throttling.state_count = tss->package.count; |
| 223 | pr->throttling.states_tss = |
| 224 | kmalloc(sizeof(struct acpi_processor_tx_tss) * tss->package.count, |
| 225 | GFP_KERNEL); |
| 226 | if (!pr->throttling.states_tss) { |
| 227 | result = -ENOMEM; |
| 228 | goto end; |
| 229 | } |
| 230 | |
| 231 | for (i = 0; i < pr->throttling.state_count; i++) { |
| 232 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 233 | struct acpi_processor_tx_tss *tx = |
| 234 | (struct acpi_processor_tx_tss *)&(pr->throttling. |
| 235 | states_tss[i]); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 236 | |
| 237 | state.length = sizeof(struct acpi_processor_tx_tss); |
| 238 | state.pointer = tx; |
| 239 | |
| 240 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Extracting state %d\n", i)); |
| 241 | |
| 242 | status = acpi_extract_package(&(tss->package.elements[i]), |
| 243 | &format, &state); |
| 244 | if (ACPI_FAILURE(status)) { |
| 245 | ACPI_EXCEPTION((AE_INFO, status, "Invalid _TSS data")); |
| 246 | result = -EFAULT; |
| 247 | kfree(pr->throttling.states_tss); |
| 248 | goto end; |
| 249 | } |
| 250 | |
| 251 | if (!tx->freqpercentage) { |
| 252 | printk(KERN_ERR PREFIX |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 253 | "Invalid _TSS data: freq is zero\n"); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 254 | result = -EFAULT; |
| 255 | kfree(pr->throttling.states_tss); |
| 256 | goto end; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | end: |
| 261 | kfree(buffer.pointer); |
| 262 | |
| 263 | return result; |
| 264 | } |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * _TSD - T-State Dependencies |
| 268 | */ |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 269 | static int acpi_processor_get_tsd(struct acpi_processor *pr) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 270 | { |
| 271 | int result = 0; |
| 272 | acpi_status status = AE_OK; |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 273 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 274 | struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" }; |
| 275 | struct acpi_buffer state = { 0, NULL }; |
| 276 | union acpi_object *tsd = NULL; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 277 | struct acpi_tsd_package *pdomain; |
| 278 | |
| 279 | status = acpi_evaluate_object(pr->handle, "_TSD", NULL, &buffer); |
| 280 | if (ACPI_FAILURE(status)) { |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 281 | if (status != AE_NOT_FOUND) { |
| 282 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSD")); |
| 283 | } |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 284 | return -ENODEV; |
| 285 | } |
| 286 | |
| 287 | tsd = buffer.pointer; |
| 288 | if (!tsd || (tsd->type != ACPI_TYPE_PACKAGE)) { |
| 289 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n")); |
| 290 | result = -EFAULT; |
| 291 | goto end; |
| 292 | } |
| 293 | |
| 294 | if (tsd->package.count != 1) { |
| 295 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n")); |
| 296 | result = -EFAULT; |
| 297 | goto end; |
| 298 | } |
| 299 | |
| 300 | pdomain = &(pr->throttling.domain_info); |
| 301 | |
| 302 | state.length = sizeof(struct acpi_tsd_package); |
| 303 | state.pointer = pdomain; |
| 304 | |
| 305 | status = acpi_extract_package(&(tsd->package.elements[0]), |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 306 | &format, &state); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 307 | if (ACPI_FAILURE(status)) { |
| 308 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n")); |
| 309 | result = -EFAULT; |
| 310 | goto end; |
| 311 | } |
| 312 | |
| 313 | if (pdomain->num_entries != ACPI_TSD_REV0_ENTRIES) { |
| 314 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _TSD:num_entries\n")); |
| 315 | result = -EFAULT; |
| 316 | goto end; |
| 317 | } |
| 318 | |
| 319 | if (pdomain->revision != ACPI_TSD_REV0_REVISION) { |
| 320 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _TSD:revision\n")); |
| 321 | result = -EFAULT; |
| 322 | goto end; |
| 323 | } |
| 324 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 325 | end: |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 326 | kfree(buffer.pointer); |
| 327 | return result; |
| 328 | } |
| 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* -------------------------------------------------------------------------- |
| 331 | Throttling Control |
| 332 | -------------------------------------------------------------------------- */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 333 | static int acpi_processor_get_throttling_fadt(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | int state = 0; |
| 336 | u32 value = 0; |
| 337 | u32 duty_mask = 0; |
| 338 | u32 duty_value = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 341 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
| 343 | if (!pr->flags.throttling) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 344 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
| 346 | pr->throttling.state = 0; |
| 347 | |
| 348 | duty_mask = pr->throttling.state_count - 1; |
| 349 | |
| 350 | duty_mask <<= pr->throttling.duty_offset; |
| 351 | |
| 352 | local_irq_disable(); |
| 353 | |
| 354 | value = inl(pr->throttling.address); |
| 355 | |
| 356 | /* |
| 357 | * Compute the current throttling state when throttling is enabled |
| 358 | * (bit 4 is on). |
| 359 | */ |
| 360 | if (value & 0x10) { |
| 361 | duty_value = value & duty_mask; |
| 362 | duty_value >>= pr->throttling.duty_offset; |
| 363 | |
| 364 | if (duty_value) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 365 | state = pr->throttling.state_count - duty_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | pr->throttling.state = state; |
| 369 | |
| 370 | local_irq_enable(); |
| 371 | |
| 372 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 373 | "Throttling state is T%d (%d%% throttling applied)\n", |
| 374 | state, pr->throttling.states[state].performance)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 376 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 379 | static int acpi_read_throttling_status(struct acpi_processor_throttling |
| 380 | *throttling) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 381 | { |
| 382 | int value = -1; |
| 383 | switch (throttling->status_register.space_id) { |
| 384 | case ACPI_ADR_SPACE_SYSTEM_IO: |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 385 | acpi_os_read_port((acpi_io_address) throttling->status_register. |
| 386 | address, &value, |
| 387 | (u32) throttling->status_register.bit_width * |
| 388 | 8); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 389 | break; |
| 390 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 391 | printk(KERN_ERR PREFIX |
| 392 | "HARDWARE addr space,NOT supported yet\n"); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 393 | break; |
| 394 | default: |
| 395 | printk(KERN_ERR PREFIX "Unknown addr space %d\n", |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 396 | (u32) (throttling->status_register.space_id)); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 397 | } |
| 398 | return value; |
| 399 | } |
| 400 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 401 | static int acpi_write_throttling_state(struct acpi_processor_throttling |
| 402 | *throttling, int value) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 403 | { |
| 404 | int ret = -1; |
| 405 | |
| 406 | switch (throttling->control_register.space_id) { |
| 407 | case ACPI_ADR_SPACE_SYSTEM_IO: |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 408 | acpi_os_write_port((acpi_io_address) throttling-> |
| 409 | control_register.address, value, |
| 410 | (u32) throttling->control_register. |
| 411 | bit_width * 8); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 412 | ret = 0; |
| 413 | break; |
| 414 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 415 | printk(KERN_ERR PREFIX |
| 416 | "HARDWARE addr space,NOT supported yet\n"); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 417 | break; |
| 418 | default: |
| 419 | printk(KERN_ERR PREFIX "Unknown addr space %d\n", |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 420 | (u32) (throttling->control_register.space_id)); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 421 | } |
| 422 | return ret; |
| 423 | } |
| 424 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 425 | static int acpi_get_throttling_state(struct acpi_processor *pr, int value) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 426 | { |
| 427 | int i; |
| 428 | |
| 429 | for (i = 0; i < pr->throttling.state_count; i++) { |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 430 | struct acpi_processor_tx_tss *tx = |
| 431 | (struct acpi_processor_tx_tss *)&(pr->throttling. |
| 432 | states_tss[i]); |
| 433 | if (tx->control == value) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 434 | break; |
| 435 | } |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 436 | if (i > pr->throttling.state_count) |
| 437 | i = -1; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 438 | return i; |
| 439 | } |
| 440 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 441 | static int acpi_get_throttling_value(struct acpi_processor *pr, int state) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 442 | { |
| 443 | int value = -1; |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 444 | if (state >= 0 && state <= pr->throttling.state_count) { |
| 445 | struct acpi_processor_tx_tss *tx = |
| 446 | (struct acpi_processor_tx_tss *)&(pr->throttling. |
| 447 | states_tss[state]); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 448 | value = tx->control; |
| 449 | } |
| 450 | return value; |
| 451 | } |
| 452 | |
| 453 | static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr) |
| 454 | { |
| 455 | int state = 0; |
| 456 | u32 value = 0; |
| 457 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 458 | if (!pr) |
| 459 | return -EINVAL; |
| 460 | |
| 461 | if (!pr->flags.throttling) |
| 462 | return -ENODEV; |
| 463 | |
| 464 | pr->throttling.state = 0; |
| 465 | local_irq_disable(); |
| 466 | value = acpi_read_throttling_status(&pr->throttling); |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 467 | if (value >= 0) { |
| 468 | state = acpi_get_throttling_state(pr, value); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 469 | pr->throttling.state = state; |
| 470 | } |
| 471 | local_irq_enable(); |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 476 | static int acpi_processor_get_throttling(struct acpi_processor *pr) |
| 477 | { |
| 478 | return pr->throttling.acpi_processor_get_throttling(pr); |
| 479 | } |
| 480 | |
Zhao Yakui | 22cc501 | 2007-11-15 17:02:03 +0800 | [diff] [blame^] | 481 | static int acpi_processor_get_fadt_info(struct acpi_processor *pr) |
| 482 | { |
| 483 | int i, step; |
| 484 | |
| 485 | if (!pr->throttling.address) { |
| 486 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling register\n")); |
| 487 | return -EINVAL; |
| 488 | } else if (!pr->throttling.duty_width) { |
| 489 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling states\n")); |
| 490 | return -EINVAL; |
| 491 | } |
| 492 | /* TBD: Support duty_cycle values that span bit 4. */ |
| 493 | else if ((pr->throttling.duty_offset + pr->throttling.duty_width) > 4) { |
| 494 | printk(KERN_WARNING PREFIX "duty_cycle spans bit 4\n"); |
| 495 | return -EINVAL; |
| 496 | } |
| 497 | |
| 498 | pr->throttling.state_count = 1 << acpi_gbl_FADT.duty_width; |
| 499 | |
| 500 | /* |
| 501 | * Compute state values. Note that throttling displays a linear power |
| 502 | * performance relationship (at 50% performance the CPU will consume |
| 503 | * 50% power). Values are in 1/10th of a percent to preserve accuracy. |
| 504 | */ |
| 505 | |
| 506 | step = (1000 / pr->throttling.state_count); |
| 507 | |
| 508 | for (i = 0; i < pr->throttling.state_count; i++) { |
| 509 | pr->throttling.states[i].performance = 1000 - step * i; |
| 510 | pr->throttling.states[i].power = 1000 - step * i; |
| 511 | } |
| 512 | return 0; |
| 513 | } |
| 514 | |
Adrian Bunk | 6c5cf8a | 2007-07-03 00:53:12 -0400 | [diff] [blame] | 515 | static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr, |
| 516 | int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 518 | u32 value = 0; |
| 519 | u32 duty_mask = 0; |
| 520 | u32 duty_value = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 523 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | if ((state < 0) || (state > (pr->throttling.state_count - 1))) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 526 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | if (!pr->flags.throttling) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 529 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | if (state == pr->throttling.state) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 532 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 534 | if (state < pr->throttling_platform_limit) |
| 535 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | /* |
| 537 | * Calculate the duty_value and duty_mask. |
| 538 | */ |
| 539 | if (state) { |
| 540 | duty_value = pr->throttling.state_count - state; |
| 541 | |
| 542 | duty_value <<= pr->throttling.duty_offset; |
| 543 | |
| 544 | /* Used to clear all duty_value bits */ |
| 545 | duty_mask = pr->throttling.state_count - 1; |
| 546 | |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 547 | duty_mask <<= acpi_gbl_FADT.duty_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | duty_mask = ~duty_mask; |
| 549 | } |
| 550 | |
| 551 | local_irq_disable(); |
| 552 | |
| 553 | /* |
| 554 | * Disable throttling by writing a 0 to bit 4. Note that we must |
| 555 | * turn it off before you can change the duty_value. |
| 556 | */ |
| 557 | value = inl(pr->throttling.address); |
| 558 | if (value & 0x10) { |
| 559 | value &= 0xFFFFFFEF; |
| 560 | outl(value, pr->throttling.address); |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Write the new duty_value and then enable throttling. Note |
| 565 | * that a state value of 0 leaves throttling disabled. |
| 566 | */ |
| 567 | if (state) { |
| 568 | value &= duty_mask; |
| 569 | value |= duty_value; |
| 570 | outl(value, pr->throttling.address); |
| 571 | |
| 572 | value |= 0x00000010; |
| 573 | outl(value, pr->throttling.address); |
| 574 | } |
| 575 | |
| 576 | pr->throttling.state = state; |
| 577 | |
| 578 | local_irq_enable(); |
| 579 | |
| 580 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 581 | "Throttling state set to T%d (%d%%)\n", state, |
| 582 | (pr->throttling.states[state].performance ? pr-> |
| 583 | throttling.states[state].performance / 10 : 0))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 585 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Adrian Bunk | 6c5cf8a | 2007-07-03 00:53:12 -0400 | [diff] [blame] | 588 | static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, |
| 589 | int state) |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 590 | { |
| 591 | u32 value = 0; |
| 592 | |
| 593 | if (!pr) |
| 594 | return -EINVAL; |
| 595 | |
| 596 | if ((state < 0) || (state > (pr->throttling.state_count - 1))) |
| 597 | return -EINVAL; |
| 598 | |
| 599 | if (!pr->flags.throttling) |
| 600 | return -ENODEV; |
| 601 | |
| 602 | if (state == pr->throttling.state) |
| 603 | return 0; |
| 604 | |
| 605 | if (state < pr->throttling_platform_limit) |
| 606 | return -EPERM; |
| 607 | |
| 608 | local_irq_disable(); |
| 609 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 610 | value = acpi_get_throttling_value(pr, state); |
| 611 | if (value >= 0) { |
| 612 | acpi_write_throttling_state(&pr->throttling, value); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 613 | pr->throttling.state = state; |
| 614 | } |
| 615 | local_irq_enable(); |
| 616 | |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | int acpi_processor_set_throttling(struct acpi_processor *pr, int state) |
| 621 | { |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 622 | return pr->throttling.acpi_processor_set_throttling(pr, state); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 623 | } |
| 624 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 625 | int acpi_processor_get_throttling_info(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 627 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 630 | "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n", |
| 631 | pr->throttling.address, |
| 632 | pr->throttling.duty_offset, |
| 633 | pr->throttling.duty_width)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
| 635 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 636 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 638 | /* |
| 639 | * Evaluate _PTC, _TSS and _TPC |
| 640 | * They must all be present or none of them can be used. |
| 641 | */ |
| 642 | if (acpi_processor_get_throttling_control(pr) || |
| 643 | acpi_processor_get_throttling_states(pr) || |
| 644 | acpi_processor_get_platform_limit(pr)) |
| 645 | { |
Zhao Yakui | 22cc501 | 2007-11-15 17:02:03 +0800 | [diff] [blame^] | 646 | if (acpi_processor_get_fadt_info(pr)) |
| 647 | return 0; |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 648 | pr->throttling.acpi_processor_get_throttling = |
| 649 | &acpi_processor_get_throttling_fadt; |
| 650 | pr->throttling.acpi_processor_set_throttling = |
| 651 | &acpi_processor_set_throttling_fadt; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 652 | } else { |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 653 | pr->throttling.acpi_processor_get_throttling = |
| 654 | &acpi_processor_get_throttling_ptc; |
| 655 | pr->throttling.acpi_processor_set_throttling = |
| 656 | &acpi_processor_set_throttling_ptc; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 657 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
Len Brown | c30c620 | 2007-07-25 00:57:46 -0400 | [diff] [blame] | 659 | acpi_processor_get_tsd(pr); |
| 660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | /* |
| 662 | * PIIX4 Errata: We don't support throttling on the original PIIX4. |
| 663 | * This shouldn't be an issue as few (if any) mobile systems ever |
| 664 | * used this part. |
| 665 | */ |
| 666 | if (errata.piix4.throttle) { |
| 667 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 668 | "Throttling not supported on PIIX4 A- or B-step\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 669 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 673 | pr->throttling.state_count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | pr->flags.throttling = 1; |
| 676 | |
| 677 | /* |
| 678 | * Disable throttling (if enabled). We'll let subsequent policy (e.g. |
| 679 | * thermal) decide to lower performance if it so chooses, but for now |
| 680 | * we'll crank up the speed. |
| 681 | */ |
| 682 | |
| 683 | result = acpi_processor_get_throttling(pr); |
| 684 | if (result) |
| 685 | goto end; |
| 686 | |
| 687 | if (pr->throttling.state) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 688 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 689 | "Disabling throttling (was T%d)\n", |
| 690 | pr->throttling.state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | result = acpi_processor_set_throttling(pr, 0); |
| 692 | if (result) |
| 693 | goto end; |
| 694 | } |
| 695 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 696 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | if (result) |
| 698 | pr->flags.throttling = 0; |
| 699 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 700 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
| 702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | /* proc interface */ |
| 704 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 705 | static int acpi_processor_throttling_seq_show(struct seq_file *seq, |
| 706 | void *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 708 | struct acpi_processor *pr = seq->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 709 | int i = 0; |
| 710 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | if (!pr) |
| 713 | goto end; |
| 714 | |
| 715 | if (!(pr->throttling.state_count > 0)) { |
| 716 | seq_puts(seq, "<not supported>\n"); |
| 717 | goto end; |
| 718 | } |
| 719 | |
| 720 | result = acpi_processor_get_throttling(pr); |
| 721 | |
| 722 | if (result) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 723 | seq_puts(seq, |
| 724 | "Could not determine current throttling state.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | goto end; |
| 726 | } |
| 727 | |
| 728 | seq_printf(seq, "state count: %d\n" |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 729 | "active state: T%d\n" |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 730 | "state available: T%d to T%d\n", |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 731 | pr->throttling.state_count, pr->throttling.state, |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 732 | pr->throttling_platform_limit, |
| 733 | pr->throttling.state_count - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | |
| 735 | seq_puts(seq, "states:\n"); |
Luming Yu | 3cc2649 | 2007-07-23 12:39:28 -0400 | [diff] [blame] | 736 | if (pr->throttling.acpi_processor_get_throttling == |
| 737 | acpi_processor_get_throttling_fadt) { |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 738 | for (i = 0; i < pr->throttling.state_count; i++) |
| 739 | seq_printf(seq, " %cT%d: %02d%%\n", |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 740 | (i == pr->throttling.state ? '*' : ' '), i, |
| 741 | (pr->throttling.states[i].performance ? pr-> |
| 742 | throttling.states[i].performance / 10 : 0)); |
Luming Yu | 3cc2649 | 2007-07-23 12:39:28 -0400 | [diff] [blame] | 743 | } else { |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 744 | for (i = 0; i < pr->throttling.state_count; i++) |
| 745 | seq_printf(seq, " %cT%d: %02d%%\n", |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 746 | (i == pr->throttling.state ? '*' : ' '), i, |
| 747 | (int)pr->throttling.states_tss[i]. |
| 748 | freqpercentage); |
Luming Yu | 3cc2649 | 2007-07-23 12:39:28 -0400 | [diff] [blame] | 749 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 751 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 752 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | } |
| 754 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 755 | static int acpi_processor_throttling_open_fs(struct inode *inode, |
| 756 | struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | { |
| 758 | return single_open(file, acpi_processor_throttling_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 759 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 762 | static ssize_t acpi_processor_write_throttling(struct file *file, |
Adrian Bunk | 757b186 | 2006-01-07 13:19:00 -0500 | [diff] [blame] | 763 | const char __user * buffer, |
| 764 | size_t count, loff_t * data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 766 | int result = 0; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 767 | struct seq_file *m = file->private_data; |
| 768 | struct acpi_processor *pr = m->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 769 | char state_string[12] = { '\0' }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | if (!pr || (count > sizeof(state_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 772 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | if (copy_from_user(state_string, buffer, count)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 775 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
| 777 | state_string[count] = '\0'; |
| 778 | |
| 779 | result = acpi_processor_set_throttling(pr, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 780 | simple_strtoul(state_string, |
| 781 | NULL, 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 783 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 785 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | struct file_operations acpi_processor_throttling_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 789 | .open = acpi_processor_throttling_open_fs, |
| 790 | .read = seq_read, |
Arjan van de Ven | d479e90 | 2006-01-06 16:47:00 -0500 | [diff] [blame] | 791 | .write = acpi_processor_write_throttling, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 792 | .llseek = seq_lseek, |
| 793 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | }; |