Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ibm_acpi.c - IBM ThinkPad ACPI Extras |
| 3 | * |
| 4 | * |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 5 | * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net> |
Henrique de Moraes Holschuh | a62bc91 | 2007-03-23 17:33:58 -0300 | [diff] [blame] | 6 | * Copyright (C) 2006-2007 Henrique de Moraes Holschuh <hmh@hmh.eng.br> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
Henrique de Moraes Holschuh | a62bc91 | 2007-03-23 17:33:58 -0300 | [diff] [blame] | 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 21 | * 02110-1301, USA. |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 22 | */ |
| 23 | |
Henrique de Moraes Holschuh | f9ff43a | 2006-11-25 16:37:38 -0200 | [diff] [blame] | 24 | #define IBM_VERSION "0.13" |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 25 | |
| 26 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * Changelog: |
Henrique de Moraes Holschuh | f9ff43a | 2006-11-25 16:37:38 -0200 | [diff] [blame] | 28 | * |
| 29 | * 2006-11-22 0.13 new maintainer |
| 30 | * changelog now lives in git commit history, and will |
| 31 | * not be updated further in-file. |
Henrique de Moraes Holschuh | 837ca6d | 2007-03-23 17:33:54 -0300 | [diff] [blame] | 32 | * |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 33 | * 2005-08-17 0.12 fix compilation on 2.6.13-rc kernels |
| 34 | * 2005-03-17 0.11 support for 600e, 770x |
| 35 | * thanks to Jamie Lentin <lentinj@dial.pipex.com> |
| 36 | * support for 770e, G41 |
| 37 | * G40 and G41 don't have a thinklight |
| 38 | * temperatures no longer experimental |
| 39 | * experimental brightness control |
| 40 | * experimental volume control |
| 41 | * experimental fan enable/disable |
Henrique de Moraes Holschuh | 837ca6d | 2007-03-23 17:33:54 -0300 | [diff] [blame] | 42 | * 2005-01-16 0.10 fix module loading on R30, R31 |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 43 | * 2005-01-16 0.9 support for 570, R30, R31 |
| 44 | * ultrabay support on A22p, A3x |
| 45 | * limit arg for cmos, led, beep, drop experimental status |
| 46 | * more capable led control on A21e, A22p, T20-22, X20 |
| 47 | * experimental temperatures and fan speed |
| 48 | * experimental embedded controller register dump |
| 49 | * mark more functions as __init, drop incorrect __exit |
| 50 | * use MODULE_VERSION |
| 51 | * thanks to Henrik Brix Andersen <brix@gentoo.org> |
| 52 | * fix parameter passing on module loading |
| 53 | * thanks to Rusty Russell <rusty@rustcorp.com.au> |
| 54 | * thanks to Jim Radford <radford@blackbean.org> |
| 55 | * 2004-11-08 0.8 fix init error case, don't return from a macro |
| 56 | * thanks to Chris Wright <chrisw@osdl.org> |
| 57 | * 2004-10-23 0.7 fix module loading on A21e, A22p, T20, T21, X20 |
| 58 | * fix led control on A21e |
| 59 | * 2004-10-19 0.6 use acpi_bus_register_driver() to claim HKEY device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | * 2004-10-18 0.5 thinklight support on A21e, G40, R32, T20, T21, X20 |
| 61 | * proc file format changed |
| 62 | * video_switch command |
| 63 | * experimental cmos control |
| 64 | * experimental led control |
| 65 | * experimental acpi sounds |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 66 | * 2004-09-16 0.4 support for module parameters |
| 67 | * hotkey mask can be prefixed by 0x |
| 68 | * video output switching |
| 69 | * video expansion control |
| 70 | * ultrabay eject support |
| 71 | * removed lcd brightness/on/off control, didn't work |
| 72 | * 2004-08-17 0.3 support for R40 |
| 73 | * lcd off, brightness control |
| 74 | * thinklight on/off |
| 75 | * 2004-08-14 0.2 support for T series, X20 |
| 76 | * bluetooth enable/disable |
| 77 | * hotkey events disabled by default |
| 78 | * removed fan control, currently useless |
| 79 | * 2004-08-09 0.1 initial release, support for X series |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | */ |
| 81 | |
Henrique de Moraes Holschuh | f21f85d | 2007-03-29 01:58:40 -0300 | [diff] [blame] | 82 | #include "thinkpad_acpi.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Henrique de Moraes Holschuh | f9ff43a | 2006-11-25 16:37:38 -0200 | [diff] [blame] | 84 | MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 85 | MODULE_DESCRIPTION(IBM_DESC); |
| 86 | MODULE_VERSION(IBM_VERSION); |
| 87 | MODULE_LICENSE("GPL"); |
| 88 | |
Henrique de Moraes Holschuh | d903ac5 | 2007-03-29 01:58:42 -0300 | [diff] [blame^] | 89 | /* Please remove this in year 2009 */ |
| 90 | MODULE_ALIAS("ibm_acpi"); |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #define __unused __attribute__ ((unused)) |
| 93 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 94 | /**************************************************************************** |
| 95 | **************************************************************************** |
| 96 | * |
| 97 | * ACPI Helpers and device model |
| 98 | * |
| 99 | **************************************************************************** |
| 100 | ****************************************************************************/ |
| 101 | |
| 102 | /************************************************************************* |
| 103 | * ACPI basic handles |
| 104 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | static acpi_handle root_handle = NULL; |
| 107 | |
| 108 | #define IBM_HANDLE(object, parent, paths...) \ |
| 109 | static acpi_handle object##_handle; \ |
| 110 | static acpi_handle *object##_parent = &parent##_handle; \ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 111 | static char *object##_path; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | static char *object##_paths[] = { paths } |
| 113 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 114 | IBM_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */ |
| 115 | "\\_SB.PCI.ISA.EC", /* 570 */ |
| 116 | "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */ |
| 117 | "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */ |
| 118 | "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */ |
| 119 | "\\_SB.PCI0.ICH3.EC0", /* R31 */ |
| 120 | "\\_SB.PCI0.LPC.EC", /* all others */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 121 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 123 | IBM_HANDLE(ecrd, ec, "ECRD"); /* 570 */ |
| 124 | IBM_HANDLE(ecwr, ec, "ECWR"); /* 570 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 126 | |
| 127 | /************************************************************************* |
| 128 | * Misc ACPI handles |
| 129 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 131 | IBM_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, T4x, X31, X40 */ |
| 132 | "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */ |
| 133 | "\\CMS", /* R40, R40e */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 134 | ); /* all others */ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 135 | |
| 136 | IBM_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */ |
| 137 | "^HKEY", /* R30, R31 */ |
| 138 | "HKEY", /* all others */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 139 | ); /* 570 */ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 140 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 141 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 142 | /************************************************************************* |
| 143 | * ACPI helpers |
Henrique de Moraes Holschuh | a8b7a66 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 144 | */ |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | static int acpi_evalf(acpi_handle handle, |
| 147 | void *res, char *method, char *fmt, ...) |
| 148 | { |
| 149 | char *fmt0 = fmt; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 150 | struct acpi_object_list params; |
| 151 | union acpi_object in_objs[IBM_MAX_ACPI_ARGS]; |
| 152 | struct acpi_buffer result, *resultp; |
| 153 | union acpi_object out_obj; |
| 154 | acpi_status status; |
| 155 | va_list ap; |
| 156 | char res_type; |
| 157 | int success; |
| 158 | int quiet; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | if (!*fmt) { |
| 161 | printk(IBM_ERR "acpi_evalf() called with empty format\n"); |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | if (*fmt == 'q') { |
| 166 | quiet = 1; |
| 167 | fmt++; |
| 168 | } else |
| 169 | quiet = 0; |
| 170 | |
| 171 | res_type = *(fmt++); |
| 172 | |
| 173 | params.count = 0; |
| 174 | params.pointer = &in_objs[0]; |
| 175 | |
| 176 | va_start(ap, fmt); |
| 177 | while (*fmt) { |
| 178 | char c = *(fmt++); |
| 179 | switch (c) { |
| 180 | case 'd': /* int */ |
| 181 | in_objs[params.count].integer.value = va_arg(ap, int); |
| 182 | in_objs[params.count++].type = ACPI_TYPE_INTEGER; |
| 183 | break; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 184 | /* add more types as needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | default: |
| 186 | printk(IBM_ERR "acpi_evalf() called " |
| 187 | "with invalid format character '%c'\n", c); |
| 188 | return 0; |
| 189 | } |
| 190 | } |
| 191 | va_end(ap); |
| 192 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 193 | if (res_type != 'v') { |
| 194 | result.length = sizeof(out_obj); |
| 195 | result.pointer = &out_obj; |
| 196 | resultp = &result; |
| 197 | } else |
| 198 | resultp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 200 | status = acpi_evaluate_object(handle, method, ¶ms, resultp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | switch (res_type) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 203 | case 'd': /* int */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | if (res) |
| 205 | *(int *)res = out_obj.integer.value; |
| 206 | success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER; |
| 207 | break; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 208 | case 'v': /* void */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | success = status == AE_OK; |
| 210 | break; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 211 | /* add more types as needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | default: |
| 213 | printk(IBM_ERR "acpi_evalf() called " |
| 214 | "with invalid format character '%c'\n", res_type); |
| 215 | return 0; |
| 216 | } |
| 217 | |
| 218 | if (!success && !quiet) |
| 219 | printk(IBM_ERR "acpi_evalf(%s, %s, ...) failed: %d\n", |
| 220 | method, fmt0, status); |
| 221 | |
| 222 | return success; |
| 223 | } |
| 224 | |
| 225 | static void __unused acpi_print_int(acpi_handle handle, char *method) |
| 226 | { |
| 227 | int i; |
| 228 | |
| 229 | if (acpi_evalf(handle, &i, method, "d")) |
| 230 | printk(IBM_INFO "%s = 0x%x\n", method, i); |
| 231 | else |
| 232 | printk(IBM_ERR "error calling %s\n", method); |
| 233 | } |
| 234 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 235 | static int acpi_ec_read(int i, u8 * p) |
| 236 | { |
| 237 | int v; |
| 238 | |
| 239 | if (ecrd_handle) { |
| 240 | if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i)) |
| 241 | return 0; |
| 242 | *p = v; |
| 243 | } else { |
| 244 | if (ec_read(i, p) < 0) |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | return 1; |
| 249 | } |
| 250 | |
| 251 | static int acpi_ec_write(int i, u8 v) |
| 252 | { |
| 253 | if (ecwr_handle) { |
| 254 | if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v)) |
| 255 | return 0; |
| 256 | } else { |
| 257 | if (ec_write(i, v) < 0) |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | return 1; |
| 262 | } |
| 263 | |
| 264 | static int _sta(acpi_handle handle) |
| 265 | { |
| 266 | int status; |
| 267 | |
| 268 | if (!handle || !acpi_evalf(handle, &status, "_STA", "d")) |
| 269 | status = 0; |
| 270 | |
| 271 | return status; |
| 272 | } |
| 273 | |
| 274 | /************************************************************************* |
| 275 | * ACPI device model |
| 276 | */ |
| 277 | |
| 278 | static void __init ibm_handle_init(char *name, |
| 279 | acpi_handle * handle, acpi_handle parent, |
| 280 | char **paths, int num_paths, char **path) |
| 281 | { |
| 282 | int i; |
| 283 | acpi_status status; |
| 284 | |
| 285 | for (i = 0; i < num_paths; i++) { |
| 286 | status = acpi_get_handle(parent, paths[i], handle); |
| 287 | if (ACPI_SUCCESS(status)) { |
| 288 | *path = paths[i]; |
| 289 | return; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | *handle = NULL; |
| 294 | } |
| 295 | |
| 296 | static void dispatch_notify(acpi_handle handle, u32 event, void *data) |
| 297 | { |
| 298 | struct ibm_struct *ibm = data; |
| 299 | |
| 300 | if (!ibm || !ibm->notify) |
| 301 | return; |
| 302 | |
| 303 | ibm->notify(ibm, event); |
| 304 | } |
| 305 | |
| 306 | static int __init setup_notify(struct ibm_struct *ibm) |
| 307 | { |
| 308 | acpi_status status; |
| 309 | int ret; |
| 310 | |
| 311 | if (!*ibm->handle) |
| 312 | return 0; |
| 313 | |
| 314 | ret = acpi_bus_get_device(*ibm->handle, &ibm->device); |
| 315 | if (ret < 0) { |
| 316 | printk(IBM_ERR "%s device not present\n", ibm->name); |
| 317 | return -ENODEV; |
| 318 | } |
| 319 | |
| 320 | acpi_driver_data(ibm->device) = ibm; |
| 321 | sprintf(acpi_device_class(ibm->device), "%s/%s", IBM_NAME, ibm->name); |
| 322 | |
| 323 | status = acpi_install_notify_handler(*ibm->handle, ibm->type, |
| 324 | dispatch_notify, ibm); |
| 325 | if (ACPI_FAILURE(status)) { |
| 326 | if (status == AE_ALREADY_EXISTS) { |
| 327 | printk(IBM_NOTICE "another device driver is already handling %s events\n", |
| 328 | ibm->name); |
| 329 | } else { |
| 330 | printk(IBM_ERR "acpi_install_notify_handler(%s) failed: %d\n", |
| 331 | ibm->name, status); |
| 332 | } |
| 333 | return -ENODEV; |
| 334 | } |
| 335 | ibm->notify_installed = 1; |
| 336 | return 0; |
| 337 | } |
| 338 | |
| 339 | static int __init ibm_device_add(struct acpi_device *device) |
| 340 | { |
| 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | static int __init register_ibmacpi_subdriver(struct ibm_struct *ibm) |
| 345 | { |
| 346 | int ret; |
| 347 | |
| 348 | ibm->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL); |
| 349 | if (!ibm->driver) { |
| 350 | printk(IBM_ERR "kmalloc(ibm->driver) failed\n"); |
| 351 | return -1; |
| 352 | } |
| 353 | |
| 354 | sprintf(ibm->driver->name, "%s_%s", IBM_NAME, ibm->name); |
| 355 | ibm->driver->ids = ibm->hid; |
| 356 | ibm->driver->ops.add = &ibm_device_add; |
| 357 | |
| 358 | ret = acpi_bus_register_driver(ibm->driver); |
| 359 | if (ret < 0) { |
| 360 | printk(IBM_ERR "acpi_bus_register_driver(%s) failed: %d\n", |
| 361 | ibm->hid, ret); |
| 362 | kfree(ibm->driver); |
| 363 | } |
| 364 | |
| 365 | return ret; |
| 366 | } |
| 367 | |
| 368 | |
| 369 | /**************************************************************************** |
| 370 | **************************************************************************** |
| 371 | * |
| 372 | * Procfs Helpers |
| 373 | * |
| 374 | **************************************************************************** |
| 375 | ****************************************************************************/ |
| 376 | |
| 377 | static int dispatch_read(char *page, char **start, off_t off, int count, |
| 378 | int *eof, void *data) |
| 379 | { |
| 380 | struct ibm_struct *ibm = data; |
| 381 | int len; |
| 382 | |
| 383 | if (!ibm || !ibm->read) |
| 384 | return -EINVAL; |
| 385 | |
| 386 | len = ibm->read(page); |
| 387 | if (len < 0) |
| 388 | return len; |
| 389 | |
| 390 | if (len <= off + count) |
| 391 | *eof = 1; |
| 392 | *start = page + off; |
| 393 | len -= off; |
| 394 | if (len > count) |
| 395 | len = count; |
| 396 | if (len < 0) |
| 397 | len = 0; |
| 398 | |
| 399 | return len; |
| 400 | } |
| 401 | |
| 402 | static int dispatch_write(struct file *file, const char __user * userbuf, |
| 403 | unsigned long count, void *data) |
| 404 | { |
| 405 | struct ibm_struct *ibm = data; |
| 406 | char *kernbuf; |
| 407 | int ret; |
| 408 | |
| 409 | if (!ibm || !ibm->write) |
| 410 | return -EINVAL; |
| 411 | |
| 412 | kernbuf = kmalloc(count + 2, GFP_KERNEL); |
| 413 | if (!kernbuf) |
| 414 | return -ENOMEM; |
| 415 | |
| 416 | if (copy_from_user(kernbuf, userbuf, count)) { |
| 417 | kfree(kernbuf); |
| 418 | return -EFAULT; |
| 419 | } |
| 420 | |
| 421 | kernbuf[count] = 0; |
| 422 | strcat(kernbuf, ","); |
| 423 | ret = ibm->write(kernbuf); |
| 424 | if (ret == 0) |
| 425 | ret = count; |
| 426 | |
| 427 | kfree(kernbuf); |
| 428 | |
| 429 | return ret; |
| 430 | } |
| 431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | static char *next_cmd(char **cmds) |
| 433 | { |
| 434 | char *start = *cmds; |
| 435 | char *end; |
| 436 | |
| 437 | while ((end = strchr(start, ',')) && end == start) |
| 438 | start = end + 1; |
| 439 | |
| 440 | if (!end) |
| 441 | return NULL; |
| 442 | |
| 443 | *end = 0; |
| 444 | *cmds = end + 1; |
| 445 | return start; |
| 446 | } |
| 447 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 448 | |
| 449 | /**************************************************************************** |
| 450 | **************************************************************************** |
| 451 | * |
| 452 | * Subdrivers |
| 453 | * |
| 454 | **************************************************************************** |
| 455 | ****************************************************************************/ |
| 456 | |
| 457 | /************************************************************************* |
| 458 | * ibm-acpi init subdriver |
| 459 | */ |
| 460 | |
Adrian Bunk | 1f21782 | 2006-12-19 13:01:28 -0800 | [diff] [blame] | 461 | static int ibm_acpi_driver_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
| 463 | printk(IBM_INFO "%s v%s\n", IBM_DESC, IBM_VERSION); |
| 464 | printk(IBM_INFO "%s\n", IBM_URL); |
| 465 | |
Henrique de Moraes Holschuh | 3945ac3 | 2007-02-06 19:13:44 -0200 | [diff] [blame] | 466 | if (ibm_thinkpad_ec_found) |
| 467 | printk(IBM_INFO "ThinkPad EC firmware %s\n", |
| 468 | ibm_thinkpad_ec_found); |
| 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return 0; |
| 471 | } |
| 472 | |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 473 | static int ibm_acpi_driver_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
| 475 | int len = 0; |
| 476 | |
| 477 | len += sprintf(p + len, "driver:\t\t%s\n", IBM_DESC); |
| 478 | len += sprintf(p + len, "version:\t%s\n", IBM_VERSION); |
| 479 | |
| 480 | return len; |
| 481 | } |
| 482 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 483 | /************************************************************************* |
| 484 | * Hotkey subdriver |
| 485 | */ |
| 486 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 487 | static int hotkey_supported; |
| 488 | static int hotkey_mask_supported; |
| 489 | static int hotkey_orig_status; |
| 490 | static int hotkey_orig_mask; |
| 491 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 492 | static int hotkey_init(void) |
| 493 | { |
| 494 | /* hotkey not supported on 570 */ |
| 495 | hotkey_supported = hkey_handle != NULL; |
| 496 | |
| 497 | if (hotkey_supported) { |
| 498 | /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p, |
| 499 | A30, R30, R31, T20-22, X20-21, X22-24 */ |
| 500 | hotkey_mask_supported = |
| 501 | acpi_evalf(hkey_handle, NULL, "DHKN", "qv"); |
| 502 | |
| 503 | if (!hotkey_get(&hotkey_orig_status, &hotkey_orig_mask)) |
| 504 | return -ENODEV; |
| 505 | } |
| 506 | |
| 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | static void hotkey_exit(void) |
| 511 | { |
| 512 | if (hotkey_supported) |
| 513 | hotkey_set(hotkey_orig_status, hotkey_orig_mask); |
| 514 | } |
| 515 | |
| 516 | static void hotkey_notify(struct ibm_struct *ibm, u32 event) |
| 517 | { |
| 518 | int hkey; |
| 519 | |
| 520 | if (acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) |
| 521 | acpi_bus_generate_event(ibm->device, event, hkey); |
| 522 | else { |
| 523 | printk(IBM_ERR "unknown hotkey event %d\n", event); |
| 524 | acpi_bus_generate_event(ibm->device, event, 0); |
| 525 | } |
| 526 | } |
| 527 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 528 | static int hotkey_get(int *status, int *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
| 530 | if (!acpi_evalf(hkey_handle, status, "DHKC", "d")) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 531 | return 0; |
| 532 | |
| 533 | if (hotkey_mask_supported) |
| 534 | if (!acpi_evalf(hkey_handle, mask, "DHKN", "d")) |
| 535 | return 0; |
| 536 | |
| 537 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 540 | static int hotkey_set(int status, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
| 542 | int i; |
| 543 | |
| 544 | if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return 0; |
| 546 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 547 | if (hotkey_mask_supported) |
| 548 | for (i = 0; i < 32; i++) { |
| 549 | int bit = ((1 << i) & mask) != 0; |
| 550 | if (!acpi_evalf(hkey_handle, |
| 551 | NULL, "MHKM", "vdd", i + 1, bit)) |
| 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | return 1; |
| 556 | } |
| 557 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 558 | static int hotkey_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | { |
| 560 | int status, mask; |
| 561 | int len = 0; |
| 562 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 563 | if (!hotkey_supported) { |
| 564 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 565 | return len; |
| 566 | } |
| 567 | |
| 568 | if (!hotkey_get(&status, &mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | return -EIO; |
| 570 | |
| 571 | len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0)); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 572 | if (hotkey_mask_supported) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | len += sprintf(p + len, "mask:\t\t0x%04x\n", mask); |
| 574 | len += sprintf(p + len, |
| 575 | "commands:\tenable, disable, reset, <mask>\n"); |
| 576 | } else { |
| 577 | len += sprintf(p + len, "mask:\t\tnot supported\n"); |
| 578 | len += sprintf(p + len, "commands:\tenable, disable, reset\n"); |
| 579 | } |
| 580 | |
| 581 | return len; |
| 582 | } |
| 583 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 584 | static int hotkey_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | { |
| 586 | int status, mask; |
| 587 | char *cmd; |
| 588 | int do_cmd = 0; |
| 589 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 590 | if (!hotkey_supported) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | return -ENODEV; |
| 592 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 593 | if (!hotkey_get(&status, &mask)) |
| 594 | return -EIO; |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | while ((cmd = next_cmd(&buf))) { |
| 597 | if (strlencmp(cmd, "enable") == 0) { |
| 598 | status = 1; |
| 599 | } else if (strlencmp(cmd, "disable") == 0) { |
| 600 | status = 0; |
| 601 | } else if (strlencmp(cmd, "reset") == 0) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 602 | status = hotkey_orig_status; |
| 603 | mask = hotkey_orig_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } else if (sscanf(cmd, "0x%x", &mask) == 1) { |
| 605 | /* mask set */ |
| 606 | } else if (sscanf(cmd, "%x", &mask) == 1) { |
| 607 | /* mask set */ |
| 608 | } else |
| 609 | return -EINVAL; |
| 610 | do_cmd = 1; |
| 611 | } |
| 612 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 613 | if (do_cmd && !hotkey_set(status, mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | return -EIO; |
| 615 | |
| 616 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 617 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 619 | /************************************************************************* |
| 620 | * Bluetooth subdriver |
| 621 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 623 | static int bluetooth_supported; |
| 624 | |
| 625 | static int bluetooth_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 627 | /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p, |
| 628 | G4x, R30, R31, R40e, R50e, T20-22, X20-21 */ |
| 629 | bluetooth_supported = hkey_handle && |
| 630 | acpi_evalf(hkey_handle, NULL, "GBDC", "qv"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | return 0; |
| 633 | } |
| 634 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 635 | static int bluetooth_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { |
| 637 | int status; |
| 638 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 639 | if (!bluetooth_supported || |
| 640 | !acpi_evalf(hkey_handle, &status, "GBDC", "d")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | status = 0; |
| 642 | |
| 643 | return status; |
| 644 | } |
| 645 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 646 | static int bluetooth_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | { |
| 648 | int len = 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 649 | int status = bluetooth_status(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 651 | if (!bluetooth_supported) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 653 | else if (!(status & 1)) |
| 654 | len += sprintf(p + len, "status:\t\tnot installed\n"); |
| 655 | else { |
| 656 | len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 1)); |
| 657 | len += sprintf(p + len, "commands:\tenable, disable\n"); |
| 658 | } |
| 659 | |
| 660 | return len; |
| 661 | } |
| 662 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 663 | static int bluetooth_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 665 | int status = bluetooth_status(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | char *cmd; |
| 667 | int do_cmd = 0; |
| 668 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 669 | if (!bluetooth_supported) |
| 670 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
| 672 | while ((cmd = next_cmd(&buf))) { |
| 673 | if (strlencmp(cmd, "enable") == 0) { |
| 674 | status |= 2; |
| 675 | } else if (strlencmp(cmd, "disable") == 0) { |
| 676 | status &= ~2; |
| 677 | } else |
| 678 | return -EINVAL; |
| 679 | do_cmd = 1; |
| 680 | } |
| 681 | |
| 682 | if (do_cmd && !acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status)) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 683 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 688 | /************************************************************************* |
| 689 | * Wan subdriver |
| 690 | */ |
| 691 | |
Jeremy Fitzhardinge | 42adb53 | 2006-06-01 17:41:00 -0400 | [diff] [blame] | 692 | static int wan_supported; |
| 693 | |
| 694 | static int wan_init(void) |
| 695 | { |
| 696 | wan_supported = hkey_handle && |
| 697 | acpi_evalf(hkey_handle, NULL, "GWAN", "qv"); |
| 698 | |
| 699 | return 0; |
| 700 | } |
| 701 | |
| 702 | static int wan_status(void) |
| 703 | { |
| 704 | int status; |
| 705 | |
Henrique de Moraes Holschuh | 8d29726 | 2006-11-24 11:47:07 -0200 | [diff] [blame] | 706 | if (!wan_supported || !acpi_evalf(hkey_handle, &status, "GWAN", "d")) |
Jeremy Fitzhardinge | 42adb53 | 2006-06-01 17:41:00 -0400 | [diff] [blame] | 707 | status = 0; |
| 708 | |
| 709 | return status; |
| 710 | } |
| 711 | |
| 712 | static int wan_read(char *p) |
| 713 | { |
| 714 | int len = 0; |
| 715 | int status = wan_status(); |
| 716 | |
| 717 | if (!wan_supported) |
| 718 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 719 | else if (!(status & 1)) |
| 720 | len += sprintf(p + len, "status:\t\tnot installed\n"); |
| 721 | else { |
| 722 | len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 1)); |
| 723 | len += sprintf(p + len, "commands:\tenable, disable\n"); |
| 724 | } |
| 725 | |
| 726 | return len; |
| 727 | } |
| 728 | |
| 729 | static int wan_write(char *buf) |
| 730 | { |
| 731 | int status = wan_status(); |
| 732 | char *cmd; |
| 733 | int do_cmd = 0; |
| 734 | |
| 735 | if (!wan_supported) |
| 736 | return -ENODEV; |
| 737 | |
| 738 | while ((cmd = next_cmd(&buf))) { |
| 739 | if (strlencmp(cmd, "enable") == 0) { |
| 740 | status |= 2; |
| 741 | } else if (strlencmp(cmd, "disable") == 0) { |
| 742 | status &= ~2; |
| 743 | } else |
| 744 | return -EINVAL; |
| 745 | do_cmd = 1; |
| 746 | } |
| 747 | |
| 748 | if (do_cmd && !acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status)) |
| 749 | return -EIO; |
| 750 | |
| 751 | return 0; |
| 752 | } |
| 753 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 754 | /************************************************************************* |
| 755 | * Video subdriver |
| 756 | */ |
| 757 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 758 | static enum video_access_mode video_supported; |
| 759 | static int video_orig_autosw; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 760 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 761 | IBM_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */ |
| 762 | "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */ |
| 763 | "\\_SB.PCI0.VID0", /* 770e */ |
| 764 | "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */ |
| 765 | "\\_SB.PCI0.AGP.VID", /* all others */ |
| 766 | ); /* R30, R31 */ |
| 767 | |
| 768 | IBM_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */ |
| 769 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 770 | static int video_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 772 | int ivga; |
| 773 | |
| 774 | if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga) |
| 775 | /* G41, assume IVGA doesn't change */ |
| 776 | vid_handle = vid2_handle; |
| 777 | |
| 778 | if (!vid_handle) |
| 779 | /* video switching not supported on R30, R31 */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 780 | video_supported = IBMACPI_VIDEO_NONE; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 781 | else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd")) |
| 782 | /* 570 */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 783 | video_supported = IBMACPI_VIDEO_570; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 784 | else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd")) |
| 785 | /* 600e/x, 770e, 770x */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 786 | video_supported = IBMACPI_VIDEO_770; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 787 | else |
| 788 | /* all others */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 789 | video_supported = IBMACPI_VIDEO_NEW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | |
| 791 | return 0; |
| 792 | } |
| 793 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 794 | static void video_exit(void) |
| 795 | { |
| 796 | acpi_evalf(vid_handle, NULL, "_DOS", "vd", video_orig_autosw); |
| 797 | } |
| 798 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 799 | static int video_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
| 801 | int status = 0; |
| 802 | int i; |
| 803 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 804 | if (video_supported == IBMACPI_VIDEO_570) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 805 | if (acpi_evalf(NULL, &i, "\\_SB.PHS", "dd", 0x87)) |
| 806 | status = i & 3; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 807 | } else if (video_supported == IBMACPI_VIDEO_770) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 808 | if (acpi_evalf(NULL, &i, "\\VCDL", "d")) |
| 809 | status |= 0x01 * i; |
| 810 | if (acpi_evalf(NULL, &i, "\\VCDC", "d")) |
| 811 | status |= 0x02 * i; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 812 | } else if (video_supported == IBMACPI_VIDEO_NEW) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 813 | acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1); |
| 814 | if (acpi_evalf(NULL, &i, "\\VCDC", "d")) |
| 815 | status |= 0x02 * i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 817 | acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0); |
| 818 | if (acpi_evalf(NULL, &i, "\\VCDL", "d")) |
| 819 | status |= 0x01 * i; |
| 820 | if (acpi_evalf(NULL, &i, "\\VCDD", "d")) |
| 821 | status |= 0x08 * i; |
| 822 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| 824 | return status; |
| 825 | } |
| 826 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 827 | static int video_autosw(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 829 | int autosw = 0; |
| 830 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 831 | if (video_supported == IBMACPI_VIDEO_570) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 832 | acpi_evalf(vid_handle, &autosw, "SWIT", "d"); |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 833 | else if (video_supported == IBMACPI_VIDEO_770 || |
| 834 | video_supported == IBMACPI_VIDEO_NEW) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 835 | acpi_evalf(vid_handle, &autosw, "^VDEE", "d"); |
| 836 | |
| 837 | return autosw & 1; |
| 838 | } |
| 839 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 840 | static int video_switch(void) |
| 841 | { |
| 842 | int autosw = video_autosw(); |
| 843 | int ret; |
| 844 | |
| 845 | if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", 1)) |
| 846 | return -EIO; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 847 | ret = video_supported == IBMACPI_VIDEO_570 ? |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 848 | acpi_evalf(ec_handle, NULL, "_Q16", "v") : |
| 849 | acpi_evalf(vid_handle, NULL, "VSWT", "v"); |
| 850 | acpi_evalf(vid_handle, NULL, "_DOS", "vd", autosw); |
| 851 | |
| 852 | return ret; |
| 853 | } |
| 854 | |
| 855 | static int video_expand(void) |
| 856 | { |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 857 | if (video_supported == IBMACPI_VIDEO_570) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 858 | return acpi_evalf(ec_handle, NULL, "_Q17", "v"); |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 859 | else if (video_supported == IBMACPI_VIDEO_770) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 860 | return acpi_evalf(vid_handle, NULL, "VEXP", "v"); |
| 861 | else |
| 862 | return acpi_evalf(NULL, NULL, "\\VEXP", "v"); |
| 863 | } |
| 864 | |
| 865 | static int video_switch2(int status) |
| 866 | { |
| 867 | int ret; |
| 868 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 869 | if (video_supported == IBMACPI_VIDEO_570) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 870 | ret = acpi_evalf(NULL, NULL, |
| 871 | "\\_SB.PHS2", "vdd", 0x8b, status | 0x80); |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 872 | } else if (video_supported == IBMACPI_VIDEO_770) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 873 | int autosw = video_autosw(); |
| 874 | if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", 1)) |
| 875 | return -EIO; |
| 876 | |
| 877 | ret = acpi_evalf(vid_handle, NULL, |
| 878 | "ASWT", "vdd", status * 0x100, 0); |
| 879 | |
| 880 | acpi_evalf(vid_handle, NULL, "_DOS", "vd", autosw); |
| 881 | } else { |
| 882 | ret = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) && |
| 883 | acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1); |
| 884 | } |
| 885 | |
| 886 | return ret; |
| 887 | } |
| 888 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 889 | static int video_read(char *p) |
| 890 | { |
| 891 | int status = video_status(); |
| 892 | int autosw = video_autosw(); |
| 893 | int len = 0; |
| 894 | |
| 895 | if (!video_supported) { |
| 896 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 897 | return len; |
| 898 | } |
| 899 | |
| 900 | len += sprintf(p + len, "status:\t\tsupported\n"); |
| 901 | len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0)); |
| 902 | len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1)); |
| 903 | if (video_supported == IBMACPI_VIDEO_NEW) |
| 904 | len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3)); |
| 905 | len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0)); |
| 906 | len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n"); |
| 907 | len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n"); |
| 908 | if (video_supported == IBMACPI_VIDEO_NEW) |
| 909 | len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n"); |
| 910 | len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n"); |
| 911 | len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n"); |
| 912 | |
| 913 | return len; |
| 914 | } |
| 915 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 916 | static int video_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | { |
| 918 | char *cmd; |
| 919 | int enable, disable, status; |
| 920 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 921 | if (!video_supported) |
| 922 | return -ENODEV; |
| 923 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | enable = disable = 0; |
| 925 | |
| 926 | while ((cmd = next_cmd(&buf))) { |
| 927 | if (strlencmp(cmd, "lcd_enable") == 0) { |
| 928 | enable |= 0x01; |
| 929 | } else if (strlencmp(cmd, "lcd_disable") == 0) { |
| 930 | disable |= 0x01; |
| 931 | } else if (strlencmp(cmd, "crt_enable") == 0) { |
| 932 | enable |= 0x02; |
| 933 | } else if (strlencmp(cmd, "crt_disable") == 0) { |
| 934 | disable |= 0x02; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 935 | } else if (video_supported == IBMACPI_VIDEO_NEW && |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 936 | strlencmp(cmd, "dvi_enable") == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | enable |= 0x08; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 938 | } else if (video_supported == IBMACPI_VIDEO_NEW && |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 939 | strlencmp(cmd, "dvi_disable") == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | disable |= 0x08; |
| 941 | } else if (strlencmp(cmd, "auto_enable") == 0) { |
| 942 | if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", 1)) |
| 943 | return -EIO; |
| 944 | } else if (strlencmp(cmd, "auto_disable") == 0) { |
| 945 | if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", 0)) |
| 946 | return -EIO; |
| 947 | } else if (strlencmp(cmd, "video_switch") == 0) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 948 | if (!video_switch()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | return -EIO; |
| 950 | } else if (strlencmp(cmd, "expand_toggle") == 0) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 951 | if (!video_expand()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | return -EIO; |
| 953 | } else |
| 954 | return -EINVAL; |
| 955 | } |
| 956 | |
| 957 | if (enable || disable) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 958 | status = (video_status() & 0x0f & ~disable) | enable; |
| 959 | if (!video_switch2(status)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | return -EIO; |
| 961 | } |
| 962 | |
| 963 | return 0; |
| 964 | } |
| 965 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 966 | /************************************************************************* |
| 967 | * Light (thinklight) subdriver |
| 968 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 970 | static int light_supported; |
| 971 | static int light_status_supported; |
| 972 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 973 | IBM_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */ |
| 974 | IBM_HANDLE(ledb, ec, "LEDB"); /* G4x */ |
| 975 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 976 | static int light_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 978 | /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */ |
| 979 | light_supported = (cmos_handle || lght_handle) && !ledb_handle; |
| 980 | |
| 981 | if (light_supported) |
| 982 | /* light status not supported on |
| 983 | 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */ |
| 984 | light_status_supported = acpi_evalf(ec_handle, NULL, |
| 985 | "KBLT", "qv"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | |
| 987 | return 0; |
| 988 | } |
| 989 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 990 | static int light_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | { |
| 992 | int len = 0; |
| 993 | int status = 0; |
| 994 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 995 | if (!light_supported) { |
| 996 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 997 | } else if (!light_status_supported) { |
| 998 | len += sprintf(p + len, "status:\t\tunknown\n"); |
| 999 | len += sprintf(p + len, "commands:\ton, off\n"); |
| 1000 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | if (!acpi_evalf(ec_handle, &status, "KBLT", "d")) |
| 1002 | return -EIO; |
| 1003 | len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0)); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1004 | len += sprintf(p + len, "commands:\ton, off\n"); |
| 1005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
| 1007 | return len; |
| 1008 | } |
| 1009 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1010 | static int light_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | { |
| 1012 | int cmos_cmd, lght_cmd; |
| 1013 | char *cmd; |
| 1014 | int success; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1015 | |
| 1016 | if (!light_supported) |
| 1017 | return -ENODEV; |
| 1018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | while ((cmd = next_cmd(&buf))) { |
| 1020 | if (strlencmp(cmd, "on") == 0) { |
| 1021 | cmos_cmd = 0x0c; |
| 1022 | lght_cmd = 1; |
| 1023 | } else if (strlencmp(cmd, "off") == 0) { |
| 1024 | cmos_cmd = 0x0d; |
| 1025 | lght_cmd = 0; |
| 1026 | } else |
| 1027 | return -EINVAL; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | success = cmos_handle ? |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1030 | acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd) : |
| 1031 | acpi_evalf(lght_handle, NULL, NULL, "vd", lght_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | if (!success) |
| 1033 | return -EIO; |
| 1034 | } |
| 1035 | |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1039 | /************************************************************************* |
| 1040 | * Dock subdriver |
| 1041 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1043 | /* don't list other alternatives as we install a notify handler on the 570 */ |
| 1044 | IBM_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */ |
Henrique de Moraes Holschuh | d2fadbb | 2007-01-11 02:58:15 -0500 | [diff] [blame] | 1045 | |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 1046 | #ifdef CONFIG_THINKPAD_ACPI_DOCK |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1047 | |
| 1048 | IBM_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */ |
| 1049 | "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */ |
| 1050 | "\\_SB.PCI0.PCI1.DOCK", /* all others */ |
| 1051 | "\\_SB.PCI.ISA.SLCE", /* 570 */ |
| 1052 | ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */ |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | #define dock_docked() (_sta(dock_handle) & 1) |
| 1055 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1056 | static void dock_notify(struct ibm_struct *ibm, u32 event) |
| 1057 | { |
| 1058 | int docked = dock_docked(); |
| 1059 | int pci = ibm->hid && strstr(ibm->hid, IBM_PCI_HID); |
| 1060 | |
| 1061 | if (event == 1 && !pci) /* 570 */ |
| 1062 | acpi_bus_generate_event(ibm->device, event, 1); /* button */ |
| 1063 | else if (event == 1 && pci) /* 570 */ |
| 1064 | acpi_bus_generate_event(ibm->device, event, 3); /* dock */ |
| 1065 | else if (event == 3 && docked) |
| 1066 | acpi_bus_generate_event(ibm->device, event, 1); /* button */ |
| 1067 | else if (event == 3 && !docked) |
| 1068 | acpi_bus_generate_event(ibm->device, event, 2); /* undock */ |
| 1069 | else if (event == 0 && docked) |
| 1070 | acpi_bus_generate_event(ibm->device, event, 3); /* dock */ |
| 1071 | else { |
| 1072 | printk(IBM_ERR "unknown dock event %d, status %d\n", |
| 1073 | event, _sta(dock_handle)); |
| 1074 | acpi_bus_generate_event(ibm->device, event, 0); /* unknown */ |
| 1075 | } |
| 1076 | } |
| 1077 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1078 | static int dock_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | { |
| 1080 | int len = 0; |
| 1081 | int docked = dock_docked(); |
| 1082 | |
| 1083 | if (!dock_handle) |
| 1084 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 1085 | else if (!docked) |
| 1086 | len += sprintf(p + len, "status:\t\tundocked\n"); |
| 1087 | else { |
| 1088 | len += sprintf(p + len, "status:\t\tdocked\n"); |
| 1089 | len += sprintf(p + len, "commands:\tdock, undock\n"); |
| 1090 | } |
| 1091 | |
| 1092 | return len; |
| 1093 | } |
| 1094 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1095 | static int dock_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | { |
| 1097 | char *cmd; |
| 1098 | |
| 1099 | if (!dock_docked()) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1100 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | |
| 1102 | while ((cmd = next_cmd(&buf))) { |
| 1103 | if (strlencmp(cmd, "undock") == 0) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1104 | if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) || |
| 1105 | !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | return -EIO; |
| 1107 | } else if (strlencmp(cmd, "dock") == 0) { |
| 1108 | if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1)) |
| 1109 | return -EIO; |
| 1110 | } else |
| 1111 | return -EINVAL; |
| 1112 | } |
| 1113 | |
| 1114 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1115 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 1117 | #endif /* CONFIG_THINKPAD_ACPI_DOCK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1119 | /************************************************************************* |
| 1120 | * Bay subdriver |
| 1121 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 1123 | #ifdef CONFIG_THINKPAD_ACPI_BAY |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1124 | static int bay_status_supported; |
| 1125 | static int bay_status2_supported; |
| 1126 | static int bay_eject_supported; |
| 1127 | static int bay_eject2_supported; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1129 | IBM_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */ |
| 1130 | "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */ |
| 1131 | "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */ |
| 1132 | "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */ |
| 1133 | ); /* A21e, R30, R31 */ |
| 1134 | IBM_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */ |
| 1135 | "_EJ0", /* all others */ |
| 1136 | ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */ |
| 1137 | IBM_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */ |
| 1138 | "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */ |
| 1139 | ); /* all others */ |
| 1140 | IBM_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */ |
| 1141 | "_EJ0", /* 770x */ |
| 1142 | ); /* all others */ |
| 1143 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1144 | static int bay_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1146 | bay_status_supported = bay_handle && |
| 1147 | acpi_evalf(bay_handle, NULL, "_STA", "qv"); |
| 1148 | bay_status2_supported = bay2_handle && |
| 1149 | acpi_evalf(bay2_handle, NULL, "_STA", "qv"); |
| 1150 | |
| 1151 | bay_eject_supported = bay_handle && bay_ej_handle && |
| 1152 | (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental); |
| 1153 | bay_eject2_supported = bay2_handle && bay2_ej_handle && |
| 1154 | (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
| 1156 | return 0; |
| 1157 | } |
| 1158 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1159 | static void bay_notify(struct ibm_struct *ibm, u32 event) |
| 1160 | { |
| 1161 | acpi_bus_generate_event(ibm->device, event, 0); |
| 1162 | } |
| 1163 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1164 | #define bay_occupied(b) (_sta(b##_handle) & 1) |
| 1165 | |
| 1166 | static int bay_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | { |
| 1168 | int len = 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1169 | int occupied = bay_occupied(bay); |
| 1170 | int occupied2 = bay_occupied(bay2); |
| 1171 | int eject, eject2; |
| 1172 | |
| 1173 | len += sprintf(p + len, "status:\t\t%s\n", bay_status_supported ? |
| 1174 | (occupied ? "occupied" : "unoccupied") : |
| 1175 | "not supported"); |
| 1176 | if (bay_status2_supported) |
| 1177 | len += sprintf(p + len, "status2:\t%s\n", occupied2 ? |
| 1178 | "occupied" : "unoccupied"); |
| 1179 | |
| 1180 | eject = bay_eject_supported && occupied; |
| 1181 | eject2 = bay_eject2_supported && occupied2; |
| 1182 | |
| 1183 | if (eject && eject2) |
| 1184 | len += sprintf(p + len, "commands:\teject, eject2\n"); |
| 1185 | else if (eject) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | len += sprintf(p + len, "commands:\teject\n"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1187 | else if (eject2) |
| 1188 | len += sprintf(p + len, "commands:\teject2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
| 1190 | return len; |
| 1191 | } |
| 1192 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1193 | static int bay_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | { |
| 1195 | char *cmd; |
| 1196 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1197 | if (!bay_eject_supported && !bay_eject2_supported) |
| 1198 | return -ENODEV; |
| 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | while ((cmd = next_cmd(&buf))) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1201 | if (bay_eject_supported && strlencmp(cmd, "eject") == 0) { |
| 1202 | if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1)) |
| 1203 | return -EIO; |
| 1204 | } else if (bay_eject2_supported && |
| 1205 | strlencmp(cmd, "eject2") == 0) { |
| 1206 | if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | return -EIO; |
| 1208 | } else |
| 1209 | return -EINVAL; |
| 1210 | } |
| 1211 | |
| 1212 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1213 | } |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 1214 | #endif /* CONFIG_THINKPAD_ACPI_BAY */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1216 | /************************************************************************* |
| 1217 | * CMOS subdriver |
| 1218 | */ |
| 1219 | |
| 1220 | static int cmos_eval(int cmos_cmd) |
| 1221 | { |
| 1222 | if (cmos_handle) |
| 1223 | return acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd); |
| 1224 | else |
| 1225 | return 1; |
| 1226 | } |
| 1227 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1228 | static int cmos_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | { |
| 1230 | int len = 0; |
| 1231 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1232 | /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p, |
| 1233 | R30, R31, T20-22, X20-21 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | if (!cmos_handle) |
| 1235 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 1236 | else { |
| 1237 | len += sprintf(p + len, "status:\t\tsupported\n"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1238 | len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | } |
| 1240 | |
| 1241 | return len; |
| 1242 | } |
| 1243 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1244 | static int cmos_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | { |
| 1246 | char *cmd; |
| 1247 | int cmos_cmd; |
| 1248 | |
| 1249 | if (!cmos_handle) |
| 1250 | return -EINVAL; |
| 1251 | |
| 1252 | while ((cmd = next_cmd(&buf))) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1253 | if (sscanf(cmd, "%u", &cmos_cmd) == 1 && |
| 1254 | cmos_cmd >= 0 && cmos_cmd <= 21) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | /* cmos_cmd set */ |
| 1256 | } else |
| 1257 | return -EINVAL; |
| 1258 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1259 | if (!cmos_eval(cmos_cmd)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | return -EIO; |
| 1261 | } |
| 1262 | |
| 1263 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1264 | } |
| 1265 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1266 | |
| 1267 | /************************************************************************* |
| 1268 | * LED subdriver |
| 1269 | */ |
| 1270 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1271 | static enum led_access_mode led_supported; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1272 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1273 | IBM_HANDLE(led, ec, "SLED", /* 570 */ |
| 1274 | "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */ |
| 1275 | "LED", /* all others */ |
| 1276 | ); /* R30, R31 */ |
| 1277 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1278 | static int led_init(void) |
| 1279 | { |
| 1280 | if (!led_handle) |
| 1281 | /* led not supported on R30, R31 */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1282 | led_supported = IBMACPI_LED_NONE; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1283 | else if (strlencmp(led_path, "SLED") == 0) |
| 1284 | /* 570 */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1285 | led_supported = IBMACPI_LED_570; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1286 | else if (strlencmp(led_path, "SYSL") == 0) |
| 1287 | /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1288 | led_supported = IBMACPI_LED_OLD; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1289 | else |
| 1290 | /* all others */ |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1291 | led_supported = IBMACPI_LED_NEW; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1292 | |
| 1293 | return 0; |
| 1294 | } |
| 1295 | |
| 1296 | #define led_status(s) ((s) == 0 ? "off" : ((s) == 1 ? "on" : "blinking")) |
| 1297 | |
| 1298 | static int led_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | { |
| 1300 | int len = 0; |
| 1301 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1302 | if (!led_supported) { |
| 1303 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 1304 | return len; |
| 1305 | } |
| 1306 | len += sprintf(p + len, "status:\t\tsupported\n"); |
| 1307 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1308 | if (led_supported == IBMACPI_LED_570) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1309 | /* 570 */ |
| 1310 | int i, status; |
| 1311 | for (i = 0; i < 8; i++) { |
| 1312 | if (!acpi_evalf(ec_handle, |
| 1313 | &status, "GLED", "dd", 1 << i)) |
| 1314 | return -EIO; |
| 1315 | len += sprintf(p + len, "%d:\t\t%s\n", |
| 1316 | i, led_status(status)); |
| 1317 | } |
| 1318 | } |
| 1319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | len += sprintf(p + len, "commands:\t" |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1321 | "<led> on, <led> off, <led> blink (<led> is 0-7)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
| 1323 | return len; |
| 1324 | } |
| 1325 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1326 | /* off, on, blink */ |
| 1327 | static const int led_sled_arg1[] = { 0, 1, 3 }; |
| 1328 | static const int led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */ |
| 1329 | static const int led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */ |
| 1330 | static const int led_led_arg1[] = { 0, 0x80, 0xc0 }; |
| 1331 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1332 | static int led_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | { |
| 1334 | char *cmd; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1335 | int led, ind, ret; |
| 1336 | |
| 1337 | if (!led_supported) |
| 1338 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
| 1340 | while ((cmd = next_cmd(&buf))) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1341 | if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | return -EINVAL; |
| 1343 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1344 | if (strstr(cmd, "off")) { |
| 1345 | ind = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | } else if (strstr(cmd, "on")) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1347 | ind = 1; |
| 1348 | } else if (strstr(cmd, "blink")) { |
| 1349 | ind = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | } else |
| 1351 | return -EINVAL; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1352 | |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1353 | if (led_supported == IBMACPI_LED_570) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1354 | /* 570 */ |
| 1355 | led = 1 << led; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | if (!acpi_evalf(led_handle, NULL, NULL, "vdd", |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1357 | led, led_sled_arg1[ind])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | return -EIO; |
Henrique de Moraes Holschuh | 9a8e173 | 2006-11-25 16:36:00 -0200 | [diff] [blame] | 1359 | } else if (led_supported == IBMACPI_LED_OLD) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1360 | /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */ |
| 1361 | led = 1 << led; |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 1362 | ret = ec_write(IBMACPI_LED_EC_HLMS, led); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1363 | if (ret >= 0) |
| 1364 | ret = |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 1365 | ec_write(IBMACPI_LED_EC_HLBL, |
| 1366 | led * led_exp_hlbl[ind]); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1367 | if (ret >= 0) |
| 1368 | ret = |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 1369 | ec_write(IBMACPI_LED_EC_HLCL, |
| 1370 | led * led_exp_hlcl[ind]); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1371 | if (ret < 0) |
| 1372 | return ret; |
| 1373 | } else { |
| 1374 | /* all others */ |
| 1375 | if (!acpi_evalf(led_handle, NULL, NULL, "vdd", |
| 1376 | led, led_led_arg1[ind])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | return -EIO; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1378 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | } |
| 1380 | |
| 1381 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1382 | } |
| 1383 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1384 | /************************************************************************* |
| 1385 | * Beep subdriver |
| 1386 | */ |
| 1387 | |
| 1388 | IBM_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */ |
| 1389 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1390 | static int beep_read(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | { |
| 1392 | int len = 0; |
| 1393 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1394 | if (!beep_handle) |
| 1395 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 1396 | else { |
| 1397 | len += sprintf(p + len, "status:\t\tsupported\n"); |
| 1398 | len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n"); |
| 1399 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
| 1401 | return len; |
| 1402 | } |
| 1403 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1404 | static int beep_write(char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | { |
| 1406 | char *cmd; |
| 1407 | int beep_cmd; |
| 1408 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1409 | if (!beep_handle) |
| 1410 | return -ENODEV; |
| 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | while ((cmd = next_cmd(&buf))) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1413 | if (sscanf(cmd, "%u", &beep_cmd) == 1 && |
| 1414 | beep_cmd >= 0 && beep_cmd <= 17) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | /* beep_cmd set */ |
| 1416 | } else |
| 1417 | return -EINVAL; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1418 | if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | return -EIO; |
| 1420 | } |
| 1421 | |
| 1422 | return 0; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1423 | } |
| 1424 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1425 | /************************************************************************* |
| 1426 | * Thermal subdriver |
| 1427 | */ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1428 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1429 | static enum thermal_access_mode thermal_read_mode; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1430 | |
| 1431 | static int thermal_init(void) |
| 1432 | { |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1433 | u8 t, ta1, ta2; |
| 1434 | int i; |
| 1435 | int acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1436 | |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1437 | if (ibm_thinkpad_ec_found && experimental) { |
| 1438 | /* |
| 1439 | * Direct EC access mode: sensors at registers |
| 1440 | * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for |
| 1441 | * non-implemented, thermal sensors return 0x80 when |
| 1442 | * not available |
| 1443 | */ |
| 1444 | |
| 1445 | ta1 = ta2 = 0; |
| 1446 | for (i = 0; i < 8; i++) { |
| 1447 | if (likely(acpi_ec_read(0x78 + i, &t))) { |
| 1448 | ta1 |= t; |
| 1449 | } else { |
| 1450 | ta1 = 0; |
| 1451 | break; |
| 1452 | } |
| 1453 | if (likely(acpi_ec_read(0xC0 + i, &t))) { |
| 1454 | ta2 |= t; |
| 1455 | } else { |
| 1456 | ta1 = 0; |
| 1457 | break; |
| 1458 | } |
| 1459 | } |
| 1460 | if (ta1 == 0) { |
| 1461 | /* This is sheer paranoia, but we handle it anyway */ |
| 1462 | if (acpi_tmp7) { |
| 1463 | printk(IBM_ERR |
| 1464 | "ThinkPad ACPI EC access misbehaving, " |
| 1465 | "falling back to ACPI TMPx access mode\n"); |
| 1466 | thermal_read_mode = IBMACPI_THERMAL_ACPI_TMP07; |
| 1467 | } else { |
| 1468 | printk(IBM_ERR |
| 1469 | "ThinkPad ACPI EC access misbehaving, " |
| 1470 | "disabling thermal sensors access\n"); |
| 1471 | thermal_read_mode = IBMACPI_THERMAL_NONE; |
| 1472 | } |
| 1473 | } else { |
| 1474 | thermal_read_mode = |
| 1475 | (ta2 != 0) ? |
| 1476 | IBMACPI_THERMAL_TPEC_16 : IBMACPI_THERMAL_TPEC_8; |
| 1477 | } |
| 1478 | } else if (acpi_tmp7) { |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1479 | if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) { |
| 1480 | /* 600e/x, 770e, 770x */ |
| 1481 | thermal_read_mode = IBMACPI_THERMAL_ACPI_UPDT; |
| 1482 | } else { |
| 1483 | /* Standard ACPI TMPx access, max 8 sensors */ |
| 1484 | thermal_read_mode = IBMACPI_THERMAL_ACPI_TMP07; |
| 1485 | } |
| 1486 | } else { |
| 1487 | /* temperatures not supported on 570, G4x, R30, R31, R32 */ |
| 1488 | thermal_read_mode = IBMACPI_THERMAL_NONE; |
| 1489 | } |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1490 | |
| 1491 | return 0; |
| 1492 | } |
| 1493 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1494 | static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s) |
| 1495 | { |
| 1496 | int i, t; |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1497 | s8 tmp; |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1498 | char tmpi[] = "TMPi"; |
| 1499 | |
| 1500 | if (!s) |
| 1501 | return -EINVAL; |
| 1502 | |
| 1503 | switch (thermal_read_mode) { |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1504 | #if IBMACPI_MAX_THERMAL_SENSORS >= 16 |
| 1505 | case IBMACPI_THERMAL_TPEC_16: |
| 1506 | for (i = 0; i < 8; i++) { |
| 1507 | if (!acpi_ec_read(0xC0 + i, &tmp)) |
| 1508 | return -EIO; |
| 1509 | s->temp[i + 8] = tmp * 1000; |
| 1510 | } |
| 1511 | /* fallthrough */ |
| 1512 | #endif |
| 1513 | case IBMACPI_THERMAL_TPEC_8: |
| 1514 | for (i = 0; i < 8; i++) { |
| 1515 | if (!acpi_ec_read(0x78 + i, &tmp)) |
| 1516 | return -EIO; |
| 1517 | s->temp[i] = tmp * 1000; |
| 1518 | } |
| 1519 | return (thermal_read_mode == IBMACPI_THERMAL_TPEC_16) ? 16 : 8; |
| 1520 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1521 | case IBMACPI_THERMAL_ACPI_UPDT: |
| 1522 | if (!acpi_evalf(ec_handle, NULL, "UPDT", "v")) |
| 1523 | return -EIO; |
| 1524 | for (i = 0; i < 8; i++) { |
| 1525 | tmpi[3] = '0' + i; |
| 1526 | if (!acpi_evalf(ec_handle, &t, tmpi, "d")) |
| 1527 | return -EIO; |
| 1528 | s->temp[i] = (t - 2732) * 100; |
| 1529 | } |
| 1530 | return 8; |
| 1531 | |
| 1532 | case IBMACPI_THERMAL_ACPI_TMP07: |
| 1533 | for (i = 0; i < 8; i++) { |
| 1534 | tmpi[3] = '0' + i; |
| 1535 | if (!acpi_evalf(ec_handle, &t, tmpi, "d")) |
| 1536 | return -EIO; |
| 1537 | s->temp[i] = t * 1000; |
| 1538 | } |
| 1539 | return 8; |
| 1540 | |
| 1541 | case IBMACPI_THERMAL_NONE: |
| 1542 | default: |
| 1543 | return 0; |
| 1544 | } |
| 1545 | } |
| 1546 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1547 | static int thermal_read(char *p) |
| 1548 | { |
| 1549 | int len = 0; |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1550 | int n, i; |
| 1551 | struct ibm_thermal_sensors_struct t; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1552 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1553 | n = thermal_get_sensors(&t); |
| 1554 | if (unlikely(n < 0)) |
| 1555 | return n; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1556 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1557 | len += sprintf(p + len, "temperatures:\t"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1558 | |
Henrique de Moraes Holschuh | a26f878 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 1559 | if (n > 0) { |
| 1560 | for (i = 0; i < (n - 1); i++) |
| 1561 | len += sprintf(p + len, "%d ", t.temp[i] / 1000); |
| 1562 | len += sprintf(p + len, "%d\n", t.temp[i] / 1000); |
| 1563 | } else |
| 1564 | len += sprintf(p + len, "not supported\n"); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1565 | |
| 1566 | return len; |
| 1567 | } |
| 1568 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1569 | /************************************************************************* |
| 1570 | * EC Dump subdriver |
| 1571 | */ |
| 1572 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1573 | static u8 ecdump_regs[256]; |
| 1574 | |
| 1575 | static int ecdump_read(char *p) |
| 1576 | { |
| 1577 | int len = 0; |
| 1578 | int i, j; |
| 1579 | u8 v; |
| 1580 | |
| 1581 | len += sprintf(p + len, "EC " |
| 1582 | " +00 +01 +02 +03 +04 +05 +06 +07" |
| 1583 | " +08 +09 +0a +0b +0c +0d +0e +0f\n"); |
| 1584 | for (i = 0; i < 256; i += 16) { |
| 1585 | len += sprintf(p + len, "EC 0x%02x:", i); |
| 1586 | for (j = 0; j < 16; j++) { |
| 1587 | if (!acpi_ec_read(i + j, &v)) |
| 1588 | break; |
| 1589 | if (v != ecdump_regs[i + j]) |
| 1590 | len += sprintf(p + len, " *%02x", v); |
| 1591 | else |
| 1592 | len += sprintf(p + len, " %02x", v); |
| 1593 | ecdump_regs[i + j] = v; |
| 1594 | } |
| 1595 | len += sprintf(p + len, "\n"); |
| 1596 | if (j != 16) |
| 1597 | break; |
| 1598 | } |
| 1599 | |
| 1600 | /* These are way too dangerous to advertise openly... */ |
| 1601 | #if 0 |
| 1602 | len += sprintf(p + len, "commands:\t0x<offset> 0x<value>" |
| 1603 | " (<offset> is 00-ff, <value> is 00-ff)\n"); |
| 1604 | len += sprintf(p + len, "commands:\t0x<offset> <value> " |
| 1605 | " (<offset> is 00-ff, <value> is 0-255)\n"); |
| 1606 | #endif |
| 1607 | return len; |
| 1608 | } |
| 1609 | |
| 1610 | static int ecdump_write(char *buf) |
| 1611 | { |
| 1612 | char *cmd; |
| 1613 | int i, v; |
| 1614 | |
| 1615 | while ((cmd = next_cmd(&buf))) { |
| 1616 | if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) { |
| 1617 | /* i and v set */ |
| 1618 | } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) { |
| 1619 | /* i and v set */ |
| 1620 | } else |
| 1621 | return -EINVAL; |
| 1622 | if (i >= 0 && i < 256 && v >= 0 && v < 256) { |
| 1623 | if (!acpi_ec_write(i, v)) |
| 1624 | return -EIO; |
| 1625 | } else |
| 1626 | return -EINVAL; |
| 1627 | } |
| 1628 | |
| 1629 | return 0; |
| 1630 | } |
| 1631 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1632 | /************************************************************************* |
| 1633 | * Backlight/brightness subdriver |
| 1634 | */ |
Holger Macht | 8acb025 | 2006-10-20 14:30:28 -0700 | [diff] [blame] | 1635 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1636 | static struct backlight_device *ibm_backlight_device = NULL; |
Holger Macht | 8acb025 | 2006-10-20 14:30:28 -0700 | [diff] [blame] | 1637 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 1638 | static struct backlight_ops ibm_backlight_data = { |
Henrique de Moraes Holschuh | fb87a81 | 2006-11-25 16:35:09 -0200 | [diff] [blame] | 1639 | .get_brightness = brightness_get, |
| 1640 | .update_status = brightness_update_status, |
Henrique de Moraes Holschuh | fb87a81 | 2006-11-25 16:35:09 -0200 | [diff] [blame] | 1641 | }; |
| 1642 | |
| 1643 | static int brightness_init(void) |
| 1644 | { |
Henrique de Moraes Holschuh | adb0058 | 2007-02-22 16:04:55 -0200 | [diff] [blame] | 1645 | int b; |
| 1646 | |
| 1647 | b = brightness_get(NULL); |
| 1648 | if (b < 0) |
| 1649 | return b; |
| 1650 | |
Yu Luming | 519ab5f | 2006-12-19 12:56:15 -0800 | [diff] [blame] | 1651 | ibm_backlight_device = backlight_device_register("ibm", NULL, NULL, |
Henrique de Moraes Holschuh | fb87a81 | 2006-11-25 16:35:09 -0200 | [diff] [blame] | 1652 | &ibm_backlight_data); |
| 1653 | if (IS_ERR(ibm_backlight_device)) { |
| 1654 | printk(IBM_ERR "Could not register backlight device\n"); |
| 1655 | return PTR_ERR(ibm_backlight_device); |
| 1656 | } |
| 1657 | |
Henrique de Moraes Holschuh | adb0058 | 2007-02-22 16:04:55 -0200 | [diff] [blame] | 1658 | ibm_backlight_device->props.max_brightness = 7; |
| 1659 | ibm_backlight_device->props.brightness = b; |
| 1660 | backlight_update_status(ibm_backlight_device); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 1661 | |
Henrique de Moraes Holschuh | fb87a81 | 2006-11-25 16:35:09 -0200 | [diff] [blame] | 1662 | return 0; |
| 1663 | } |
| 1664 | |
| 1665 | static void brightness_exit(void) |
| 1666 | { |
| 1667 | if (ibm_backlight_device) { |
| 1668 | backlight_device_unregister(ibm_backlight_device); |
| 1669 | ibm_backlight_device = NULL; |
| 1670 | } |
| 1671 | } |
| 1672 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1673 | static int brightness_update_status(struct backlight_device *bd) |
| 1674 | { |
| 1675 | return brightness_set( |
| 1676 | (bd->props.fb_blank == FB_BLANK_UNBLANK && |
| 1677 | bd->props.power == FB_BLANK_UNBLANK) ? |
| 1678 | bd->props.brightness : 0); |
| 1679 | } |
| 1680 | |
| 1681 | static int brightness_get(struct backlight_device *bd) |
| 1682 | { |
| 1683 | u8 level; |
| 1684 | if (!acpi_ec_read(brightness_offset, &level)) |
| 1685 | return -EIO; |
| 1686 | |
| 1687 | level &= 0x7; |
| 1688 | |
| 1689 | return level; |
| 1690 | } |
| 1691 | |
| 1692 | static int brightness_set(int value) |
| 1693 | { |
| 1694 | int cmos_cmd, inc, i; |
| 1695 | int current_value = brightness_get(NULL); |
| 1696 | |
| 1697 | value &= 7; |
| 1698 | |
| 1699 | cmos_cmd = value > current_value ? TP_CMOS_BRIGHTNESS_UP : TP_CMOS_BRIGHTNESS_DOWN; |
| 1700 | inc = value > current_value ? 1 : -1; |
| 1701 | for (i = current_value; i != value; i += inc) { |
| 1702 | if (!cmos_eval(cmos_cmd)) |
| 1703 | return -EIO; |
| 1704 | if (!acpi_ec_write(brightness_offset, i + inc)) |
| 1705 | return -EIO; |
| 1706 | } |
| 1707 | |
| 1708 | return 0; |
| 1709 | } |
| 1710 | |
| 1711 | static int brightness_read(char *p) |
| 1712 | { |
| 1713 | int len = 0; |
| 1714 | int level; |
| 1715 | |
| 1716 | if ((level = brightness_get(NULL)) < 0) { |
| 1717 | len += sprintf(p + len, "level:\t\tunreadable\n"); |
| 1718 | } else { |
| 1719 | len += sprintf(p + len, "level:\t\t%d\n", level & 0x7); |
| 1720 | len += sprintf(p + len, "commands:\tup, down\n"); |
| 1721 | len += sprintf(p + len, "commands:\tlevel <level>" |
| 1722 | " (<level> is 0-7)\n"); |
| 1723 | } |
| 1724 | |
| 1725 | return len; |
| 1726 | } |
| 1727 | |
| 1728 | static int brightness_write(char *buf) |
| 1729 | { |
| 1730 | int level; |
| 1731 | int new_level; |
| 1732 | char *cmd; |
| 1733 | |
| 1734 | while ((cmd = next_cmd(&buf))) { |
| 1735 | if ((level = brightness_get(NULL)) < 0) |
| 1736 | return level; |
| 1737 | level &= 7; |
| 1738 | |
| 1739 | if (strlencmp(cmd, "up") == 0) { |
| 1740 | new_level = level == 7 ? 7 : level + 1; |
| 1741 | } else if (strlencmp(cmd, "down") == 0) { |
| 1742 | new_level = level == 0 ? 0 : level - 1; |
| 1743 | } else if (sscanf(cmd, "level %d", &new_level) == 1 && |
| 1744 | new_level >= 0 && new_level <= 7) { |
| 1745 | /* new_level set */ |
| 1746 | } else |
| 1747 | return -EINVAL; |
| 1748 | |
| 1749 | brightness_set(new_level); |
| 1750 | } |
| 1751 | |
| 1752 | return 0; |
| 1753 | } |
| 1754 | |
| 1755 | /************************************************************************* |
| 1756 | * Volume subdriver |
| 1757 | */ |
| 1758 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1759 | static int volume_read(char *p) |
| 1760 | { |
| 1761 | int len = 0; |
| 1762 | u8 level; |
| 1763 | |
| 1764 | if (!acpi_ec_read(volume_offset, &level)) { |
| 1765 | len += sprintf(p + len, "level:\t\tunreadable\n"); |
| 1766 | } else { |
| 1767 | len += sprintf(p + len, "level:\t\t%d\n", level & 0xf); |
| 1768 | len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6)); |
| 1769 | len += sprintf(p + len, "commands:\tup, down, mute\n"); |
| 1770 | len += sprintf(p + len, "commands:\tlevel <level>" |
| 1771 | " (<level> is 0-15)\n"); |
| 1772 | } |
| 1773 | |
| 1774 | return len; |
| 1775 | } |
| 1776 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1777 | static int volume_write(char *buf) |
| 1778 | { |
| 1779 | int cmos_cmd, inc, i; |
| 1780 | u8 level, mute; |
| 1781 | int new_level, new_mute; |
| 1782 | char *cmd; |
| 1783 | |
| 1784 | while ((cmd = next_cmd(&buf))) { |
| 1785 | if (!acpi_ec_read(volume_offset, &level)) |
| 1786 | return -EIO; |
| 1787 | new_mute = mute = level & 0x40; |
| 1788 | new_level = level = level & 0xf; |
| 1789 | |
| 1790 | if (strlencmp(cmd, "up") == 0) { |
| 1791 | if (mute) |
| 1792 | new_mute = 0; |
| 1793 | else |
| 1794 | new_level = level == 15 ? 15 : level + 1; |
| 1795 | } else if (strlencmp(cmd, "down") == 0) { |
| 1796 | if (mute) |
| 1797 | new_mute = 0; |
| 1798 | else |
| 1799 | new_level = level == 0 ? 0 : level - 1; |
| 1800 | } else if (sscanf(cmd, "level %d", &new_level) == 1 && |
| 1801 | new_level >= 0 && new_level <= 15) { |
| 1802 | /* new_level set */ |
| 1803 | } else if (strlencmp(cmd, "mute") == 0) { |
| 1804 | new_mute = 0x40; |
| 1805 | } else |
| 1806 | return -EINVAL; |
| 1807 | |
| 1808 | if (new_level != level) { /* mute doesn't change */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1809 | cmos_cmd = new_level > level ? TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1810 | inc = new_level > level ? 1 : -1; |
| 1811 | |
| 1812 | if (mute && (!cmos_eval(cmos_cmd) || |
| 1813 | !acpi_ec_write(volume_offset, level))) |
| 1814 | return -EIO; |
| 1815 | |
| 1816 | for (i = level; i != new_level; i += inc) |
| 1817 | if (!cmos_eval(cmos_cmd) || |
| 1818 | !acpi_ec_write(volume_offset, i + inc)) |
| 1819 | return -EIO; |
| 1820 | |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 1821 | if (mute && (!cmos_eval(TP_CMOS_VOLUME_MUTE) || |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1822 | !acpi_ec_write(volume_offset, |
| 1823 | new_level + mute))) |
| 1824 | return -EIO; |
| 1825 | } |
| 1826 | |
| 1827 | if (new_mute != mute) { /* level doesn't change */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1828 | cmos_cmd = new_mute ? TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 1829 | |
| 1830 | if (!cmos_eval(cmos_cmd) || |
| 1831 | !acpi_ec_write(volume_offset, level + new_mute)) |
| 1832 | return -EIO; |
| 1833 | } |
| 1834 | } |
| 1835 | |
| 1836 | return 0; |
| 1837 | } |
| 1838 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1839 | |
| 1840 | /************************************************************************* |
| 1841 | * Fan subdriver |
| 1842 | */ |
| 1843 | |
| 1844 | /* |
| 1845 | * FAN ACCESS MODES |
| 1846 | * |
| 1847 | * IBMACPI_FAN_RD_ACPI_GFAN: |
| 1848 | * ACPI GFAN method: returns fan level |
| 1849 | * |
| 1850 | * see IBMACPI_FAN_WR_ACPI_SFAN |
| 1851 | * EC 0x2f not available if GFAN exists |
| 1852 | * |
| 1853 | * IBMACPI_FAN_WR_ACPI_SFAN: |
| 1854 | * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max) |
| 1855 | * |
| 1856 | * EC 0x2f might be available *for reading*, but never for writing. |
| 1857 | * |
| 1858 | * IBMACPI_FAN_WR_TPEC: |
| 1859 | * ThinkPad EC register 0x2f (HFSP): fan control loop mode Supported |
| 1860 | * on almost all ThinkPads |
| 1861 | * |
| 1862 | * Fan speed changes of any sort (including those caused by the |
| 1863 | * disengaged mode) are usually done slowly by the firmware as the |
| 1864 | * maximum ammount of fan duty cycle change per second seems to be |
| 1865 | * limited. |
| 1866 | * |
| 1867 | * Reading is not available if GFAN exists. |
| 1868 | * Writing is not available if SFAN exists. |
| 1869 | * |
| 1870 | * Bits |
| 1871 | * 7 automatic mode engaged; |
| 1872 | * (default operation mode of the ThinkPad) |
| 1873 | * fan level is ignored in this mode. |
| 1874 | * 6 disengage mode (takes precedence over bit 7); |
| 1875 | * not available on all thinkpads. May disable |
| 1876 | * the tachometer, and speeds up fan to 100% duty-cycle, |
| 1877 | * which speeds it up far above the standard RPM |
| 1878 | * levels. It is not impossible that it could cause |
| 1879 | * hardware damage. |
| 1880 | * 5-3 unused in some models. Extra bits for fan level |
| 1881 | * in others, but still useless as all values above |
| 1882 | * 7 map to the same speed as level 7 in these models. |
| 1883 | * 2-0 fan level (0..7 usually) |
| 1884 | * 0x00 = stop |
| 1885 | * 0x07 = max (set when temperatures critical) |
| 1886 | * Some ThinkPads may have other levels, see |
| 1887 | * IBMACPI_FAN_WR_ACPI_FANS (X31/X40/X41) |
| 1888 | * |
| 1889 | * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at |
| 1890 | * boot. Apparently the EC does not intialize it, so unless ACPI DSDT |
| 1891 | * does so, its initial value is meaningless (0x07). |
| 1892 | * |
| 1893 | * For firmware bugs, refer to: |
| 1894 | * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues |
| 1895 | * |
| 1896 | * ---- |
| 1897 | * |
| 1898 | * ThinkPad EC register 0x84 (LSB), 0x85 (MSB): |
| 1899 | * Main fan tachometer reading (in RPM) |
| 1900 | * |
| 1901 | * This register is present on all ThinkPads with a new-style EC, and |
| 1902 | * it is known not to be present on the A21m/e, and T22, as there is |
| 1903 | * something else in offset 0x84 according to the ACPI DSDT. Other |
| 1904 | * ThinkPads from this same time period (and earlier) probably lack the |
| 1905 | * tachometer as well. |
| 1906 | * |
| 1907 | * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare |
| 1908 | * was never fixed by IBM to report the EC firmware version string |
| 1909 | * probably support the tachometer (like the early X models), so |
| 1910 | * detecting it is quite hard. We need more data to know for sure. |
| 1911 | * |
| 1912 | * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings |
| 1913 | * might result. |
| 1914 | * |
| 1915 | * FIRMWARE BUG: when EC 0x2f bit 6 is set (disengaged mode), this |
| 1916 | * register is not invalidated in ThinkPads that disable tachometer |
| 1917 | * readings. Thus, the tachometer readings go stale. |
| 1918 | * |
| 1919 | * For firmware bugs, refer to: |
| 1920 | * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues |
| 1921 | * |
| 1922 | * IBMACPI_FAN_WR_ACPI_FANS: |
| 1923 | * ThinkPad X31, X40, X41. Not available in the X60. |
| 1924 | * |
| 1925 | * FANS ACPI handle: takes three arguments: low speed, medium speed, |
| 1926 | * high speed. ACPI DSDT seems to map these three speeds to levels |
| 1927 | * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH |
| 1928 | * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3") |
| 1929 | * |
| 1930 | * The speeds are stored on handles |
| 1931 | * (FANA:FAN9), (FANC:FANB), (FANE:FAND). |
| 1932 | * |
| 1933 | * There are three default speed sets, acessible as handles: |
| 1934 | * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H |
| 1935 | * |
| 1936 | * ACPI DSDT switches which set is in use depending on various |
| 1937 | * factors. |
| 1938 | * |
| 1939 | * IBMACPI_FAN_WR_TPEC is also available and should be used to |
| 1940 | * command the fan. The X31/X40/X41 seems to have 8 fan levels, |
| 1941 | * but the ACPI tables just mention level 7. |
| 1942 | */ |
| 1943 | |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 1944 | static enum fan_status_access_mode fan_status_access_mode; |
| 1945 | static enum fan_control_access_mode fan_control_access_mode; |
| 1946 | static enum fan_control_commands fan_control_commands; |
| 1947 | |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1948 | static int fan_control_status_known; |
| 1949 | static u8 fan_control_initial_status; |
| 1950 | |
Len Brown | 25c68a3 | 2006-12-08 04:43:41 -0500 | [diff] [blame] | 1951 | static void fan_watchdog_fire(struct work_struct *ignored); |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1952 | static int fan_watchdog_maxinterval; |
Len Brown | 25c68a3 | 2006-12-08 04:43:41 -0500 | [diff] [blame] | 1953 | static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire); |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1954 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 1955 | IBM_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */ |
| 1956 | IBM_HANDLE(gfan, ec, "GFAN", /* 570 */ |
| 1957 | "\\FSPD", /* 600e/x, 770e, 770x */ |
| 1958 | ); /* all others */ |
| 1959 | IBM_HANDLE(sfan, ec, "SFAN", /* 570 */ |
| 1960 | "JFNS", /* 770x-JL */ |
| 1961 | ); /* all others */ |
| 1962 | |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 1963 | static int fan_init(void) |
| 1964 | { |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 1965 | fan_status_access_mode = IBMACPI_FAN_NONE; |
| 1966 | fan_control_access_mode = IBMACPI_FAN_WR_NONE; |
| 1967 | fan_control_commands = 0; |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1968 | fan_control_status_known = 1; |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1969 | fan_watchdog_maxinterval = 0; |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 1970 | |
| 1971 | if (gfan_handle) { |
| 1972 | /* 570, 600e/x, 770e, 770x */ |
| 1973 | fan_status_access_mode = IBMACPI_FAN_RD_ACPI_GFAN; |
| 1974 | } else { |
| 1975 | /* all other ThinkPads: note that even old-style |
| 1976 | * ThinkPad ECs supports the fan control register */ |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1977 | if (likely(acpi_ec_read(fan_status_offset, |
| 1978 | &fan_control_initial_status))) { |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 1979 | fan_status_access_mode = IBMACPI_FAN_RD_TPEC; |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 1980 | |
| 1981 | /* In some ThinkPads, neither the EC nor the ACPI |
| 1982 | * DSDT initialize the fan status, and it ends up |
| 1983 | * being set to 0x07 when it *could* be either |
| 1984 | * 0x07 or 0x80. |
| 1985 | * |
| 1986 | * Enable for TP-1Y (T43), TP-78 (R51e), |
| 1987 | * TP-76 (R52), TP-70 (T43, R52), which are known |
| 1988 | * to be buggy. */ |
| 1989 | if (fan_control_initial_status == 0x07 && |
| 1990 | ibm_thinkpad_ec_found && |
| 1991 | ((ibm_thinkpad_ec_found[0] == '1' && |
| 1992 | ibm_thinkpad_ec_found[1] == 'Y') || |
| 1993 | (ibm_thinkpad_ec_found[0] == '7' && |
| 1994 | (ibm_thinkpad_ec_found[1] == '6' || |
| 1995 | ibm_thinkpad_ec_found[1] == '8' || |
| 1996 | ibm_thinkpad_ec_found[1] == '0')) |
| 1997 | )) { |
| 1998 | printk(IBM_NOTICE |
| 1999 | "fan_init: initial fan status is " |
| 2000 | "unknown, assuming it is in auto " |
| 2001 | "mode\n"); |
| 2002 | fan_control_status_known = 0; |
| 2003 | } |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2004 | } else { |
| 2005 | printk(IBM_ERR |
| 2006 | "ThinkPad ACPI EC access misbehaving, " |
| 2007 | "fan status and control unavailable\n"); |
| 2008 | return 0; |
| 2009 | } |
| 2010 | } |
| 2011 | |
| 2012 | if (sfan_handle) { |
| 2013 | /* 570, 770x-JL */ |
| 2014 | fan_control_access_mode = IBMACPI_FAN_WR_ACPI_SFAN; |
Henrique de Moraes Holschuh | 1c6a334 | 2006-11-24 11:47:12 -0200 | [diff] [blame] | 2015 | fan_control_commands |= |
| 2016 | IBMACPI_FAN_CMD_LEVEL | IBMACPI_FAN_CMD_ENABLE; |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2017 | } else { |
| 2018 | if (!gfan_handle) { |
| 2019 | /* gfan without sfan means no fan control */ |
| 2020 | /* all other models implement TP EC 0x2f control */ |
| 2021 | |
| 2022 | if (fans_handle) { |
Henrique de Moraes Holschuh | a8b7a66 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2023 | /* X31, X40, X41 */ |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2024 | fan_control_access_mode = |
| 2025 | IBMACPI_FAN_WR_ACPI_FANS; |
| 2026 | fan_control_commands |= |
| 2027 | IBMACPI_FAN_CMD_SPEED | |
Henrique de Moraes Holschuh | a12095c | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2028 | IBMACPI_FAN_CMD_LEVEL | |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2029 | IBMACPI_FAN_CMD_ENABLE; |
| 2030 | } else { |
| 2031 | fan_control_access_mode = IBMACPI_FAN_WR_TPEC; |
Henrique de Moraes Holschuh | a12095c | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2032 | fan_control_commands |= |
| 2033 | IBMACPI_FAN_CMD_LEVEL | |
| 2034 | IBMACPI_FAN_CMD_ENABLE; |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2035 | } |
| 2036 | } |
| 2037 | } |
| 2038 | |
| 2039 | return 0; |
| 2040 | } |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2041 | |
Henrique de Moraes Holschuh | c52f0aa | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2042 | static int fan_get_status(u8 *status) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2043 | { |
Henrique de Moraes Holschuh | c52f0aa | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2044 | u8 s; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2045 | |
Henrique de Moraes Holschuh | a8b7a66 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2046 | /* TODO: |
| 2047 | * Add IBMACPI_FAN_RD_ACPI_FANS ? */ |
| 2048 | |
Henrique de Moraes Holschuh | 3ef8a60 | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2049 | switch (fan_status_access_mode) { |
| 2050 | case IBMACPI_FAN_RD_ACPI_GFAN: |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2051 | /* 570, 600e/x, 770e, 770x */ |
Henrique de Moraes Holschuh | c52f0aa | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2052 | |
| 2053 | if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d"))) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2054 | return -EIO; |
| 2055 | |
Henrique de Moraes Holschuh | c52f0aa | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2056 | if (likely(status)) |
| 2057 | *status = s & 0x07; |
| 2058 | |
| 2059 | break; |
| 2060 | |
| 2061 | case IBMACPI_FAN_RD_TPEC: |
| 2062 | /* all except 570, 600e/x, 770e, 770x */ |
| 2063 | if (unlikely(!acpi_ec_read(fan_status_offset, &s))) |
| 2064 | return -EIO; |
| 2065 | |
| 2066 | if (likely(status)) |
| 2067 | *status = s; |
| 2068 | |
| 2069 | break; |
| 2070 | |
| 2071 | default: |
| 2072 | return -ENXIO; |
| 2073 | } |
| 2074 | |
| 2075 | return 0; |
| 2076 | } |
| 2077 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2078 | static void fan_exit(void) |
| 2079 | { |
| 2080 | cancel_delayed_work(&fan_watchdog_task); |
| 2081 | flush_scheduled_work(); |
| 2082 | } |
| 2083 | |
Henrique de Moraes Holschuh | c52f0aa | 2006-11-24 11:47:10 -0200 | [diff] [blame] | 2084 | static int fan_get_speed(unsigned int *speed) |
| 2085 | { |
| 2086 | u8 hi, lo; |
| 2087 | |
| 2088 | switch (fan_status_access_mode) { |
| 2089 | case IBMACPI_FAN_RD_TPEC: |
| 2090 | /* all except 570, 600e/x, 770e, 770x */ |
| 2091 | if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) || |
| 2092 | !acpi_ec_read(fan_rpm_offset + 1, &hi))) |
| 2093 | return -EIO; |
| 2094 | |
| 2095 | if (likely(speed)) |
| 2096 | *speed = (hi << 8) | lo; |
| 2097 | |
| 2098 | break; |
| 2099 | |
| 2100 | default: |
| 2101 | return -ENXIO; |
| 2102 | } |
| 2103 | |
| 2104 | return 0; |
| 2105 | } |
| 2106 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2107 | static void fan_watchdog_fire(struct work_struct *ignored) |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2108 | { |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2109 | printk(IBM_NOTICE "fan watchdog: enabling fan\n"); |
| 2110 | if (fan_set_enable()) { |
| 2111 | printk(IBM_ERR "fan watchdog: error while enabling fan\n"); |
| 2112 | /* reschedule for later */ |
| 2113 | fan_watchdog_reset(); |
| 2114 | } |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2115 | } |
| 2116 | |
| 2117 | static void fan_watchdog_reset(void) |
| 2118 | { |
| 2119 | static int fan_watchdog_active = 0; |
| 2120 | |
| 2121 | if (fan_watchdog_active) |
| 2122 | cancel_delayed_work(&fan_watchdog_task); |
| 2123 | |
| 2124 | if (fan_watchdog_maxinterval > 0) { |
| 2125 | fan_watchdog_active = 1; |
| 2126 | if (!schedule_delayed_work(&fan_watchdog_task, |
| 2127 | msecs_to_jiffies(fan_watchdog_maxinterval |
| 2128 | * 1000))) { |
| 2129 | printk(IBM_ERR "failed to schedule the fan watchdog, " |
| 2130 | "watchdog will not trigger\n"); |
| 2131 | } |
| 2132 | } else |
| 2133 | fan_watchdog_active = 0; |
| 2134 | } |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2135 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2136 | static int fan_set_level(int level) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2137 | { |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2138 | switch (fan_control_access_mode) { |
| 2139 | case IBMACPI_FAN_WR_ACPI_SFAN: |
| 2140 | if (level >= 0 && level <= 7) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2141 | if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level)) |
| 2142 | return -EIO; |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2143 | } else |
| 2144 | return -EINVAL; |
| 2145 | break; |
| 2146 | |
Henrique de Moraes Holschuh | a12095c | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2147 | case IBMACPI_FAN_WR_ACPI_FANS: |
| 2148 | case IBMACPI_FAN_WR_TPEC: |
| 2149 | if ((level != IBMACPI_FAN_EC_AUTO) && |
| 2150 | (level != IBMACPI_FAN_EC_DISENGAGED) && |
| 2151 | ((level < 0) || (level > 7))) |
| 2152 | return -EINVAL; |
| 2153 | |
| 2154 | if (!acpi_ec_write(fan_status_offset, level)) |
| 2155 | return -EIO; |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2156 | else |
| 2157 | fan_control_status_known = 1; |
Henrique de Moraes Holschuh | a12095c | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2158 | break; |
| 2159 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2160 | default: |
| 2161 | return -ENXIO; |
| 2162 | } |
| 2163 | return 0; |
| 2164 | } |
| 2165 | |
| 2166 | static int fan_set_enable(void) |
| 2167 | { |
Henrique de Moraes Holschuh | 1c6a334 | 2006-11-24 11:47:12 -0200 | [diff] [blame] | 2168 | u8 s; |
| 2169 | int rc; |
| 2170 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2171 | switch (fan_control_access_mode) { |
| 2172 | case IBMACPI_FAN_WR_ACPI_FANS: |
| 2173 | case IBMACPI_FAN_WR_TPEC: |
Henrique de Moraes Holschuh | 1c6a334 | 2006-11-24 11:47:12 -0200 | [diff] [blame] | 2174 | if ((rc = fan_get_status(&s)) < 0) |
| 2175 | return rc; |
| 2176 | |
| 2177 | /* Don't go out of emergency fan mode */ |
| 2178 | if (s != 7) |
| 2179 | s = IBMACPI_FAN_EC_AUTO; |
| 2180 | |
| 2181 | if (!acpi_ec_write(fan_status_offset, s)) |
| 2182 | return -EIO; |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2183 | else |
| 2184 | fan_control_status_known = 1; |
Henrique de Moraes Holschuh | 1c6a334 | 2006-11-24 11:47:12 -0200 | [diff] [blame] | 2185 | break; |
| 2186 | |
| 2187 | case IBMACPI_FAN_WR_ACPI_SFAN: |
| 2188 | if ((rc = fan_get_status(&s)) < 0) |
| 2189 | return rc; |
| 2190 | |
| 2191 | s &= 0x07; |
| 2192 | |
| 2193 | /* Set fan to at least level 4 */ |
| 2194 | if (s < 4) |
| 2195 | s = 4; |
| 2196 | |
| 2197 | if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s)) |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2198 | return -EIO; |
| 2199 | break; |
| 2200 | |
| 2201 | default: |
| 2202 | return -ENXIO; |
| 2203 | } |
| 2204 | return 0; |
| 2205 | } |
| 2206 | |
| 2207 | static int fan_set_disable(void) |
| 2208 | { |
| 2209 | switch (fan_control_access_mode) { |
| 2210 | case IBMACPI_FAN_WR_ACPI_FANS: |
| 2211 | case IBMACPI_FAN_WR_TPEC: |
| 2212 | if (!acpi_ec_write(fan_status_offset, 0x00)) |
| 2213 | return -EIO; |
Henrique de Moraes Holschuh | 778b4d7 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2214 | else |
| 2215 | fan_control_status_known = 1; |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2216 | break; |
| 2217 | |
Henrique de Moraes Holschuh | 1c6a334 | 2006-11-24 11:47:12 -0200 | [diff] [blame] | 2218 | case IBMACPI_FAN_WR_ACPI_SFAN: |
| 2219 | if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00)) |
| 2220 | return -EIO; |
| 2221 | break; |
| 2222 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2223 | default: |
| 2224 | return -ENXIO; |
| 2225 | } |
| 2226 | return 0; |
| 2227 | } |
| 2228 | |
| 2229 | static int fan_set_speed(int speed) |
| 2230 | { |
| 2231 | switch (fan_control_access_mode) { |
| 2232 | case IBMACPI_FAN_WR_ACPI_FANS: |
| 2233 | if (speed >= 0 && speed <= 65535) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2234 | if (!acpi_evalf(fans_handle, NULL, NULL, "vddd", |
| 2235 | speed, speed, speed)) |
| 2236 | return -EIO; |
| 2237 | } else |
| 2238 | return -EINVAL; |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2239 | break; |
| 2240 | |
| 2241 | default: |
| 2242 | return -ENXIO; |
| 2243 | } |
| 2244 | return 0; |
| 2245 | } |
| 2246 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2247 | static int fan_read(char *p) |
| 2248 | { |
| 2249 | int len = 0; |
| 2250 | int rc; |
| 2251 | u8 status; |
| 2252 | unsigned int speed = 0; |
| 2253 | |
| 2254 | switch (fan_status_access_mode) { |
| 2255 | case IBMACPI_FAN_RD_ACPI_GFAN: |
| 2256 | /* 570, 600e/x, 770e, 770x */ |
| 2257 | if ((rc = fan_get_status(&status)) < 0) |
| 2258 | return rc; |
| 2259 | |
| 2260 | len += sprintf(p + len, "status:\t\t%s\n" |
| 2261 | "level:\t\t%d\n", |
| 2262 | (status != 0) ? "enabled" : "disabled", status); |
| 2263 | break; |
| 2264 | |
| 2265 | case IBMACPI_FAN_RD_TPEC: |
| 2266 | /* all except 570, 600e/x, 770e, 770x */ |
| 2267 | if ((rc = fan_get_status(&status)) < 0) |
| 2268 | return rc; |
| 2269 | |
| 2270 | if (unlikely(!fan_control_status_known)) { |
| 2271 | if (status != fan_control_initial_status) |
| 2272 | fan_control_status_known = 1; |
| 2273 | else |
| 2274 | /* Return most likely status. In fact, it |
| 2275 | * might be the only possible status */ |
| 2276 | status = IBMACPI_FAN_EC_AUTO; |
| 2277 | } |
| 2278 | |
| 2279 | len += sprintf(p + len, "status:\t\t%s\n", |
| 2280 | (status != 0) ? "enabled" : "disabled"); |
| 2281 | |
| 2282 | /* No ThinkPad boots on disengaged mode, we can safely |
| 2283 | * assume the tachometer is online if fan control status |
| 2284 | * was unknown */ |
| 2285 | if ((rc = fan_get_speed(&speed)) < 0) |
| 2286 | return rc; |
| 2287 | |
| 2288 | len += sprintf(p + len, "speed:\t\t%d\n", speed); |
| 2289 | |
| 2290 | if (status & IBMACPI_FAN_EC_DISENGAGED) |
| 2291 | /* Disengaged mode takes precedence */ |
| 2292 | len += sprintf(p + len, "level:\t\tdisengaged\n"); |
| 2293 | else if (status & IBMACPI_FAN_EC_AUTO) |
| 2294 | len += sprintf(p + len, "level:\t\tauto\n"); |
| 2295 | else |
| 2296 | len += sprintf(p + len, "level:\t\t%d\n", status); |
| 2297 | break; |
| 2298 | |
| 2299 | case IBMACPI_FAN_NONE: |
| 2300 | default: |
| 2301 | len += sprintf(p + len, "status:\t\tnot supported\n"); |
| 2302 | } |
| 2303 | |
| 2304 | if (fan_control_commands & IBMACPI_FAN_CMD_LEVEL) { |
| 2305 | len += sprintf(p + len, "commands:\tlevel <level>"); |
| 2306 | |
| 2307 | switch (fan_control_access_mode) { |
| 2308 | case IBMACPI_FAN_WR_ACPI_SFAN: |
| 2309 | len += sprintf(p + len, " (<level> is 0-7)\n"); |
| 2310 | break; |
| 2311 | |
| 2312 | default: |
| 2313 | len += sprintf(p + len, " (<level> is 0-7, " |
| 2314 | "auto, disengaged)\n"); |
| 2315 | break; |
| 2316 | } |
| 2317 | } |
| 2318 | |
| 2319 | if (fan_control_commands & IBMACPI_FAN_CMD_ENABLE) |
| 2320 | len += sprintf(p + len, "commands:\tenable, disable\n" |
| 2321 | "commands:\twatchdog <timeout> (<timeout> is 0 (off), " |
| 2322 | "1-120 (seconds))\n"); |
| 2323 | |
| 2324 | if (fan_control_commands & IBMACPI_FAN_CMD_SPEED) |
| 2325 | len += sprintf(p + len, "commands:\tspeed <speed>" |
| 2326 | " (<speed> is 0-65535)\n"); |
| 2327 | |
| 2328 | return len; |
| 2329 | } |
| 2330 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2331 | static int fan_write_cmd_level(const char *cmd, int *rc) |
| 2332 | { |
| 2333 | int level; |
| 2334 | |
Henrique de Moraes Holschuh | a12095c | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2335 | if (strlencmp(cmd, "level auto") == 0) |
| 2336 | level = IBMACPI_FAN_EC_AUTO; |
| 2337 | else if (strlencmp(cmd, "level disengaged") == 0) |
| 2338 | level = IBMACPI_FAN_EC_DISENGAGED; |
| 2339 | else if (sscanf(cmd, "level %d", &level) != 1) |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2340 | return 0; |
| 2341 | |
| 2342 | if ((*rc = fan_set_level(level)) == -ENXIO) |
| 2343 | printk(IBM_ERR "level command accepted for unsupported " |
| 2344 | "access mode %d", fan_control_access_mode); |
| 2345 | |
| 2346 | return 1; |
| 2347 | } |
| 2348 | |
| 2349 | static int fan_write_cmd_enable(const char *cmd, int *rc) |
| 2350 | { |
| 2351 | if (strlencmp(cmd, "enable") != 0) |
| 2352 | return 0; |
| 2353 | |
| 2354 | if ((*rc = fan_set_enable()) == -ENXIO) |
| 2355 | printk(IBM_ERR "enable command accepted for unsupported " |
| 2356 | "access mode %d", fan_control_access_mode); |
| 2357 | |
| 2358 | return 1; |
| 2359 | } |
| 2360 | |
| 2361 | static int fan_write_cmd_disable(const char *cmd, int *rc) |
| 2362 | { |
| 2363 | if (strlencmp(cmd, "disable") != 0) |
| 2364 | return 0; |
| 2365 | |
| 2366 | if ((*rc = fan_set_disable()) == -ENXIO) |
| 2367 | printk(IBM_ERR "disable command accepted for unsupported " |
| 2368 | "access mode %d", fan_control_access_mode); |
| 2369 | |
| 2370 | return 1; |
| 2371 | } |
| 2372 | |
| 2373 | static int fan_write_cmd_speed(const char *cmd, int *rc) |
| 2374 | { |
| 2375 | int speed; |
| 2376 | |
Henrique de Moraes Holschuh | a8b7a66 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2377 | /* TODO: |
| 2378 | * Support speed <low> <medium> <high> ? */ |
| 2379 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2380 | if (sscanf(cmd, "speed %d", &speed) != 1) |
| 2381 | return 0; |
| 2382 | |
| 2383 | if ((*rc = fan_set_speed(speed)) == -ENXIO) |
| 2384 | printk(IBM_ERR "speed command accepted for unsupported " |
| 2385 | "access mode %d", fan_control_access_mode); |
| 2386 | |
| 2387 | return 1; |
| 2388 | } |
| 2389 | |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2390 | static int fan_write_cmd_watchdog(const char *cmd, int *rc) |
| 2391 | { |
| 2392 | int interval; |
| 2393 | |
| 2394 | if (sscanf(cmd, "watchdog %d", &interval) != 1) |
| 2395 | return 0; |
| 2396 | |
| 2397 | if (interval < 0 || interval > 120) |
| 2398 | *rc = -EINVAL; |
| 2399 | else |
| 2400 | fan_watchdog_maxinterval = interval; |
| 2401 | |
| 2402 | return 1; |
| 2403 | } |
| 2404 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2405 | static int fan_write(char *buf) |
| 2406 | { |
| 2407 | char *cmd; |
| 2408 | int rc = 0; |
| 2409 | |
| 2410 | while (!rc && (cmd = next_cmd(&buf))) { |
| 2411 | if (!((fan_control_commands & IBMACPI_FAN_CMD_LEVEL) && |
| 2412 | fan_write_cmd_level(cmd, &rc)) && |
| 2413 | !((fan_control_commands & IBMACPI_FAN_CMD_ENABLE) && |
| 2414 | (fan_write_cmd_enable(cmd, &rc) || |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2415 | fan_write_cmd_disable(cmd, &rc) || |
| 2416 | fan_write_cmd_watchdog(cmd, &rc))) && |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2417 | !((fan_control_commands & IBMACPI_FAN_CMD_SPEED) && |
| 2418 | fan_write_cmd_speed(cmd, &rc)) |
| 2419 | ) |
| 2420 | rc = -EINVAL; |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2421 | else if (!rc) |
| 2422 | fan_watchdog_reset(); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2423 | } |
| 2424 | |
Henrique de Moraes Holschuh | 18ad799 | 2006-11-24 11:47:11 -0200 | [diff] [blame] | 2425 | return rc; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2426 | } |
| 2427 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2428 | /**************************************************************************** |
| 2429 | **************************************************************************** |
| 2430 | * |
| 2431 | * Infrastructure |
| 2432 | * |
| 2433 | **************************************************************************** |
| 2434 | ****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2435 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2436 | /* /proc support */ |
| 2437 | static struct proc_dir_entry *proc_dir = NULL; |
| 2438 | |
| 2439 | /* Subdriver registry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | static struct ibm_struct ibms[] = { |
| 2441 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2442 | .name = "driver", |
Adrian Bunk | 1f21782 | 2006-12-19 13:01:28 -0800 | [diff] [blame] | 2443 | .init = ibm_acpi_driver_init, |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 2444 | .read = ibm_acpi_driver_read, |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2445 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2447 | .name = "hotkey", |
| 2448 | .hid = IBM_HKEY_HID, |
| 2449 | .init = hotkey_init, |
| 2450 | .read = hotkey_read, |
| 2451 | .write = hotkey_write, |
| 2452 | .exit = hotkey_exit, |
| 2453 | .notify = hotkey_notify, |
| 2454 | .handle = &hkey_handle, |
| 2455 | .type = ACPI_DEVICE_NOTIFY, |
| 2456 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2458 | .name = "bluetooth", |
| 2459 | .init = bluetooth_init, |
| 2460 | .read = bluetooth_read, |
| 2461 | .write = bluetooth_write, |
| 2462 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | { |
Jeremy Fitzhardinge | 42adb53 | 2006-06-01 17:41:00 -0400 | [diff] [blame] | 2464 | .name = "wan", |
| 2465 | .init = wan_init, |
| 2466 | .read = wan_read, |
| 2467 | .write = wan_write, |
| 2468 | .experimental = 1, |
| 2469 | }, |
| 2470 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2471 | .name = "video", |
| 2472 | .init = video_init, |
| 2473 | .read = video_read, |
| 2474 | .write = video_write, |
| 2475 | .exit = video_exit, |
| 2476 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2478 | .name = "light", |
| 2479 | .init = light_init, |
| 2480 | .read = light_read, |
| 2481 | .write = light_write, |
| 2482 | }, |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2483 | #ifdef CONFIG_THINKPAD_ACPI_DOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2485 | .name = "dock", |
| 2486 | .read = dock_read, |
| 2487 | .write = dock_write, |
| 2488 | .notify = dock_notify, |
| 2489 | .handle = &dock_handle, |
| 2490 | .type = ACPI_SYSTEM_NOTIFY, |
| 2491 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2493 | .name = "dock", |
| 2494 | .hid = IBM_PCI_HID, |
| 2495 | .notify = dock_notify, |
| 2496 | .handle = &pci_handle, |
| 2497 | .type = ACPI_SYSTEM_NOTIFY, |
| 2498 | }, |
Kristen Accardi | 63e5f24 | 2006-02-23 17:56:06 -0800 | [diff] [blame] | 2499 | #endif |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2500 | #ifdef CONFIG_THINKPAD_ACPI_BAY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2502 | .name = "bay", |
| 2503 | .init = bay_init, |
| 2504 | .read = bay_read, |
| 2505 | .write = bay_write, |
| 2506 | .notify = bay_notify, |
| 2507 | .handle = &bay_handle, |
| 2508 | .type = ACPI_SYSTEM_NOTIFY, |
| 2509 | }, |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2510 | #endif /* CONFIG_THINKPAD_ACPI_BAY */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2512 | .name = "cmos", |
| 2513 | .read = cmos_read, |
| 2514 | .write = cmos_write, |
| 2515 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2517 | .name = "led", |
| 2518 | .init = led_init, |
| 2519 | .read = led_read, |
| 2520 | .write = led_write, |
| 2521 | }, |
| 2522 | { |
| 2523 | .name = "beep", |
| 2524 | .read = beep_read, |
| 2525 | .write = beep_write, |
| 2526 | }, |
| 2527 | { |
| 2528 | .name = "thermal", |
| 2529 | .init = thermal_init, |
| 2530 | .read = thermal_read, |
| 2531 | }, |
| 2532 | { |
| 2533 | .name = "ecdump", |
| 2534 | .read = ecdump_read, |
| 2535 | .write = ecdump_write, |
| 2536 | .experimental = 1, |
| 2537 | }, |
| 2538 | { |
| 2539 | .name = "brightness", |
| 2540 | .read = brightness_read, |
| 2541 | .write = brightness_write, |
Henrique de Moraes Holschuh | fb87a81 | 2006-11-25 16:35:09 -0200 | [diff] [blame] | 2542 | .init = brightness_init, |
| 2543 | .exit = brightness_exit, |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2544 | }, |
| 2545 | { |
| 2546 | .name = "volume", |
| 2547 | .read = volume_read, |
| 2548 | .write = volume_write, |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2549 | }, |
| 2550 | { |
| 2551 | .name = "fan", |
| 2552 | .read = fan_read, |
| 2553 | .write = fan_write, |
Henrique de Moraes Holschuh | 69ba91c | 2006-11-24 11:47:09 -0200 | [diff] [blame] | 2554 | .init = fan_init, |
Henrique de Moraes Holschuh | 16663a8 | 2006-11-24 11:47:14 -0200 | [diff] [blame] | 2555 | .exit = fan_exit, |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2556 | .experimental = 1, |
| 2557 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2560 | /* |
| 2561 | * Module and infrastructure proble, init and exit handling |
| 2562 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2564 | static int __init ibm_init(struct ibm_struct *ibm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | { |
| 2566 | int ret; |
| 2567 | struct proc_dir_entry *entry; |
| 2568 | |
| 2569 | if (ibm->experimental && !experimental) |
| 2570 | return 0; |
| 2571 | |
| 2572 | if (ibm->hid) { |
Henrique de Moraes Holschuh | e062e03 | 2007-03-23 17:33:55 -0300 | [diff] [blame] | 2573 | ret = register_ibmacpi_subdriver(ibm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | if (ret < 0) |
| 2575 | return ret; |
| 2576 | ibm->driver_registered = 1; |
| 2577 | } |
| 2578 | |
| 2579 | if (ibm->init) { |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2580 | ret = ibm->init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | if (ret != 0) |
| 2582 | return ret; |
| 2583 | ibm->init_called = 1; |
| 2584 | } |
| 2585 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2586 | if (ibm->read) { |
| 2587 | entry = create_proc_entry(ibm->name, |
| 2588 | S_IFREG | S_IRUGO | S_IWUSR, |
| 2589 | proc_dir); |
| 2590 | if (!entry) { |
| 2591 | printk(IBM_ERR "unable to create proc entry %s\n", |
| 2592 | ibm->name); |
| 2593 | return -ENODEV; |
| 2594 | } |
| 2595 | entry->owner = THIS_MODULE; |
| 2596 | entry->data = ibm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | entry->read_proc = &dispatch_read; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2598 | if (ibm->write) |
| 2599 | entry->write_proc = &dispatch_write; |
| 2600 | ibm->proc_created = 1; |
| 2601 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2602 | |
| 2603 | if (ibm->notify) { |
| 2604 | ret = setup_notify(ibm); |
Henrique de Moraes Holschuh | 96e89af | 2007-03-15 16:15:06 -0300 | [diff] [blame] | 2605 | if (ret == -ENODEV) { |
| 2606 | printk(IBM_NOTICE "disabling subdriver %s\n", |
| 2607 | ibm->name); |
| 2608 | ibm_exit(ibm); |
| 2609 | return 0; |
| 2610 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | if (ret < 0) |
| 2612 | return ret; |
| 2613 | } |
| 2614 | |
| 2615 | return 0; |
| 2616 | } |
| 2617 | |
| 2618 | static void ibm_exit(struct ibm_struct *ibm) |
| 2619 | { |
| 2620 | if (ibm->notify_installed) |
| 2621 | acpi_remove_notify_handler(*ibm->handle, ibm->type, |
| 2622 | dispatch_notify); |
| 2623 | |
| 2624 | if (ibm->proc_created) |
| 2625 | remove_proc_entry(ibm->name, proc_dir); |
| 2626 | |
| 2627 | if (ibm->init_called && ibm->exit) |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2628 | ibm->exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | |
| 2630 | if (ibm->driver_registered) { |
| 2631 | acpi_bus_unregister_driver(ibm->driver); |
| 2632 | kfree(ibm->driver); |
| 2633 | } |
| 2634 | } |
| 2635 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2636 | /* Probing */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2638 | static char *ibm_thinkpad_ec_found = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | |
Henrique de Moraes Holschuh | 49a13cd | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2640 | static char* __init check_dmi_for_ec(void) |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 2641 | { |
| 2642 | struct dmi_device *dev = NULL; |
Henrique de Moraes Holschuh | 49a13cd | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2643 | char ec_fw_string[18]; |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 2644 | |
| 2645 | /* |
| 2646 | * ThinkPad T23 or newer, A31 or newer, R50e or newer, |
| 2647 | * X32 or newer, all Z series; Some models must have an |
| 2648 | * up-to-date BIOS or they will not be detected. |
| 2649 | * |
| 2650 | * See http://thinkwiki.org/wiki/List_of_DMI_IDs |
| 2651 | */ |
| 2652 | while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) { |
Henrique de Moraes Holschuh | 49a13cd | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2653 | if (sscanf(dev->name, |
| 2654 | "IBM ThinkPad Embedded Controller -[%17c", |
| 2655 | ec_fw_string) == 1) { |
| 2656 | ec_fw_string[sizeof(ec_fw_string) - 1] = 0; |
| 2657 | ec_fw_string[strcspn(ec_fw_string, " ]")] = 0; |
| 2658 | return kstrdup(ec_fw_string, GFP_KERNEL); |
| 2659 | } |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 2660 | } |
Henrique de Moraes Holschuh | 49a13cd | 2006-11-24 11:47:13 -0200 | [diff] [blame] | 2661 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2662 | } |
| 2663 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2664 | /* Module init, exit, parameters */ |
| 2665 | |
| 2666 | static int __init set_ibm_param(const char *val, struct kernel_param *kp) |
| 2667 | { |
| 2668 | unsigned int i; |
| 2669 | |
| 2670 | for (i = 0; i < ARRAY_SIZE(ibms); i++) |
| 2671 | if (strcmp(ibms[i].name, kp->name) == 0 && ibms[i].write) { |
| 2672 | if (strlen(val) > sizeof(ibms[i].param) - 2) |
| 2673 | return -ENOSPC; |
| 2674 | strcpy(ibms[i].param, val); |
| 2675 | strcat(ibms[i].param, ","); |
| 2676 | return 0; |
| 2677 | } |
| 2678 | |
| 2679 | return -EINVAL; |
| 2680 | } |
| 2681 | |
| 2682 | static int experimental; |
| 2683 | module_param(experimental, int, 0); |
| 2684 | |
| 2685 | #define IBM_PARAM(feature) \ |
| 2686 | module_param_call(feature, set_ibm_param, NULL, NULL, 0) |
| 2687 | |
| 2688 | IBM_PARAM(hotkey); |
| 2689 | IBM_PARAM(bluetooth); |
| 2690 | IBM_PARAM(video); |
| 2691 | IBM_PARAM(light); |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2692 | #ifdef CONFIG_THINKPAD_ACPI_DOCK |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2693 | IBM_PARAM(dock); |
| 2694 | #endif |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2695 | #ifdef CONFIG_THINKPAD_ACPI_BAY |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2696 | IBM_PARAM(bay); |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2697 | #endif /* CONFIG_THINKPAD_ACPI_BAY */ |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2698 | IBM_PARAM(cmos); |
| 2699 | IBM_PARAM(led); |
| 2700 | IBM_PARAM(beep); |
| 2701 | IBM_PARAM(ecdump); |
| 2702 | IBM_PARAM(brightness); |
| 2703 | IBM_PARAM(volume); |
| 2704 | IBM_PARAM(fan); |
| 2705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | static int __init acpi_ibm_init(void) |
| 2707 | { |
| 2708 | int ret, i; |
| 2709 | |
| 2710 | if (acpi_disabled) |
| 2711 | return -ENODEV; |
| 2712 | |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2713 | /* ec is required because many other handles are relative to it */ |
| 2714 | IBM_HANDLE_INIT(ec); |
| 2715 | if (!ec_handle) { |
| 2716 | printk(IBM_ERR "ec object not found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | return -ENODEV; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2718 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | |
Henrique de Moraes Holschuh | 60eb0b3 | 2006-11-24 11:47:08 -0200 | [diff] [blame] | 2720 | /* Models with newer firmware report the EC in DMI */ |
| 2721 | ibm_thinkpad_ec_found = check_dmi_for_ec(); |
| 2722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | /* these handles are not required */ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2724 | IBM_HANDLE_INIT(vid); |
| 2725 | IBM_HANDLE_INIT(vid2); |
| 2726 | IBM_HANDLE_INIT(ledb); |
| 2727 | IBM_HANDLE_INIT(led); |
| 2728 | IBM_HANDLE_INIT(hkey); |
| 2729 | IBM_HANDLE_INIT(lght); |
| 2730 | IBM_HANDLE_INIT(cmos); |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2731 | #ifdef CONFIG_THINKPAD_ACPI_DOCK |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2732 | IBM_HANDLE_INIT(dock); |
Kristen Accardi | 63e5f24 | 2006-02-23 17:56:06 -0800 | [diff] [blame] | 2733 | #endif |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2734 | IBM_HANDLE_INIT(pci); |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2735 | #ifdef CONFIG_THINKPAD_ACPI_BAY |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2736 | IBM_HANDLE_INIT(bay); |
| 2737 | if (bay_handle) |
| 2738 | IBM_HANDLE_INIT(bay_ej); |
| 2739 | IBM_HANDLE_INIT(bay2); |
| 2740 | if (bay2_handle) |
| 2741 | IBM_HANDLE_INIT(bay2_ej); |
Henrique de Moraes Holschuh | 8599824 | 2007-03-29 01:58:41 -0300 | [diff] [blame] | 2742 | #endif /* CONFIG_THINKPAD_ACPI_BAY */ |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2743 | IBM_HANDLE_INIT(beep); |
| 2744 | IBM_HANDLE_INIT(ecrd); |
| 2745 | IBM_HANDLE_INIT(ecwr); |
| 2746 | IBM_HANDLE_INIT(fans); |
| 2747 | IBM_HANDLE_INIT(gfan); |
| 2748 | IBM_HANDLE_INIT(sfan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | |
| 2750 | proc_dir = proc_mkdir(IBM_DIR, acpi_root_dir); |
| 2751 | if (!proc_dir) { |
| 2752 | printk(IBM_ERR "unable to create proc dir %s", IBM_DIR); |
Henrique de Moraes Holschuh | 3945ac3 | 2007-02-06 19:13:44 -0200 | [diff] [blame] | 2753 | acpi_ibm_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | return -ENODEV; |
| 2755 | } |
| 2756 | proc_dir->owner = THIS_MODULE; |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2757 | |
| 2758 | for (i = 0; i < ARRAY_SIZE(ibms); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | ret = ibm_init(&ibms[i]); |
Borislav Deianov | 78f81cc | 2005-08-17 00:00:00 -0400 | [diff] [blame] | 2760 | if (ret >= 0 && *ibms[i].param) |
| 2761 | ret = ibms[i].write(ibms[i].param); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | if (ret < 0) { |
| 2763 | acpi_ibm_exit(); |
| 2764 | return ret; |
| 2765 | } |
| 2766 | } |
| 2767 | |
| 2768 | return 0; |
| 2769 | } |
| 2770 | |
Henrique de Moraes Holschuh | 56b6aeb | 2007-03-23 17:33:57 -0300 | [diff] [blame] | 2771 | static void acpi_ibm_exit(void) |
| 2772 | { |
| 2773 | int i; |
| 2774 | |
| 2775 | for (i = ARRAY_SIZE(ibms) - 1; i >= 0; i--) |
| 2776 | ibm_exit(&ibms[i]); |
| 2777 | |
| 2778 | if (proc_dir) |
| 2779 | remove_proc_entry(IBM_DIR, acpi_root_dir); |
| 2780 | |
| 2781 | if (ibm_thinkpad_ec_found) |
| 2782 | kfree(ibm_thinkpad_ec_found); |
| 2783 | } |
| 2784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | module_init(acpi_ibm_init); |
| 2786 | module_exit(acpi_ibm_exit); |