ACPI: thinkpad-acpi: synchronize input device switches
[deliverable/linux.git] / drivers / misc / thinkpad_acpi.c
CommitLineData
1da177e4 1/*
643f12db 2 * thinkpad_acpi.c - ThinkPad ACPI Extras
1da177e4
LT
3 *
4 *
78f81cc4 5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6a2e293c 6 * Copyright (C) 2006-2008 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
1da177e4
LT
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
a62bc916
HMH
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
78f81cc4
BD
22 */
23
1cee5cce 24#define TPACPI_VERSION "0.19"
50ebec09 25#define TPACPI_SYSFS_VERSION 0x020200
78f81cc4
BD
26
27/*
1da177e4 28 * Changelog:
4b45cc07
HMH
29 * 2007-10-20 changelog trimmed down
30 *
643f12db
HMH
31 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
32 * drivers/misc.
f9ff43a6
HMH
33 *
34 * 2006-11-22 0.13 new maintainer
35 * changelog now lives in git commit history, and will
36 * not be updated further in-file.
837ca6dd 37 *
78f81cc4
BD
38 * 2005-03-17 0.11 support for 600e, 770x
39 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
4b45cc07
HMH
40 *
41 * 2005-01-16 0.9 use MODULE_VERSION
78f81cc4
BD
42 * thanks to Henrik Brix Andersen <brix@gentoo.org>
43 * fix parameter passing on module loading
44 * thanks to Rusty Russell <rusty@rustcorp.com.au>
45 * thanks to Jim Radford <radford@blackbean.org>
46 * 2004-11-08 0.8 fix init error case, don't return from a macro
47 * thanks to Chris Wright <chrisw@osdl.org>
1da177e4
LT
48 */
49
0c78039f
HMH
50#include <linux/kernel.h>
51#include <linux/module.h>
52#include <linux/init.h>
53#include <linux/types.h>
54#include <linux/string.h>
55#include <linux/list.h>
56#include <linux/mutex.h>
57#include <linux/kthread.h>
58#include <linux/freezer.h>
59#include <linux/delay.h>
60
61#include <linux/nvram.h>
62#include <linux/proc_fs.h>
63#include <linux/sysfs.h>
64#include <linux/backlight.h>
65#include <linux/fb.h>
66#include <linux/platform_device.h>
67#include <linux/hwmon.h>
68#include <linux/hwmon-sysfs.h>
69#include <linux/input.h>
70#include <asm/uaccess.h>
71
72#include <linux/dmi.h>
73#include <linux/jiffies.h>
74#include <linux/workqueue.h>
75
76#include <acpi/acpi_drivers.h>
77#include <acpi/acnamesp.h>
78
79#include <linux/pci_ids.h>
80
0c78039f
HMH
81
82/* ThinkPad CMOS commands */
83#define TP_CMOS_VOLUME_DOWN 0
84#define TP_CMOS_VOLUME_UP 1
85#define TP_CMOS_VOLUME_MUTE 2
86#define TP_CMOS_BRIGHTNESS_UP 4
87#define TP_CMOS_BRIGHTNESS_DOWN 5
88
89/* NVRAM Addresses */
90enum tp_nvram_addr {
91 TP_NVRAM_ADDR_HK2 = 0x57,
92 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
93 TP_NVRAM_ADDR_VIDEO = 0x59,
94 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
95 TP_NVRAM_ADDR_MIXER = 0x60,
96};
97
98/* NVRAM bit masks */
99enum {
100 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
101 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
102 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
103 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
104 TP_NVRAM_MASK_THINKLIGHT = 0x10,
105 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
106 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
107 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
108 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
109 TP_NVRAM_MASK_MUTE = 0x40,
110 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
111 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
112 TP_NVRAM_POS_LEVEL_VOLUME = 0,
113};
114
b21a15f6 115/* ACPI HIDs */
e0c7dfe7 116#define TPACPI_ACPI_HKEY_HID "IBM0068"
b21a15f6
HMH
117
118/* Input IDs */
119#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
120#define TPACPI_HKEY_INPUT_VERSION 0x4101
121
122
123/****************************************************************************
124 * Main driver
125 */
126
e0c7dfe7
HMH
127#define TPACPI_NAME "thinkpad"
128#define TPACPI_DESC "ThinkPad ACPI Extras"
129#define TPACPI_FILE TPACPI_NAME "_acpi"
130#define TPACPI_URL "http://ibm-acpi.sf.net/"
131#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
b21a15f6 132
e0c7dfe7
HMH
133#define TPACPI_PROC_DIR "ibm"
134#define TPACPI_ACPI_EVENT_PREFIX "ibm"
135#define TPACPI_DRVR_NAME TPACPI_FILE
136#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
b21a15f6 137
e0c7dfe7 138#define TPACPI_MAX_ACPI_ARGS 3
b21a15f6 139
0c78039f 140/* Debugging */
e0c7dfe7
HMH
141#define TPACPI_LOG TPACPI_FILE ": "
142#define TPACPI_ERR KERN_ERR TPACPI_LOG
143#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
144#define TPACPI_INFO KERN_INFO TPACPI_LOG
145#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
b21a15f6 146
0c78039f
HMH
147#define TPACPI_DBG_ALL 0xffff
148#define TPACPI_DBG_ALL 0xffff
149#define TPACPI_DBG_INIT 0x0001
150#define TPACPI_DBG_EXIT 0x0002
151#define dbg_printk(a_dbg_level, format, arg...) \
152 do { if (dbg_level & a_dbg_level) \
35ff8b9f
HMH
153 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
154 } while (0)
0c78039f
HMH
155#ifdef CONFIG_THINKPAD_ACPI_DEBUG
156#define vdbg_printk(a_dbg_level, format, arg...) \
157 dbg_printk(a_dbg_level, format, ## arg)
158static const char *str_supported(int is_supported);
159#else
160#define vdbg_printk(a_dbg_level, format, arg...)
161#endif
162
35ff8b9f
HMH
163#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
164#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
165#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
0c78039f 166
0c78039f
HMH
167
168/****************************************************************************
b21a15f6 169 * Driver-wide structs and misc. variables
0c78039f
HMH
170 */
171
172struct ibm_struct;
173
174struct tp_acpi_drv_struct {
175 const struct acpi_device_id *hid;
176 struct acpi_driver *driver;
177
178 void (*notify) (struct ibm_struct *, u32);
179 acpi_handle *handle;
180 u32 type;
181 struct acpi_device *device;
182};
183
184struct ibm_struct {
185 char *name;
186
187 int (*read) (char *);
188 int (*write) (char *);
189 void (*exit) (void);
190 void (*resume) (void);
083f1760 191 void (*suspend) (pm_message_t state);
0c78039f
HMH
192
193 struct list_head all_drivers;
194
195 struct tp_acpi_drv_struct *acpi;
196
197 struct {
198 u8 acpi_driver_registered:1;
199 u8 acpi_notify_installed:1;
200 u8 proc_created:1;
201 u8 init_called:1;
202 u8 experimental:1;
203 } flags;
204};
205
206struct ibm_init_struct {
207 char param[32];
208
209 int (*init) (struct ibm_init_struct *);
210 struct ibm_struct *data;
211};
212
213static struct {
214#ifdef CONFIG_THINKPAD_ACPI_BAY
215 u32 bay_status:1;
216 u32 bay_eject:1;
217 u32 bay_status2:1;
218 u32 bay_eject2:1;
219#endif
220 u32 bluetooth:1;
221 u32 hotkey:1;
222 u32 hotkey_mask:1;
223 u32 hotkey_wlsw:1;
224 u32 light:1;
225 u32 light_status:1;
226 u32 bright_16levels:1;
227 u32 wan:1;
228 u32 fan_ctrl_status_undef:1;
229 u32 input_device_registered:1;
230 u32 platform_drv_registered:1;
231 u32 platform_drv_attrs_registered:1;
232 u32 sensors_pdrv_registered:1;
233 u32 sensors_pdrv_attrs_registered:1;
234 u32 sensors_pdev_attrs_registered:1;
235 u32 hotkey_poll_active:1;
236} tp_features;
237
238struct thinkpad_id_data {
239 unsigned int vendor; /* ThinkPad vendor:
240 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
241
242 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
243 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
244
245 u16 bios_model; /* Big Endian, TP-1Y = 0x5931, 0 = unknown */
246 u16 ec_model;
247
248 char *model_str;
249};
0c78039f
HMH
250static struct thinkpad_id_data thinkpad_id;
251
8fef502e
HMH
252static enum {
253 TPACPI_LIFE_INIT = 0,
254 TPACPI_LIFE_RUNNING,
255 TPACPI_LIFE_EXITING,
256} tpacpi_lifecycle;
257
b21a15f6
HMH
258static int experimental;
259static u32 dbg_level;
260
56b6aeb0
HMH
261/****************************************************************************
262 ****************************************************************************
263 *
264 * ACPI Helpers and device model
265 *
266 ****************************************************************************
267 ****************************************************************************/
268
269/*************************************************************************
270 * ACPI basic handles
271 */
1da177e4 272
94954cc6 273static acpi_handle root_handle;
1da177e4 274
e0c7dfe7 275#define TPACPI_HANDLE(object, parent, paths...) \
1da177e4
LT
276 static acpi_handle object##_handle; \
277 static acpi_handle *object##_parent = &parent##_handle; \
78f81cc4 278 static char *object##_path; \
1da177e4
LT
279 static char *object##_paths[] = { paths }
280
e0c7dfe7 281TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
78f81cc4
BD
282 "\\_SB.PCI.ISA.EC", /* 570 */
283 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
284 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
285 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
286 "\\_SB.PCI0.ICH3.EC0", /* R31 */
287 "\\_SB.PCI0.LPC.EC", /* all others */
56b6aeb0 288 );
78f81cc4 289
e0c7dfe7
HMH
290TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
291TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
78f81cc4 292
35ff8b9f
HMH
293TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
294 /* T4x, X31, X40 */
78f81cc4
BD
295 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
296 "\\CMS", /* R40, R40e */
56b6aeb0 297 ); /* all others */
78f81cc4 298
e0c7dfe7 299TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
78f81cc4
BD
300 "^HKEY", /* R30, R31 */
301 "HKEY", /* all others */
56b6aeb0 302 ); /* 570 */
78f81cc4 303
78f81cc4 304
56b6aeb0
HMH
305/*************************************************************************
306 * ACPI helpers
a8b7a662
HMH
307 */
308
1da177e4
LT
309static int acpi_evalf(acpi_handle handle,
310 void *res, char *method, char *fmt, ...)
311{
312 char *fmt0 = fmt;
78f81cc4 313 struct acpi_object_list params;
e0c7dfe7 314 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
78f81cc4
BD
315 struct acpi_buffer result, *resultp;
316 union acpi_object out_obj;
317 acpi_status status;
318 va_list ap;
319 char res_type;
320 int success;
321 int quiet;
1da177e4
LT
322
323 if (!*fmt) {
e0c7dfe7 324 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
1da177e4
LT
325 return 0;
326 }
327
328 if (*fmt == 'q') {
329 quiet = 1;
330 fmt++;
331 } else
332 quiet = 0;
333
334 res_type = *(fmt++);
335
336 params.count = 0;
337 params.pointer = &in_objs[0];
338
339 va_start(ap, fmt);
340 while (*fmt) {
341 char c = *(fmt++);
342 switch (c) {
343 case 'd': /* int */
344 in_objs[params.count].integer.value = va_arg(ap, int);
345 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
346 break;
78f81cc4 347 /* add more types as needed */
1da177e4 348 default:
e0c7dfe7 349 printk(TPACPI_ERR "acpi_evalf() called "
1da177e4
LT
350 "with invalid format character '%c'\n", c);
351 return 0;
352 }
353 }
354 va_end(ap);
355
78f81cc4
BD
356 if (res_type != 'v') {
357 result.length = sizeof(out_obj);
358 result.pointer = &out_obj;
359 resultp = &result;
360 } else
361 resultp = NULL;
1da177e4 362
78f81cc4 363 status = acpi_evaluate_object(handle, method, &params, resultp);
1da177e4
LT
364
365 switch (res_type) {
78f81cc4 366 case 'd': /* int */
1da177e4
LT
367 if (res)
368 *(int *)res = out_obj.integer.value;
369 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
370 break;
78f81cc4 371 case 'v': /* void */
1da177e4
LT
372 success = status == AE_OK;
373 break;
78f81cc4 374 /* add more types as needed */
1da177e4 375 default:
e0c7dfe7 376 printk(TPACPI_ERR "acpi_evalf() called "
1da177e4
LT
377 "with invalid format character '%c'\n", res_type);
378 return 0;
379 }
380
56b6aeb0 381 if (!success && !quiet)
e0c7dfe7 382 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
56b6aeb0
HMH
383 method, fmt0, status);
384
385 return success;
386}
387
35ff8b9f 388static int acpi_ec_read(int i, u8 *p)
56b6aeb0
HMH
389{
390 int v;
391
392 if (ecrd_handle) {
393 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
394 return 0;
395 *p = v;
396 } else {
397 if (ec_read(i, p) < 0)
398 return 0;
399 }
400
401 return 1;
402}
403
404static int acpi_ec_write(int i, u8 v)
405{
406 if (ecwr_handle) {
407 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
408 return 0;
409 } else {
410 if (ec_write(i, v) < 0)
411 return 0;
412 }
413
414 return 1;
415}
416
013c40e4 417#if defined(CONFIG_THINKPAD_ACPI_DOCK) || defined(CONFIG_THINKPAD_ACPI_BAY)
56b6aeb0
HMH
418static int _sta(acpi_handle handle)
419{
420 int status;
421
422 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
423 status = 0;
424
425 return status;
426}
013c40e4 427#endif
56b6aeb0 428
c9bea99c
HMH
429static int issue_thinkpad_cmos_command(int cmos_cmd)
430{
431 if (!cmos_handle)
432 return -ENXIO;
433
434 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
435 return -EIO;
436
437 return 0;
438}
439
56b6aeb0
HMH
440/*************************************************************************
441 * ACPI device model
442 */
443
35ff8b9f
HMH
444#define TPACPI_ACPIHANDLE_INIT(object) \
445 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
f74a27d4
HMH
446 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
447
8d376cd6 448static void drv_acpi_handle_init(char *name,
5fba344c
HMH
449 acpi_handle *handle, acpi_handle parent,
450 char **paths, int num_paths, char **path)
56b6aeb0
HMH
451{
452 int i;
453 acpi_status status;
454
5ae930e6
HMH
455 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
456 name);
457
56b6aeb0
HMH
458 for (i = 0; i < num_paths; i++) {
459 status = acpi_get_handle(parent, paths[i], handle);
460 if (ACPI_SUCCESS(status)) {
461 *path = paths[i];
5ae930e6
HMH
462 dbg_printk(TPACPI_DBG_INIT,
463 "Found ACPI handle %s for %s\n",
464 *path, name);
56b6aeb0
HMH
465 return;
466 }
467 }
468
5ae930e6
HMH
469 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
470 name);
56b6aeb0
HMH
471 *handle = NULL;
472}
473
8d376cd6 474static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
56b6aeb0
HMH
475{
476 struct ibm_struct *ibm = data;
477
8fef502e
HMH
478 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
479 return;
480
8d376cd6 481 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
56b6aeb0
HMH
482 return;
483
8d376cd6 484 ibm->acpi->notify(ibm, event);
56b6aeb0
HMH
485}
486
8d376cd6 487static int __init setup_acpi_notify(struct ibm_struct *ibm)
56b6aeb0
HMH
488{
489 acpi_status status;
5ae930e6 490 int rc;
56b6aeb0 491
8d376cd6
HMH
492 BUG_ON(!ibm->acpi);
493
494 if (!*ibm->acpi->handle)
56b6aeb0
HMH
495 return 0;
496
5ae930e6 497 vdbg_printk(TPACPI_DBG_INIT,
fe08bc4b
HMH
498 "setting up ACPI notify for %s\n", ibm->name);
499
5ae930e6
HMH
500 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
501 if (rc < 0) {
e0c7dfe7 502 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
5ae930e6 503 ibm->name, rc);
56b6aeb0
HMH
504 return -ENODEV;
505 }
506
8d376cd6
HMH
507 acpi_driver_data(ibm->acpi->device) = ibm;
508 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
e0c7dfe7 509 TPACPI_ACPI_EVENT_PREFIX,
643f12db 510 ibm->name);
56b6aeb0 511
8d376cd6
HMH
512 status = acpi_install_notify_handler(*ibm->acpi->handle,
513 ibm->acpi->type, dispatch_acpi_notify, ibm);
56b6aeb0
HMH
514 if (ACPI_FAILURE(status)) {
515 if (status == AE_ALREADY_EXISTS) {
35ff8b9f
HMH
516 printk(TPACPI_NOTICE
517 "another device driver is already "
518 "handling %s events\n", ibm->name);
56b6aeb0 519 } else {
35ff8b9f
HMH
520 printk(TPACPI_ERR
521 "acpi_install_notify_handler(%s) failed: %d\n",
522 ibm->name, status);
56b6aeb0
HMH
523 }
524 return -ENODEV;
525 }
8d376cd6 526 ibm->flags.acpi_notify_installed = 1;
56b6aeb0
HMH
527 return 0;
528}
529
8d376cd6 530static int __init tpacpi_device_add(struct acpi_device *device)
56b6aeb0
HMH
531{
532 return 0;
533}
534
6700121b 535static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
56b6aeb0 536{
5ae930e6 537 int rc;
56b6aeb0 538
fe08bc4b
HMH
539 dbg_printk(TPACPI_DBG_INIT,
540 "registering %s as an ACPI driver\n", ibm->name);
541
8d376cd6
HMH
542 BUG_ON(!ibm->acpi);
543
544 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
545 if (!ibm->acpi->driver) {
e0c7dfe7 546 printk(TPACPI_ERR "kzalloc(ibm->driver) failed\n");
5fba344c 547 return -ENOMEM;
56b6aeb0
HMH
548 }
549
e0c7dfe7 550 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
8d376cd6 551 ibm->acpi->driver->ids = ibm->acpi->hid;
1ba90e3a 552
8d376cd6 553 ibm->acpi->driver->ops.add = &tpacpi_device_add;
56b6aeb0 554
5ae930e6
HMH
555 rc = acpi_bus_register_driver(ibm->acpi->driver);
556 if (rc < 0) {
e0c7dfe7 557 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
1ba90e3a 558 ibm->name, rc);
8d376cd6
HMH
559 kfree(ibm->acpi->driver);
560 ibm->acpi->driver = NULL;
5ae930e6 561 } else if (!rc)
8d376cd6 562 ibm->flags.acpi_driver_registered = 1;
56b6aeb0 563
5ae930e6 564 return rc;
56b6aeb0
HMH
565}
566
567
568/****************************************************************************
569 ****************************************************************************
570 *
571 * Procfs Helpers
572 *
573 ****************************************************************************
574 ****************************************************************************/
575
8d376cd6
HMH
576static int dispatch_procfs_read(char *page, char **start, off_t off,
577 int count, int *eof, void *data)
56b6aeb0
HMH
578{
579 struct ibm_struct *ibm = data;
580 int len;
581
582 if (!ibm || !ibm->read)
583 return -EINVAL;
584
585 len = ibm->read(page);
586 if (len < 0)
587 return len;
588
589 if (len <= off + count)
590 *eof = 1;
591 *start = page + off;
592 len -= off;
593 if (len > count)
594 len = count;
595 if (len < 0)
596 len = 0;
597
598 return len;
599}
600
8d376cd6 601static int dispatch_procfs_write(struct file *file,
35ff8b9f 602 const char __user *userbuf,
8d376cd6 603 unsigned long count, void *data)
56b6aeb0
HMH
604{
605 struct ibm_struct *ibm = data;
606 char *kernbuf;
607 int ret;
608
609 if (!ibm || !ibm->write)
610 return -EINVAL;
611
612 kernbuf = kmalloc(count + 2, GFP_KERNEL);
613 if (!kernbuf)
614 return -ENOMEM;
1da177e4 615
56b6aeb0
HMH
616 if (copy_from_user(kernbuf, userbuf, count)) {
617 kfree(kernbuf);
618 return -EFAULT;
619 }
1da177e4 620
56b6aeb0
HMH
621 kernbuf[count] = 0;
622 strcat(kernbuf, ",");
623 ret = ibm->write(kernbuf);
624 if (ret == 0)
625 ret = count;
1da177e4 626
56b6aeb0
HMH
627 kfree(kernbuf);
628
629 return ret;
1da177e4
LT
630}
631
632static char *next_cmd(char **cmds)
633{
634 char *start = *cmds;
635 char *end;
636
637 while ((end = strchr(start, ',')) && end == start)
638 start = end + 1;
639
640 if (!end)
641 return NULL;
642
643 *end = 0;
644 *cmds = end + 1;
645 return start;
646}
647
56b6aeb0 648
54ae1501
HMH
649/****************************************************************************
650 ****************************************************************************
651 *
7f5d1cd6 652 * Device model: input, hwmon and platform
54ae1501
HMH
653 *
654 ****************************************************************************
655 ****************************************************************************/
656
94954cc6 657static struct platform_device *tpacpi_pdev;
7fd40029 658static struct platform_device *tpacpi_sensors_pdev;
1beeffe4 659static struct device *tpacpi_hwmon;
7f5d1cd6 660static struct input_dev *tpacpi_inputdev;
8523ed6f 661static struct mutex tpacpi_inputdev_send_mutex;
b21a15f6 662static LIST_HEAD(tpacpi_all_drivers);
e295e850 663
083f1760
HMH
664static int tpacpi_suspend_handler(struct platform_device *pdev,
665 pm_message_t state)
666{
667 struct ibm_struct *ibm, *itmp;
668
669 list_for_each_entry_safe(ibm, itmp,
670 &tpacpi_all_drivers,
671 all_drivers) {
672 if (ibm->suspend)
673 (ibm->suspend)(state);
674 }
675
676 return 0;
677}
678
e295e850
HMH
679static int tpacpi_resume_handler(struct platform_device *pdev)
680{
681 struct ibm_struct *ibm, *itmp;
682
683 list_for_each_entry_safe(ibm, itmp,
684 &tpacpi_all_drivers,
685 all_drivers) {
686 if (ibm->resume)
687 (ibm->resume)();
688 }
689
690 return 0;
691}
692
54ae1501
HMH
693static struct platform_driver tpacpi_pdriver = {
694 .driver = {
e0c7dfe7 695 .name = TPACPI_DRVR_NAME,
54ae1501
HMH
696 .owner = THIS_MODULE,
697 },
083f1760 698 .suspend = tpacpi_suspend_handler,
e295e850 699 .resume = tpacpi_resume_handler,
54ae1501
HMH
700};
701
7fd40029
HMH
702static struct platform_driver tpacpi_hwmon_pdriver = {
703 .driver = {
e0c7dfe7 704 .name = TPACPI_HWMON_DRVR_NAME,
7fd40029
HMH
705 .owner = THIS_MODULE,
706 },
707};
54ae1501 708
176750d6 709/*************************************************************************
b21a15f6 710 * sysfs support helpers
176750d6
HMH
711 */
712
b21a15f6
HMH
713struct attribute_set {
714 unsigned int members, max_members;
715 struct attribute_group group;
176750d6
HMH
716};
717
7252374a
HMH
718struct attribute_set_obj {
719 struct attribute_set s;
720 struct attribute *a;
721} __attribute__((packed));
722
723static struct attribute_set *create_attr_set(unsigned int max_members,
35ff8b9f 724 const char *name)
7252374a
HMH
725{
726 struct attribute_set_obj *sobj;
727
728 if (max_members == 0)
729 return NULL;
730
731 /* Allocates space for implicit NULL at the end too */
732 sobj = kzalloc(sizeof(struct attribute_set_obj) +
733 max_members * sizeof(struct attribute *),
734 GFP_KERNEL);
735 if (!sobj)
736 return NULL;
737 sobj->s.max_members = max_members;
738 sobj->s.group.attrs = &sobj->a;
739 sobj->s.group.name = name;
740
741 return &sobj->s;
742}
743
f74a27d4
HMH
744#define destroy_attr_set(_set) \
745 kfree(_set);
746
7252374a 747/* not multi-threaded safe, use it in a single thread per set */
35ff8b9f 748static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
7252374a
HMH
749{
750 if (!s || !attr)
751 return -EINVAL;
752
753 if (s->members >= s->max_members)
754 return -ENOMEM;
755
756 s->group.attrs[s->members] = attr;
757 s->members++;
758
759 return 0;
760}
761
35ff8b9f 762static int add_many_to_attr_set(struct attribute_set *s,
7252374a
HMH
763 struct attribute **attr,
764 unsigned int count)
765{
766 int i, res;
767
768 for (i = 0; i < count; i++) {
769 res = add_to_attr_set(s, attr[i]);
770 if (res)
771 return res;
772 }
773
774 return 0;
775}
776
35ff8b9f 777static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
7252374a
HMH
778{
779 sysfs_remove_group(kobj, &s->group);
780 destroy_attr_set(s);
781}
782
f74a27d4
HMH
783#define register_attr_set_with_sysfs(_attr_set, _kobj) \
784 sysfs_create_group(_kobj, &_attr_set->group)
785
7252374a
HMH
786static int parse_strtoul(const char *buf,
787 unsigned long max, unsigned long *value)
788{
789 char *endp;
790
32afbf07
HMH
791 while (*buf && isspace(*buf))
792 buf++;
7252374a
HMH
793 *value = simple_strtoul(buf, &endp, 0);
794 while (*endp && isspace(*endp))
795 endp++;
796 if (*endp || *value > max)
797 return -EINVAL;
798
799 return 0;
800}
801
56b6aeb0 802/*************************************************************************
b21a15f6 803 * thinkpad-acpi driver attributes
56b6aeb0
HMH
804 */
805
b21a15f6
HMH
806/* interface_version --------------------------------------------------- */
807static ssize_t tpacpi_driver_interface_version_show(
808 struct device_driver *drv,
809 char *buf)
1da177e4 810{
b21a15f6
HMH
811 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
812}
813
814static DRIVER_ATTR(interface_version, S_IRUGO,
815 tpacpi_driver_interface_version_show, NULL);
816
817/* debug_level --------------------------------------------------------- */
818static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
819 char *buf)
820{
821 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
822}
823
824static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
825 const char *buf, size_t count)
826{
827 unsigned long t;
828
829 if (parse_strtoul(buf, 0xffff, &t))
830 return -EINVAL;
831
832 dbg_level = t;
833
834 return count;
835}
836
837static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
838 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
839
840/* version ------------------------------------------------------------- */
841static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
842 char *buf)
843{
35ff8b9f
HMH
844 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
845 TPACPI_DESC, TPACPI_VERSION);
b21a15f6
HMH
846}
847
848static DRIVER_ATTR(version, S_IRUGO,
849 tpacpi_driver_version_show, NULL);
850
851/* --------------------------------------------------------------------- */
852
35ff8b9f 853static struct driver_attribute *tpacpi_driver_attributes[] = {
b21a15f6
HMH
854 &driver_attr_debug_level, &driver_attr_version,
855 &driver_attr_interface_version,
856};
857
858static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
859{
860 int i, res;
861
862 i = 0;
863 res = 0;
864 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
865 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
866 i++;
867 }
868
869 return res;
870}
871
872static void tpacpi_remove_driver_attributes(struct device_driver *drv)
873{
874 int i;
875
35ff8b9f 876 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
b21a15f6
HMH
877 driver_remove_file(drv, tpacpi_driver_attributes[i]);
878}
879
880/****************************************************************************
881 ****************************************************************************
882 *
883 * Subdrivers
884 *
885 ****************************************************************************
886 ****************************************************************************/
887
888/*************************************************************************
889 * thinkpad-acpi init subdriver
890 */
891
892static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
893{
e0c7dfe7
HMH
894 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
895 printk(TPACPI_INFO "%s\n", TPACPI_URL);
b21a15f6 896
e0c7dfe7 897 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
b21a15f6
HMH
898 (thinkpad_id.bios_version_str) ?
899 thinkpad_id.bios_version_str : "unknown",
900 (thinkpad_id.ec_version_str) ?
901 thinkpad_id.ec_version_str : "unknown");
d5a2f2f1
HMH
902
903 if (thinkpad_id.vendor && thinkpad_id.model_str)
e0c7dfe7 904 printk(TPACPI_INFO "%s %s\n",
d5a2f2f1
HMH
905 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
906 "IBM" : ((thinkpad_id.vendor ==
907 PCI_VENDOR_ID_LENOVO) ?
908 "Lenovo" : "Unknown vendor"),
909 thinkpad_id.model_str);
3945ac36 910
1da177e4
LT
911 return 0;
912}
913
643f12db 914static int thinkpad_acpi_driver_read(char *p)
1da177e4
LT
915{
916 int len = 0;
917
e0c7dfe7
HMH
918 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
919 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
1da177e4
LT
920
921 return len;
922}
923
a5763f22
HMH
924static struct ibm_struct thinkpad_acpi_driver_data = {
925 .name = "driver",
926 .read = thinkpad_acpi_driver_read,
927};
928
56b6aeb0
HMH
929/*************************************************************************
930 * Hotkey subdriver
931 */
932
f74a27d4
HMH
933enum { /* hot key scan codes (derived from ACPI DSDT) */
934 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
935 TP_ACPI_HOTKEYSCAN_FNF2,
936 TP_ACPI_HOTKEYSCAN_FNF3,
937 TP_ACPI_HOTKEYSCAN_FNF4,
938 TP_ACPI_HOTKEYSCAN_FNF5,
939 TP_ACPI_HOTKEYSCAN_FNF6,
940 TP_ACPI_HOTKEYSCAN_FNF7,
941 TP_ACPI_HOTKEYSCAN_FNF8,
942 TP_ACPI_HOTKEYSCAN_FNF9,
943 TP_ACPI_HOTKEYSCAN_FNF10,
944 TP_ACPI_HOTKEYSCAN_FNF11,
945 TP_ACPI_HOTKEYSCAN_FNF12,
946 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
947 TP_ACPI_HOTKEYSCAN_FNINSERT,
948 TP_ACPI_HOTKEYSCAN_FNDELETE,
949 TP_ACPI_HOTKEYSCAN_FNHOME,
950 TP_ACPI_HOTKEYSCAN_FNEND,
951 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
952 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
953 TP_ACPI_HOTKEYSCAN_FNSPACE,
954 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
955 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
956 TP_ACPI_HOTKEYSCAN_MUTE,
957 TP_ACPI_HOTKEYSCAN_THINKPAD,
958};
959
01e88f25
HMH
960enum { /* Keys available through NVRAM polling */
961 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
962 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
963};
964
965enum { /* Positions of some of the keys in hotkey masks */
966 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
967 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
968 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
969 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
970 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
971 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
972 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
973 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
974 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
975 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
976 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
977};
978
979enum { /* NVRAM to ACPI HKEY group map */
980 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
981 TP_ACPI_HKEY_ZOOM_MASK |
982 TP_ACPI_HKEY_DISPSWTCH_MASK |
983 TP_ACPI_HKEY_HIBERNATE_MASK,
984 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
985 TP_ACPI_HKEY_BRGHTDWN_MASK,
986 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
987 TP_ACPI_HKEY_VOLDWN_MASK |
988 TP_ACPI_HKEY_MUTE_MASK,
989};
990
991#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
992struct tp_nvram_state {
993 u16 thinkpad_toggle:1;
994 u16 zoom_toggle:1;
995 u16 display_toggle:1;
996 u16 thinklight_toggle:1;
997 u16 hibernate_toggle:1;
998 u16 displayexp_toggle:1;
999 u16 display_state:1;
1000 u16 brightness_toggle:1;
1001 u16 volume_toggle:1;
1002 u16 mute:1;
1003
1004 u8 brightness_level;
1005 u8 volume_level;
1006};
1007
1008static struct task_struct *tpacpi_hotkey_task;
1009static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1010static int hotkey_poll_freq = 10; /* Hz */
1011static struct mutex hotkey_thread_mutex;
1012static struct mutex hotkey_thread_data_mutex;
1013static unsigned int hotkey_config_change;
1014
1015#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1016
1017#define hotkey_source_mask 0U
1018
1019#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1020
f74a27d4
HMH
1021static struct mutex hotkey_mutex;
1022
a713b4d7
HMH
1023static enum { /* Reasons for waking up */
1024 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1025 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1026 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1027} hotkey_wakeup_reason;
1028
1029static int hotkey_autosleep_ack;
1030
78f81cc4 1031static int hotkey_orig_status;
ae92bd17 1032static u32 hotkey_orig_mask;
9b010de5 1033static u32 hotkey_all_mask;
6a38abbf 1034static u32 hotkey_reserved_mask;
b2c985e7 1035static u32 hotkey_mask;
6a38abbf 1036
b21a15f6
HMH
1037static unsigned int hotkey_report_mode;
1038
edf0e0e5 1039static u16 *hotkey_keycode_map;
78f81cc4 1040
94954cc6 1041static struct attribute_set *hotkey_dev_attributes;
a0416420 1042
01e88f25
HMH
1043#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1044#define HOTKEY_CONFIG_CRITICAL_START \
35ff8b9f
HMH
1045 do { \
1046 mutex_lock(&hotkey_thread_data_mutex); \
1047 hotkey_config_change++; \
1048 } while (0);
01e88f25
HMH
1049#define HOTKEY_CONFIG_CRITICAL_END \
1050 mutex_unlock(&hotkey_thread_data_mutex);
1051#else
1052#define HOTKEY_CONFIG_CRITICAL_START
1053#define HOTKEY_CONFIG_CRITICAL_END
1054#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1055
74941a69
HMH
1056static int hotkey_get_wlsw(int *status)
1057{
1058 if (!acpi_evalf(hkey_handle, status, "WLSW", "d"))
1059 return -EIO;
1060 return 0;
1061}
1062
b2c985e7
HMH
1063/*
1064 * Call with hotkey_mutex held
1065 */
1066static int hotkey_mask_get(void)
1067{
01e88f25
HMH
1068 u32 m = 0;
1069
b2c985e7 1070 if (tp_features.hotkey_mask) {
01e88f25 1071 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
b2c985e7
HMH
1072 return -EIO;
1073 }
01e88f25 1074 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
b2c985e7
HMH
1075
1076 return 0;
1077}
1078
1079/*
1080 * Call with hotkey_mutex held
1081 */
1082static int hotkey_mask_set(u32 mask)
1083{
1084 int i;
1085 int rc = 0;
1086
1087 if (tp_features.hotkey_mask) {
01e88f25 1088 HOTKEY_CONFIG_CRITICAL_START
b2c985e7
HMH
1089 for (i = 0; i < 32; i++) {
1090 u32 m = 1 << i;
01e88f25
HMH
1091 /* enable in firmware mask only keys not in NVRAM
1092 * mode, but enable the key in the cached hotkey_mask
1093 * regardless of mode, or the key will end up
1094 * disabled by hotkey_mask_get() */
b2c985e7
HMH
1095 if (!acpi_evalf(hkey_handle,
1096 NULL, "MHKM", "vdd", i + 1,
01e88f25 1097 !!((mask & ~hotkey_source_mask) & m))) {
b2c985e7
HMH
1098 rc = -EIO;
1099 break;
1100 } else {
1101 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
1102 }
1103 }
01e88f25 1104 HOTKEY_CONFIG_CRITICAL_END
b2c985e7
HMH
1105
1106 /* hotkey_mask_get must be called unconditionally below */
01e88f25
HMH
1107 if (!hotkey_mask_get() && !rc &&
1108 (hotkey_mask & ~hotkey_source_mask) !=
1109 (mask & ~hotkey_source_mask)) {
e0c7dfe7 1110 printk(TPACPI_NOTICE
b2c985e7
HMH
1111 "requested hot key mask 0x%08x, but "
1112 "firmware forced it to 0x%08x\n",
1113 mask, hotkey_mask);
1114 }
01e88f25
HMH
1115 } else {
1116#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1117 HOTKEY_CONFIG_CRITICAL_START
1118 hotkey_mask = mask & hotkey_source_mask;
1119 HOTKEY_CONFIG_CRITICAL_END
1120 hotkey_mask_get();
1121 if (hotkey_mask != mask) {
e0c7dfe7 1122 printk(TPACPI_NOTICE
01e88f25
HMH
1123 "requested hot key mask 0x%08x, "
1124 "forced to 0x%08x (NVRAM poll mask is "
1125 "0x%08x): no firmware mask support\n",
1126 mask, hotkey_mask, hotkey_source_mask);
1127 }
1128#else
1129 hotkey_mask_get();
1130 rc = -ENXIO;
1131#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
b2c985e7
HMH
1132 }
1133
1134 return rc;
1135}
1136
1137static int hotkey_status_get(int *status)
1138{
1139 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
1140 return -EIO;
1141
1142 return 0;
1143}
1144
1145static int hotkey_status_set(int status)
1146{
1147 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status))
1148 return -EIO;
1149
1150 return 0;
1151}
1152
b7c8c200
HMH
1153static void tpacpi_input_send_radiosw(void)
1154{
1155 int wlsw;
1156
1157 mutex_lock(&tpacpi_inputdev_send_mutex);
1158
1159 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
1160 input_report_switch(tpacpi_inputdev,
1161 SW_RADIO, !!wlsw);
1162 input_sync(tpacpi_inputdev);
1163 }
1164
1165 mutex_unlock(&tpacpi_inputdev_send_mutex);
1166}
1167
1168static void tpacpi_input_send_key(unsigned int scancode)
1169{
1170 unsigned int keycode;
1171
1172 keycode = hotkey_keycode_map[scancode];
1173
1174 if (keycode != KEY_RESERVED) {
1175 mutex_lock(&tpacpi_inputdev_send_mutex);
1176
1177 input_report_key(tpacpi_inputdev, keycode, 1);
1178 if (keycode == KEY_UNKNOWN)
1179 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1180 scancode);
1181 input_sync(tpacpi_inputdev);
1182
1183 input_report_key(tpacpi_inputdev, keycode, 0);
1184 if (keycode == KEY_UNKNOWN)
1185 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1186 scancode);
1187 input_sync(tpacpi_inputdev);
1188
1189 mutex_unlock(&tpacpi_inputdev_send_mutex);
1190 }
1191}
1192
01e88f25
HMH
1193#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1194static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
1195
1196static void tpacpi_hotkey_send_key(unsigned int scancode)
1197{
1198 tpacpi_input_send_key(scancode);
1199 if (hotkey_report_mode < 2) {
1200 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
1201 0x80, 0x1001 + scancode);
1202 }
1203}
1204
1205static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
1206{
1207 u8 d;
1208
1209 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
1210 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
1211 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
1212 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
1213 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
1214 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
1215 }
1216 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
1217 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
1218 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
1219 }
1220 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
1221 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
1222 n->displayexp_toggle =
1223 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
1224 }
1225 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
1226 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
1227 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
1228 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
1229 n->brightness_toggle =
1230 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
1231 }
1232 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
1233 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
1234 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
1235 >> TP_NVRAM_POS_LEVEL_VOLUME;
1236 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
1237 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
1238 }
1239}
1240
1241#define TPACPI_COMPARE_KEY(__scancode, __member) \
35ff8b9f
HMH
1242 do { \
1243 if ((mask & (1 << __scancode)) && \
1244 oldn->__member != newn->__member) \
1245 tpacpi_hotkey_send_key(__scancode); \
1246 } while (0)
01e88f25
HMH
1247
1248#define TPACPI_MAY_SEND_KEY(__scancode) \
1249 do { if (mask & (1 << __scancode)) \
1250 tpacpi_hotkey_send_key(__scancode); } while (0)
1251
1252static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
35ff8b9f 1253 struct tp_nvram_state *newn,
01e88f25
HMH
1254 u32 mask)
1255{
1256 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
1257 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
1258 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
1259 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
1260
1261 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
1262
1263 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
1264
1265 /* handle volume */
1266 if (oldn->volume_toggle != newn->volume_toggle) {
1267 if (oldn->mute != newn->mute) {
1268 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1269 }
1270 if (oldn->volume_level > newn->volume_level) {
1271 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1272 } else if (oldn->volume_level < newn->volume_level) {
1273 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1274 } else if (oldn->mute == newn->mute) {
1275 /* repeated key presses that didn't change state */
1276 if (newn->mute) {
1277 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1278 } else if (newn->volume_level != 0) {
1279 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1280 } else {
1281 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1282 }
1283 }
1284 }
1285
1286 /* handle brightness */
1287 if (oldn->brightness_toggle != newn->brightness_toggle) {
1288 if (oldn->brightness_level < newn->brightness_level) {
1289 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1290 } else if (oldn->brightness_level > newn->brightness_level) {
1291 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1292 } else {
1293 /* repeated key presses that didn't change state */
1294 if (newn->brightness_level != 0) {
1295 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1296 } else {
1297 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1298 }
1299 }
1300 }
1301}
1302
1303#undef TPACPI_COMPARE_KEY
1304#undef TPACPI_MAY_SEND_KEY
1305
1306static int hotkey_kthread(void *data)
1307{
1308 struct tp_nvram_state s[2];
1309 u32 mask;
1310 unsigned int si, so;
1311 unsigned long t;
1312 unsigned int change_detector, must_reset;
1313
1314 mutex_lock(&hotkey_thread_mutex);
1315
1316 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
1317 goto exit;
1318
1319 set_freezable();
1320
1321 so = 0;
1322 si = 1;
1323 t = 0;
1324
1325 /* Initial state for compares */
1326 mutex_lock(&hotkey_thread_data_mutex);
1327 change_detector = hotkey_config_change;
1328 mask = hotkey_source_mask & hotkey_mask;
1329 mutex_unlock(&hotkey_thread_data_mutex);
1330 hotkey_read_nvram(&s[so], mask);
1331
1332 while (!kthread_should_stop() && hotkey_poll_freq) {
1333 if (t == 0)
1334 t = 1000/hotkey_poll_freq;
1335 t = msleep_interruptible(t);
1336 if (unlikely(kthread_should_stop()))
1337 break;
1338 must_reset = try_to_freeze();
1339 if (t > 0 && !must_reset)
1340 continue;
1341
1342 mutex_lock(&hotkey_thread_data_mutex);
1343 if (must_reset || hotkey_config_change != change_detector) {
1344 /* forget old state on thaw or config change */
1345 si = so;
1346 t = 0;
1347 change_detector = hotkey_config_change;
1348 }
1349 mask = hotkey_source_mask & hotkey_mask;
1350 mutex_unlock(&hotkey_thread_data_mutex);
1351
1352 if (likely(mask)) {
1353 hotkey_read_nvram(&s[si], mask);
1354 if (likely(si != so)) {
1355 hotkey_compare_and_issue_event(&s[so], &s[si],
35ff8b9f 1356 mask);
01e88f25
HMH
1357 }
1358 }
1359
1360 so = si;
1361 si ^= 1;
1362 }
1363
1364exit:
1365 mutex_unlock(&hotkey_thread_mutex);
1366 return 0;
1367}
1368
1369static void hotkey_poll_stop_sync(void)
1370{
1371 if (tpacpi_hotkey_task) {
1372 if (frozen(tpacpi_hotkey_task) ||
1373 freezing(tpacpi_hotkey_task))
1374 thaw_process(tpacpi_hotkey_task);
1375
1376 kthread_stop(tpacpi_hotkey_task);
1377 tpacpi_hotkey_task = NULL;
1378 mutex_lock(&hotkey_thread_mutex);
1379 /* at this point, the thread did exit */
1380 mutex_unlock(&hotkey_thread_mutex);
1381 }
1382}
1383
1384/* call with hotkey_mutex held */
1385static void hotkey_poll_setup(int may_warn)
1386{
1387 if ((hotkey_source_mask & hotkey_mask) != 0 &&
1388 hotkey_poll_freq > 0 &&
1389 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
1390 if (!tpacpi_hotkey_task) {
1391 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
35ff8b9f
HMH
1392 NULL,
1393 TPACPI_FILE "d");
01e88f25
HMH
1394 if (IS_ERR(tpacpi_hotkey_task)) {
1395 tpacpi_hotkey_task = NULL;
35ff8b9f
HMH
1396 printk(TPACPI_ERR
1397 "could not create kernel thread "
01e88f25
HMH
1398 "for hotkey polling\n");
1399 }
1400 }
1401 } else {
1402 hotkey_poll_stop_sync();
1403 if (may_warn &&
1404 hotkey_source_mask != 0 && hotkey_poll_freq == 0) {
35ff8b9f
HMH
1405 printk(TPACPI_NOTICE
1406 "hot keys 0x%08x require polling, "
01e88f25
HMH
1407 "which is currently disabled\n",
1408 hotkey_source_mask);
1409 }
1410 }
1411}
1412
1413static void hotkey_poll_setup_safe(int may_warn)
1414{
1415 mutex_lock(&hotkey_mutex);
1416 hotkey_poll_setup(may_warn);
1417 mutex_unlock(&hotkey_mutex);
1418}
1419
1bc6b9cd
HMH
1420#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1421
1422static void hotkey_poll_setup_safe(int __unused)
1423{
1424}
1425
1426#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1427
01e88f25
HMH
1428static int hotkey_inputdev_open(struct input_dev *dev)
1429{
1430 switch (tpacpi_lifecycle) {
1431 case TPACPI_LIFE_INIT:
1432 /*
1433 * hotkey_init will call hotkey_poll_setup_safe
1434 * at the appropriate moment
1435 */
1436 return 0;
1437 case TPACPI_LIFE_EXITING:
1438 return -EBUSY;
1439 case TPACPI_LIFE_RUNNING:
1440 hotkey_poll_setup_safe(0);
1441 return 0;
1442 }
1443
1444 /* Should only happen if tpacpi_lifecycle is corrupt */
1445 BUG();
1446 return -EBUSY;
1447}
1448
1449static void hotkey_inputdev_close(struct input_dev *dev)
1450{
1451 /* disable hotkey polling when possible */
1452 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
1453 hotkey_poll_setup_safe(0);
1454}
01e88f25 1455
a0416420
HMH
1456/* sysfs hotkey enable ------------------------------------------------- */
1457static ssize_t hotkey_enable_show(struct device *dev,
1458 struct device_attribute *attr,
1459 char *buf)
1460{
ae92bd17 1461 int res, status;
a0416420 1462
b2c985e7 1463 res = hotkey_status_get(&status);
a0416420
HMH
1464 if (res)
1465 return res;
1466
1467 return snprintf(buf, PAGE_SIZE, "%d\n", status);
1468}
1469
1470static ssize_t hotkey_enable_store(struct device *dev,
1471 struct device_attribute *attr,
1472 const char *buf, size_t count)
1473{
1474 unsigned long t;
b2c985e7 1475 int res;
a0416420
HMH
1476
1477 if (parse_strtoul(buf, 1, &t))
1478 return -EINVAL;
1479
b2c985e7 1480 res = hotkey_status_set(t);
a0416420
HMH
1481
1482 return (res) ? res : count;
1483}
1484
1485static struct device_attribute dev_attr_hotkey_enable =
cc4c24e1 1486 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
a0416420
HMH
1487 hotkey_enable_show, hotkey_enable_store);
1488
1489/* sysfs hotkey mask --------------------------------------------------- */
1490static ssize_t hotkey_mask_show(struct device *dev,
1491 struct device_attribute *attr,
1492 char *buf)
1493{
b2c985e7 1494 int res;
a0416420 1495
b2c985e7
HMH
1496 if (mutex_lock_interruptible(&hotkey_mutex))
1497 return -ERESTARTSYS;
1498 res = hotkey_mask_get();
1499 mutex_unlock(&hotkey_mutex);
a0416420 1500
b2c985e7
HMH
1501 return (res)?
1502 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
a0416420
HMH
1503}
1504
1505static ssize_t hotkey_mask_store(struct device *dev,
1506 struct device_attribute *attr,
1507 const char *buf, size_t count)
1508{
1509 unsigned long t;
b2c985e7 1510 int res;
a0416420 1511
ae92bd17 1512 if (parse_strtoul(buf, 0xffffffffUL, &t))
a0416420
HMH
1513 return -EINVAL;
1514
b2c985e7
HMH
1515 if (mutex_lock_interruptible(&hotkey_mutex))
1516 return -ERESTARTSYS;
1517
1518 res = hotkey_mask_set(t);
01e88f25
HMH
1519
1520#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1521 hotkey_poll_setup(1);
1522#endif
1523
b2c985e7 1524 mutex_unlock(&hotkey_mutex);
a0416420
HMH
1525
1526 return (res) ? res : count;
1527}
1528
1529static struct device_attribute dev_attr_hotkey_mask =
cc4c24e1 1530 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
a0416420
HMH
1531 hotkey_mask_show, hotkey_mask_store);
1532
1533/* sysfs hotkey bios_enabled ------------------------------------------- */
1534static ssize_t hotkey_bios_enabled_show(struct device *dev,
1535 struct device_attribute *attr,
1536 char *buf)
1537{
1538 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_orig_status);
1539}
1540
1541static struct device_attribute dev_attr_hotkey_bios_enabled =
cc4c24e1 1542 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
a0416420
HMH
1543
1544/* sysfs hotkey bios_mask ---------------------------------------------- */
1545static ssize_t hotkey_bios_mask_show(struct device *dev,
1546 struct device_attribute *attr,
1547 char *buf)
1548{
ae92bd17 1549 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
a0416420
HMH
1550}
1551
1552static struct device_attribute dev_attr_hotkey_bios_mask =
cc4c24e1 1553 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
a0416420 1554
9b010de5
HMH
1555/* sysfs hotkey all_mask ----------------------------------------------- */
1556static ssize_t hotkey_all_mask_show(struct device *dev,
1557 struct device_attribute *attr,
1558 char *buf)
1559{
01e88f25
HMH
1560 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1561 hotkey_all_mask | hotkey_source_mask);
9b010de5
HMH
1562}
1563
1564static struct device_attribute dev_attr_hotkey_all_mask =
1565 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
1566
1567/* sysfs hotkey recommended_mask --------------------------------------- */
1568static ssize_t hotkey_recommended_mask_show(struct device *dev,
1569 struct device_attribute *attr,
1570 char *buf)
1571{
1572 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
01e88f25
HMH
1573 (hotkey_all_mask | hotkey_source_mask)
1574 & ~hotkey_reserved_mask);
9b010de5
HMH
1575}
1576
1577static struct device_attribute dev_attr_hotkey_recommended_mask =
1578 __ATTR(hotkey_recommended_mask, S_IRUGO,
1579 hotkey_recommended_mask_show, NULL);
1580
01e88f25
HMH
1581#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1582
1583/* sysfs hotkey hotkey_source_mask ------------------------------------- */
1584static ssize_t hotkey_source_mask_show(struct device *dev,
1585 struct device_attribute *attr,
1586 char *buf)
1587{
1588 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
1589}
1590
1591static ssize_t hotkey_source_mask_store(struct device *dev,
1592 struct device_attribute *attr,
1593 const char *buf, size_t count)
1594{
1595 unsigned long t;
1596
1597 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
1598 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
1599 return -EINVAL;
1600
1601 if (mutex_lock_interruptible(&hotkey_mutex))
1602 return -ERESTARTSYS;
1603
1604 HOTKEY_CONFIG_CRITICAL_START
1605 hotkey_source_mask = t;
1606 HOTKEY_CONFIG_CRITICAL_END
1607
1608 hotkey_poll_setup(1);
1609
1610 mutex_unlock(&hotkey_mutex);
1611
1612 return count;
1613}
1614
1615static struct device_attribute dev_attr_hotkey_source_mask =
1616 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
1617 hotkey_source_mask_show, hotkey_source_mask_store);
1618
1619/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
1620static ssize_t hotkey_poll_freq_show(struct device *dev,
1621 struct device_attribute *attr,
1622 char *buf)
1623{
1624 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
1625}
1626
1627static ssize_t hotkey_poll_freq_store(struct device *dev,
1628 struct device_attribute *attr,
1629 const char *buf, size_t count)
1630{
1631 unsigned long t;
1632
1633 if (parse_strtoul(buf, 25, &t))
1634 return -EINVAL;
1635
1636 if (mutex_lock_interruptible(&hotkey_mutex))
1637 return -ERESTARTSYS;
1638
1639 hotkey_poll_freq = t;
1640
1641 hotkey_poll_setup(1);
1642 mutex_unlock(&hotkey_mutex);
1643
1644 return count;
1645}
1646
1647static struct device_attribute dev_attr_hotkey_poll_freq =
1648 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
1649 hotkey_poll_freq_show, hotkey_poll_freq_store);
1650
1651#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1652
50ebec09 1653/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
74941a69
HMH
1654static ssize_t hotkey_radio_sw_show(struct device *dev,
1655 struct device_attribute *attr,
1656 char *buf)
1657{
1658 int res, s;
1659 res = hotkey_get_wlsw(&s);
1660 if (res < 0)
1661 return res;
1662
1663 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1664}
1665
1666static struct device_attribute dev_attr_hotkey_radio_sw =
1667 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
1668
50ebec09
HMH
1669static void hotkey_radio_sw_notify_change(void)
1670{
1671 if (tp_features.hotkey_wlsw)
1672 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1673 "hotkey_radio_sw");
1674}
1675
ff80f137
HMH
1676/* sysfs hotkey report_mode -------------------------------------------- */
1677static ssize_t hotkey_report_mode_show(struct device *dev,
1678 struct device_attribute *attr,
1679 char *buf)
1680{
1681 return snprintf(buf, PAGE_SIZE, "%d\n",
1682 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
1683}
1684
1685static struct device_attribute dev_attr_hotkey_report_mode =
1686 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
1687
50ebec09 1688/* sysfs wakeup reason (pollable) -------------------------------------- */
a713b4d7
HMH
1689static ssize_t hotkey_wakeup_reason_show(struct device *dev,
1690 struct device_attribute *attr,
1691 char *buf)
1692{
1693 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
1694}
1695
1696static struct device_attribute dev_attr_hotkey_wakeup_reason =
1697 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
1698
1d5a2b54 1699static void hotkey_wakeup_reason_notify_change(void)
50ebec09
HMH
1700{
1701 if (tp_features.hotkey_mask)
1702 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1703 "wakeup_reason");
1704}
1705
1706/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
a713b4d7
HMH
1707static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
1708 struct device_attribute *attr,
1709 char *buf)
1710{
1711 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
1712}
1713
1714static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
1715 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
1716 hotkey_wakeup_hotunplug_complete_show, NULL);
1717
1d5a2b54 1718static void hotkey_wakeup_hotunplug_complete_notify_change(void)
50ebec09
HMH
1719{
1720 if (tp_features.hotkey_mask)
1721 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1722 "wakeup_hotunplug_complete");
1723}
1724
a0416420
HMH
1725/* --------------------------------------------------------------------- */
1726
ff80f137
HMH
1727static struct attribute *hotkey_attributes[] __initdata = {
1728 &dev_attr_hotkey_enable.attr,
01e88f25 1729 &dev_attr_hotkey_bios_enabled.attr,
ff80f137 1730 &dev_attr_hotkey_report_mode.attr,
01e88f25
HMH
1731#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1732 &dev_attr_hotkey_mask.attr,
1733 &dev_attr_hotkey_all_mask.attr,
1734 &dev_attr_hotkey_recommended_mask.attr,
1735 &dev_attr_hotkey_source_mask.attr,
1736 &dev_attr_hotkey_poll_freq.attr,
1737#endif
ff80f137
HMH
1738};
1739
1740static struct attribute *hotkey_mask_attributes[] __initdata = {
a0416420 1741 &dev_attr_hotkey_bios_mask.attr,
01e88f25
HMH
1742#ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1743 &dev_attr_hotkey_mask.attr,
9b010de5
HMH
1744 &dev_attr_hotkey_all_mask.attr,
1745 &dev_attr_hotkey_recommended_mask.attr,
01e88f25 1746#endif
a713b4d7
HMH
1747 &dev_attr_hotkey_wakeup_reason.attr,
1748 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
a0416420
HMH
1749};
1750
a5763f22 1751static int __init hotkey_init(struct ibm_init_struct *iibm)
56b6aeb0 1752{
0f089147
HMH
1753 /* Requirements for changing the default keymaps:
1754 *
1755 * 1. Many of the keys are mapped to KEY_RESERVED for very
1756 * good reasons. Do not change them unless you have deep
1757 * knowledge on the IBM and Lenovo ThinkPad firmware for
1758 * the various ThinkPad models. The driver behaves
1759 * differently for KEY_RESERVED: such keys have their
1760 * hot key mask *unset* in mask_recommended, and also
1761 * in the initial hot key mask programmed into the
1762 * firmware at driver load time, which means the firm-
1763 * ware may react very differently if you change them to
1764 * something else;
1765 *
1766 * 2. You must be subscribed to the linux-thinkpad and
1767 * ibm-acpi-devel mailing lists, and you should read the
1768 * list archives since 2007 if you want to change the
1769 * keymaps. This requirement exists so that you will
1770 * know the past history of problems with the thinkpad-
1771 * acpi driver keymaps, and also that you will be
1772 * listening to any bug reports;
1773 *
1774 * 3. Do not send thinkpad-acpi specific patches directly to
1775 * for merging, *ever*. Send them to the linux-acpi
1776 * mailinglist for comments. Merging is to be done only
1777 * through acpi-test and the ACPI maintainer.
1778 *
1779 * If the above is too much to ask, don't change the keymap.
1780 * Ask the thinkpad-acpi maintainer to do it, instead.
1781 */
edf0e0e5
HMH
1782 static u16 ibm_keycode_map[] __initdata = {
1783 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1784 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
1785 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1786 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
0f089147
HMH
1787
1788 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
edf0e0e5
HMH
1789 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1790 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1791 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
0f089147
HMH
1792
1793 /* brightness: firmware always reacts to them, unless
1794 * X.org did some tricks in the radeon BIOS scratch
1795 * registers of *some* models */
e927c08d 1796 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
e927c08d 1797 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
0f089147
HMH
1798
1799 /* Thinklight: firmware always react to it */
edf0e0e5 1800 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
0f089147 1801
edf0e0e5
HMH
1802 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
1803 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
0f089147
HMH
1804
1805 /* Volume: firmware always react to it and reprograms
1806 * the built-in *extra* mixer. Never map it to control
1807 * another mixer by default. */
e927c08d
HMH
1808 KEY_RESERVED, /* 0x14: VOLUME UP */
1809 KEY_RESERVED, /* 0x15: VOLUME DOWN */
1810 KEY_RESERVED, /* 0x16: MUTE */
0f089147 1811
edf0e0e5 1812 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
0f089147 1813
edf0e0e5
HMH
1814 /* (assignments unknown, please report if found) */
1815 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1816 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1817 };
1818 static u16 lenovo_keycode_map[] __initdata = {
1819 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1820 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
1821 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1822 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
0f089147
HMH
1823
1824 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
edf0e0e5
HMH
1825 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1826 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1827 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
0f089147 1828
56a185b4 1829 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
56a185b4 1830 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
0f089147 1831
edf0e0e5 1832 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
0f089147 1833
edf0e0e5
HMH
1834 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
1835 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
0f089147
HMH
1836
1837 /* Volume: z60/z61, T60 (BIOS version?): firmware always
1838 * react to it and reprograms the built-in *extra* mixer.
1839 * Never map it to control another mixer by default.
1840 *
1841 * T60?, T61, R60?, R61: firmware and EC tries to send
1842 * these over the regular keyboard, so these are no-ops,
1843 * but there are still weird bugs re. MUTE, so do not
1844 * change unless you get test reports from all Lenovo
1845 * models. May cause the BIOS to interfere with the
1846 * HDA mixer.
1847 */
e927c08d
HMH
1848 KEY_RESERVED, /* 0x14: VOLUME UP */
1849 KEY_RESERVED, /* 0x15: VOLUME DOWN */
1850 KEY_RESERVED, /* 0x16: MUTE */
0f089147 1851
edf0e0e5 1852 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
0f089147 1853
edf0e0e5
HMH
1854 /* (assignments unknown, please report if found) */
1855 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1856 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1857 };
1858
1859#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
1860#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
1861#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
1862
6a38abbf 1863 int res, i;
74941a69 1864 int status;
1b6521dc 1865 int hkeyv;
b86c4722 1866
fe08bc4b
HMH
1867 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
1868
6a38abbf 1869 BUG_ON(!tpacpi_inputdev);
01e88f25
HMH
1870 BUG_ON(tpacpi_inputdev->open != NULL ||
1871 tpacpi_inputdev->close != NULL);
6a38abbf 1872
e0c7dfe7 1873 TPACPI_ACPIHANDLE_INIT(hkey);
40ca9fdf 1874 mutex_init(&hotkey_mutex);
5fba344c 1875
01e88f25
HMH
1876#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1877 mutex_init(&hotkey_thread_mutex);
1878 mutex_init(&hotkey_thread_data_mutex);
1879#endif
1880
56b6aeb0 1881 /* hotkey not supported on 570 */
d8fd94d9 1882 tp_features.hotkey = hkey_handle != NULL;
56b6aeb0 1883
fe08bc4b 1884 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
d8fd94d9 1885 str_supported(tp_features.hotkey));
fe08bc4b 1886
d8fd94d9 1887 if (tp_features.hotkey) {
a713b4d7 1888 hotkey_dev_attributes = create_attr_set(12, NULL);
a0416420
HMH
1889 if (!hotkey_dev_attributes)
1890 return -ENOMEM;
ff80f137
HMH
1891 res = add_many_to_attr_set(hotkey_dev_attributes,
1892 hotkey_attributes,
1893 ARRAY_SIZE(hotkey_attributes));
a0416420
HMH
1894 if (res)
1895 return res;
1896
56b6aeb0 1897 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
1b6521dc
HMH
1898 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
1899 for HKEY interface version 0x100 */
1900 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
1901 if ((hkeyv >> 8) != 1) {
e0c7dfe7 1902 printk(TPACPI_ERR "unknown version of the "
1b6521dc 1903 "HKEY interface: 0x%x\n", hkeyv);
e0c7dfe7
HMH
1904 printk(TPACPI_ERR "please report this to %s\n",
1905 TPACPI_MAIL);
1b6521dc
HMH
1906 } else {
1907 /*
1908 * MHKV 0x100 in A31, R40, R40e,
1909 * T4x, X31, and later
01e88f25 1910 */
1b6521dc
HMH
1911 tp_features.hotkey_mask = 1;
1912 }
1913 }
56b6aeb0 1914
fe08bc4b 1915 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
d8fd94d9 1916 str_supported(tp_features.hotkey_mask));
fe08bc4b 1917
9b010de5 1918 if (tp_features.hotkey_mask) {
9b010de5 1919 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
1b6521dc 1920 "MHKA", "qd")) {
e0c7dfe7 1921 printk(TPACPI_ERR
1b6521dc
HMH
1922 "missing MHKA handler, "
1923 "please report this to %s\n",
e0c7dfe7 1924 TPACPI_MAIL);
35ff8b9f
HMH
1925 /* FN+F12, FN+F4, FN+F3 */
1926 hotkey_all_mask = 0x080cU;
1b6521dc 1927 }
9b010de5
HMH
1928 }
1929
01e88f25
HMH
1930 /* hotkey_source_mask *must* be zero for
1931 * the first hotkey_mask_get */
b2c985e7 1932 res = hotkey_status_get(&hotkey_orig_status);
a0416420 1933 if (!res && tp_features.hotkey_mask) {
b2c985e7
HMH
1934 res = hotkey_mask_get();
1935 hotkey_orig_mask = hotkey_mask;
1936 if (!res) {
1937 res = add_many_to_attr_set(
1938 hotkey_dev_attributes,
1939 hotkey_mask_attributes,
1940 ARRAY_SIZE(hotkey_mask_attributes));
1941 }
a0416420 1942 }
74941a69 1943
01e88f25
HMH
1944#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1945 if (tp_features.hotkey_mask) {
1946 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
1947 & ~hotkey_all_mask;
1948 } else {
1949 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
1950 }
1951
1952 vdbg_printk(TPACPI_DBG_INIT,
1953 "hotkey source mask 0x%08x, polling freq %d\n",
1954 hotkey_source_mask, hotkey_poll_freq);
1955#endif
1956
74941a69
HMH
1957 /* Not all thinkpads have a hardware radio switch */
1958 if (!res && acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
1959 tp_features.hotkey_wlsw = 1;
e0c7dfe7 1960 printk(TPACPI_INFO
74941a69
HMH
1961 "radio switch found; radios are %s\n",
1962 enabled(status, 0));
1963 res = add_to_attr_set(hotkey_dev_attributes,
1964 &dev_attr_hotkey_radio_sw.attr);
1965 }
1966
a0416420
HMH
1967 if (!res)
1968 res = register_attr_set_with_sysfs(
1969 hotkey_dev_attributes,
1970 &tpacpi_pdev->dev.kobj);
b86c4722
HMH
1971 if (res)
1972 return res;
6a38abbf 1973
edf0e0e5
HMH
1974 /* Set up key map */
1975
1976 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
1977 GFP_KERNEL);
1978 if (!hotkey_keycode_map) {
35ff8b9f
HMH
1979 printk(TPACPI_ERR
1980 "failed to allocate memory for key map\n");
edf0e0e5
HMH
1981 return -ENOMEM;
1982 }
1983
1984 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
1985 dbg_printk(TPACPI_DBG_INIT,
1986 "using Lenovo default hot key map\n");
1987 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
1988 TPACPI_HOTKEY_MAP_SIZE);
1989 } else {
1990 dbg_printk(TPACPI_DBG_INIT,
1991 "using IBM default hot key map\n");
1992 memcpy(hotkey_keycode_map, &ibm_keycode_map,
1993 TPACPI_HOTKEY_MAP_SIZE);
1994 }
1995
6a38abbf
HMH
1996 set_bit(EV_KEY, tpacpi_inputdev->evbit);
1997 set_bit(EV_MSC, tpacpi_inputdev->evbit);
1998 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
edf0e0e5
HMH
1999 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
2000 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
2001 tpacpi_inputdev->keycode = hotkey_keycode_map;
2002 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
6a38abbf
HMH
2003 if (hotkey_keycode_map[i] != KEY_RESERVED) {
2004 set_bit(hotkey_keycode_map[i],
2005 tpacpi_inputdev->keybit);
2006 } else {
2007 if (i < sizeof(hotkey_reserved_mask)*8)
2008 hotkey_reserved_mask |= 1 << i;
2009 }
2010 }
2011
5c29d58f
HMH
2012 if (tp_features.hotkey_wlsw) {
2013 set_bit(EV_SW, tpacpi_inputdev->evbit);
2014 set_bit(SW_RADIO, tpacpi_inputdev->swbit);
2015 }
2016
1a343760
HMH
2017 dbg_printk(TPACPI_DBG_INIT,
2018 "enabling hot key handling\n");
b2c985e7
HMH
2019 res = hotkey_status_set(1);
2020 if (res)
2021 return res;
01e88f25
HMH
2022 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
2023 & ~hotkey_reserved_mask)
1a343760 2024 | hotkey_orig_mask);
01e88f25 2025 if (res < 0 && res != -ENXIO)
1a343760 2026 return res;
ff80f137
HMH
2027
2028 dbg_printk(TPACPI_DBG_INIT,
2029 "legacy hot key reporting over procfs %s\n",
2030 (hotkey_report_mode < 2) ?
2031 "enabled" : "disabled");
01e88f25 2032
01e88f25
HMH
2033 tpacpi_inputdev->open = &hotkey_inputdev_open;
2034 tpacpi_inputdev->close = &hotkey_inputdev_close;
2035
2036 hotkey_poll_setup_safe(1);
7526696a 2037 tpacpi_input_send_radiosw();
56b6aeb0
HMH
2038 }
2039
d8fd94d9 2040 return (tp_features.hotkey)? 0 : 1;
56b6aeb0
HMH
2041}
2042
2043static void hotkey_exit(void)
2044{
01e88f25
HMH
2045#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2046 hotkey_poll_stop_sync();
2047#endif
2048
d8fd94d9 2049 if (tp_features.hotkey) {
35ff8b9f
HMH
2050 dbg_printk(TPACPI_DBG_EXIT,
2051 "restoring original hot key mask\n");
b2c985e7
HMH
2052 /* no short-circuit boolean operator below! */
2053 if ((hotkey_mask_set(hotkey_orig_mask) |
2054 hotkey_status_set(hotkey_orig_status)) != 0)
35ff8b9f
HMH
2055 printk(TPACPI_ERR
2056 "failed to restore hot key mask "
2057 "to BIOS defaults\n");
5fba344c 2058 }
a0416420
HMH
2059
2060 if (hotkey_dev_attributes) {
2061 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2062 hotkey_dev_attributes = NULL;
2063 }
56b6aeb0
HMH
2064}
2065
2066static void hotkey_notify(struct ibm_struct *ibm, u32 event)
2067{
6a38abbf 2068 u32 hkey;
b7c8c200 2069 unsigned int scancode;
3eea123d 2070 int send_acpi_ev;
3e5ce914 2071 int ignore_acpi_ev;
3b64b51d 2072 int unk_ev;
3eea123d
HMH
2073
2074 if (event != 0x80) {
35ff8b9f
HMH
2075 printk(TPACPI_ERR
2076 "unknown HKEY notification event %d\n", event);
3eea123d 2077 /* forward it to userspace, maybe it knows how to handle it */
35ff8b9f
HMH
2078 acpi_bus_generate_netlink_event(
2079 ibm->acpi->device->pnp.device_class,
2080 ibm->acpi->device->dev.bus_id,
2081 event, 0);
3eea123d
HMH
2082 return;
2083 }
2084
2085 while (1) {
2086 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
e0c7dfe7 2087 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
3eea123d
HMH
2088 return;
2089 }
2090
2091 if (hkey == 0) {
2092 /* queue empty */
2093 return;
2094 }
2095
3b64b51d 2096 send_acpi_ev = 1;
3e5ce914 2097 ignore_acpi_ev = 0;
3b64b51d 2098 unk_ev = 0;
56b6aeb0 2099
ff80f137
HMH
2100 switch (hkey >> 12) {
2101 case 1:
2102 /* 0x1000-0x1FFF: key presses */
2103 scancode = hkey & 0xfff;
2104 if (scancode > 0 && scancode < 0x21) {
2105 scancode--;
01e88f25
HMH
2106 if (!(hotkey_source_mask & (1 << scancode))) {
2107 tpacpi_input_send_key(scancode);
3b64b51d 2108 send_acpi_ev = 0;
01e88f25
HMH
2109 } else {
2110 ignore_acpi_ev = 1;
2111 }
ff80f137 2112 } else {
3b64b51d 2113 unk_ev = 1;
ff80f137
HMH
2114 }
2115 break;
a713b4d7
HMH
2116 case 2:
2117 /* Wakeup reason */
2118 switch (hkey) {
2119 case 0x2304: /* suspend, undock */
2120 case 0x2404: /* hibernation, undock */
2121 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
2122 ignore_acpi_ev = 1;
2123 break;
2124 case 0x2305: /* suspend, bay eject */
2125 case 0x2405: /* hibernation, bay eject */
2126 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
2127 ignore_acpi_ev = 1;
2128 break;
2129 default:
2130 unk_ev = 1;
2131 }
2132 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
2133 printk(TPACPI_INFO
2134 "woke up due to a hot-unplug "
2135 "request...\n");
50ebec09 2136 hotkey_wakeup_reason_notify_change();
a713b4d7
HMH
2137 }
2138 break;
2139 case 3:
2140 /* bay-related wakeups */
2141 if (hkey == 0x3003) {
2142 hotkey_autosleep_ack = 1;
2143 printk(TPACPI_INFO
2144 "bay ejected\n");
50ebec09 2145 hotkey_wakeup_hotunplug_complete_notify_change();
a713b4d7
HMH
2146 } else {
2147 unk_ev = 1;
2148 }
2149 break;
2150 case 4:
2151 /* dock-related wakeups */
2152 if (hkey == 0x4003) {
2153 hotkey_autosleep_ack = 1;
2154 printk(TPACPI_INFO
2155 "undocked\n");
50ebec09 2156 hotkey_wakeup_hotunplug_complete_notify_change();
a713b4d7
HMH
2157 } else {
2158 unk_ev = 1;
2159 }
2160 break;
ff80f137 2161 case 5:
d1edb2b5 2162 /* 0x5000-0x5FFF: human interface helpers */
3b64b51d 2163 switch (hkey) {
d1edb2b5
HMH
2164 case 0x5010: /* Lenovo new BIOS: brightness changed */
2165 case 0x5009: /* X61t: swivel up (tablet mode) */
2166 case 0x500a: /* X61t: swivel down (normal mode) */
2167 case 0x500b: /* X61t: tablet pen inserted into bay */
2168 case 0x500c: /* X61t: tablet pen removed from bay */
3b64b51d
HMH
2169 break;
2170 case 0x5001:
2171 case 0x5002:
2172 /* LID switch events. Do not propagate */
3e5ce914 2173 ignore_acpi_ev = 1;
3b64b51d
HMH
2174 break;
2175 default:
2176 unk_ev = 1;
ff80f137
HMH
2177 }
2178 break;
2179 case 7:
2180 /* 0x7000-0x7FFF: misc */
2181 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
2182 tpacpi_input_send_radiosw();
50ebec09 2183 hotkey_radio_sw_notify_change();
3b64b51d 2184 send_acpi_ev = 0;
6a38abbf 2185 break;
6a38abbf 2186 }
ff80f137
HMH
2187 /* fallthrough to default */
2188 default:
3b64b51d
HMH
2189 unk_ev = 1;
2190 }
2191 if (unk_ev) {
35ff8b9f
HMH
2192 printk(TPACPI_NOTICE
2193 "unhandled HKEY event 0x%04x\n", hkey);
6a38abbf 2194 }
ff80f137 2195
3eea123d 2196 /* Legacy events */
35ff8b9f
HMH
2197 if (!ignore_acpi_ev &&
2198 (send_acpi_ev || hotkey_report_mode < 2)) {
2199 acpi_bus_generate_proc_event(ibm->acpi->device,
2200 event, hkey);
3e5ce914 2201 }
ff80f137 2202
3eea123d 2203 /* netlink events */
3e5ce914 2204 if (!ignore_acpi_ev && send_acpi_ev) {
35ff8b9f
HMH
2205 acpi_bus_generate_netlink_event(
2206 ibm->acpi->device->pnp.device_class,
2207 ibm->acpi->device->dev.bus_id,
2208 event, hkey);
3eea123d 2209 }
56b6aeb0
HMH
2210 }
2211}
2212
a713b4d7
HMH
2213static void hotkey_suspend(pm_message_t state)
2214{
2215 /* Do these on suspend, we get the events on early resume! */
2216 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
2217 hotkey_autosleep_ack = 0;
2218}
2219
5c29d58f
HMH
2220static void hotkey_resume(void)
2221{
b2c985e7 2222 if (hotkey_mask_get())
35ff8b9f
HMH
2223 printk(TPACPI_ERR
2224 "error while trying to read hot key mask "
2225 "from firmware\n");
5c29d58f 2226 tpacpi_input_send_radiosw();
50ebec09
HMH
2227 hotkey_radio_sw_notify_change();
2228 hotkey_wakeup_reason_notify_change();
2229 hotkey_wakeup_hotunplug_complete_notify_change();
01e88f25 2230 hotkey_poll_setup_safe(0);
5c29d58f
HMH
2231}
2232
a0416420 2233/* procfs -------------------------------------------------------------- */
78f81cc4 2234static int hotkey_read(char *p)
1da177e4 2235{
ae92bd17 2236 int res, status;
1da177e4
LT
2237 int len = 0;
2238
d8fd94d9 2239 if (!tp_features.hotkey) {
78f81cc4
BD
2240 len += sprintf(p + len, "status:\t\tnot supported\n");
2241 return len;
2242 }
2243
fc589a3c
HMH
2244 if (mutex_lock_interruptible(&hotkey_mutex))
2245 return -ERESTARTSYS;
b2c985e7
HMH
2246 res = hotkey_status_get(&status);
2247 if (!res)
2248 res = hotkey_mask_get();
40ca9fdf 2249 mutex_unlock(&hotkey_mutex);
b86c4722
HMH
2250 if (res)
2251 return res;
1da177e4
LT
2252
2253 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
d8fd94d9 2254 if (tp_features.hotkey_mask) {
b2c985e7 2255 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
1da177e4
LT
2256 len += sprintf(p + len,
2257 "commands:\tenable, disable, reset, <mask>\n");
2258 } else {
2259 len += sprintf(p + len, "mask:\t\tnot supported\n");
2260 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
2261 }
2262
2263 return len;
2264}
2265
78f81cc4 2266static int hotkey_write(char *buf)
1da177e4 2267{
ae92bd17
HMH
2268 int res, status;
2269 u32 mask;
1da177e4 2270 char *cmd;
1da177e4 2271
d8fd94d9 2272 if (!tp_features.hotkey)
1da177e4
LT
2273 return -ENODEV;
2274
fc589a3c
HMH
2275 if (mutex_lock_interruptible(&hotkey_mutex))
2276 return -ERESTARTSYS;
40ca9fdf 2277
b2c985e7
HMH
2278 status = -1;
2279 mask = hotkey_mask;
78f81cc4 2280
40ca9fdf 2281 res = 0;
1da177e4
LT
2282 while ((cmd = next_cmd(&buf))) {
2283 if (strlencmp(cmd, "enable") == 0) {
2284 status = 1;
2285 } else if (strlencmp(cmd, "disable") == 0) {
2286 status = 0;
2287 } else if (strlencmp(cmd, "reset") == 0) {
78f81cc4
BD
2288 status = hotkey_orig_status;
2289 mask = hotkey_orig_mask;
1da177e4
LT
2290 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
2291 /* mask set */
2292 } else if (sscanf(cmd, "%x", &mask) == 1) {
2293 /* mask set */
40ca9fdf
HMH
2294 } else {
2295 res = -EINVAL;
2296 goto errexit;
2297 }
1da177e4 2298 }
b2c985e7
HMH
2299 if (status != -1)
2300 res = hotkey_status_set(status);
1da177e4 2301
b2c985e7
HMH
2302 if (!res && mask != hotkey_mask)
2303 res = hotkey_mask_set(mask);
1da177e4 2304
40ca9fdf
HMH
2305errexit:
2306 mutex_unlock(&hotkey_mutex);
2307 return res;
78f81cc4 2308}
1da177e4 2309
1ba90e3a 2310static const struct acpi_device_id ibm_htk_device_ids[] = {
e0c7dfe7 2311 {TPACPI_ACPI_HKEY_HID, 0},
1ba90e3a
TR
2312 {"", 0},
2313};
2314
8d376cd6 2315static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
1ba90e3a 2316 .hid = ibm_htk_device_ids,
8d376cd6
HMH
2317 .notify = hotkey_notify,
2318 .handle = &hkey_handle,
2319 .type = ACPI_DEVICE_NOTIFY,
2320};
2321
a5763f22
HMH
2322static struct ibm_struct hotkey_driver_data = {
2323 .name = "hotkey",
a5763f22
HMH
2324 .read = hotkey_read,
2325 .write = hotkey_write,
2326 .exit = hotkey_exit,
5c29d58f 2327 .resume = hotkey_resume,
a713b4d7 2328 .suspend = hotkey_suspend,
8d376cd6 2329 .acpi = &ibm_hotkey_acpidriver,
a5763f22
HMH
2330};
2331
56b6aeb0
HMH
2332/*************************************************************************
2333 * Bluetooth subdriver
2334 */
1da177e4 2335
f74a27d4
HMH
2336enum {
2337 /* ACPI GBDC/SBDC bits */
2338 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
2339 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
2340 TP_ACPI_BLUETOOTH_UNK = 0x04, /* unknown function */
2341};
2342
2343static int bluetooth_get_radiosw(void);
2344static int bluetooth_set_radiosw(int radio_on);
2345
d3a6ade4
HMH
2346/* sysfs bluetooth enable ---------------------------------------------- */
2347static ssize_t bluetooth_enable_show(struct device *dev,
2348 struct device_attribute *attr,
2349 char *buf)
2350{
2351 int status;
2352
2353 status = bluetooth_get_radiosw();
2354 if (status < 0)
2355 return status;
2356
2357 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2358}
2359
2360static ssize_t bluetooth_enable_store(struct device *dev,
2361 struct device_attribute *attr,
2362 const char *buf, size_t count)
2363{
2364 unsigned long t;
2365 int res;
2366
2367 if (parse_strtoul(buf, 1, &t))
2368 return -EINVAL;
2369
2370 res = bluetooth_set_radiosw(t);
2371
2372 return (res) ? res : count;
2373}
2374
2375static struct device_attribute dev_attr_bluetooth_enable =
cc4c24e1 2376 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
d3a6ade4
HMH
2377 bluetooth_enable_show, bluetooth_enable_store);
2378
2379/* --------------------------------------------------------------------- */
2380
2381static struct attribute *bluetooth_attributes[] = {
2382 &dev_attr_bluetooth_enable.attr,
2383 NULL
2384};
2385
2386static const struct attribute_group bluetooth_attr_group = {
d3a6ade4
HMH
2387 .attrs = bluetooth_attributes,
2388};
2389
a5763f22 2390static int __init bluetooth_init(struct ibm_init_struct *iibm)
1da177e4 2391{
d3a6ade4 2392 int res;
d6fdd1e9
HMH
2393 int status = 0;
2394
fe08bc4b
HMH
2395 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
2396
e0c7dfe7 2397 TPACPI_ACPIHANDLE_INIT(hkey);
5fba344c 2398
78f81cc4
BD
2399 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2400 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
d8fd94d9 2401 tp_features.bluetooth = hkey_handle &&
d6fdd1e9
HMH
2402 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
2403
2404 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
2405 str_supported(tp_features.bluetooth),
2406 status);
2407
d3a6ade4
HMH
2408 if (tp_features.bluetooth) {
2409 if (!(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
2410 /* no bluetooth hardware present in system */
2411 tp_features.bluetooth = 0;
2412 dbg_printk(TPACPI_DBG_INIT,
2413 "bluetooth hardware not installed\n");
2414 } else {
2415 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2416 &bluetooth_attr_group);
2417 if (res)
2418 return res;
2419 }
d6fdd1e9 2420 }
fe08bc4b 2421
d8fd94d9 2422 return (tp_features.bluetooth)? 0 : 1;
1da177e4
LT
2423}
2424
d3a6ade4
HMH
2425static void bluetooth_exit(void)
2426{
2427 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2428 &bluetooth_attr_group);
2429}
2430
d6fdd1e9 2431static int bluetooth_get_radiosw(void)
1da177e4
LT
2432{
2433 int status;
2434
d6fdd1e9
HMH
2435 if (!tp_features.bluetooth)
2436 return -ENODEV;
1da177e4 2437
d6fdd1e9
HMH
2438 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2439 return -EIO;
2440
2441 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0);
2442}
2443
2444static int bluetooth_set_radiosw(int radio_on)
2445{
2446 int status;
2447
2448 if (!tp_features.bluetooth)
2449 return -ENODEV;
2450
2451 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2452 return -EIO;
2453 if (radio_on)
2454 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
2455 else
2456 status &= ~TP_ACPI_BLUETOOTH_RADIOSSW;
2457 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
2458 return -EIO;
2459
2460 return 0;
1da177e4
LT
2461}
2462
d3a6ade4 2463/* procfs -------------------------------------------------------------- */
78f81cc4 2464static int bluetooth_read(char *p)
1da177e4
LT
2465{
2466 int len = 0;
d6fdd1e9 2467 int status = bluetooth_get_radiosw();
1da177e4 2468
d8fd94d9 2469 if (!tp_features.bluetooth)
1da177e4 2470 len += sprintf(p + len, "status:\t\tnot supported\n");
1da177e4 2471 else {
d6fdd1e9
HMH
2472 len += sprintf(p + len, "status:\t\t%s\n",
2473 (status)? "enabled" : "disabled");
1da177e4
LT
2474 len += sprintf(p + len, "commands:\tenable, disable\n");
2475 }
2476
2477 return len;
2478}
2479
78f81cc4 2480static int bluetooth_write(char *buf)
1da177e4 2481{
1da177e4 2482 char *cmd;
1da177e4 2483
d8fd94d9 2484 if (!tp_features.bluetooth)
78f81cc4 2485 return -ENODEV;
1da177e4
LT
2486
2487 while ((cmd = next_cmd(&buf))) {
2488 if (strlencmp(cmd, "enable") == 0) {
d6fdd1e9 2489 bluetooth_set_radiosw(1);
1da177e4 2490 } else if (strlencmp(cmd, "disable") == 0) {
d6fdd1e9 2491 bluetooth_set_radiosw(0);
1da177e4
LT
2492 } else
2493 return -EINVAL;
1da177e4
LT
2494 }
2495
1da177e4
LT
2496 return 0;
2497}
2498
a5763f22
HMH
2499static struct ibm_struct bluetooth_driver_data = {
2500 .name = "bluetooth",
2501 .read = bluetooth_read,
2502 .write = bluetooth_write,
d3a6ade4 2503 .exit = bluetooth_exit,
a5763f22
HMH
2504};
2505
56b6aeb0
HMH
2506/*************************************************************************
2507 * Wan subdriver
2508 */
2509
f74a27d4
HMH
2510enum {
2511 /* ACPI GWAN/SWAN bits */
2512 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
2513 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
2514 TP_ACPI_WANCARD_UNK = 0x04, /* unknown function */
2515};
2516
2517static int wan_get_radiosw(void);
2518static int wan_set_radiosw(int radio_on);
2519
d3a6ade4
HMH
2520/* sysfs wan enable ---------------------------------------------------- */
2521static ssize_t wan_enable_show(struct device *dev,
2522 struct device_attribute *attr,
2523 char *buf)
2524{
2525 int status;
2526
2527 status = wan_get_radiosw();
2528 if (status < 0)
2529 return status;
2530
2531 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2532}
2533
2534static ssize_t wan_enable_store(struct device *dev,
2535 struct device_attribute *attr,
2536 const char *buf, size_t count)
2537{
2538 unsigned long t;
2539 int res;
2540
2541 if (parse_strtoul(buf, 1, &t))
2542 return -EINVAL;
2543
2544 res = wan_set_radiosw(t);
2545
2546 return (res) ? res : count;
2547}
2548
2549static struct device_attribute dev_attr_wan_enable =
cc4c24e1 2550 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
d3a6ade4
HMH
2551 wan_enable_show, wan_enable_store);
2552
2553/* --------------------------------------------------------------------- */
2554
2555static struct attribute *wan_attributes[] = {
2556 &dev_attr_wan_enable.attr,
2557 NULL
2558};
2559
2560static const struct attribute_group wan_attr_group = {
d3a6ade4
HMH
2561 .attrs = wan_attributes,
2562};
2563
a5763f22 2564static int __init wan_init(struct ibm_init_struct *iibm)
42adb53c 2565{
d3a6ade4 2566 int res;
d6fdd1e9
HMH
2567 int status = 0;
2568
fe08bc4b
HMH
2569 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
2570
e0c7dfe7 2571 TPACPI_ACPIHANDLE_INIT(hkey);
5fba344c 2572
d8fd94d9 2573 tp_features.wan = hkey_handle &&
d6fdd1e9
HMH
2574 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
2575
2576 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
2577 str_supported(tp_features.wan),
2578 status);
2579
d3a6ade4
HMH
2580 if (tp_features.wan) {
2581 if (!(status & TP_ACPI_WANCARD_HWPRESENT)) {
2582 /* no wan hardware present in system */
2583 tp_features.wan = 0;
2584 dbg_printk(TPACPI_DBG_INIT,
2585 "wan hardware not installed\n");
2586 } else {
2587 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2588 &wan_attr_group);
2589 if (res)
2590 return res;
2591 }
d6fdd1e9 2592 }
fe08bc4b 2593
d8fd94d9 2594 return (tp_features.wan)? 0 : 1;
42adb53c
JF
2595}
2596
d3a6ade4
HMH
2597static void wan_exit(void)
2598{
2599 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2600 &wan_attr_group);
2601}
2602
d6fdd1e9 2603static int wan_get_radiosw(void)
42adb53c
JF
2604{
2605 int status;
2606
d6fdd1e9
HMH
2607 if (!tp_features.wan)
2608 return -ENODEV;
42adb53c 2609
d6fdd1e9
HMH
2610 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2611 return -EIO;
2612
2613 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0);
2614}
2615
2616static int wan_set_radiosw(int radio_on)
2617{
2618 int status;
2619
2620 if (!tp_features.wan)
2621 return -ENODEV;
2622
2623 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2624 return -EIO;
2625 if (radio_on)
2626 status |= TP_ACPI_WANCARD_RADIOSSW;
2627 else
2628 status &= ~TP_ACPI_WANCARD_RADIOSSW;
2629 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
2630 return -EIO;
2631
2632 return 0;
42adb53c
JF
2633}
2634
d3a6ade4 2635/* procfs -------------------------------------------------------------- */
42adb53c
JF
2636static int wan_read(char *p)
2637{
2638 int len = 0;
d6fdd1e9 2639 int status = wan_get_radiosw();
42adb53c 2640
d8fd94d9 2641 if (!tp_features.wan)
42adb53c 2642 len += sprintf(p + len, "status:\t\tnot supported\n");
42adb53c 2643 else {
d6fdd1e9
HMH
2644 len += sprintf(p + len, "status:\t\t%s\n",
2645 (status)? "enabled" : "disabled");
42adb53c
JF
2646 len += sprintf(p + len, "commands:\tenable, disable\n");
2647 }
2648
2649 return len;
2650}
2651
2652static int wan_write(char *buf)
2653{
42adb53c 2654 char *cmd;
42adb53c 2655
d8fd94d9 2656 if (!tp_features.wan)
42adb53c
JF
2657 return -ENODEV;
2658
2659 while ((cmd = next_cmd(&buf))) {
2660 if (strlencmp(cmd, "enable") == 0) {
d6fdd1e9 2661 wan_set_radiosw(1);
42adb53c 2662 } else if (strlencmp(cmd, "disable") == 0) {
d6fdd1e9 2663 wan_set_radiosw(0);
42adb53c
JF
2664 } else
2665 return -EINVAL;
42adb53c
JF
2666 }
2667
42adb53c
JF
2668 return 0;
2669}
2670
a5763f22
HMH
2671static struct ibm_struct wan_driver_data = {
2672 .name = "wan",
2673 .read = wan_read,
2674 .write = wan_write,
d3a6ade4 2675 .exit = wan_exit,
92641177 2676 .flags.experimental = 1,
a5763f22
HMH
2677};
2678
56b6aeb0
HMH
2679/*************************************************************************
2680 * Video subdriver
2681 */
2682
f74a27d4
HMH
2683enum video_access_mode {
2684 TPACPI_VIDEO_NONE = 0,
2685 TPACPI_VIDEO_570, /* 570 */
2686 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
2687 TPACPI_VIDEO_NEW, /* all others */
2688};
2689
2690enum { /* video status flags, based on VIDEO_570 */
2691 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
2692 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
2693 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
2694};
2695
2696enum { /* TPACPI_VIDEO_570 constants */
2697 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
2698 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
2699 * video_status_flags */
2700 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
2701 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
2702};
2703
9a8e1738
HMH
2704static enum video_access_mode video_supported;
2705static int video_orig_autosw;
78f81cc4 2706
f74a27d4
HMH
2707static int video_autosw_get(void);
2708static int video_autosw_set(int enable);
2709
e0c7dfe7 2710TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
56b6aeb0
HMH
2711 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
2712 "\\_SB.PCI0.VID0", /* 770e */
2713 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
2714 "\\_SB.PCI0.AGP.VID", /* all others */
2715 ); /* R30, R31 */
2716
e0c7dfe7 2717TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
56b6aeb0 2718
a5763f22 2719static int __init video_init(struct ibm_init_struct *iibm)
1da177e4 2720{
78f81cc4
BD
2721 int ivga;
2722
fe08bc4b
HMH
2723 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
2724
e0c7dfe7
HMH
2725 TPACPI_ACPIHANDLE_INIT(vid);
2726 TPACPI_ACPIHANDLE_INIT(vid2);
5fba344c 2727
78f81cc4
BD
2728 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
2729 /* G41, assume IVGA doesn't change */
2730 vid_handle = vid2_handle;
2731
2732 if (!vid_handle)
2733 /* video switching not supported on R30, R31 */
efa27145 2734 video_supported = TPACPI_VIDEO_NONE;
78f81cc4
BD
2735 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
2736 /* 570 */
efa27145 2737 video_supported = TPACPI_VIDEO_570;
78f81cc4
BD
2738 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
2739 /* 600e/x, 770e, 770x */
efa27145 2740 video_supported = TPACPI_VIDEO_770;
78f81cc4
BD
2741 else
2742 /* all others */
efa27145 2743 video_supported = TPACPI_VIDEO_NEW;
1da177e4 2744
fe08bc4b
HMH
2745 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
2746 str_supported(video_supported != TPACPI_VIDEO_NONE),
2747 video_supported);
2748
5fba344c 2749 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
1da177e4
LT
2750}
2751
56b6aeb0
HMH
2752static void video_exit(void)
2753{
83f34724
HMH
2754 dbg_printk(TPACPI_DBG_EXIT,
2755 "restoring original video autoswitch mode\n");
2756 if (video_autosw_set(video_orig_autosw))
e0c7dfe7 2757 printk(TPACPI_ERR "error while trying to restore original "
83f34724 2758 "video autoswitch mode\n");
56b6aeb0
HMH
2759}
2760
83f34724 2761static int video_outputsw_get(void)
1da177e4
LT
2762{
2763 int status = 0;
2764 int i;
2765
83f34724
HMH
2766 switch (video_supported) {
2767 case TPACPI_VIDEO_570:
2768 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
2769 TP_ACPI_VIDEO_570_PHSCMD))
2770 return -EIO;
2771 status = i & TP_ACPI_VIDEO_570_PHSMASK;
2772 break;
2773 case TPACPI_VIDEO_770:
2774 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
2775 return -EIO;
2776 if (i)
2777 status |= TP_ACPI_VIDEO_S_LCD;
2778 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
2779 return -EIO;
2780 if (i)
2781 status |= TP_ACPI_VIDEO_S_CRT;
2782 break;
2783 case TPACPI_VIDEO_NEW:
2784 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
2785 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
2786 return -EIO;
2787 if (i)
2788 status |= TP_ACPI_VIDEO_S_CRT;
2789
2790 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
2791 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
2792 return -EIO;
2793 if (i)
2794 status |= TP_ACPI_VIDEO_S_LCD;
2795 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
2796 return -EIO;
2797 if (i)
2798 status |= TP_ACPI_VIDEO_S_DVI;
2799 break;
2800 default:
2801 return -ENOSYS;
78f81cc4
BD
2802 }
2803
2804 return status;
2805}
1da177e4 2806
83f34724 2807static int video_outputsw_set(int status)
78f81cc4 2808{
83f34724
HMH
2809 int autosw;
2810 int res = 0;
2811
2812 switch (video_supported) {
2813 case TPACPI_VIDEO_570:
2814 res = acpi_evalf(NULL, NULL,
2815 "\\_SB.PHS2", "vdd",
2816 TP_ACPI_VIDEO_570_PHS2CMD,
2817 status | TP_ACPI_VIDEO_570_PHS2SET);
2818 break;
2819 case TPACPI_VIDEO_770:
2820 autosw = video_autosw_get();
2821 if (autosw < 0)
2822 return autosw;
1da177e4 2823
83f34724
HMH
2824 res = video_autosw_set(1);
2825 if (res)
2826 return res;
2827 res = acpi_evalf(vid_handle, NULL,
2828 "ASWT", "vdd", status * 0x100, 0);
2829 if (!autosw && video_autosw_set(autosw)) {
35ff8b9f
HMH
2830 printk(TPACPI_ERR
2831 "video auto-switch left enabled due to error\n");
83f34724
HMH
2832 return -EIO;
2833 }
2834 break;
2835 case TPACPI_VIDEO_NEW:
2836 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
35ff8b9f 2837 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
83f34724
HMH
2838 break;
2839 default:
2840 return -ENOSYS;
2841 }
1da177e4 2842
83f34724 2843 return (res)? 0 : -EIO;
1da177e4
LT
2844}
2845
83f34724 2846static int video_autosw_get(void)
78f81cc4 2847{
83f34724 2848 int autosw = 0;
78f81cc4 2849
83f34724
HMH
2850 switch (video_supported) {
2851 case TPACPI_VIDEO_570:
2852 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
2853 return -EIO;
2854 break;
2855 case TPACPI_VIDEO_770:
2856 case TPACPI_VIDEO_NEW:
2857 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
2858 return -EIO;
2859 break;
2860 default:
2861 return -ENOSYS;
2862 }
78f81cc4 2863
83f34724 2864 return autosw & 1;
78f81cc4
BD
2865}
2866
83f34724 2867static int video_autosw_set(int enable)
78f81cc4 2868{
83f34724
HMH
2869 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
2870 return -EIO;
2871 return 0;
78f81cc4
BD
2872}
2873
83f34724 2874static int video_outputsw_cycle(void)
78f81cc4 2875{
83f34724
HMH
2876 int autosw = video_autosw_get();
2877 int res;
78f81cc4 2878
83f34724
HMH
2879 if (autosw < 0)
2880 return autosw;
78f81cc4 2881
83f34724
HMH
2882 switch (video_supported) {
2883 case TPACPI_VIDEO_570:
2884 res = video_autosw_set(1);
2885 if (res)
2886 return res;
2887 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
2888 break;
2889 case TPACPI_VIDEO_770:
2890 case TPACPI_VIDEO_NEW:
2891 res = video_autosw_set(1);
2892 if (res)
2893 return res;
2894 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
2895 break;
2896 default:
2897 return -ENOSYS;
2898 }
2899 if (!autosw && video_autosw_set(autosw)) {
35ff8b9f
HMH
2900 printk(TPACPI_ERR
2901 "video auto-switch left enabled due to error\n");
83f34724 2902 return -EIO;
78f81cc4
BD
2903 }
2904
83f34724
HMH
2905 return (res)? 0 : -EIO;
2906}
2907
2908static int video_expand_toggle(void)
2909{
2910 switch (video_supported) {
2911 case TPACPI_VIDEO_570:
2912 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
2913 0 : -EIO;
2914 case TPACPI_VIDEO_770:
2915 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
2916 0 : -EIO;
2917 case TPACPI_VIDEO_NEW:
2918 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
2919 0 : -EIO;
2920 default:
2921 return -ENOSYS;
2922 }
2923 /* not reached */
78f81cc4
BD
2924}
2925
56b6aeb0
HMH
2926static int video_read(char *p)
2927{
83f34724 2928 int status, autosw;
56b6aeb0
HMH
2929 int len = 0;
2930
83f34724 2931 if (video_supported == TPACPI_VIDEO_NONE) {
56b6aeb0
HMH
2932 len += sprintf(p + len, "status:\t\tnot supported\n");
2933 return len;
2934 }
2935
83f34724
HMH
2936 status = video_outputsw_get();
2937 if (status < 0)
2938 return status;
2939
2940 autosw = video_autosw_get();
2941 if (autosw < 0)
2942 return autosw;
2943
56b6aeb0
HMH
2944 len += sprintf(p + len, "status:\t\tsupported\n");
2945 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
2946 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
efa27145 2947 if (video_supported == TPACPI_VIDEO_NEW)
56b6aeb0
HMH
2948 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
2949 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
2950 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
2951 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
efa27145 2952 if (video_supported == TPACPI_VIDEO_NEW)
56b6aeb0
HMH
2953 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
2954 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
2955 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
2956
2957 return len;
2958}
2959
78f81cc4 2960static int video_write(char *buf)
1da177e4
LT
2961{
2962 char *cmd;
2963 int enable, disable, status;
83f34724 2964 int res;
1da177e4 2965
83f34724 2966 if (video_supported == TPACPI_VIDEO_NONE)
78f81cc4
BD
2967 return -ENODEV;
2968
83f34724
HMH
2969 enable = 0;
2970 disable = 0;
1da177e4
LT
2971
2972 while ((cmd = next_cmd(&buf))) {
2973 if (strlencmp(cmd, "lcd_enable") == 0) {
83f34724 2974 enable |= TP_ACPI_VIDEO_S_LCD;
1da177e4 2975 } else if (strlencmp(cmd, "lcd_disable") == 0) {
83f34724 2976 disable |= TP_ACPI_VIDEO_S_LCD;
1da177e4 2977 } else if (strlencmp(cmd, "crt_enable") == 0) {
83f34724 2978 enable |= TP_ACPI_VIDEO_S_CRT;
1da177e4 2979 } else if (strlencmp(cmd, "crt_disable") == 0) {
83f34724 2980 disable |= TP_ACPI_VIDEO_S_CRT;
efa27145 2981 } else if (video_supported == TPACPI_VIDEO_NEW &&
78f81cc4 2982 strlencmp(cmd, "dvi_enable") == 0) {
83f34724 2983 enable |= TP_ACPI_VIDEO_S_DVI;
efa27145 2984 } else if (video_supported == TPACPI_VIDEO_NEW &&
78f81cc4 2985 strlencmp(cmd, "dvi_disable") == 0) {
83f34724 2986 disable |= TP_ACPI_VIDEO_S_DVI;
1da177e4 2987 } else if (strlencmp(cmd, "auto_enable") == 0) {
83f34724
HMH
2988 res = video_autosw_set(1);
2989 if (res)
2990 return res;
1da177e4 2991 } else if (strlencmp(cmd, "auto_disable") == 0) {
83f34724
HMH
2992 res = video_autosw_set(0);
2993 if (res)
2994 return res;
1da177e4 2995 } else if (strlencmp(cmd, "video_switch") == 0) {
83f34724
HMH
2996 res = video_outputsw_cycle();
2997 if (res)
2998 return res;
1da177e4 2999 } else if (strlencmp(cmd, "expand_toggle") == 0) {
83f34724
HMH
3000 res = video_expand_toggle();
3001 if (res)
3002 return res;
1da177e4
LT
3003 } else
3004 return -EINVAL;
3005 }
3006
3007 if (enable || disable) {
83f34724
HMH
3008 status = video_outputsw_get();
3009 if (status < 0)
3010 return status;
3011 res = video_outputsw_set((status & ~disable) | enable);
3012 if (res)
3013 return res;
1da177e4
LT
3014 }
3015
3016 return 0;
3017}
3018
a5763f22
HMH
3019static struct ibm_struct video_driver_data = {
3020 .name = "video",
3021 .read = video_read,
3022 .write = video_write,
3023 .exit = video_exit,
3024};
3025
56b6aeb0
HMH
3026/*************************************************************************
3027 * Light (thinklight) subdriver
3028 */
1da177e4 3029
e0c7dfe7
HMH
3030TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
3031TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
56b6aeb0 3032
a5763f22 3033static int __init light_init(struct ibm_init_struct *iibm)
1da177e4 3034{
fe08bc4b
HMH
3035 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
3036
e0c7dfe7
HMH
3037 TPACPI_ACPIHANDLE_INIT(ledb);
3038 TPACPI_ACPIHANDLE_INIT(lght);
3039 TPACPI_ACPIHANDLE_INIT(cmos);
5fba344c 3040
78f81cc4 3041 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
d8fd94d9 3042 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
78f81cc4 3043
d8fd94d9 3044 if (tp_features.light)
78f81cc4
BD
3045 /* light status not supported on
3046 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
d8fd94d9
HMH
3047 tp_features.light_status =
3048 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
1da177e4 3049
fe08bc4b 3050 vdbg_printk(TPACPI_DBG_INIT, "light is %s\n",
d8fd94d9 3051 str_supported(tp_features.light));
fe08bc4b 3052
d8fd94d9 3053 return (tp_features.light)? 0 : 1;
1da177e4
LT
3054}
3055
78f81cc4 3056static int light_read(char *p)
1da177e4
LT
3057{
3058 int len = 0;
3059 int status = 0;
3060
d8fd94d9 3061 if (!tp_features.light) {
78f81cc4 3062 len += sprintf(p + len, "status:\t\tnot supported\n");
d8fd94d9 3063 } else if (!tp_features.light_status) {
78f81cc4
BD
3064 len += sprintf(p + len, "status:\t\tunknown\n");
3065 len += sprintf(p + len, "commands:\ton, off\n");
3066 } else {
1da177e4
LT
3067 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
3068 return -EIO;
3069 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
78f81cc4
BD
3070 len += sprintf(p + len, "commands:\ton, off\n");
3071 }
1da177e4
LT
3072
3073 return len;
3074}
3075
78f81cc4 3076static int light_write(char *buf)
1da177e4
LT
3077{
3078 int cmos_cmd, lght_cmd;
3079 char *cmd;
3080 int success;
78f81cc4 3081
d8fd94d9 3082 if (!tp_features.light)
78f81cc4
BD
3083 return -ENODEV;
3084
1da177e4
LT
3085 while ((cmd = next_cmd(&buf))) {
3086 if (strlencmp(cmd, "on") == 0) {
3087 cmos_cmd = 0x0c;
3088 lght_cmd = 1;
3089 } else if (strlencmp(cmd, "off") == 0) {
3090 cmos_cmd = 0x0d;
3091 lght_cmd = 0;
3092 } else
3093 return -EINVAL;
78f81cc4 3094
1da177e4 3095 success = cmos_handle ?
78f81cc4
BD
3096 acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd) :
3097 acpi_evalf(lght_handle, NULL, NULL, "vd", lght_cmd);
1da177e4
LT
3098 if (!success)
3099 return -EIO;
3100 }
3101
3102 return 0;
3103}
3104
a5763f22
HMH
3105static struct ibm_struct light_driver_data = {
3106 .name = "light",
3107 .read = light_read,
3108 .write = light_write,
3109};
3110
56b6aeb0
HMH
3111/*************************************************************************
3112 * Dock subdriver
3113 */
1da177e4 3114
85998248 3115#ifdef CONFIG_THINKPAD_ACPI_DOCK
56b6aeb0 3116
f74a27d4
HMH
3117static void dock_notify(struct ibm_struct *ibm, u32 event);
3118static int dock_read(char *p);
3119static int dock_write(char *buf);
3120
e0c7dfe7 3121TPACPI_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
56b6aeb0
HMH
3122 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
3123 "\\_SB.PCI0.PCI1.DOCK", /* all others */
3124 "\\_SB.PCI.ISA.SLCE", /* 570 */
3125 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
3126
5fba344c 3127/* don't list other alternatives as we install a notify handler on the 570 */
e0c7dfe7 3128TPACPI_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
5fba344c 3129
1ba90e3a
TR
3130static const struct acpi_device_id ibm_pci_device_ids[] = {
3131 {PCI_ROOT_HID_STRING, 0},
3132 {"", 0},
3133};
3134
d94a7f16
HMH
3135static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
3136 {
3137 .notify = dock_notify,
3138 .handle = &dock_handle,
3139 .type = ACPI_SYSTEM_NOTIFY,
3140 },
3141 {
996fba08
HMH
3142 /* THIS ONE MUST NEVER BE USED FOR DRIVER AUTOLOADING.
3143 * We just use it to get notifications of dock hotplug
3144 * in very old thinkpads */
1ba90e3a 3145 .hid = ibm_pci_device_ids,
d94a7f16
HMH
3146 .notify = dock_notify,
3147 .handle = &pci_handle,
3148 .type = ACPI_SYSTEM_NOTIFY,
3149 },
3150};
3151
3152static struct ibm_struct dock_driver_data[2] = {
3153 {
3154 .name = "dock",
3155 .read = dock_read,
3156 .write = dock_write,
3157 .acpi = &ibm_dock_acpidriver[0],
3158 },
3159 {
3160 .name = "dock",
3161 .acpi = &ibm_dock_acpidriver[1],
3162 },
3163};
3164
1da177e4
LT
3165#define dock_docked() (_sta(dock_handle) & 1)
3166
a5763f22 3167static int __init dock_init(struct ibm_init_struct *iibm)
5fba344c 3168{
fe08bc4b
HMH
3169 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
3170
e0c7dfe7 3171 TPACPI_ACPIHANDLE_INIT(dock);
5fba344c 3172
fe08bc4b
HMH
3173 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
3174 str_supported(dock_handle != NULL));
3175
5fba344c
HMH
3176 return (dock_handle)? 0 : 1;
3177}
3178
d94a7f16
HMH
3179static int __init dock_init2(struct ibm_init_struct *iibm)
3180{
3181 int dock2_needed;
3182
3183 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver part 2\n");
3184
3185 if (dock_driver_data[0].flags.acpi_driver_registered &&
3186 dock_driver_data[0].flags.acpi_notify_installed) {
e0c7dfe7 3187 TPACPI_ACPIHANDLE_INIT(pci);
d94a7f16
HMH
3188 dock2_needed = (pci_handle != NULL);
3189 vdbg_printk(TPACPI_DBG_INIT,
3190 "dock PCI handler for the TP 570 is %s\n",
3191 str_supported(dock2_needed));
3192 } else {
3193 vdbg_printk(TPACPI_DBG_INIT,
3194 "dock subdriver part 2 not required\n");
3195 dock2_needed = 0;
3196 }
3197
3198 return (dock2_needed)? 0 : 1;
3199}
3200
56b6aeb0
HMH
3201static void dock_notify(struct ibm_struct *ibm, u32 event)
3202{
3203 int docked = dock_docked();
1ba90e3a
TR
3204 int pci = ibm->acpi->hid && ibm->acpi->device &&
3205 acpi_match_device_ids(ibm->acpi->device, ibm_pci_device_ids);
962ce8ca 3206 int data;
56b6aeb0
HMH
3207
3208 if (event == 1 && !pci) /* 570 */
962ce8ca 3209 data = 1; /* button */
56b6aeb0 3210 else if (event == 1 && pci) /* 570 */
962ce8ca 3211 data = 3; /* dock */
56b6aeb0 3212 else if (event == 3 && docked)
962ce8ca 3213 data = 1; /* button */
56b6aeb0 3214 else if (event == 3 && !docked)
962ce8ca 3215 data = 2; /* undock */
56b6aeb0 3216 else if (event == 0 && docked)
962ce8ca 3217 data = 3; /* dock */
56b6aeb0 3218 else {
e0c7dfe7 3219 printk(TPACPI_ERR "unknown dock event %d, status %d\n",
56b6aeb0 3220 event, _sta(dock_handle));
962ce8ca 3221 data = 0; /* unknown */
56b6aeb0 3222 }
14e04fb3 3223 acpi_bus_generate_proc_event(ibm->acpi->device, event, data);
962ce8ca
ZR
3224 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3225 ibm->acpi->device->dev.bus_id,
3226 event, data);
56b6aeb0
HMH
3227}
3228
78f81cc4 3229static int dock_read(char *p)
1da177e4
LT
3230{
3231 int len = 0;
3232 int docked = dock_docked();
3233
3234 if (!dock_handle)
3235 len += sprintf(p + len, "status:\t\tnot supported\n");
3236 else if (!docked)
3237 len += sprintf(p + len, "status:\t\tundocked\n");
3238 else {
3239 len += sprintf(p + len, "status:\t\tdocked\n");
3240 len += sprintf(p + len, "commands:\tdock, undock\n");
3241 }
3242
3243 return len;
3244}
3245
78f81cc4 3246static int dock_write(char *buf)
1da177e4
LT
3247{
3248 char *cmd;
3249
3250 if (!dock_docked())
78f81cc4 3251 return -ENODEV;
1da177e4
LT
3252
3253 while ((cmd = next_cmd(&buf))) {
3254 if (strlencmp(cmd, "undock") == 0) {
78f81cc4
BD
3255 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
3256 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
56b6aeb0
HMH
3257 return -EIO;
3258 } else if (strlencmp(cmd, "dock") == 0) {
3259 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
3260 return -EIO;
3261 } else
3262 return -EINVAL;
1da177e4 3263 }
56b6aeb0
HMH
3264
3265 return 0;
1da177e4 3266}
56b6aeb0 3267
85998248 3268#endif /* CONFIG_THINKPAD_ACPI_DOCK */
56b6aeb0
HMH
3269
3270/*************************************************************************
3271 * Bay subdriver
3272 */
1da177e4 3273
85998248 3274#ifdef CONFIG_THINKPAD_ACPI_BAY
f74a27d4 3275
e0c7dfe7 3276TPACPI_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
56b6aeb0
HMH
3277 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
3278 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
3279 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
3280 ); /* A21e, R30, R31 */
e0c7dfe7 3281TPACPI_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
56b6aeb0
HMH
3282 "_EJ0", /* all others */
3283 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
e0c7dfe7 3284TPACPI_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
56b6aeb0
HMH
3285 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
3286 ); /* all others */
e0c7dfe7 3287TPACPI_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
56b6aeb0
HMH
3288 "_EJ0", /* 770x */
3289 ); /* all others */
3290
a5763f22 3291static int __init bay_init(struct ibm_init_struct *iibm)
1da177e4 3292{
fe08bc4b
HMH
3293 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
3294
e0c7dfe7 3295 TPACPI_ACPIHANDLE_INIT(bay);
5fba344c 3296 if (bay_handle)
e0c7dfe7
HMH
3297 TPACPI_ACPIHANDLE_INIT(bay_ej);
3298 TPACPI_ACPIHANDLE_INIT(bay2);
5fba344c 3299 if (bay2_handle)
e0c7dfe7 3300 TPACPI_ACPIHANDLE_INIT(bay2_ej);
5fba344c 3301
d8fd94d9
HMH
3302 tp_features.bay_status = bay_handle &&
3303 acpi_evalf(bay_handle, NULL, "_STA", "qv");
3304 tp_features.bay_status2 = bay2_handle &&
3305 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
78f81cc4 3306
d8fd94d9
HMH
3307 tp_features.bay_eject = bay_handle && bay_ej_handle &&
3308 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
3309 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
3310 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
1da177e4 3311
fe08bc4b
HMH
3312 vdbg_printk(TPACPI_DBG_INIT,
3313 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
d8fd94d9
HMH
3314 str_supported(tp_features.bay_status),
3315 str_supported(tp_features.bay_eject),
3316 str_supported(tp_features.bay_status2),
3317 str_supported(tp_features.bay_eject2));
fe08bc4b 3318
d8fd94d9
HMH
3319 return (tp_features.bay_status || tp_features.bay_eject ||
3320 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
1da177e4
LT
3321}
3322
56b6aeb0
HMH
3323static void bay_notify(struct ibm_struct *ibm, u32 event)
3324{
14e04fb3 3325 acpi_bus_generate_proc_event(ibm->acpi->device, event, 0);
962ce8ca
ZR
3326 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3327 ibm->acpi->device->dev.bus_id,
3328 event, 0);
56b6aeb0
HMH
3329}
3330
78f81cc4
BD
3331#define bay_occupied(b) (_sta(b##_handle) & 1)
3332
3333static int bay_read(char *p)
1da177e4
LT
3334{
3335 int len = 0;
78f81cc4
BD
3336 int occupied = bay_occupied(bay);
3337 int occupied2 = bay_occupied(bay2);
3338 int eject, eject2;
3339
d8fd94d9
HMH
3340 len += sprintf(p + len, "status:\t\t%s\n",
3341 tp_features.bay_status ?
3342 (occupied ? "occupied" : "unoccupied") :
3343 "not supported");
3344 if (tp_features.bay_status2)
78f81cc4
BD
3345 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
3346 "occupied" : "unoccupied");
3347
d8fd94d9
HMH
3348 eject = tp_features.bay_eject && occupied;
3349 eject2 = tp_features.bay_eject2 && occupied2;
78f81cc4
BD
3350
3351 if (eject && eject2)
3352 len += sprintf(p + len, "commands:\teject, eject2\n");
3353 else if (eject)
1da177e4 3354 len += sprintf(p + len, "commands:\teject\n");
78f81cc4
BD
3355 else if (eject2)
3356 len += sprintf(p + len, "commands:\teject2\n");
1da177e4
LT
3357
3358 return len;
3359}
3360
78f81cc4 3361static int bay_write(char *buf)
1da177e4
LT
3362{
3363 char *cmd;
3364
d8fd94d9 3365 if (!tp_features.bay_eject && !tp_features.bay_eject2)
78f81cc4
BD
3366 return -ENODEV;
3367
1da177e4 3368 while ((cmd = next_cmd(&buf))) {
d8fd94d9 3369 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
78f81cc4
BD
3370 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
3371 return -EIO;
d8fd94d9 3372 } else if (tp_features.bay_eject2 &&
78f81cc4
BD
3373 strlencmp(cmd, "eject2") == 0) {
3374 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
1da177e4
LT
3375 return -EIO;
3376 } else
3377 return -EINVAL;
3378 }
3379
3380 return 0;
78f81cc4 3381}
a5763f22 3382
8d376cd6
HMH
3383static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
3384 .notify = bay_notify,
3385 .handle = &bay_handle,
3386 .type = ACPI_SYSTEM_NOTIFY,
3387};
3388
a5763f22
HMH
3389static struct ibm_struct bay_driver_data = {
3390 .name = "bay",
3391 .read = bay_read,
3392 .write = bay_write,
8d376cd6 3393 .acpi = &ibm_bay_acpidriver,
a5763f22
HMH
3394};
3395
85998248 3396#endif /* CONFIG_THINKPAD_ACPI_BAY */
1da177e4 3397
56b6aeb0
HMH
3398/*************************************************************************
3399 * CMOS subdriver
3400 */
3401
b616004c
HMH
3402/* sysfs cmos_command -------------------------------------------------- */
3403static ssize_t cmos_command_store(struct device *dev,
3404 struct device_attribute *attr,
3405 const char *buf, size_t count)
3406{
3407 unsigned long cmos_cmd;
3408 int res;
3409
3410 if (parse_strtoul(buf, 21, &cmos_cmd))
3411 return -EINVAL;
3412
3413 res = issue_thinkpad_cmos_command(cmos_cmd);
3414 return (res)? res : count;
3415}
3416
3417static struct device_attribute dev_attr_cmos_command =
3418 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
3419
3420/* --------------------------------------------------------------------- */
3421
a5763f22 3422static int __init cmos_init(struct ibm_init_struct *iibm)
5fba344c 3423{
b616004c
HMH
3424 int res;
3425
fe08bc4b
HMH
3426 vdbg_printk(TPACPI_DBG_INIT,
3427 "initializing cmos commands subdriver\n");
3428
e0c7dfe7 3429 TPACPI_ACPIHANDLE_INIT(cmos);
5fba344c 3430
fe08bc4b
HMH
3431 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
3432 str_supported(cmos_handle != NULL));
b616004c
HMH
3433
3434 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3435 if (res)
3436 return res;
3437
5fba344c
HMH
3438 return (cmos_handle)? 0 : 1;
3439}
3440
b616004c
HMH
3441static void cmos_exit(void)
3442{
3443 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3444}
3445
78f81cc4 3446static int cmos_read(char *p)
1da177e4
LT
3447{
3448 int len = 0;
3449
78f81cc4
BD
3450 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3451 R30, R31, T20-22, X20-21 */
1da177e4
LT
3452 if (!cmos_handle)
3453 len += sprintf(p + len, "status:\t\tnot supported\n");
3454 else {
3455 len += sprintf(p + len, "status:\t\tsupported\n");
78f81cc4 3456 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
1da177e4
LT
3457 }
3458
3459 return len;
3460}
3461
78f81cc4 3462static int cmos_write(char *buf)
1da177e4
LT
3463{
3464 char *cmd;
c9bea99c 3465 int cmos_cmd, res;
1da177e4
LT
3466
3467 while ((cmd = next_cmd(&buf))) {
78f81cc4
BD
3468 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
3469 cmos_cmd >= 0 && cmos_cmd <= 21) {
1da177e4
LT
3470 /* cmos_cmd set */
3471 } else
3472 return -EINVAL;
3473
c9bea99c
HMH
3474 res = issue_thinkpad_cmos_command(cmos_cmd);
3475 if (res)
3476 return res;
1da177e4
LT
3477 }
3478
3479 return 0;
78f81cc4
BD
3480}
3481
a5763f22
HMH
3482static struct ibm_struct cmos_driver_data = {
3483 .name = "cmos",
3484 .read = cmos_read,
3485 .write = cmos_write,
b616004c 3486 .exit = cmos_exit,
a5763f22 3487};
56b6aeb0
HMH
3488
3489/*************************************************************************
3490 * LED subdriver
3491 */
3492
f74a27d4
HMH
3493enum led_access_mode {
3494 TPACPI_LED_NONE = 0,
3495 TPACPI_LED_570, /* 570 */
3496 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
3497 TPACPI_LED_NEW, /* all others */
3498};
3499
3500enum { /* For TPACPI_LED_OLD */
3501 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
3502 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
3503 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
3504};
3505
9a8e1738 3506static enum led_access_mode led_supported;
78f81cc4 3507
e0c7dfe7 3508TPACPI_HANDLE(led, ec, "SLED", /* 570 */
35ff8b9f
HMH
3509 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
3510 /* T20-22, X20-21 */
56b6aeb0
HMH
3511 "LED", /* all others */
3512 ); /* R30, R31 */
3513
a5763f22 3514static int __init led_init(struct ibm_init_struct *iibm)
78f81cc4 3515{
fe08bc4b
HMH
3516 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
3517
e0c7dfe7 3518 TPACPI_ACPIHANDLE_INIT(led);
5fba344c 3519
78f81cc4
BD
3520 if (!led_handle)
3521 /* led not supported on R30, R31 */
efa27145 3522 led_supported = TPACPI_LED_NONE;
78f81cc4
BD
3523 else if (strlencmp(led_path, "SLED") == 0)
3524 /* 570 */
efa27145 3525 led_supported = TPACPI_LED_570;
78f81cc4
BD
3526 else if (strlencmp(led_path, "SYSL") == 0)
3527 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
efa27145 3528 led_supported = TPACPI_LED_OLD;
78f81cc4
BD
3529 else
3530 /* all others */
efa27145 3531 led_supported = TPACPI_LED_NEW;
78f81cc4 3532
fe08bc4b
HMH
3533 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
3534 str_supported(led_supported), led_supported);
3535
5fba344c 3536 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
78f81cc4
BD
3537}
3538
3539#define led_status(s) ((s) == 0 ? "off" : ((s) == 1 ? "on" : "blinking"))
3540
3541static int led_read(char *p)
1da177e4
LT
3542{
3543 int len = 0;
3544
78f81cc4
BD
3545 if (!led_supported) {
3546 len += sprintf(p + len, "status:\t\tnot supported\n");
3547 return len;
3548 }
3549 len += sprintf(p + len, "status:\t\tsupported\n");
3550
efa27145 3551 if (led_supported == TPACPI_LED_570) {
78f81cc4
BD
3552 /* 570 */
3553 int i, status;
3554 for (i = 0; i < 8; i++) {
3555 if (!acpi_evalf(ec_handle,
3556 &status, "GLED", "dd", 1 << i))
3557 return -EIO;
3558 len += sprintf(p + len, "%d:\t\t%s\n",
3559 i, led_status(status));
3560 }
3561 }
3562
1da177e4 3563 len += sprintf(p + len, "commands:\t"
78f81cc4 3564 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
1da177e4
LT
3565
3566 return len;
3567}
3568
78f81cc4
BD
3569/* off, on, blink */
3570static const int led_sled_arg1[] = { 0, 1, 3 };
3571static const int led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */
3572static const int led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */
3573static const int led_led_arg1[] = { 0, 0x80, 0xc0 };
3574
78f81cc4 3575static int led_write(char *buf)
1da177e4
LT
3576{
3577 char *cmd;
78f81cc4
BD
3578 int led, ind, ret;
3579
3580 if (!led_supported)
3581 return -ENODEV;
1da177e4
LT
3582
3583 while ((cmd = next_cmd(&buf))) {
78f81cc4 3584 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
1da177e4
LT
3585 return -EINVAL;
3586
78f81cc4
BD
3587 if (strstr(cmd, "off")) {
3588 ind = 0;
1da177e4 3589 } else if (strstr(cmd, "on")) {
78f81cc4
BD
3590 ind = 1;
3591 } else if (strstr(cmd, "blink")) {
3592 ind = 2;
1da177e4
LT
3593 } else
3594 return -EINVAL;
78f81cc4 3595
efa27145 3596 if (led_supported == TPACPI_LED_570) {
78f81cc4
BD
3597 /* 570 */
3598 led = 1 << led;
1da177e4 3599 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
78f81cc4 3600 led, led_sled_arg1[ind]))
1da177e4 3601 return -EIO;
efa27145 3602 } else if (led_supported == TPACPI_LED_OLD) {
78f81cc4
BD
3603 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
3604 led = 1 << led;
efa27145 3605 ret = ec_write(TPACPI_LED_EC_HLMS, led);
78f81cc4 3606 if (ret >= 0)
35ff8b9f
HMH
3607 ret = ec_write(TPACPI_LED_EC_HLBL,
3608 led * led_exp_hlbl[ind]);
78f81cc4 3609 if (ret >= 0)
35ff8b9f
HMH
3610 ret = ec_write(TPACPI_LED_EC_HLCL,
3611 led * led_exp_hlcl[ind]);
78f81cc4
BD
3612 if (ret < 0)
3613 return ret;
3614 } else {
3615 /* all others */
3616 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3617 led, led_led_arg1[ind]))
1da177e4 3618 return -EIO;
78f81cc4
BD
3619 }
3620 }
3621
3622 return 0;
3623}
3624
a5763f22
HMH
3625static struct ibm_struct led_driver_data = {
3626 .name = "led",
3627 .read = led_read,
3628 .write = led_write,
3629};
3630
56b6aeb0
HMH
3631/*************************************************************************
3632 * Beep subdriver
3633 */
3634
e0c7dfe7 3635TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
56b6aeb0 3636
a5763f22 3637static int __init beep_init(struct ibm_init_struct *iibm)
5fba344c 3638{
fe08bc4b
HMH
3639 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
3640
e0c7dfe7 3641 TPACPI_ACPIHANDLE_INIT(beep);
5fba344c 3642
fe08bc4b
HMH
3643 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
3644 str_supported(beep_handle != NULL));
3645
5fba344c
HMH
3646 return (beep_handle)? 0 : 1;
3647}
3648
78f81cc4
BD
3649static int beep_read(char *p)
3650{
3651 int len = 0;
3652
3653 if (!beep_handle)
3654 len += sprintf(p + len, "status:\t\tnot supported\n");
3655 else {
3656 len += sprintf(p + len, "status:\t\tsupported\n");
3657 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
3658 }
3659
3660 return len;
3661}
3662
3663static int beep_write(char *buf)
3664{
3665 char *cmd;
3666 int beep_cmd;
3667
3668 if (!beep_handle)
3669 return -ENODEV;
3670
3671 while ((cmd = next_cmd(&buf))) {
3672 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
3673 beep_cmd >= 0 && beep_cmd <= 17) {
3674 /* beep_cmd set */
3675 } else
3676 return -EINVAL;
3677 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
3678 return -EIO;
3679 }
3680
3681 return 0;
3682}
3683
a5763f22
HMH
3684static struct ibm_struct beep_driver_data = {
3685 .name = "beep",
3686 .read = beep_read,
3687 .write = beep_write,
3688};
3689
56b6aeb0
HMH
3690/*************************************************************************
3691 * Thermal subdriver
3692 */
78f81cc4 3693
f74a27d4
HMH
3694enum thermal_access_mode {
3695 TPACPI_THERMAL_NONE = 0, /* No thermal support */
3696 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
3697 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
3698 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
3699 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
3700};
3701
3702enum { /* TPACPI_THERMAL_TPEC_* */
3703 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
3704 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
3705 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
3706};
3707
3708#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
3709struct ibm_thermal_sensors_struct {
3710 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
3711};
3712
a26f878a 3713static enum thermal_access_mode thermal_read_mode;
78f81cc4 3714
b21a15f6
HMH
3715/* idx is zero-based */
3716static int thermal_get_sensor(int idx, s32 *value)
3717{
3718 int t;
3719 s8 tmp;
3720 char tmpi[5];
3721
3722 t = TP_EC_THERMAL_TMP0;
3723
3724 switch (thermal_read_mode) {
3725#if TPACPI_MAX_THERMAL_SENSORS >= 16
3726 case TPACPI_THERMAL_TPEC_16:
3727 if (idx >= 8 && idx <= 15) {
3728 t = TP_EC_THERMAL_TMP8;
3729 idx -= 8;
3730 }
3731 /* fallthrough */
3732#endif
3733 case TPACPI_THERMAL_TPEC_8:
3734 if (idx <= 7) {
3735 if (!acpi_ec_read(t + idx, &tmp))
3736 return -EIO;
3737 *value = tmp * 1000;
3738 return 0;
3739 }
3740 break;
3741
3742 case TPACPI_THERMAL_ACPI_UPDT:
3743 if (idx <= 7) {
3744 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
3745 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
3746 return -EIO;
3747 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
3748 return -EIO;
3749 *value = (t - 2732) * 100;
3750 return 0;
3751 }
3752 break;
3753
3754 case TPACPI_THERMAL_ACPI_TMP07:
3755 if (idx <= 7) {
3756 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
3757 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
3758 return -EIO;
3759 if (t > 127 || t < -127)
3760 t = TP_EC_THERMAL_TMP_NA;
3761 *value = t * 1000;
3762 return 0;
3763 }
3764 break;
3765
3766 case TPACPI_THERMAL_NONE:
3767 default:
3768 return -ENOSYS;
3769 }
3770
3771 return -EINVAL;
3772}
3773
3774static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
3775{
3776 int res, i;
3777 int n;
3778
3779 n = 8;
3780 i = 0;
3781
3782 if (!s)
3783 return -EINVAL;
3784
3785 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
3786 n = 16;
3787
35ff8b9f 3788 for (i = 0 ; i < n; i++) {
b21a15f6
HMH
3789 res = thermal_get_sensor(i, &s->temp[i]);
3790 if (res)
3791 return res;
3792 }
3793
3794 return n;
3795}
f74a27d4 3796
2c37aa4e
HMH
3797/* sysfs temp##_input -------------------------------------------------- */
3798
3799static ssize_t thermal_temp_input_show(struct device *dev,
3800 struct device_attribute *attr,
3801 char *buf)
3802{
3803 struct sensor_device_attribute *sensor_attr =
3804 to_sensor_dev_attr(attr);
3805 int idx = sensor_attr->index;
3806 s32 value;
3807 int res;
3808
3809 res = thermal_get_sensor(idx, &value);
3810 if (res)
3811 return res;
3812 if (value == TP_EC_THERMAL_TMP_NA * 1000)
3813 return -ENXIO;
3814
3815 return snprintf(buf, PAGE_SIZE, "%d\n", value);
3816}
3817
3818#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
35ff8b9f
HMH
3819 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
3820 thermal_temp_input_show, NULL, _idxB)
2c37aa4e
HMH
3821
3822static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
3823 THERMAL_SENSOR_ATTR_TEMP(1, 0),
3824 THERMAL_SENSOR_ATTR_TEMP(2, 1),
3825 THERMAL_SENSOR_ATTR_TEMP(3, 2),
3826 THERMAL_SENSOR_ATTR_TEMP(4, 3),
3827 THERMAL_SENSOR_ATTR_TEMP(5, 4),
3828 THERMAL_SENSOR_ATTR_TEMP(6, 5),
3829 THERMAL_SENSOR_ATTR_TEMP(7, 6),
3830 THERMAL_SENSOR_ATTR_TEMP(8, 7),
3831 THERMAL_SENSOR_ATTR_TEMP(9, 8),
3832 THERMAL_SENSOR_ATTR_TEMP(10, 9),
3833 THERMAL_SENSOR_ATTR_TEMP(11, 10),
3834 THERMAL_SENSOR_ATTR_TEMP(12, 11),
3835 THERMAL_SENSOR_ATTR_TEMP(13, 12),
3836 THERMAL_SENSOR_ATTR_TEMP(14, 13),
3837 THERMAL_SENSOR_ATTR_TEMP(15, 14),
3838 THERMAL_SENSOR_ATTR_TEMP(16, 15),
3839};
3840
3841#define THERMAL_ATTRS(X) \
3842 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
3843
3844static struct attribute *thermal_temp_input_attr[] = {
3845 THERMAL_ATTRS(8),
3846 THERMAL_ATTRS(9),
3847 THERMAL_ATTRS(10),
3848 THERMAL_ATTRS(11),
3849 THERMAL_ATTRS(12),
3850 THERMAL_ATTRS(13),
3851 THERMAL_ATTRS(14),
3852 THERMAL_ATTRS(15),
3853 THERMAL_ATTRS(0),
3854 THERMAL_ATTRS(1),
3855 THERMAL_ATTRS(2),
3856 THERMAL_ATTRS(3),
3857 THERMAL_ATTRS(4),
3858 THERMAL_ATTRS(5),
3859 THERMAL_ATTRS(6),
3860 THERMAL_ATTRS(7),
3861 NULL
3862};
3863
3864static const struct attribute_group thermal_temp_input16_group = {
3865 .attrs = thermal_temp_input_attr
3866};
3867
3868static const struct attribute_group thermal_temp_input8_group = {
3869 .attrs = &thermal_temp_input_attr[8]
3870};
3871
3872#undef THERMAL_SENSOR_ATTR_TEMP
3873#undef THERMAL_ATTRS
3874
3875/* --------------------------------------------------------------------- */
3876
a5763f22 3877static int __init thermal_init(struct ibm_init_struct *iibm)
78f81cc4 3878{
60eb0b35
HMH
3879 u8 t, ta1, ta2;
3880 int i;
5fba344c 3881 int acpi_tmp7;
2c37aa4e 3882 int res;
5fba344c 3883
fe08bc4b
HMH
3884 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
3885
5fba344c 3886 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
60eb0b35 3887
3d6f99ca 3888 if (thinkpad_id.ec_model) {
60eb0b35
HMH
3889 /*
3890 * Direct EC access mode: sensors at registers
3891 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
3892 * non-implemented, thermal sensors return 0x80 when
3893 * not available
3894 */
78f81cc4 3895
60eb0b35
HMH
3896 ta1 = ta2 = 0;
3897 for (i = 0; i < 8; i++) {
04cc862c 3898 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
60eb0b35
HMH
3899 ta1 |= t;
3900 } else {
3901 ta1 = 0;
3902 break;
3903 }
04cc862c 3904 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
60eb0b35
HMH
3905 ta2 |= t;
3906 } else {
3907 ta1 = 0;
3908 break;
3909 }
3910 }
3911 if (ta1 == 0) {
3912 /* This is sheer paranoia, but we handle it anyway */
3913 if (acpi_tmp7) {
e0c7dfe7 3914 printk(TPACPI_ERR
60eb0b35 3915 "ThinkPad ACPI EC access misbehaving, "
35ff8b9f
HMH
3916 "falling back to ACPI TMPx access "
3917 "mode\n");
efa27145 3918 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
60eb0b35 3919 } else {
e0c7dfe7 3920 printk(TPACPI_ERR
60eb0b35
HMH
3921 "ThinkPad ACPI EC access misbehaving, "
3922 "disabling thermal sensors access\n");
efa27145 3923 thermal_read_mode = TPACPI_THERMAL_NONE;
60eb0b35
HMH
3924 }
3925 } else {
3926 thermal_read_mode =
3927 (ta2 != 0) ?
efa27145 3928 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
60eb0b35
HMH
3929 }
3930 } else if (acpi_tmp7) {
a26f878a
HMH
3931 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
3932 /* 600e/x, 770e, 770x */
efa27145 3933 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
a26f878a
HMH
3934 } else {
3935 /* Standard ACPI TMPx access, max 8 sensors */
efa27145 3936 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
a26f878a
HMH
3937 }
3938 } else {
3939 /* temperatures not supported on 570, G4x, R30, R31, R32 */
efa27145 3940 thermal_read_mode = TPACPI_THERMAL_NONE;
a26f878a 3941 }
78f81cc4 3942
fe08bc4b
HMH
3943 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
3944 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
3945 thermal_read_mode);
3946
35ff8b9f 3947 switch (thermal_read_mode) {
2c37aa4e 3948 case TPACPI_THERMAL_TPEC_16:
7fd40029 3949 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
2c37aa4e
HMH
3950 &thermal_temp_input16_group);
3951 if (res)
3952 return res;
3953 break;
3954 case TPACPI_THERMAL_TPEC_8:
3955 case TPACPI_THERMAL_ACPI_TMP07:
3956 case TPACPI_THERMAL_ACPI_UPDT:
7fd40029 3957 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
2c37aa4e
HMH
3958 &thermal_temp_input8_group);
3959 if (res)
3960 return res;
3961 break;
3962 case TPACPI_THERMAL_NONE:
3963 default:
3964 return 1;
3965 }
3966
3967 return 0;
3968}
3969
3970static void thermal_exit(void)
3971{
35ff8b9f 3972 switch (thermal_read_mode) {
2c37aa4e 3973 case TPACPI_THERMAL_TPEC_16:
7fd40029 3974 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
2c37aa4e
HMH
3975 &thermal_temp_input16_group);
3976 break;
3977 case TPACPI_THERMAL_TPEC_8:
3978 case TPACPI_THERMAL_ACPI_TMP07:
3979 case TPACPI_THERMAL_ACPI_UPDT:
7fd40029 3980 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
2c37aa4e
HMH
3981 &thermal_temp_input16_group);
3982 break;
3983 case TPACPI_THERMAL_NONE:
3984 default:
3985 break;
3986 }
78f81cc4
BD
3987}
3988
a26f878a
HMH
3989static int thermal_read(char *p)
3990{
3991 int len = 0;
3992 int n, i;
3993 struct ibm_thermal_sensors_struct t;
3994
3995 n = thermal_get_sensors(&t);
3996 if (unlikely(n < 0))
3997 return n;
3998
3999 len += sprintf(p + len, "temperatures:\t");
4000
4001 if (n > 0) {
4002 for (i = 0; i < (n - 1); i++)
4003 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
4004 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
4005 } else
4006 len += sprintf(p + len, "not supported\n");
78f81cc4
BD
4007
4008 return len;
4009}
4010
a5763f22
HMH
4011static struct ibm_struct thermal_driver_data = {
4012 .name = "thermal",
4013 .read = thermal_read,
2c37aa4e 4014 .exit = thermal_exit,
a5763f22
HMH
4015};
4016
56b6aeb0
HMH
4017/*************************************************************************
4018 * EC Dump subdriver
4019 */
4020
78f81cc4
BD
4021static u8 ecdump_regs[256];
4022
4023static int ecdump_read(char *p)
4024{
4025 int len = 0;
4026 int i, j;
4027 u8 v;
4028
4029 len += sprintf(p + len, "EC "
4030 " +00 +01 +02 +03 +04 +05 +06 +07"
4031 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
4032 for (i = 0; i < 256; i += 16) {
4033 len += sprintf(p + len, "EC 0x%02x:", i);
4034 for (j = 0; j < 16; j++) {
4035 if (!acpi_ec_read(i + j, &v))
4036 break;
4037 if (v != ecdump_regs[i + j])
4038 len += sprintf(p + len, " *%02x", v);
4039 else
4040 len += sprintf(p + len, " %02x", v);
4041 ecdump_regs[i + j] = v;
4042 }
4043 len += sprintf(p + len, "\n");
4044 if (j != 16)
4045 break;
4046 }
4047
4048 /* These are way too dangerous to advertise openly... */
4049#if 0
4050 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
4051 " (<offset> is 00-ff, <value> is 00-ff)\n");
4052 len += sprintf(p + len, "commands:\t0x<offset> <value> "
4053 " (<offset> is 00-ff, <value> is 0-255)\n");
4054#endif
4055 return len;
4056}
4057
4058static int ecdump_write(char *buf)
4059{
4060 char *cmd;
4061 int i, v;
4062
4063 while ((cmd = next_cmd(&buf))) {
4064 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
4065 /* i and v set */
4066 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
4067 /* i and v set */
4068 } else
4069 return -EINVAL;
4070 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
4071 if (!acpi_ec_write(i, v))
1da177e4
LT
4072 return -EIO;
4073 } else
4074 return -EINVAL;
4075 }
4076
4077 return 0;
78f81cc4
BD
4078}
4079
a5763f22
HMH
4080static struct ibm_struct ecdump_driver_data = {
4081 .name = "ecdump",
4082 .read = ecdump_read,
4083 .write = ecdump_write,
92641177 4084 .flags.experimental = 1,
a5763f22
HMH
4085};
4086
56b6aeb0
HMH
4087/*************************************************************************
4088 * Backlight/brightness subdriver
4089 */
4090
f74a27d4
HMH
4091#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
4092
94954cc6 4093static struct backlight_device *ibm_backlight_device;
f74a27d4
HMH
4094static int brightness_offset = 0x31;
4095static int brightness_mode;
4096static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
4097
b21a15f6 4098static struct mutex brightness_mutex;
56b6aeb0 4099
b21a15f6
HMH
4100/*
4101 * ThinkPads can read brightness from two places: EC 0x31, or
4102 * CMOS NVRAM byte 0x5E, bits 0-3.
4103 */
4104static int brightness_get(struct backlight_device *bd)
4105{
4106 u8 lec = 0, lcmos = 0, level = 0;
4107
4108 if (brightness_mode & 1) {
4109 if (!acpi_ec_read(brightness_offset, &lec))
4110 return -EIO;
4111 lec &= (tp_features.bright_16levels)? 0x0f : 0x07;
4112 level = lec;
4113 };
4114 if (brightness_mode & 2) {
4115 lcmos = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
4116 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
4117 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
4118 lcmos &= (tp_features.bright_16levels)? 0x0f : 0x07;
4119 level = lcmos;
4120 }
4121
4122 if (brightness_mode == 3 && lec != lcmos) {
e0c7dfe7 4123 printk(TPACPI_ERR
b21a15f6
HMH
4124 "CMOS NVRAM (%u) and EC (%u) do not agree "
4125 "on display brightness level\n",
4126 (unsigned int) lcmos,
4127 (unsigned int) lec);
4128 return -EIO;
4129 }
4130
4131 return level;
4132}
4133
4134/* May return EINTR which can always be mapped to ERESTARTSYS */
4135static int brightness_set(int value)
4136{
4137 int cmos_cmd, inc, i, res;
4138 int current_value;
4139
4140 if (value > ((tp_features.bright_16levels)? 15 : 7))
4141 return -EINVAL;
4142
4143 res = mutex_lock_interruptible(&brightness_mutex);
4144 if (res < 0)
4145 return res;
4146
4147 current_value = brightness_get(NULL);
4148 if (current_value < 0) {
4149 res = current_value;
4150 goto errout;
4151 }
4152
4153 cmos_cmd = value > current_value ?
4154 TP_CMOS_BRIGHTNESS_UP :
4155 TP_CMOS_BRIGHTNESS_DOWN;
4156 inc = (value > current_value)? 1 : -1;
4157
4158 res = 0;
4159 for (i = current_value; i != value; i += inc) {
4160 if ((brightness_mode & 2) &&
4161 issue_thinkpad_cmos_command(cmos_cmd)) {
4162 res = -EIO;
4163 goto errout;
4164 }
4165 if ((brightness_mode & 1) &&
4166 !acpi_ec_write(brightness_offset, i + inc)) {
4167 res = -EIO;
4168 goto errout;;
4169 }
4170 }
4171
4172errout:
4173 mutex_unlock(&brightness_mutex);
4174 return res;
4175}
4176
4177/* sysfs backlight class ----------------------------------------------- */
4178
4179static int brightness_update_status(struct backlight_device *bd)
4180{
4181 /* it is the backlight class's job (caller) to handle
4182 * EINTR and other errors properly */
4183 return brightness_set(
4184 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
4185 bd->props.power == FB_BLANK_UNBLANK) ?
4186 bd->props.brightness : 0);
4187}
4188
4189static struct backlight_ops ibm_backlight_data = {
35ff8b9f
HMH
4190 .get_brightness = brightness_get,
4191 .update_status = brightness_update_status,
56b6aeb0
HMH
4192};
4193
b21a15f6 4194/* --------------------------------------------------------------------- */
f432255e 4195
a3f104c0
HMH
4196static int __init tpacpi_query_bcll_levels(acpi_handle handle)
4197{
4198 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
4199 union acpi_object *obj;
4200 int rc;
4201
4202 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
4203 obj = (union acpi_object *)buffer.pointer;
4204 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
e0c7dfe7
HMH
4205 printk(TPACPI_ERR "Unknown BCLL data, "
4206 "please report this to %s\n", TPACPI_MAIL);
a3f104c0
HMH
4207 rc = 0;
4208 } else {
4209 rc = obj->package.count;
4210 }
4211 } else {
4212 return 0;
4213 }
4214
4215 kfree(buffer.pointer);
4216 return rc;
4217}
4218
4219static acpi_status __init brightness_find_bcll(acpi_handle handle, u32 lvl,
4220 void *context, void **rv)
4221{
4222 char name[ACPI_PATH_SEGMENT_LENGTH];
4223 struct acpi_buffer buffer = { sizeof(name), &name };
4224
4225 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
4226 !strncmp("BCLL", name, sizeof(name) - 1)) {
4227 if (tpacpi_query_bcll_levels(handle) == 16) {
4228 *rv = handle;
4229 return AE_CTRL_TERMINATE;
4230 } else {
4231 return AE_OK;
4232 }
4233 } else {
4234 return AE_OK;
4235 }
4236}
4237
4238static int __init brightness_check_levels(void)
4239{
4240 int status;
4241 void *found_node = NULL;
4242
4243 if (!vid_handle) {
e0c7dfe7 4244 TPACPI_ACPIHANDLE_INIT(vid);
a3f104c0
HMH
4245 }
4246 if (!vid_handle)
4247 return 0;
4248
4249 /* Search for a BCLL package with 16 levels */
4250 status = acpi_walk_namespace(ACPI_TYPE_PACKAGE, vid_handle, 3,
35ff8b9f
HMH
4251 brightness_find_bcll, NULL,
4252 &found_node);
a3f104c0
HMH
4253
4254 return (ACPI_SUCCESS(status) && found_node != NULL);
4255}
4256
e11e211a
HMH
4257static acpi_status __init brightness_find_bcl(acpi_handle handle, u32 lvl,
4258 void *context, void **rv)
4259{
4260 char name[ACPI_PATH_SEGMENT_LENGTH];
4261 struct acpi_buffer buffer = { sizeof(name), &name };
4262
4263 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
4264 !strncmp("_BCL", name, sizeof(name) - 1)) {
4265 *rv = handle;
4266 return AE_CTRL_TERMINATE;
4267 } else {
4268 return AE_OK;
4269 }
4270}
4271
4272static int __init brightness_check_std_acpi_support(void)
4273{
4274 int status;
4275 void *found_node = NULL;
4276
4277 if (!vid_handle) {
e0c7dfe7 4278 TPACPI_ACPIHANDLE_INIT(vid);
e11e211a
HMH
4279 }
4280 if (!vid_handle)
4281 return 0;
4282
4283 /* Search for a _BCL method, but don't execute it */
4284 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
35ff8b9f 4285 brightness_find_bcl, NULL, &found_node);
e11e211a
HMH
4286
4287 return (ACPI_SUCCESS(status) && found_node != NULL);
4288}
4289
a5763f22 4290static int __init brightness_init(struct ibm_init_struct *iibm)
56b6aeb0
HMH
4291{
4292 int b;
4293
fe08bc4b
HMH
4294 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
4295
f432255e
HMH
4296 mutex_init(&brightness_mutex);
4297
87cc537a
HMH
4298 if (!brightness_enable) {
4299 dbg_printk(TPACPI_DBG_INIT,
35ff8b9f
HMH
4300 "brightness support disabled by "
4301 "module parameter\n");
87cc537a 4302 return 1;
e11e211a
HMH
4303 } else if (brightness_enable > 1) {
4304 if (brightness_check_std_acpi_support()) {
e0c7dfe7 4305 printk(TPACPI_NOTICE
35ff8b9f
HMH
4306 "standard ACPI backlight interface "
4307 "available, not loading native one...\n");
e11e211a
HMH
4308 return 1;
4309 }
87cc537a
HMH
4310 }
4311
24d3b774
HMH
4312 if (!brightness_mode) {
4313 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO)
4314 brightness_mode = 2;
4315 else
4316 brightness_mode = 3;
4317
4318 dbg_printk(TPACPI_DBG_INIT, "selected brightness_mode=%d\n",
4319 brightness_mode);
4320 }
4321
4322 if (brightness_mode > 3)
4323 return -EINVAL;
4324
a3f104c0
HMH
4325 tp_features.bright_16levels =
4326 thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO &&
4327 brightness_check_levels();
4328
56b6aeb0
HMH
4329 b = brightness_get(NULL);
4330 if (b < 0)
24d3b774 4331 return 1;
56b6aeb0 4332
a3f104c0 4333 if (tp_features.bright_16levels)
35ff8b9f
HMH
4334 printk(TPACPI_INFO
4335 "detected a 16-level brightness capable ThinkPad\n");
a3f104c0 4336
7d5a015e
HMH
4337 ibm_backlight_device = backlight_device_register(
4338 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
4339 &ibm_backlight_data);
56b6aeb0 4340 if (IS_ERR(ibm_backlight_device)) {
e0c7dfe7 4341 printk(TPACPI_ERR "Could not register backlight device\n");
56b6aeb0
HMH
4342 return PTR_ERR(ibm_backlight_device);
4343 }
fe08bc4b 4344 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
56b6aeb0 4345
a3f104c0
HMH
4346 ibm_backlight_device->props.max_brightness =
4347 (tp_features.bright_16levels)? 15 : 7;
56b6aeb0
HMH
4348 ibm_backlight_device->props.brightness = b;
4349 backlight_update_status(ibm_backlight_device);
4350
4351 return 0;
4352}
4353
4354static void brightness_exit(void)
4355{
4356 if (ibm_backlight_device) {
fe08bc4b
HMH
4357 vdbg_printk(TPACPI_DBG_EXIT,
4358 "calling backlight_device_unregister()\n");
56b6aeb0
HMH
4359 backlight_device_unregister(ibm_backlight_device);
4360 ibm_backlight_device = NULL;
4361 }
4362}
4363
56b6aeb0
HMH
4364static int brightness_read(char *p)
4365{
4366 int len = 0;
4367 int level;
4368
35ff8b9f
HMH
4369 level = brightness_get(NULL);
4370 if (level < 0) {
56b6aeb0
HMH
4371 len += sprintf(p + len, "level:\t\tunreadable\n");
4372 } else {
a3f104c0 4373 len += sprintf(p + len, "level:\t\t%d\n", level);
56b6aeb0
HMH
4374 len += sprintf(p + len, "commands:\tup, down\n");
4375 len += sprintf(p + len, "commands:\tlevel <level>"
a3f104c0
HMH
4376 " (<level> is 0-%d)\n",
4377 (tp_features.bright_16levels) ? 15 : 7);
56b6aeb0
HMH
4378 }
4379
4380 return len;
4381}
4382
8acb0250
HM
4383static int brightness_write(char *buf)
4384{
4385 int level;
4273af8d 4386 int rc;
1da177e4 4387 char *cmd;
a3f104c0 4388 int max_level = (tp_features.bright_16levels) ? 15 : 7;
1da177e4 4389
4273af8d
HMH
4390 level = brightness_get(NULL);
4391 if (level < 0)
4392 return level;
78f81cc4 4393
4273af8d 4394 while ((cmd = next_cmd(&buf))) {
78f81cc4 4395 if (strlencmp(cmd, "up") == 0) {
4273af8d
HMH
4396 if (level < max_level)
4397 level++;
78f81cc4 4398 } else if (strlencmp(cmd, "down") == 0) {
4273af8d
HMH
4399 if (level > 0)
4400 level--;
4401 } else if (sscanf(cmd, "level %d", &level) == 1 &&
4402 level >= 0 && level <= max_level) {
4403 /* new level set */
78f81cc4
BD
4404 } else
4405 return -EINVAL;
78f81cc4
BD
4406 }
4407
4273af8d
HMH
4408 /*
4409 * Now we know what the final level should be, so we try to set it.
4410 * Doing it this way makes the syscall restartable in case of EINTR
4411 */
4412 rc = brightness_set(level);
4413 return (rc == -EINTR)? ERESTARTSYS : rc;
78f81cc4
BD
4414}
4415
a5763f22
HMH
4416static struct ibm_struct brightness_driver_data = {
4417 .name = "brightness",
4418 .read = brightness_read,
4419 .write = brightness_write,
4420 .exit = brightness_exit,
4421};
4422
56b6aeb0
HMH
4423/*************************************************************************
4424 * Volume subdriver
4425 */
fb87a811 4426
f74a27d4
HMH
4427static int volume_offset = 0x30;
4428
78f81cc4
BD
4429static int volume_read(char *p)
4430{
4431 int len = 0;
4432 u8 level;
4433
4434 if (!acpi_ec_read(volume_offset, &level)) {
4435 len += sprintf(p + len, "level:\t\tunreadable\n");
4436 } else {
4437 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
4438 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
4439 len += sprintf(p + len, "commands:\tup, down, mute\n");
4440 len += sprintf(p + len, "commands:\tlevel <level>"
4441 " (<level> is 0-15)\n");
4442 }
4443
4444 return len;
4445}
4446
78f81cc4
BD
4447static int volume_write(char *buf)
4448{
4449 int cmos_cmd, inc, i;
4450 u8 level, mute;
4451 int new_level, new_mute;
4452 char *cmd;
4453
4454 while ((cmd = next_cmd(&buf))) {
4455 if (!acpi_ec_read(volume_offset, &level))
4456 return -EIO;
4457 new_mute = mute = level & 0x40;
4458 new_level = level = level & 0xf;
4459
4460 if (strlencmp(cmd, "up") == 0) {
4461 if (mute)
4462 new_mute = 0;
4463 else
4464 new_level = level == 15 ? 15 : level + 1;
4465 } else if (strlencmp(cmd, "down") == 0) {
4466 if (mute)
4467 new_mute = 0;
4468 else
4469 new_level = level == 0 ? 0 : level - 1;
4470 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
4471 new_level >= 0 && new_level <= 15) {
4472 /* new_level set */
4473 } else if (strlencmp(cmd, "mute") == 0) {
4474 new_mute = 0x40;
1da177e4
LT
4475 } else
4476 return -EINVAL;
4477
35ff8b9f
HMH
4478 if (new_level != level) {
4479 /* mute doesn't change */
4480
4481 cmos_cmd = (new_level > level) ?
4482 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
78f81cc4
BD
4483 inc = new_level > level ? 1 : -1;
4484
c9bea99c 4485 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
78f81cc4
BD
4486 !acpi_ec_write(volume_offset, level)))
4487 return -EIO;
4488
4489 for (i = level; i != new_level; i += inc)
c9bea99c 4490 if (issue_thinkpad_cmos_command(cmos_cmd) ||
78f81cc4
BD
4491 !acpi_ec_write(volume_offset, i + inc))
4492 return -EIO;
4493
35ff8b9f
HMH
4494 if (mute &&
4495 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
4496 !acpi_ec_write(volume_offset, new_level + mute))) {
78f81cc4 4497 return -EIO;
35ff8b9f 4498 }
78f81cc4
BD
4499 }
4500
35ff8b9f
HMH
4501 if (new_mute != mute) {
4502 /* level doesn't change */
4503
4504 cmos_cmd = (new_mute) ?
4505 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
78f81cc4 4506
c9bea99c 4507 if (issue_thinkpad_cmos_command(cmos_cmd) ||
78f81cc4
BD
4508 !acpi_ec_write(volume_offset, level + new_mute))
4509 return -EIO;
4510 }
4511 }
4512
4513 return 0;
4514}
4515
a5763f22
HMH
4516static struct ibm_struct volume_driver_data = {
4517 .name = "volume",
4518 .read = volume_read,
4519 .write = volume_write,
4520};
56b6aeb0
HMH
4521
4522/*************************************************************************
4523 * Fan subdriver
4524 */
4525
4526/*
4527 * FAN ACCESS MODES
4528 *
efa27145 4529 * TPACPI_FAN_RD_ACPI_GFAN:
56b6aeb0
HMH
4530 * ACPI GFAN method: returns fan level
4531 *
efa27145 4532 * see TPACPI_FAN_WR_ACPI_SFAN
f51d1a39 4533 * EC 0x2f (HFSP) not available if GFAN exists
56b6aeb0 4534 *
efa27145 4535 * TPACPI_FAN_WR_ACPI_SFAN:
56b6aeb0
HMH
4536 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
4537 *
f51d1a39
HMH
4538 * EC 0x2f (HFSP) might be available *for reading*, but do not use
4539 * it for writing.
56b6aeb0 4540 *
efa27145 4541 * TPACPI_FAN_WR_TPEC:
f51d1a39
HMH
4542 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
4543 * Supported on almost all ThinkPads
56b6aeb0
HMH
4544 *
4545 * Fan speed changes of any sort (including those caused by the
4546 * disengaged mode) are usually done slowly by the firmware as the
4547 * maximum ammount of fan duty cycle change per second seems to be
4548 * limited.
4549 *
4550 * Reading is not available if GFAN exists.
4551 * Writing is not available if SFAN exists.
4552 *
4553 * Bits
4554 * 7 automatic mode engaged;
4555 * (default operation mode of the ThinkPad)
4556 * fan level is ignored in this mode.
f51d1a39 4557 * 6 full speed mode (takes precedence over bit 7);
56b6aeb0 4558 * not available on all thinkpads. May disable
f51d1a39
HMH
4559 * the tachometer while the fan controller ramps up
4560 * the speed (which can take up to a few *minutes*).
4561 * Speeds up fan to 100% duty-cycle, which is far above
4562 * the standard RPM levels. It is not impossible that
4563 * it could cause hardware damage.
56b6aeb0
HMH
4564 * 5-3 unused in some models. Extra bits for fan level
4565 * in others, but still useless as all values above
4566 * 7 map to the same speed as level 7 in these models.
4567 * 2-0 fan level (0..7 usually)
4568 * 0x00 = stop
4569 * 0x07 = max (set when temperatures critical)
4570 * Some ThinkPads may have other levels, see
efa27145 4571 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
56b6aeb0
HMH
4572 *
4573 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
4574 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
4575 * does so, its initial value is meaningless (0x07).
4576 *
4577 * For firmware bugs, refer to:
4578 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
4579 *
4580 * ----
4581 *
4582 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
4583 * Main fan tachometer reading (in RPM)
4584 *
4585 * This register is present on all ThinkPads with a new-style EC, and
4586 * it is known not to be present on the A21m/e, and T22, as there is
4587 * something else in offset 0x84 according to the ACPI DSDT. Other
4588 * ThinkPads from this same time period (and earlier) probably lack the
4589 * tachometer as well.
4590 *
4591 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
4592 * was never fixed by IBM to report the EC firmware version string
4593 * probably support the tachometer (like the early X models), so
4594 * detecting it is quite hard. We need more data to know for sure.
4595 *
4596 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
4597 * might result.
4598 *
f51d1a39
HMH
4599 * FIRMWARE BUG: may go stale while the EC is switching to full speed
4600 * mode.
56b6aeb0
HMH
4601 *
4602 * For firmware bugs, refer to:
4603 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
4604 *
efa27145 4605 * TPACPI_FAN_WR_ACPI_FANS:
56b6aeb0
HMH
4606 * ThinkPad X31, X40, X41. Not available in the X60.
4607 *
4608 * FANS ACPI handle: takes three arguments: low speed, medium speed,
4609 * high speed. ACPI DSDT seems to map these three speeds to levels
4610 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
4611 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
4612 *
4613 * The speeds are stored on handles
4614 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
4615 *
4616 * There are three default speed sets, acessible as handles:
4617 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
4618 *
4619 * ACPI DSDT switches which set is in use depending on various
4620 * factors.
4621 *
efa27145 4622 * TPACPI_FAN_WR_TPEC is also available and should be used to
56b6aeb0
HMH
4623 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
4624 * but the ACPI tables just mention level 7.
4625 */
4626
f74a27d4
HMH
4627enum { /* Fan control constants */
4628 fan_status_offset = 0x2f, /* EC register 0x2f */
4629 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
4630 * 0x84 must be read before 0x85 */
4631
4632 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
4633 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
4634
4635 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
4636};
4637
4638enum fan_status_access_mode {
4639 TPACPI_FAN_NONE = 0, /* No fan status or control */
4640 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
4641 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
4642};
4643
4644enum fan_control_access_mode {
4645 TPACPI_FAN_WR_NONE = 0, /* No fan control */
4646 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
4647 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
4648 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
4649};
4650
4651enum fan_control_commands {
4652 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
4653 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
4654 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
4655 * and also watchdog cmd */
4656};
4657
4658static int fan_control_allowed;
4659
69ba91cb
HMH
4660static enum fan_status_access_mode fan_status_access_mode;
4661static enum fan_control_access_mode fan_control_access_mode;
4662static enum fan_control_commands fan_control_commands;
78f81cc4 4663
778b4d74 4664static u8 fan_control_initial_status;
fe98a52c 4665static u8 fan_control_desired_level;
f74a27d4
HMH
4666static int fan_watchdog_maxinterval;
4667
4668static struct mutex fan_mutex;
778b4d74 4669
25c68a33 4670static void fan_watchdog_fire(struct work_struct *ignored);
25c68a33 4671static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
16663a87 4672
e0c7dfe7
HMH
4673TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
4674TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
56b6aeb0
HMH
4675 "\\FSPD", /* 600e/x, 770e, 770x */
4676 ); /* all others */
e0c7dfe7 4677TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
56b6aeb0
HMH
4678 "JFNS", /* 770x-JL */
4679 ); /* all others */
4680
fe98a52c 4681/*
b21a15f6 4682 * Call with fan_mutex held
fe98a52c 4683 */
b21a15f6 4684static void fan_update_desired_level(u8 status)
fe98a52c 4685{
b21a15f6
HMH
4686 if ((status &
4687 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
4688 if (status > 7)
4689 fan_control_desired_level = 7;
4690 else
4691 fan_control_desired_level = status;
4692 }
4693}
fe98a52c 4694
b21a15f6
HMH
4695static int fan_get_status(u8 *status)
4696{
4697 u8 s;
fe98a52c 4698
b21a15f6
HMH
4699 /* TODO:
4700 * Add TPACPI_FAN_RD_ACPI_FANS ? */
fe98a52c 4701
b21a15f6
HMH
4702 switch (fan_status_access_mode) {
4703 case TPACPI_FAN_RD_ACPI_GFAN:
4704 /* 570, 600e/x, 770e, 770x */
fe98a52c 4705
b21a15f6
HMH
4706 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
4707 return -EIO;
fe98a52c 4708
b21a15f6
HMH
4709 if (likely(status))
4710 *status = s & 0x07;
fe98a52c 4711
b21a15f6
HMH
4712 break;
4713
4714 case TPACPI_FAN_RD_TPEC:
4715 /* all except 570, 600e/x, 770e, 770x */
4716 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
4717 return -EIO;
4718
4719 if (likely(status))
4720 *status = s;
fe98a52c 4721
fe98a52c 4722 break;
b21a15f6 4723
fe98a52c 4724 default:
b21a15f6 4725 return -ENXIO;
fe98a52c
HMH
4726 }
4727
b21a15f6
HMH
4728 return 0;
4729}
fe98a52c 4730
b21a15f6
HMH
4731static int fan_get_status_safe(u8 *status)
4732{
4733 int rc;
4734 u8 s;
fe98a52c 4735
b21a15f6
HMH
4736 if (mutex_lock_interruptible(&fan_mutex))
4737 return -ERESTARTSYS;
4738 rc = fan_get_status(&s);
4739 if (!rc)
4740 fan_update_desired_level(s);
4741 mutex_unlock(&fan_mutex);
fe98a52c 4742
b21a15f6
HMH
4743 if (status)
4744 *status = s;
fe98a52c 4745
b21a15f6
HMH
4746 return rc;
4747}
4748
4749static int fan_get_speed(unsigned int *speed)
fe98a52c 4750{
b21a15f6 4751 u8 hi, lo;
fe98a52c 4752
b21a15f6
HMH
4753 switch (fan_status_access_mode) {
4754 case TPACPI_FAN_RD_TPEC:
4755 /* all except 570, 600e/x, 770e, 770x */
4756 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
4757 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
4758 return -EIO;
fe98a52c 4759
b21a15f6
HMH
4760 if (likely(speed))
4761 *speed = (hi << 8) | lo;
fe98a52c 4762
b21a15f6 4763 break;
fe98a52c 4764
b21a15f6
HMH
4765 default:
4766 return -ENXIO;
4767 }
fe98a52c 4768
b21a15f6 4769 return 0;
fe98a52c
HMH
4770}
4771
b21a15f6 4772static int fan_set_level(int level)
fe98a52c 4773{
b21a15f6
HMH
4774 if (!fan_control_allowed)
4775 return -EPERM;
fe98a52c 4776
b21a15f6
HMH
4777 switch (fan_control_access_mode) {
4778 case TPACPI_FAN_WR_ACPI_SFAN:
4779 if (level >= 0 && level <= 7) {
4780 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
4781 return -EIO;
4782 } else
4783 return -EINVAL;
4784 break;
fe98a52c 4785
b21a15f6
HMH
4786 case TPACPI_FAN_WR_ACPI_FANS:
4787 case TPACPI_FAN_WR_TPEC:
4788 if ((level != TP_EC_FAN_AUTO) &&
4789 (level != TP_EC_FAN_FULLSPEED) &&
4790 ((level < 0) || (level > 7)))
4791 return -EINVAL;
fe98a52c 4792
b21a15f6
HMH
4793 /* safety net should the EC not support AUTO
4794 * or FULLSPEED mode bits and just ignore them */
4795 if (level & TP_EC_FAN_FULLSPEED)
4796 level |= 7; /* safety min speed 7 */
547266e4 4797 else if (level & TP_EC_FAN_AUTO)
b21a15f6 4798 level |= 4; /* safety min speed 4 */
fe98a52c 4799
b21a15f6
HMH
4800 if (!acpi_ec_write(fan_status_offset, level))
4801 return -EIO;
4802 else
4803 tp_features.fan_ctrl_status_undef = 0;
4804 break;
fe98a52c 4805
b21a15f6
HMH
4806 default:
4807 return -ENXIO;
4808 }
4809 return 0;
fe98a52c
HMH
4810}
4811
b21a15f6 4812static int fan_set_level_safe(int level)
fe98a52c 4813{
b21a15f6 4814 int rc;
fe98a52c 4815
b21a15f6
HMH
4816 if (!fan_control_allowed)
4817 return -EPERM;
fe98a52c 4818
b21a15f6
HMH
4819 if (mutex_lock_interruptible(&fan_mutex))
4820 return -ERESTARTSYS;
fe98a52c 4821
b21a15f6
HMH
4822 if (level == TPACPI_FAN_LAST_LEVEL)
4823 level = fan_control_desired_level;
fe98a52c 4824
b21a15f6
HMH
4825 rc = fan_set_level(level);
4826 if (!rc)
4827 fan_update_desired_level(level);
4828
4829 mutex_unlock(&fan_mutex);
4830 return rc;
fe98a52c
HMH
4831}
4832
b21a15f6 4833static int fan_set_enable(void)
fe98a52c 4834{
b21a15f6
HMH
4835 u8 s;
4836 int rc;
fe98a52c 4837
ecf2a80a
HMH
4838 if (!fan_control_allowed)
4839 return -EPERM;
4840
b21a15f6
HMH
4841 if (mutex_lock_interruptible(&fan_mutex))
4842 return -ERESTARTSYS;
fe98a52c 4843
b21a15f6
HMH
4844 switch (fan_control_access_mode) {
4845 case TPACPI_FAN_WR_ACPI_FANS:
4846 case TPACPI_FAN_WR_TPEC:
4847 rc = fan_get_status(&s);
4848 if (rc < 0)
4849 break;
fe98a52c 4850
b21a15f6
HMH
4851 /* Don't go out of emergency fan mode */
4852 if (s != 7) {
4853 s &= 0x07;
4854 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
4855 }
fe98a52c 4856
b21a15f6
HMH
4857 if (!acpi_ec_write(fan_status_offset, s))
4858 rc = -EIO;
4859 else {
4860 tp_features.fan_ctrl_status_undef = 0;
4861 rc = 0;
4862 }
4863 break;
fe98a52c 4864
b21a15f6
HMH
4865 case TPACPI_FAN_WR_ACPI_SFAN:
4866 rc = fan_get_status(&s);
4867 if (rc < 0)
4868 break;
fe98a52c 4869
b21a15f6 4870 s &= 0x07;
fe98a52c 4871
b21a15f6
HMH
4872 /* Set fan to at least level 4 */
4873 s |= 4;
fe08bc4b 4874
b21a15f6 4875 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
35ff8b9f 4876 rc = -EIO;
b21a15f6
HMH
4877 else
4878 rc = 0;
4879 break;
78f81cc4 4880
b21a15f6
HMH
4881 default:
4882 rc = -ENXIO;
4883 }
5fba344c 4884
b21a15f6
HMH
4885 mutex_unlock(&fan_mutex);
4886 return rc;
69ba91cb 4887}
78f81cc4 4888
b21a15f6 4889static int fan_set_disable(void)
78f81cc4 4890{
b21a15f6 4891 int rc;
c52f0aa5 4892
b21a15f6
HMH
4893 if (!fan_control_allowed)
4894 return -EPERM;
78f81cc4 4895
b21a15f6
HMH
4896 if (mutex_lock_interruptible(&fan_mutex))
4897 return -ERESTARTSYS;
3ef8a609 4898
b21a15f6
HMH
4899 rc = 0;
4900 switch (fan_control_access_mode) {
4901 case TPACPI_FAN_WR_ACPI_FANS:
4902 case TPACPI_FAN_WR_TPEC:
4903 if (!acpi_ec_write(fan_status_offset, 0x00))
4904 rc = -EIO;
4905 else {
4906 fan_control_desired_level = 0;
4907 tp_features.fan_ctrl_status_undef = 0;
4908 }
3ef8a609
HMH
4909 break;
4910
b21a15f6
HMH
4911 case TPACPI_FAN_WR_ACPI_SFAN:
4912 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
4913 rc = -EIO;
4914 else
4915 fan_control_desired_level = 0;
c52f0aa5
HMH
4916 break;
4917
4918 default:
b21a15f6 4919 rc = -ENXIO;
78f81cc4
BD
4920 }
4921
fe98a52c 4922
fe98a52c 4923 mutex_unlock(&fan_mutex);
fe98a52c
HMH
4924 return rc;
4925}
4926
b21a15f6 4927static int fan_set_speed(int speed)
c52f0aa5 4928{
b21a15f6 4929 int rc;
c52f0aa5 4930
b21a15f6
HMH
4931 if (!fan_control_allowed)
4932 return -EPERM;
3ef8a609 4933
b21a15f6
HMH
4934 if (mutex_lock_interruptible(&fan_mutex))
4935 return -ERESTARTSYS;
c52f0aa5 4936
b21a15f6
HMH
4937 rc = 0;
4938 switch (fan_control_access_mode) {
4939 case TPACPI_FAN_WR_ACPI_FANS:
4940 if (speed >= 0 && speed <= 65535) {
4941 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
4942 speed, speed, speed))
4943 rc = -EIO;
4944 } else
4945 rc = -EINVAL;
c52f0aa5
HMH
4946 break;
4947
4948 default:
b21a15f6 4949 rc = -ENXIO;
c52f0aa5
HMH
4950 }
4951
b21a15f6
HMH
4952 mutex_unlock(&fan_mutex);
4953 return rc;
16663a87
HMH
4954}
4955
4956static void fan_watchdog_reset(void)
4957{
94954cc6 4958 static int fan_watchdog_active;
16663a87 4959
4985cd0a
HMH
4960 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
4961 return;
4962
16663a87
HMH
4963 if (fan_watchdog_active)
4964 cancel_delayed_work(&fan_watchdog_task);
4965
8fef502e
HMH
4966 if (fan_watchdog_maxinterval > 0 &&
4967 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
16663a87
HMH
4968 fan_watchdog_active = 1;
4969 if (!schedule_delayed_work(&fan_watchdog_task,
4970 msecs_to_jiffies(fan_watchdog_maxinterval
4971 * 1000))) {
35ff8b9f
HMH
4972 printk(TPACPI_ERR
4973 "failed to schedule the fan watchdog, "
16663a87
HMH
4974 "watchdog will not trigger\n");
4975 }
4976 } else
4977 fan_watchdog_active = 0;
4978}
4979
b21a15f6 4980static void fan_watchdog_fire(struct work_struct *ignored)
78f81cc4 4981{
b21a15f6 4982 int rc;
18ad7996 4983
b21a15f6
HMH
4984 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
4985 return;
a12095c2 4986
e0c7dfe7 4987 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
b21a15f6
HMH
4988 rc = fan_set_enable();
4989 if (rc < 0) {
e0c7dfe7 4990 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
b21a15f6
HMH
4991 "will try again later...\n", -rc);
4992 /* reschedule for later */
4993 fan_watchdog_reset();
4994 }
4995}
eaa7571b 4996
b21a15f6
HMH
4997/*
4998 * SYSFS fan layout: hwmon compatible (device)
4999 *
5000 * pwm*_enable:
5001 * 0: "disengaged" mode
5002 * 1: manual mode
5003 * 2: native EC "auto" mode (recommended, hardware default)
5004 *
5005 * pwm*: set speed in manual mode, ignored otherwise.
5006 * 0 is level 0; 255 is level 7. Intermediate points done with linear
5007 * interpolation.
5008 *
5009 * fan*_input: tachometer reading, RPM
5010 *
5011 *
5012 * SYSFS fan layout: extensions
5013 *
5014 * fan_watchdog (driver):
5015 * fan watchdog interval in seconds, 0 disables (default), max 120
5016 */
5017
5018/* sysfs fan pwm1_enable ----------------------------------------------- */
5019static ssize_t fan_pwm1_enable_show(struct device *dev,
5020 struct device_attribute *attr,
5021 char *buf)
5022{
5023 int res, mode;
5024 u8 status;
5025
5026 res = fan_get_status_safe(&status);
5027 if (res)
5028 return res;
5029
5030 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5031 if (status != fan_control_initial_status) {
d8fd94d9 5032 tp_features.fan_ctrl_status_undef = 0;
b21a15f6
HMH
5033 } else {
5034 /* Return most likely status. In fact, it
5035 * might be the only possible status */
5036 status = TP_EC_FAN_AUTO;
5037 }
5038 }
5039
5040 if (status & TP_EC_FAN_FULLSPEED) {
5041 mode = 0;
5042 } else if (status & TP_EC_FAN_AUTO) {
5043 mode = 2;
5044 } else
5045 mode = 1;
5046
5047 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
5048}
a12095c2 5049
b21a15f6
HMH
5050static ssize_t fan_pwm1_enable_store(struct device *dev,
5051 struct device_attribute *attr,
5052 const char *buf, size_t count)
5053{
5054 unsigned long t;
5055 int res, level;
5056
5057 if (parse_strtoul(buf, 2, &t))
5058 return -EINVAL;
5059
5060 switch (t) {
5061 case 0:
5062 level = TP_EC_FAN_FULLSPEED;
5063 break;
5064 case 1:
5065 level = TPACPI_FAN_LAST_LEVEL;
5066 break;
5067 case 2:
5068 level = TP_EC_FAN_AUTO;
5069 break;
5070 case 3:
5071 /* reserved for software-controlled auto mode */
5072 return -ENOSYS;
18ad7996 5073 default:
b21a15f6 5074 return -EINVAL;
18ad7996 5075 }
b21a15f6
HMH
5076
5077 res = fan_set_level_safe(level);
5078 if (res == -ENXIO)
5079 return -EINVAL;
5080 else if (res < 0)
5081 return res;
5082
5083 fan_watchdog_reset();
5084
5085 return count;
18ad7996
HMH
5086}
5087
b21a15f6
HMH
5088static struct device_attribute dev_attr_fan_pwm1_enable =
5089 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
5090 fan_pwm1_enable_show, fan_pwm1_enable_store);
5091
5092/* sysfs fan pwm1 ------------------------------------------------------ */
5093static ssize_t fan_pwm1_show(struct device *dev,
5094 struct device_attribute *attr,
5095 char *buf)
fe98a52c 5096{
b21a15f6
HMH
5097 int res;
5098 u8 status;
fe98a52c 5099
b21a15f6
HMH
5100 res = fan_get_status_safe(&status);
5101 if (res)
5102 return res;
ecf2a80a 5103
b21a15f6
HMH
5104 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5105 if (status != fan_control_initial_status) {
5106 tp_features.fan_ctrl_status_undef = 0;
5107 } else {
5108 status = TP_EC_FAN_AUTO;
5109 }
5110 }
fe98a52c 5111
b21a15f6
HMH
5112 if ((status &
5113 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
5114 status = fan_control_desired_level;
fe98a52c 5115
b21a15f6
HMH
5116 if (status > 7)
5117 status = 7;
fe98a52c 5118
b21a15f6 5119 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
fe98a52c
HMH
5120}
5121
b21a15f6
HMH
5122static ssize_t fan_pwm1_store(struct device *dev,
5123 struct device_attribute *attr,
5124 const char *buf, size_t count)
18ad7996 5125{
b21a15f6 5126 unsigned long s;
1c6a334e 5127 int rc;
b21a15f6 5128 u8 status, newlevel;
1c6a334e 5129
b21a15f6
HMH
5130 if (parse_strtoul(buf, 255, &s))
5131 return -EINVAL;
5132
5133 /* scale down from 0-255 to 0-7 */
5134 newlevel = (s >> 5) & 0x07;
ecf2a80a 5135
fc589a3c
HMH
5136 if (mutex_lock_interruptible(&fan_mutex))
5137 return -ERESTARTSYS;
40ca9fdf 5138
b21a15f6
HMH
5139 rc = fan_get_status(&status);
5140 if (!rc && (status &
5141 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5142 rc = fan_set_level(newlevel);
5143 if (rc == -ENXIO)
5144 rc = -EINVAL;
5145 else if (!rc) {
5146 fan_update_desired_level(newlevel);
5147 fan_watchdog_reset();
eaa7571b 5148 }
b21a15f6 5149 }
1c6a334e 5150
b21a15f6
HMH
5151 mutex_unlock(&fan_mutex);
5152 return (rc)? rc : count;
5153}
1c6a334e 5154
b21a15f6
HMH
5155static struct device_attribute dev_attr_fan_pwm1 =
5156 __ATTR(pwm1, S_IWUSR | S_IRUGO,
5157 fan_pwm1_show, fan_pwm1_store);
1c6a334e 5158
b21a15f6
HMH
5159/* sysfs fan fan1_input ------------------------------------------------ */
5160static ssize_t fan_fan1_input_show(struct device *dev,
5161 struct device_attribute *attr,
5162 char *buf)
5163{
5164 int res;
5165 unsigned int speed;
1c6a334e 5166
b21a15f6
HMH
5167 res = fan_get_speed(&speed);
5168 if (res < 0)
5169 return res;
1c6a334e 5170
b21a15f6
HMH
5171 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
5172}
18ad7996 5173
b21a15f6
HMH
5174static struct device_attribute dev_attr_fan_fan1_input =
5175 __ATTR(fan1_input, S_IRUGO,
5176 fan_fan1_input_show, NULL);
40ca9fdf 5177
b21a15f6
HMH
5178/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
5179static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
5180 char *buf)
5181{
5182 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
18ad7996
HMH
5183}
5184
b21a15f6
HMH
5185static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
5186 const char *buf, size_t count)
18ad7996 5187{
b21a15f6
HMH
5188 unsigned long t;
5189
5190 if (parse_strtoul(buf, 120, &t))
5191 return -EINVAL;
40ca9fdf 5192
ecf2a80a
HMH
5193 if (!fan_control_allowed)
5194 return -EPERM;
5195
b21a15f6
HMH
5196 fan_watchdog_maxinterval = t;
5197 fan_watchdog_reset();
40ca9fdf 5198
b21a15f6
HMH
5199 return count;
5200}
5201
5202static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
5203 fan_fan_watchdog_show, fan_fan_watchdog_store);
5204
5205/* --------------------------------------------------------------------- */
5206static struct attribute *fan_attributes[] = {
5207 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
5208 &dev_attr_fan_fan1_input.attr,
5209 NULL
5210};
5211
5212static const struct attribute_group fan_attr_group = {
5213 .attrs = fan_attributes,
5214};
5215
5216static int __init fan_init(struct ibm_init_struct *iibm)
5217{
5218 int rc;
5219
5220 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
5221
5222 mutex_init(&fan_mutex);
5223 fan_status_access_mode = TPACPI_FAN_NONE;
5224 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5225 fan_control_commands = 0;
5226 fan_watchdog_maxinterval = 0;
5227 tp_features.fan_ctrl_status_undef = 0;
5228 fan_control_desired_level = 7;
5229
e0c7dfe7
HMH
5230 TPACPI_ACPIHANDLE_INIT(fans);
5231 TPACPI_ACPIHANDLE_INIT(gfan);
5232 TPACPI_ACPIHANDLE_INIT(sfan);
b21a15f6
HMH
5233
5234 if (gfan_handle) {
5235 /* 570, 600e/x, 770e, 770x */
5236 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
5237 } else {
5238 /* all other ThinkPads: note that even old-style
5239 * ThinkPad ECs supports the fan control register */
5240 if (likely(acpi_ec_read(fan_status_offset,
5241 &fan_control_initial_status))) {
5242 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
5243
5244 /* In some ThinkPads, neither the EC nor the ACPI
5245 * DSDT initialize the fan status, and it ends up
5246 * being set to 0x07 when it *could* be either
5247 * 0x07 or 0x80.
5248 *
5249 * Enable for TP-1Y (T43), TP-78 (R51e),
5250 * TP-76 (R52), TP-70 (T43, R52), which are known
5251 * to be buggy. */
5252 if (fan_control_initial_status == 0x07) {
5253 switch (thinkpad_id.ec_model) {
5254 case 0x5931: /* TP-1Y */
5255 case 0x3837: /* TP-78 */
5256 case 0x3637: /* TP-76 */
5257 case 0x3037: /* TP-70 */
e0c7dfe7 5258 printk(TPACPI_NOTICE
35ff8b9f
HMH
5259 "fan_init: initial fan status "
5260 "is unknown, assuming it is "
5261 "in auto mode\n");
b21a15f6
HMH
5262 tp_features.fan_ctrl_status_undef = 1;
5263 ;;
5264 }
5265 }
5266 } else {
e0c7dfe7 5267 printk(TPACPI_ERR
b21a15f6
HMH
5268 "ThinkPad ACPI EC access misbehaving, "
5269 "fan status and control unavailable\n");
5270 return 1;
5271 }
5272 }
5273
5274 if (sfan_handle) {
5275 /* 570, 770x-JL */
5276 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
5277 fan_control_commands |=
5278 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
5279 } else {
5280 if (!gfan_handle) {
5281 /* gfan without sfan means no fan control */
5282 /* all other models implement TP EC 0x2f control */
5283
5284 if (fans_handle) {
5285 /* X31, X40, X41 */
5286 fan_control_access_mode =
5287 TPACPI_FAN_WR_ACPI_FANS;
5288 fan_control_commands |=
5289 TPACPI_FAN_CMD_SPEED |
5290 TPACPI_FAN_CMD_LEVEL |
5291 TPACPI_FAN_CMD_ENABLE;
5292 } else {
5293 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
5294 fan_control_commands |=
5295 TPACPI_FAN_CMD_LEVEL |
5296 TPACPI_FAN_CMD_ENABLE;
5297 }
fe98a52c 5298 }
b21a15f6 5299 }
18ad7996 5300
b21a15f6
HMH
5301 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
5302 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
5303 fan_control_access_mode != TPACPI_FAN_WR_NONE),
5304 fan_status_access_mode, fan_control_access_mode);
1c6a334e 5305
b21a15f6
HMH
5306 /* fan control master switch */
5307 if (!fan_control_allowed) {
5308 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5309 fan_control_commands = 0;
5310 dbg_printk(TPACPI_DBG_INIT,
5311 "fan control features disabled by parameter\n");
18ad7996 5312 }
40ca9fdf 5313
b21a15f6
HMH
5314 /* update fan_control_desired_level */
5315 if (fan_status_access_mode != TPACPI_FAN_NONE)
5316 fan_get_status_safe(NULL);
fe98a52c 5317
b21a15f6
HMH
5318 if (fan_status_access_mode != TPACPI_FAN_NONE ||
5319 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
5320 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
5321 &fan_attr_group);
5322 if (!(rc < 0))
5323 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
5324 &driver_attr_fan_watchdog);
5325 if (rc < 0)
5326 return rc;
5327 return 0;
5328 } else
5329 return 1;
56b6aeb0
HMH
5330}
5331
b21a15f6 5332static void fan_exit(void)
56b6aeb0 5333{
35ff8b9f
HMH
5334 vdbg_printk(TPACPI_DBG_EXIT,
5335 "cancelling any pending fan watchdog tasks\n");
56b6aeb0 5336
b21a15f6
HMH
5337 /* FIXME: can we really do this unconditionally? */
5338 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
35ff8b9f
HMH
5339 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
5340 &driver_attr_fan_watchdog);
40ca9fdf 5341
b21a15f6
HMH
5342 cancel_delayed_work(&fan_watchdog_task);
5343 flush_scheduled_work();
56b6aeb0
HMH
5344}
5345
5346static int fan_read(char *p)
5347{
5348 int len = 0;
5349 int rc;
5350 u8 status;
5351 unsigned int speed = 0;
5352
5353 switch (fan_status_access_mode) {
efa27145 5354 case TPACPI_FAN_RD_ACPI_GFAN:
56b6aeb0 5355 /* 570, 600e/x, 770e, 770x */
35ff8b9f
HMH
5356 rc = fan_get_status_safe(&status);
5357 if (rc < 0)
56b6aeb0
HMH
5358 return rc;
5359
5360 len += sprintf(p + len, "status:\t\t%s\n"
5361 "level:\t\t%d\n",
5362 (status != 0) ? "enabled" : "disabled", status);
5363 break;
5364
efa27145 5365 case TPACPI_FAN_RD_TPEC:
56b6aeb0 5366 /* all except 570, 600e/x, 770e, 770x */
35ff8b9f
HMH
5367 rc = fan_get_status_safe(&status);
5368 if (rc < 0)
56b6aeb0
HMH
5369 return rc;
5370
d8fd94d9 5371 if (unlikely(tp_features.fan_ctrl_status_undef)) {
56b6aeb0 5372 if (status != fan_control_initial_status)
d8fd94d9 5373 tp_features.fan_ctrl_status_undef = 0;
56b6aeb0
HMH
5374 else
5375 /* Return most likely status. In fact, it
5376 * might be the only possible status */
efa27145 5377 status = TP_EC_FAN_AUTO;
56b6aeb0
HMH
5378 }
5379
5380 len += sprintf(p + len, "status:\t\t%s\n",
5381 (status != 0) ? "enabled" : "disabled");
5382
35ff8b9f
HMH
5383 rc = fan_get_speed(&speed);
5384 if (rc < 0)
56b6aeb0
HMH
5385 return rc;
5386
5387 len += sprintf(p + len, "speed:\t\t%d\n", speed);
5388
efa27145 5389 if (status & TP_EC_FAN_FULLSPEED)
56b6aeb0
HMH
5390 /* Disengaged mode takes precedence */
5391 len += sprintf(p + len, "level:\t\tdisengaged\n");
efa27145 5392 else if (status & TP_EC_FAN_AUTO)
56b6aeb0
HMH
5393 len += sprintf(p + len, "level:\t\tauto\n");
5394 else
5395 len += sprintf(p + len, "level:\t\t%d\n", status);
5396 break;
5397
efa27145 5398 case TPACPI_FAN_NONE:
56b6aeb0
HMH
5399 default:
5400 len += sprintf(p + len, "status:\t\tnot supported\n");
5401 }
5402
efa27145 5403 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
56b6aeb0
HMH
5404 len += sprintf(p + len, "commands:\tlevel <level>");
5405
5406 switch (fan_control_access_mode) {
efa27145 5407 case TPACPI_FAN_WR_ACPI_SFAN:
56b6aeb0
HMH
5408 len += sprintf(p + len, " (<level> is 0-7)\n");
5409 break;
5410
5411 default:
5412 len += sprintf(p + len, " (<level> is 0-7, "
fe98a52c 5413 "auto, disengaged, full-speed)\n");
56b6aeb0
HMH
5414 break;
5415 }
5416 }
18ad7996 5417
efa27145 5418 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
56b6aeb0 5419 len += sprintf(p + len, "commands:\tenable, disable\n"
35ff8b9f
HMH
5420 "commands:\twatchdog <timeout> (<timeout> "
5421 "is 0 (off), 1-120 (seconds))\n");
1da177e4 5422
efa27145 5423 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
56b6aeb0
HMH
5424 len += sprintf(p + len, "commands:\tspeed <speed>"
5425 " (<speed> is 0-65535)\n");
5426
5427 return len;
78f81cc4
BD
5428}
5429
18ad7996
HMH
5430static int fan_write_cmd_level(const char *cmd, int *rc)
5431{
5432 int level;
5433
a12095c2 5434 if (strlencmp(cmd, "level auto") == 0)
efa27145 5435 level = TP_EC_FAN_AUTO;
fe98a52c 5436 else if ((strlencmp(cmd, "level disengaged") == 0) |
35ff8b9f 5437 (strlencmp(cmd, "level full-speed") == 0))
efa27145 5438 level = TP_EC_FAN_FULLSPEED;
a12095c2 5439 else if (sscanf(cmd, "level %d", &level) != 1)
18ad7996
HMH
5440 return 0;
5441
35ff8b9f
HMH
5442 *rc = fan_set_level_safe(level);
5443 if (*rc == -ENXIO)
e0c7dfe7 5444 printk(TPACPI_ERR "level command accepted for unsupported "
18ad7996
HMH
5445 "access mode %d", fan_control_access_mode);
5446
5447 return 1;
5448}
5449
5450static int fan_write_cmd_enable(const char *cmd, int *rc)
5451{
5452 if (strlencmp(cmd, "enable") != 0)
5453 return 0;
5454
35ff8b9f
HMH
5455 *rc = fan_set_enable();
5456 if (*rc == -ENXIO)
e0c7dfe7 5457 printk(TPACPI_ERR "enable command accepted for unsupported "
18ad7996
HMH
5458 "access mode %d", fan_control_access_mode);
5459
5460 return 1;
5461}
5462
5463static int fan_write_cmd_disable(const char *cmd, int *rc)
5464{
5465 if (strlencmp(cmd, "disable") != 0)
5466 return 0;
5467
35ff8b9f
HMH
5468 *rc = fan_set_disable();
5469 if (*rc == -ENXIO)
e0c7dfe7 5470 printk(TPACPI_ERR "disable command accepted for unsupported "
18ad7996
HMH
5471 "access mode %d", fan_control_access_mode);
5472
5473 return 1;
5474}
5475
5476static int fan_write_cmd_speed(const char *cmd, int *rc)
5477{
5478 int speed;
5479
a8b7a662
HMH
5480 /* TODO:
5481 * Support speed <low> <medium> <high> ? */
5482
18ad7996
HMH
5483 if (sscanf(cmd, "speed %d", &speed) != 1)
5484 return 0;
5485
35ff8b9f
HMH
5486 *rc = fan_set_speed(speed);
5487 if (*rc == -ENXIO)
e0c7dfe7 5488 printk(TPACPI_ERR "speed command accepted for unsupported "
18ad7996
HMH
5489 "access mode %d", fan_control_access_mode);
5490
5491 return 1;
5492}
5493
16663a87
HMH
5494static int fan_write_cmd_watchdog(const char *cmd, int *rc)
5495{
5496 int interval;
5497
5498 if (sscanf(cmd, "watchdog %d", &interval) != 1)
5499 return 0;
5500
5501 if (interval < 0 || interval > 120)
5502 *rc = -EINVAL;
5503 else
5504 fan_watchdog_maxinterval = interval;
5505
5506 return 1;
5507}
5508
18ad7996
HMH
5509static int fan_write(char *buf)
5510{
5511 char *cmd;
5512 int rc = 0;
5513
5514 while (!rc && (cmd = next_cmd(&buf))) {
efa27145 5515 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
18ad7996 5516 fan_write_cmd_level(cmd, &rc)) &&
efa27145 5517 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
18ad7996 5518 (fan_write_cmd_enable(cmd, &rc) ||
16663a87
HMH
5519 fan_write_cmd_disable(cmd, &rc) ||
5520 fan_write_cmd_watchdog(cmd, &rc))) &&
efa27145 5521 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
18ad7996
HMH
5522 fan_write_cmd_speed(cmd, &rc))
5523 )
5524 rc = -EINVAL;
16663a87
HMH
5525 else if (!rc)
5526 fan_watchdog_reset();
18ad7996
HMH
5527 }
5528
5529 return rc;
5530}
5531
a5763f22
HMH
5532static struct ibm_struct fan_driver_data = {
5533 .name = "fan",
5534 .read = fan_read,
5535 .write = fan_write,
5536 .exit = fan_exit,
a5763f22
HMH
5537};
5538
56b6aeb0
HMH
5539/****************************************************************************
5540 ****************************************************************************
5541 *
5542 * Infrastructure
5543 *
5544 ****************************************************************************
5545 ****************************************************************************/
5546
7fd40029
HMH
5547/* sysfs name ---------------------------------------------------------- */
5548static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
5549 struct device_attribute *attr,
5550 char *buf)
5551{
e0c7dfe7 5552 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
7fd40029
HMH
5553}
5554
5555static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
5556 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
5557
5558/* --------------------------------------------------------------------- */
5559
56b6aeb0 5560/* /proc support */
94954cc6 5561static struct proc_dir_entry *proc_dir;
16663a87 5562
56b6aeb0
HMH
5563/*
5564 * Module and infrastructure proble, init and exit handling
5565 */
1da177e4 5566
b21a15f6
HMH
5567static int force_load;
5568
fe08bc4b 5569#ifdef CONFIG_THINKPAD_ACPI_DEBUG
a5763f22 5570static const char * __init str_supported(int is_supported)
fe08bc4b 5571{
a5763f22 5572 static char text_unsupported[] __initdata = "not supported";
fe08bc4b 5573
a5763f22 5574 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
fe08bc4b
HMH
5575}
5576#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
5577
b21a15f6
HMH
5578static void ibm_exit(struct ibm_struct *ibm)
5579{
5580 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
5581
5582 list_del_init(&ibm->all_drivers);
5583
5584 if (ibm->flags.acpi_notify_installed) {
5585 dbg_printk(TPACPI_DBG_EXIT,
5586 "%s: acpi_remove_notify_handler\n", ibm->name);
5587 BUG_ON(!ibm->acpi);
5588 acpi_remove_notify_handler(*ibm->acpi->handle,
5589 ibm->acpi->type,
5590 dispatch_acpi_notify);
5591 ibm->flags.acpi_notify_installed = 0;
5592 ibm->flags.acpi_notify_installed = 0;
5593 }
5594
5595 if (ibm->flags.proc_created) {
5596 dbg_printk(TPACPI_DBG_EXIT,
5597 "%s: remove_proc_entry\n", ibm->name);
5598 remove_proc_entry(ibm->name, proc_dir);
5599 ibm->flags.proc_created = 0;
5600 }
5601
5602 if (ibm->flags.acpi_driver_registered) {
5603 dbg_printk(TPACPI_DBG_EXIT,
5604 "%s: acpi_bus_unregister_driver\n", ibm->name);
5605 BUG_ON(!ibm->acpi);
5606 acpi_bus_unregister_driver(ibm->acpi->driver);
5607 kfree(ibm->acpi->driver);
5608 ibm->acpi->driver = NULL;
5609 ibm->flags.acpi_driver_registered = 0;
5610 }
5611
5612 if (ibm->flags.init_called && ibm->exit) {
5613 ibm->exit();
5614 ibm->flags.init_called = 0;
5615 }
5616
5617 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
5618}
f74a27d4 5619
a5763f22 5620static int __init ibm_init(struct ibm_init_struct *iibm)
1da177e4
LT
5621{
5622 int ret;
a5763f22 5623 struct ibm_struct *ibm = iibm->data;
1da177e4
LT
5624 struct proc_dir_entry *entry;
5625
a5763f22
HMH
5626 BUG_ON(ibm == NULL);
5627
5628 INIT_LIST_HEAD(&ibm->all_drivers);
5629
92641177 5630 if (ibm->flags.experimental && !experimental)
1da177e4
LT
5631 return 0;
5632
fe08bc4b
HMH
5633 dbg_printk(TPACPI_DBG_INIT,
5634 "probing for %s\n", ibm->name);
5635
a5763f22
HMH
5636 if (iibm->init) {
5637 ret = iibm->init(iibm);
5fba344c
HMH
5638 if (ret > 0)
5639 return 0; /* probe failed */
5640 if (ret)
1da177e4 5641 return ret;
a5763f22 5642
92641177 5643 ibm->flags.init_called = 1;
1da177e4
LT
5644 }
5645
8d376cd6
HMH
5646 if (ibm->acpi) {
5647 if (ibm->acpi->hid) {
5648 ret = register_tpacpi_subdriver(ibm);
5649 if (ret)
5650 goto err_out;
5651 }
5fba344c 5652
8d376cd6
HMH
5653 if (ibm->acpi->notify) {
5654 ret = setup_acpi_notify(ibm);
5655 if (ret == -ENODEV) {
e0c7dfe7 5656 printk(TPACPI_NOTICE "disabling subdriver %s\n",
8d376cd6
HMH
5657 ibm->name);
5658 ret = 0;
5659 goto err_out;
5660 }
5661 if (ret < 0)
5662 goto err_out;
5fba344c 5663 }
5fba344c
HMH
5664 }
5665
fe08bc4b
HMH
5666 dbg_printk(TPACPI_DBG_INIT,
5667 "%s installed\n", ibm->name);
5668
78f81cc4
BD
5669 if (ibm->read) {
5670 entry = create_proc_entry(ibm->name,
5671 S_IFREG | S_IRUGO | S_IWUSR,
5672 proc_dir);
5673 if (!entry) {
e0c7dfe7 5674 printk(TPACPI_ERR "unable to create proc entry %s\n",
78f81cc4 5675 ibm->name);
5fba344c
HMH
5676 ret = -ENODEV;
5677 goto err_out;
78f81cc4
BD
5678 }
5679 entry->owner = THIS_MODULE;
5680 entry->data = ibm;
8d376cd6 5681 entry->read_proc = &dispatch_procfs_read;
78f81cc4 5682 if (ibm->write)
8d376cd6 5683 entry->write_proc = &dispatch_procfs_write;
92641177 5684 ibm->flags.proc_created = 1;
78f81cc4 5685 }
1da177e4 5686
a5763f22
HMH
5687 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
5688
1da177e4 5689 return 0;
5fba344c
HMH
5690
5691err_out:
fe08bc4b
HMH
5692 dbg_printk(TPACPI_DBG_INIT,
5693 "%s: at error exit path with result %d\n",
5694 ibm->name, ret);
5695
5fba344c
HMH
5696 ibm_exit(ibm);
5697 return (ret < 0)? ret : 0;
1da177e4
LT
5698}
5699
56b6aeb0
HMH
5700/* Probing */
5701
d5a2f2f1 5702static void __init get_thinkpad_model_data(struct thinkpad_id_data *tp)
1da177e4 5703{
1855256c 5704 const struct dmi_device *dev = NULL;
56b6aeb0 5705 char ec_fw_string[18];
1da177e4 5706
d5a2f2f1
HMH
5707 if (!tp)
5708 return;
5709
5710 memset(tp, 0, sizeof(*tp));
5711
5712 if (dmi_name_in_vendors("IBM"))
5713 tp->vendor = PCI_VENDOR_ID_IBM;
5714 else if (dmi_name_in_vendors("LENOVO"))
5715 tp->vendor = PCI_VENDOR_ID_LENOVO;
5716 else
5717 return;
5718
5719 tp->bios_version_str = kstrdup(dmi_get_system_info(DMI_BIOS_VERSION),
5720 GFP_KERNEL);
5721 if (!tp->bios_version_str)
5722 return;
5723 tp->bios_model = tp->bios_version_str[0]
5724 | (tp->bios_version_str[1] << 8);
5725
56b6aeb0
HMH
5726 /*
5727 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
5728 * X32 or newer, all Z series; Some models must have an
5729 * up-to-date BIOS or they will not be detected.
5730 *
5731 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
5732 */
5733 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
5734 if (sscanf(dev->name,
5735 "IBM ThinkPad Embedded Controller -[%17c",
5736 ec_fw_string) == 1) {
5737 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
5738 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
d5a2f2f1
HMH
5739
5740 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
5741 tp->ec_model = ec_fw_string[0]
5742 | (ec_fw_string[1] << 8);
5743 break;
78f81cc4 5744 }
1da177e4 5745 }
d5a2f2f1
HMH
5746
5747 tp->model_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_VERSION),
5748 GFP_KERNEL);
5749 if (strnicmp(tp->model_str, "ThinkPad", 8) != 0) {
5750 kfree(tp->model_str);
5751 tp->model_str = NULL;
5752 }
1da177e4
LT
5753}
5754
5fba344c
HMH
5755static int __init probe_for_thinkpad(void)
5756{
5757 int is_thinkpad;
5758
5759 if (acpi_disabled)
5760 return -ENODEV;
5761
5762 /*
5763 * Non-ancient models have better DMI tagging, but very old models
5764 * don't.
5765 */
d5a2f2f1 5766 is_thinkpad = (thinkpad_id.model_str != NULL);
5fba344c
HMH
5767
5768 /* ec is required because many other handles are relative to it */
e0c7dfe7 5769 TPACPI_ACPIHANDLE_INIT(ec);
5fba344c
HMH
5770 if (!ec_handle) {
5771 if (is_thinkpad)
e0c7dfe7 5772 printk(TPACPI_ERR
5fba344c
HMH
5773 "Not yet supported ThinkPad detected!\n");
5774 return -ENODEV;
5775 }
5776
0dcef77c
HMH
5777 /*
5778 * Risks a regression on very old machines, but reduces potential
5779 * false positives a damn great deal
5780 */
5781 if (!is_thinkpad)
d5a2f2f1 5782 is_thinkpad = (thinkpad_id.vendor == PCI_VENDOR_ID_IBM);
0dcef77c
HMH
5783
5784 if (!is_thinkpad && !force_load)
5785 return -ENODEV;
5786
5fba344c
HMH
5787 return 0;
5788}
5789
5790
56b6aeb0 5791/* Module init, exit, parameters */
1da177e4 5792
a5763f22
HMH
5793static struct ibm_init_struct ibms_init[] __initdata = {
5794 {
5795 .init = thinkpad_acpi_driver_init,
5796 .data = &thinkpad_acpi_driver_data,
5797 },
5798 {
5799 .init = hotkey_init,
5800 .data = &hotkey_driver_data,
5801 },
5802 {
5803 .init = bluetooth_init,
5804 .data = &bluetooth_driver_data,
5805 },
5806 {
5807 .init = wan_init,
5808 .data = &wan_driver_data,
5809 },
5810 {
5811 .init = video_init,
5812 .data = &video_driver_data,
5813 },
5814 {
5815 .init = light_init,
5816 .data = &light_driver_data,
5817 },
5818#ifdef CONFIG_THINKPAD_ACPI_DOCK
5819 {
5820 .init = dock_init,
5821 .data = &dock_driver_data[0],
5822 },
5823 {
d94a7f16 5824 .init = dock_init2,
a5763f22
HMH
5825 .data = &dock_driver_data[1],
5826 },
5827#endif
5828#ifdef CONFIG_THINKPAD_ACPI_BAY
5829 {
5830 .init = bay_init,
5831 .data = &bay_driver_data,
5832 },
5833#endif
5834 {
5835 .init = cmos_init,
5836 .data = &cmos_driver_data,
5837 },
5838 {
5839 .init = led_init,
5840 .data = &led_driver_data,
5841 },
5842 {
5843 .init = beep_init,
5844 .data = &beep_driver_data,
5845 },
5846 {
5847 .init = thermal_init,
5848 .data = &thermal_driver_data,
5849 },
5850 {
5851 .data = &ecdump_driver_data,
5852 },
5853 {
5854 .init = brightness_init,
5855 .data = &brightness_driver_data,
5856 },
5857 {
5858 .data = &volume_driver_data,
5859 },
5860 {
5861 .init = fan_init,
5862 .data = &fan_driver_data,
5863 },
5864};
5865
3945ac36 5866static int __init set_ibm_param(const char *val, struct kernel_param *kp)
1da177e4
LT
5867{
5868 unsigned int i;
a5763f22 5869 struct ibm_struct *ibm;
1da177e4 5870
59f91ff1
HMH
5871 if (!kp || !kp->name || !val)
5872 return -EINVAL;
5873
a5763f22
HMH
5874 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
5875 ibm = ibms_init[i].data;
59f91ff1
HMH
5876 WARN_ON(ibm == NULL);
5877
5878 if (!ibm || !ibm->name)
5879 continue;
a5763f22
HMH
5880
5881 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
5882 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
78f81cc4 5883 return -ENOSPC;
a5763f22
HMH
5884 strcpy(ibms_init[i].param, val);
5885 strcat(ibms_init[i].param, ",");
78f81cc4
BD
5886 return 0;
5887 }
a5763f22 5888 }
1da177e4 5889
1da177e4
LT
5890 return -EINVAL;
5891}
5892
56b6aeb0 5893module_param(experimental, int, 0);
f68080f8 5894MODULE_PARM_DESC(experimental,
35ff8b9f 5895 "Enables experimental features when non-zero");
56b6aeb0 5896
132ce091 5897module_param_named(debug, dbg_level, uint, 0);
f68080f8 5898MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
132ce091 5899
86cc9445 5900module_param(force_load, bool, 0);
f68080f8 5901MODULE_PARM_DESC(force_load,
35ff8b9f
HMH
5902 "Attempts to load the driver even on a "
5903 "mis-identified ThinkPad when true");
0dcef77c 5904
86cc9445 5905module_param_named(fan_control, fan_control_allowed, bool, 0);
f68080f8 5906MODULE_PARM_DESC(fan_control,
35ff8b9f 5907 "Enables setting fan parameters features when true");
ecf2a80a 5908
24d3b774 5909module_param_named(brightness_mode, brightness_mode, int, 0);
f68080f8 5910MODULE_PARM_DESC(brightness_mode,
35ff8b9f
HMH
5911 "Selects brightness control strategy: "
5912 "0=auto, 1=EC, 2=CMOS, 3=both");
24d3b774 5913
87cc537a 5914module_param(brightness_enable, uint, 0);
f68080f8 5915MODULE_PARM_DESC(brightness_enable,
35ff8b9f 5916 "Enables backlight control when 1, disables when 0");
87cc537a 5917
ff80f137 5918module_param(hotkey_report_mode, uint, 0);
f68080f8 5919MODULE_PARM_DESC(hotkey_report_mode,
35ff8b9f
HMH
5920 "used for backwards compatibility with userspace, "
5921 "see documentation");
ff80f137 5922
e0c7dfe7 5923#define TPACPI_PARAM(feature) \
f68080f8 5924 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
cbb14842 5925 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
35ff8b9f 5926 "at module load, see documentation")
1da177e4 5927
e0c7dfe7
HMH
5928TPACPI_PARAM(hotkey);
5929TPACPI_PARAM(bluetooth);
5930TPACPI_PARAM(video);
5931TPACPI_PARAM(light);
85998248 5932#ifdef CONFIG_THINKPAD_ACPI_DOCK
e0c7dfe7 5933TPACPI_PARAM(dock);
63e5f248 5934#endif
85998248 5935#ifdef CONFIG_THINKPAD_ACPI_BAY
e0c7dfe7 5936TPACPI_PARAM(bay);
85998248 5937#endif /* CONFIG_THINKPAD_ACPI_BAY */
e0c7dfe7
HMH
5938TPACPI_PARAM(cmos);
5939TPACPI_PARAM(led);
5940TPACPI_PARAM(beep);
5941TPACPI_PARAM(ecdump);
5942TPACPI_PARAM(brightness);
5943TPACPI_PARAM(volume);
5944TPACPI_PARAM(fan);
78f81cc4 5945
b21a15f6
HMH
5946static void thinkpad_acpi_module_exit(void)
5947{
5948 struct ibm_struct *ibm, *itmp;
5949
5950 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
5951
5952 list_for_each_entry_safe_reverse(ibm, itmp,
5953 &tpacpi_all_drivers,
5954 all_drivers) {
5955 ibm_exit(ibm);
5956 }
5957
5958 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
5959
5960 if (tpacpi_inputdev) {
5961 if (tp_features.input_device_registered)
5962 input_unregister_device(tpacpi_inputdev);
5963 else
5964 input_free_device(tpacpi_inputdev);
5965 }
5966
5967 if (tpacpi_hwmon)
5968 hwmon_device_unregister(tpacpi_hwmon);
5969
5970 if (tp_features.sensors_pdev_attrs_registered)
5971 device_remove_file(&tpacpi_sensors_pdev->dev,
5972 &dev_attr_thinkpad_acpi_pdev_name);
5973 if (tpacpi_sensors_pdev)
5974 platform_device_unregister(tpacpi_sensors_pdev);
5975 if (tpacpi_pdev)
5976 platform_device_unregister(tpacpi_pdev);
5977
5978 if (tp_features.sensors_pdrv_attrs_registered)
5979 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
5980 if (tp_features.platform_drv_attrs_registered)
5981 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
5982
5983 if (tp_features.sensors_pdrv_registered)
5984 platform_driver_unregister(&tpacpi_hwmon_pdriver);
5985
5986 if (tp_features.platform_drv_registered)
5987 platform_driver_unregister(&tpacpi_pdriver);
5988
5989 if (proc_dir)
e0c7dfe7 5990 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
b21a15f6
HMH
5991
5992 kfree(thinkpad_id.bios_version_str);
5993 kfree(thinkpad_id.ec_version_str);
5994 kfree(thinkpad_id.model_str);
5995}
5996
f74a27d4 5997
1def7115 5998static int __init thinkpad_acpi_module_init(void)
1da177e4
LT
5999{
6000 int ret, i;
6001
8fef502e
HMH
6002 tpacpi_lifecycle = TPACPI_LIFE_INIT;
6003
ff80f137
HMH
6004 /* Parameter checking */
6005 if (hotkey_report_mode > 2)
6006 return -EINVAL;
6007
54ae1501 6008 /* Driver-level probe */
d5a2f2f1
HMH
6009
6010 get_thinkpad_model_data(&thinkpad_id);
5fba344c 6011 ret = probe_for_thinkpad();
d5a2f2f1
HMH
6012 if (ret) {
6013 thinkpad_acpi_module_exit();
5fba344c 6014 return ret;
d5a2f2f1 6015 }
1da177e4 6016
54ae1501 6017 /* Driver initialization */
d5a2f2f1 6018
e0c7dfe7
HMH
6019 TPACPI_ACPIHANDLE_INIT(ecrd);
6020 TPACPI_ACPIHANDLE_INIT(ecwr);
1da177e4 6021
e0c7dfe7 6022 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
1da177e4 6023 if (!proc_dir) {
35ff8b9f
HMH
6024 printk(TPACPI_ERR
6025 "unable to create proc dir " TPACPI_PROC_DIR);
1def7115 6026 thinkpad_acpi_module_exit();
1da177e4
LT
6027 return -ENODEV;
6028 }
6029 proc_dir->owner = THIS_MODULE;
78f81cc4 6030
54ae1501
HMH
6031 ret = platform_driver_register(&tpacpi_pdriver);
6032 if (ret) {
35ff8b9f
HMH
6033 printk(TPACPI_ERR
6034 "unable to register main platform driver\n");
54ae1501
HMH
6035 thinkpad_acpi_module_exit();
6036 return ret;
6037 }
ac36393d
HMH
6038 tp_features.platform_drv_registered = 1;
6039
7fd40029
HMH
6040 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
6041 if (ret) {
35ff8b9f
HMH
6042 printk(TPACPI_ERR
6043 "unable to register hwmon platform driver\n");
7fd40029
HMH
6044 thinkpad_acpi_module_exit();
6045 return ret;
6046 }
6047 tp_features.sensors_pdrv_registered = 1;
6048
176750d6 6049 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
2369cc94
HMH
6050 if (!ret) {
6051 tp_features.platform_drv_attrs_registered = 1;
35ff8b9f
HMH
6052 ret = tpacpi_create_driver_attributes(
6053 &tpacpi_hwmon_pdriver.driver);
2369cc94 6054 }
176750d6 6055 if (ret) {
35ff8b9f
HMH
6056 printk(TPACPI_ERR
6057 "unable to create sysfs driver attributes\n");
176750d6
HMH
6058 thinkpad_acpi_module_exit();
6059 return ret;
6060 }
2369cc94 6061 tp_features.sensors_pdrv_attrs_registered = 1;
176750d6 6062
54ae1501
HMH
6063
6064 /* Device initialization */
e0c7dfe7 6065 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
54ae1501
HMH
6066 NULL, 0);
6067 if (IS_ERR(tpacpi_pdev)) {
6068 ret = PTR_ERR(tpacpi_pdev);
6069 tpacpi_pdev = NULL;
e0c7dfe7 6070 printk(TPACPI_ERR "unable to register platform device\n");
54ae1501
HMH
6071 thinkpad_acpi_module_exit();
6072 return ret;
6073 }
7fd40029 6074 tpacpi_sensors_pdev = platform_device_register_simple(
35ff8b9f
HMH
6075 TPACPI_HWMON_DRVR_NAME,
6076 -1, NULL, 0);
7fd40029
HMH
6077 if (IS_ERR(tpacpi_sensors_pdev)) {
6078 ret = PTR_ERR(tpacpi_sensors_pdev);
6079 tpacpi_sensors_pdev = NULL;
35ff8b9f
HMH
6080 printk(TPACPI_ERR
6081 "unable to register hwmon platform device\n");
7fd40029
HMH
6082 thinkpad_acpi_module_exit();
6083 return ret;
6084 }
6085 ret = device_create_file(&tpacpi_sensors_pdev->dev,
6086 &dev_attr_thinkpad_acpi_pdev_name);
6087 if (ret) {
e0c7dfe7 6088 printk(TPACPI_ERR
35ff8b9f 6089 "unable to create sysfs hwmon device attributes\n");
7fd40029
HMH
6090 thinkpad_acpi_module_exit();
6091 return ret;
6092 }
6093 tp_features.sensors_pdev_attrs_registered = 1;
6094 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
54ae1501
HMH
6095 if (IS_ERR(tpacpi_hwmon)) {
6096 ret = PTR_ERR(tpacpi_hwmon);
6097 tpacpi_hwmon = NULL;
e0c7dfe7 6098 printk(TPACPI_ERR "unable to register hwmon device\n");
54ae1501
HMH
6099 thinkpad_acpi_module_exit();
6100 return ret;
6101 }
8523ed6f 6102 mutex_init(&tpacpi_inputdev_send_mutex);
7f5d1cd6
HMH
6103 tpacpi_inputdev = input_allocate_device();
6104 if (!tpacpi_inputdev) {
e0c7dfe7 6105 printk(TPACPI_ERR "unable to allocate input device\n");
7f5d1cd6
HMH
6106 thinkpad_acpi_module_exit();
6107 return -ENOMEM;
6108 } else {
6109 /* Prepare input device, but don't register */
6110 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
e0c7dfe7 6111 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
7f5d1cd6 6112 tpacpi_inputdev->id.bustype = BUS_HOST;
edf0e0e5
HMH
6113 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
6114 thinkpad_id.vendor :
6115 PCI_VENDOR_ID_IBM;
7f5d1cd6
HMH
6116 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
6117 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
6118 }
a5763f22
HMH
6119 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6120 ret = ibm_init(&ibms_init[i]);
6121 if (ret >= 0 && *ibms_init[i].param)
6122 ret = ibms_init[i].data->write(ibms_init[i].param);
1da177e4 6123 if (ret < 0) {
1def7115 6124 thinkpad_acpi_module_exit();
1da177e4
LT
6125 return ret;
6126 }
6127 }
7f5d1cd6
HMH
6128 ret = input_register_device(tpacpi_inputdev);
6129 if (ret < 0) {
e0c7dfe7 6130 printk(TPACPI_ERR "unable to register input device\n");
7f5d1cd6
HMH
6131 thinkpad_acpi_module_exit();
6132 return ret;
6133 } else {
6134 tp_features.input_device_registered = 1;
6135 }
1da177e4 6136
8fef502e 6137 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
1da177e4
LT
6138 return 0;
6139}
6140
f68080f8
HMH
6141/* Please remove this in year 2009 */
6142MODULE_ALIAS("ibm_acpi");
6143
6144/*
6145 * DMI matching for module autoloading
6146 *
6147 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6148 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
6149 *
6150 * Only models listed in thinkwiki will be supported, so add yours
6151 * if it is not there yet.
6152 */
6153#define IBM_BIOS_MODULE_ALIAS(__type) \
6154 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW")
6155
6156/* Non-ancient thinkpads */
6157MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*");
6158MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*");
6159
6160/* Ancient thinkpad BIOSes have to be identified by
6161 * BIOS type or model number, and there are far less
6162 * BIOS types than model numbers... */
6163IBM_BIOS_MODULE_ALIAS("I[B,D,H,I,M,N,O,T,W,V,Y,Z]");
6164IBM_BIOS_MODULE_ALIAS("1[0,3,6,8,A-G,I,K,M-P,S,T]");
6165IBM_BIOS_MODULE_ALIAS("K[U,X-Z]");
6166
6167MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
e0c7dfe7
HMH
6168MODULE_DESCRIPTION(TPACPI_DESC);
6169MODULE_VERSION(TPACPI_VERSION);
f68080f8
HMH
6170MODULE_LICENSE("GPL");
6171
1def7115
HMH
6172module_init(thinkpad_acpi_module_init);
6173module_exit(thinkpad_acpi_module_exit);
This page took 0.641345 seconds and 5 git commands to generate.