blob: 7dc3a2206195659c7176bee4bac4065b7fd984d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03002 * thinkpad_acpi.c - ThinkPad ACPI Extras
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
Henrique de Moraes Holschuha62bc912007-03-23 17:33:58 -03006 * Copyright (C) 2006-2007 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
Henrique de Moraes Holschuha62bc912007-03-23 17:33:58 -030020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
Borislav Deianov78f81cc2005-08-17 00:00:00 -040022 */
23
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030024#define IBM_VERSION "0.14"
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -030025#define TPACPI_SYSFS_VERSION 0x000100
Borislav Deianov78f81cc2005-08-17 00:00:00 -040026
27/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Changelog:
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030029 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
30 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020031 *
32 * 2006-11-22 0.13 new maintainer
33 * changelog now lives in git commit history, and will
34 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030035 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040036 * 2005-08-17 0.12 fix compilation on 2.6.13-rc kernels
37 * 2005-03-17 0.11 support for 600e, 770x
38 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
39 * support for 770e, G41
40 * G40 and G41 don't have a thinklight
41 * temperatures no longer experimental
42 * experimental brightness control
43 * experimental volume control
44 * experimental fan enable/disable
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030045 * 2005-01-16 0.10 fix module loading on R30, R31
Borislav Deianov78f81cc2005-08-17 00:00:00 -040046 * 2005-01-16 0.9 support for 570, R30, R31
47 * ultrabay support on A22p, A3x
48 * limit arg for cmos, led, beep, drop experimental status
49 * more capable led control on A21e, A22p, T20-22, X20
50 * experimental temperatures and fan speed
51 * experimental embedded controller register dump
52 * mark more functions as __init, drop incorrect __exit
53 * use MODULE_VERSION
54 * thanks to Henrik Brix Andersen <brix@gentoo.org>
55 * fix parameter passing on module loading
56 * thanks to Rusty Russell <rusty@rustcorp.com.au>
57 * thanks to Jim Radford <radford@blackbean.org>
58 * 2004-11-08 0.8 fix init error case, don't return from a macro
59 * thanks to Chris Wright <chrisw@osdl.org>
60 * 2004-10-23 0.7 fix module loading on A21e, A22p, T20, T21, X20
61 * fix led control on A21e
62 * 2004-10-19 0.6 use acpi_bus_register_driver() to claim HKEY device
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * 2004-10-18 0.5 thinklight support on A21e, G40, R32, T20, T21, X20
64 * proc file format changed
65 * video_switch command
66 * experimental cmos control
67 * experimental led control
68 * experimental acpi sounds
Borislav Deianov78f81cc2005-08-17 00:00:00 -040069 * 2004-09-16 0.4 support for module parameters
70 * hotkey mask can be prefixed by 0x
71 * video output switching
72 * video expansion control
73 * ultrabay eject support
74 * removed lcd brightness/on/off control, didn't work
75 * 2004-08-17 0.3 support for R40
76 * lcd off, brightness control
77 * thinklight on/off
78 * 2004-08-14 0.2 support for T series, X20
79 * bluetooth enable/disable
80 * hotkey events disabled by default
81 * removed fan control, currently useless
82 * 2004-08-09 0.1 initial release, support for X series
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84
Henrique de Moraes Holschuhf21f85d2007-03-29 01:58:40 -030085#include "thinkpad_acpi.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020087MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
Borislav Deianov78f81cc2005-08-17 00:00:00 -040088MODULE_DESCRIPTION(IBM_DESC);
89MODULE_VERSION(IBM_VERSION);
90MODULE_LICENSE("GPL");
91
Henrique de Moraes Holschuhd903ac52007-03-29 01:58:42 -030092/* Please remove this in year 2009 */
93MODULE_ALIAS("ibm_acpi");
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define __unused __attribute__ ((unused))
96
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030097/****************************************************************************
98 ****************************************************************************
99 *
100 * ACPI Helpers and device model
101 *
102 ****************************************************************************
103 ****************************************************************************/
104
105/*************************************************************************
106 * ACPI basic handles
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109static acpi_handle root_handle = NULL;
110
111#define IBM_HANDLE(object, parent, paths...) \
112 static acpi_handle object##_handle; \
113 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400114 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 static char *object##_paths[] = { paths }
116
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400117IBM_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
118 "\\_SB.PCI.ISA.EC", /* 570 */
119 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
120 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
121 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
122 "\\_SB.PCI0.ICH3.EC0", /* R31 */
123 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300124 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300126IBM_HANDLE(ecrd, ec, "ECRD"); /* 570 */
127IBM_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300129
130/*************************************************************************
131 * Misc ACPI handles
132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400134IBM_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, T4x, X31, X40 */
135 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
136 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300137 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400138
139IBM_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
140 "^HKEY", /* R30, R31 */
141 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300142 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400143
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400144
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300145/*************************************************************************
146 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200147 */
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int acpi_evalf(acpi_handle handle,
150 void *res, char *method, char *fmt, ...)
151{
152 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400153 struct acpi_object_list params;
154 union acpi_object in_objs[IBM_MAX_ACPI_ARGS];
155 struct acpi_buffer result, *resultp;
156 union acpi_object out_obj;
157 acpi_status status;
158 va_list ap;
159 char res_type;
160 int success;
161 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 if (!*fmt) {
164 printk(IBM_ERR "acpi_evalf() called with empty format\n");
165 return 0;
166 }
167
168 if (*fmt == 'q') {
169 quiet = 1;
170 fmt++;
171 } else
172 quiet = 0;
173
174 res_type = *(fmt++);
175
176 params.count = 0;
177 params.pointer = &in_objs[0];
178
179 va_start(ap, fmt);
180 while (*fmt) {
181 char c = *(fmt++);
182 switch (c) {
183 case 'd': /* int */
184 in_objs[params.count].integer.value = va_arg(ap, int);
185 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
186 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400187 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 default:
189 printk(IBM_ERR "acpi_evalf() called "
190 "with invalid format character '%c'\n", c);
191 return 0;
192 }
193 }
194 va_end(ap);
195
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400196 if (res_type != 'v') {
197 result.length = sizeof(out_obj);
198 result.pointer = &out_obj;
199 resultp = &result;
200 } else
201 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400203 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400206 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (res)
208 *(int *)res = out_obj.integer.value;
209 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
210 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400211 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 success = status == AE_OK;
213 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400214 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 default:
216 printk(IBM_ERR "acpi_evalf() called "
217 "with invalid format character '%c'\n", res_type);
218 return 0;
219 }
220
221 if (!success && !quiet)
222 printk(IBM_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
223 method, fmt0, status);
224
225 return success;
226}
227
228static void __unused acpi_print_int(acpi_handle handle, char *method)
229{
230 int i;
231
232 if (acpi_evalf(handle, &i, method, "d"))
233 printk(IBM_INFO "%s = 0x%x\n", method, i);
234 else
235 printk(IBM_ERR "error calling %s\n", method);
236}
237
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300238static int acpi_ec_read(int i, u8 * p)
239{
240 int v;
241
242 if (ecrd_handle) {
243 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
244 return 0;
245 *p = v;
246 } else {
247 if (ec_read(i, p) < 0)
248 return 0;
249 }
250
251 return 1;
252}
253
254static int acpi_ec_write(int i, u8 v)
255{
256 if (ecwr_handle) {
257 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
258 return 0;
259 } else {
260 if (ec_write(i, v) < 0)
261 return 0;
262 }
263
264 return 1;
265}
266
267static int _sta(acpi_handle handle)
268{
269 int status;
270
271 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
272 status = 0;
273
274 return status;
275}
276
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300277static int issue_thinkpad_cmos_command(int cmos_cmd)
278{
279 if (!cmos_handle)
280 return -ENXIO;
281
282 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
283 return -EIO;
284
285 return 0;
286}
287
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300288/*************************************************************************
289 * ACPI device model
290 */
291
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300292static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300293 acpi_handle *handle, acpi_handle parent,
294 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300295{
296 int i;
297 acpi_status status;
298
299 for (i = 0; i < num_paths; i++) {
300 status = acpi_get_handle(parent, paths[i], handle);
301 if (ACPI_SUCCESS(status)) {
302 *path = paths[i];
303 return;
304 }
305 }
306
307 *handle = NULL;
308}
309
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300310static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300311{
312 struct ibm_struct *ibm = data;
313
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300314 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300315 return;
316
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300317 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300318}
319
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300320static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300321{
322 acpi_status status;
323 int ret;
324
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300325 BUG_ON(!ibm->acpi);
326
327 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300328 return 0;
329
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300330 dbg_printk(TPACPI_DBG_INIT,
331 "setting up ACPI notify for %s\n", ibm->name);
332
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300333 ret = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300334 if (ret < 0) {
335 printk(IBM_ERR "%s device not present\n", ibm->name);
336 return -ENODEV;
337 }
338
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300339 acpi_driver_data(ibm->acpi->device) = ibm;
340 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300341 IBM_ACPI_EVENT_PREFIX,
342 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300343
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300344 status = acpi_install_notify_handler(*ibm->acpi->handle,
345 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300346 if (ACPI_FAILURE(status)) {
347 if (status == AE_ALREADY_EXISTS) {
348 printk(IBM_NOTICE "another device driver is already handling %s events\n",
349 ibm->name);
350 } else {
351 printk(IBM_ERR "acpi_install_notify_handler(%s) failed: %d\n",
352 ibm->name, status);
353 }
354 return -ENODEV;
355 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300356 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300357 return 0;
358}
359
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300360static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300361{
362 return 0;
363}
364
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300365static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300366{
367 int ret;
368
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300369 dbg_printk(TPACPI_DBG_INIT,
370 "registering %s as an ACPI driver\n", ibm->name);
371
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300372 BUG_ON(!ibm->acpi);
373
374 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
375 if (!ibm->acpi->driver) {
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300376 printk(IBM_ERR "kzalloc(ibm->driver) failed\n");
377 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300378 }
379
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300380 sprintf(ibm->acpi->driver->name, "%s_%s", IBM_NAME, ibm->name);
381 ibm->acpi->driver->ids = ibm->acpi->hid;
382 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300383
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300384 ret = acpi_bus_register_driver(ibm->acpi->driver);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300385 if (ret < 0) {
386 printk(IBM_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300387 ibm->acpi->hid, ret);
388 kfree(ibm->acpi->driver);
389 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300390 } else if (!ret)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300391 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300392
393 return ret;
394}
395
396
397/****************************************************************************
398 ****************************************************************************
399 *
400 * Procfs Helpers
401 *
402 ****************************************************************************
403 ****************************************************************************/
404
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300405static int dispatch_procfs_read(char *page, char **start, off_t off,
406 int count, int *eof, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300407{
408 struct ibm_struct *ibm = data;
409 int len;
410
411 if (!ibm || !ibm->read)
412 return -EINVAL;
413
414 len = ibm->read(page);
415 if (len < 0)
416 return len;
417
418 if (len <= off + count)
419 *eof = 1;
420 *start = page + off;
421 len -= off;
422 if (len > count)
423 len = count;
424 if (len < 0)
425 len = 0;
426
427 return len;
428}
429
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300430static int dispatch_procfs_write(struct file *file,
431 const char __user * userbuf,
432 unsigned long count, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300433{
434 struct ibm_struct *ibm = data;
435 char *kernbuf;
436 int ret;
437
438 if (!ibm || !ibm->write)
439 return -EINVAL;
440
441 kernbuf = kmalloc(count + 2, GFP_KERNEL);
442 if (!kernbuf)
443 return -ENOMEM;
444
445 if (copy_from_user(kernbuf, userbuf, count)) {
446 kfree(kernbuf);
447 return -EFAULT;
448 }
449
450 kernbuf[count] = 0;
451 strcat(kernbuf, ",");
452 ret = ibm->write(kernbuf);
453 if (ret == 0)
454 ret = count;
455
456 kfree(kernbuf);
457
458 return ret;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461static char *next_cmd(char **cmds)
462{
463 char *start = *cmds;
464 char *end;
465
466 while ((end = strchr(start, ',')) && end == start)
467 start = end + 1;
468
469 if (!end)
470 return NULL;
471
472 *end = 0;
473 *cmds = end + 1;
474 return start;
475}
476
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300477
478/****************************************************************************
479 ****************************************************************************
480 *
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300481 * Device model: hwmon and platform
482 *
483 ****************************************************************************
484 ****************************************************************************/
485
486static struct platform_device *tpacpi_pdev = NULL;
487static struct class_device *tpacpi_hwmon = NULL;
488
489static struct platform_driver tpacpi_pdriver = {
490 .driver = {
491 .name = IBM_DRVR_NAME,
492 .owner = THIS_MODULE,
493 },
494};
495
496
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300497/*************************************************************************
498 * thinkpad-acpi driver attributes
499 */
500
501/* interface_version --------------------------------------------------- */
502static ssize_t tpacpi_driver_interface_version_show(
503 struct device_driver *drv,
504 char *buf)
505{
506 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
507}
508
509static DRIVER_ATTR(interface_version, S_IRUGO,
510 tpacpi_driver_interface_version_show, NULL);
511
512/* debug_level --------------------------------------------------------- */
513static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
514 char *buf)
515{
516 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
517}
518
519static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
520 const char *buf, size_t count)
521{
522 unsigned long t;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300523
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300524 if (parse_strtoul(buf, 0xffff, &t))
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300525 return -EINVAL;
526
527 dbg_level = t;
528
529 return count;
530}
531
532static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
533 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
534
535/* version ------------------------------------------------------------- */
536static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
537 char *buf)
538{
539 return snprintf(buf, PAGE_SIZE, "%s v%s\n", IBM_DESC, IBM_VERSION);
540}
541
542static DRIVER_ATTR(version, S_IRUGO,
543 tpacpi_driver_version_show, NULL);
544
545/* --------------------------------------------------------------------- */
546
547static struct driver_attribute* tpacpi_driver_attributes[] = {
548 &driver_attr_debug_level, &driver_attr_version,
549 &driver_attr_interface_version,
550};
551
552static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
553{
554 int i, res;
555
556 i = 0;
557 res = 0;
558 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
559 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
560 i++;
561 }
562
563 return res;
564}
565
566static void tpacpi_remove_driver_attributes(struct device_driver *drv)
567{
568 int i;
569
570 for(i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
571 driver_remove_file(drv, tpacpi_driver_attributes[i]);
572}
573
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300574/*************************************************************************
575 * sysfs support helpers
576 */
577
578struct attribute_set_obj {
579 struct attribute_set s;
580 struct attribute *a;
581} __attribute__((packed));
582
583static struct attribute_set *create_attr_set(unsigned int max_members,
584 const char* name)
585{
586 struct attribute_set_obj *sobj;
587
588 if (max_members == 0)
589 return NULL;
590
591 /* Allocates space for implicit NULL at the end too */
592 sobj = kzalloc(sizeof(struct attribute_set_obj) +
593 max_members * sizeof(struct attribute *),
594 GFP_KERNEL);
595 if (!sobj)
596 return NULL;
597 sobj->s.max_members = max_members;
598 sobj->s.group.attrs = &sobj->a;
599 sobj->s.group.name = name;
600
601 return &sobj->s;
602}
603
604/* not multi-threaded safe, use it in a single thread per set */
605static int add_to_attr_set(struct attribute_set* s, struct attribute *attr)
606{
607 if (!s || !attr)
608 return -EINVAL;
609
610 if (s->members >= s->max_members)
611 return -ENOMEM;
612
613 s->group.attrs[s->members] = attr;
614 s->members++;
615
616 return 0;
617}
618
619static int add_many_to_attr_set(struct attribute_set* s,
620 struct attribute **attr,
621 unsigned int count)
622{
623 int i, res;
624
625 for (i = 0; i < count; i++) {
626 res = add_to_attr_set(s, attr[i]);
627 if (res)
628 return res;
629 }
630
631 return 0;
632}
633
634static void delete_attr_set(struct attribute_set* s, struct kobject *kobj)
635{
636 sysfs_remove_group(kobj, &s->group);
637 destroy_attr_set(s);
638}
639
640static int parse_strtoul(const char *buf,
641 unsigned long max, unsigned long *value)
642{
643 char *endp;
644
645 *value = simple_strtoul(buf, &endp, 0);
646 while (*endp && isspace(*endp))
647 endp++;
648 if (*endp || *value > max)
649 return -EINVAL;
650
651 return 0;
652}
653
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300654/****************************************************************************
655 ****************************************************************************
656 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300657 * Subdrivers
658 *
659 ****************************************************************************
660 ****************************************************************************/
661
662/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -0300663 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300664 */
665
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300666static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 printk(IBM_INFO "%s v%s\n", IBM_DESC, IBM_VERSION);
669 printk(IBM_INFO "%s\n", IBM_URL);
670
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -0200671 if (ibm_thinkpad_ec_found)
672 printk(IBM_INFO "ThinkPad EC firmware %s\n",
673 ibm_thinkpad_ec_found);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676}
677
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300678static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int len = 0;
681
682 len += sprintf(p + len, "driver:\t\t%s\n", IBM_DESC);
683 len += sprintf(p + len, "version:\t%s\n", IBM_VERSION);
684
685 return len;
686}
687
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300688static struct ibm_struct thinkpad_acpi_driver_data = {
689 .name = "driver",
690 .read = thinkpad_acpi_driver_read,
691};
692
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300693/*************************************************************************
694 * Hotkey subdriver
695 */
696
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400697static int hotkey_orig_status;
698static int hotkey_orig_mask;
699
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300700static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300701{
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300702 int res;
703
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300704 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
705
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300706 IBM_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300707 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300708
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300709 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300710 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300711
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300712 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300713 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300714
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300715 if (tp_features.hotkey) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300716 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
717 A30, R30, R31, T20-22, X20-21, X22-24 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300718 tp_features.hotkey_mask =
719 acpi_evalf(hkey_handle, NULL, "DHKN", "qv");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300720
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300721 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300722 str_supported(tp_features.hotkey_mask));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300723
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300724 res = hotkey_get(&hotkey_orig_status, &hotkey_orig_mask);
725 if (res)
726 return res;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300727 }
728
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300729 return (tp_features.hotkey)? 0 : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300730}
731
732static void hotkey_exit(void)
733{
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300734 int res;
735
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300736 if (tp_features.hotkey) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300737 dbg_printk(TPACPI_DBG_EXIT, "restoring original hotkey mask\n");
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300738 res = hotkey_set(hotkey_orig_status, hotkey_orig_mask);
739 if (res)
740 printk(IBM_ERR "failed to restore hotkey to BIOS defaults\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300741 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300742}
743
744static void hotkey_notify(struct ibm_struct *ibm, u32 event)
745{
746 int hkey;
747
748 if (acpi_evalf(hkey_handle, &hkey, "MHKP", "d"))
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300749 acpi_bus_generate_event(ibm->acpi->device, event, hkey);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300750 else {
751 printk(IBM_ERR "unknown hotkey event %d\n", event);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300752 acpi_bus_generate_event(ibm->acpi->device, event, 0);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300753 }
754}
755
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300756/*
757 * Call with hotkey_mutex held
758 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400759static int hotkey_get(int *status, int *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300762 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400763
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300764 if (tp_features.hotkey_mask)
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400765 if (!acpi_evalf(hkey_handle, mask, "DHKN", "d"))
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300766 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400767
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300768 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300771/*
772 * Call with hotkey_mutex held
773 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400774static int hotkey_set(int status, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int i;
777
778 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status))
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300779 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300781 if (tp_features.hotkey_mask)
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400782 for (i = 0; i < 32; i++) {
783 int bit = ((1 << i) & mask) != 0;
784 if (!acpi_evalf(hkey_handle,
785 NULL, "MHKM", "vdd", i + 1, bit))
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300786 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400787 }
788
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300789 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400790}
791
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400792static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300794 int res, status, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int len = 0;
796
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300797 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400798 len += sprintf(p + len, "status:\t\tnot supported\n");
799 return len;
800 }
801
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300802 res = mutex_lock_interruptible(&hotkey_mutex);
803 if (res < 0)
804 return res;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300805 res = hotkey_get(&status, &mask);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300806 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300807 if (res)
808 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300811 if (tp_features.hotkey_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 len += sprintf(p + len, "mask:\t\t0x%04x\n", mask);
813 len += sprintf(p + len,
814 "commands:\tenable, disable, reset, <mask>\n");
815 } else {
816 len += sprintf(p + len, "mask:\t\tnot supported\n");
817 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
818 }
819
820 return len;
821}
822
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400823static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300825 int res, status, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 char *cmd;
827 int do_cmd = 0;
828
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300829 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return -ENODEV;
831
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300832 res = mutex_lock_interruptible(&hotkey_mutex);
833 if (res < 0)
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300834 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400835
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300836 res = hotkey_get(&status, &mask);
837 if (res)
838 goto errexit;
839
840 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 while ((cmd = next_cmd(&buf))) {
842 if (strlencmp(cmd, "enable") == 0) {
843 status = 1;
844 } else if (strlencmp(cmd, "disable") == 0) {
845 status = 0;
846 } else if (strlencmp(cmd, "reset") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400847 status = hotkey_orig_status;
848 mask = hotkey_orig_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
850 /* mask set */
851 } else if (sscanf(cmd, "%x", &mask) == 1) {
852 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300853 } else {
854 res = -EINVAL;
855 goto errexit;
856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 do_cmd = 1;
858 }
859
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300860 if (do_cmd)
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -0300861 res = hotkey_set(status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -0300863errexit:
864 mutex_unlock(&hotkey_mutex);
865 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400866}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300868static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300869 .hid = IBM_HKEY_HID,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300870 .notify = hotkey_notify,
871 .handle = &hkey_handle,
872 .type = ACPI_DEVICE_NOTIFY,
873};
874
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300875static struct ibm_struct hotkey_driver_data = {
876 .name = "hotkey",
877 .read = hotkey_read,
878 .write = hotkey_write,
879 .exit = hotkey_exit,
880 .acpi = &ibm_hotkey_acpidriver,
881};
882
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300883/*************************************************************************
884 * Bluetooth subdriver
885 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300887static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300889 int status = 0;
890
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300891 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
892
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300893 IBM_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300894
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400895 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
896 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300897 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300898 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300900 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
901 str_supported(tp_features.bluetooth),
902 status);
903
904 if (tp_features.bluetooth &&
905 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
906 /* no bluetooth hardware present in system */
907 tp_features.bluetooth = 0;
908 dbg_printk(TPACPI_DBG_INIT,
909 "bluetooth hardware not installed\n");
910 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300911
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300912 return (tp_features.bluetooth)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300915static int bluetooth_get_radiosw(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 int status;
918
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300919 if (!tp_features.bluetooth)
920 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300922 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
923 return -EIO;
924
925 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0);
926}
927
928static int bluetooth_set_radiosw(int radio_on)
929{
930 int status;
931
932 if (!tp_features.bluetooth)
933 return -ENODEV;
934
935 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
936 return -EIO;
937 if (radio_on)
938 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
939 else
940 status &= ~TP_ACPI_BLUETOOTH_RADIOSSW;
941 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
942 return -EIO;
943
944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400947static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300950 int status = bluetooth_get_radiosw();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300952 if (!tp_features.bluetooth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 len += sprintf(p + len, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300955 len += sprintf(p + len, "status:\t\t%s\n",
956 (status)? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 len += sprintf(p + len, "commands:\tenable, disable\n");
958 }
959
960 return len;
961}
962
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400963static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -0300967 if (!tp_features.bluetooth)
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400968 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 while ((cmd = next_cmd(&buf))) {
971 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300972 bluetooth_set_radiosw(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300974 bluetooth_set_radiosw(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 } else
976 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return 0;
980}
981
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300982static struct ibm_struct bluetooth_driver_data = {
983 .name = "bluetooth",
984 .read = bluetooth_read,
985 .write = bluetooth_write,
986};
987
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300988/*************************************************************************
989 * Wan subdriver
990 */
991
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300992static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -0400993{
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -0300994 int status = 0;
995
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300996 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
997
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300998 IBM_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300999
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001000 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001001 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001002
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001003 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
1004 str_supported(tp_features.wan),
1005 status);
1006
1007 if (tp_features.wan &&
1008 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
1009 /* no wan hardware present in system */
1010 tp_features.wan = 0;
1011 dbg_printk(TPACPI_DBG_INIT,
1012 "wan hardware not installed\n");
1013 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001014
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001015 return (tp_features.wan)? 0 : 1;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001016}
1017
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001018static int wan_get_radiosw(void)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001019{
1020 int status;
1021
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001022 if (!tp_features.wan)
1023 return -ENODEV;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001024
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001025 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
1026 return -EIO;
1027
1028 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0);
1029}
1030
1031static int wan_set_radiosw(int radio_on)
1032{
1033 int status;
1034
1035 if (!tp_features.wan)
1036 return -ENODEV;
1037
1038 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
1039 return -EIO;
1040 if (radio_on)
1041 status |= TP_ACPI_WANCARD_RADIOSSW;
1042 else
1043 status &= ~TP_ACPI_WANCARD_RADIOSSW;
1044 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
1045 return -EIO;
1046
1047 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001048}
1049
1050static int wan_read(char *p)
1051{
1052 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001053 int status = wan_get_radiosw();
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001054
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001055 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001056 len += sprintf(p + len, "status:\t\tnot supported\n");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001057 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001058 len += sprintf(p + len, "status:\t\t%s\n",
1059 (status)? "enabled" : "disabled");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001060 len += sprintf(p + len, "commands:\tenable, disable\n");
1061 }
1062
1063 return len;
1064}
1065
1066static int wan_write(char *buf)
1067{
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001068 char *cmd;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001069
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001070 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001071 return -ENODEV;
1072
1073 while ((cmd = next_cmd(&buf))) {
1074 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001075 wan_set_radiosw(1);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001076 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03001077 wan_set_radiosw(0);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001078 } else
1079 return -EINVAL;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001080 }
1081
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04001082 return 0;
1083}
1084
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001085static struct ibm_struct wan_driver_data = {
1086 .name = "wan",
1087 .read = wan_read,
1088 .write = wan_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03001089 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001090};
1091
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001092/*************************************************************************
1093 * Video subdriver
1094 */
1095
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02001096static enum video_access_mode video_supported;
1097static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001098
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001099IBM_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
1100 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
1101 "\\_SB.PCI0.VID0", /* 770e */
1102 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
1103 "\\_SB.PCI0.AGP.VID", /* all others */
1104 ); /* R30, R31 */
1105
1106IBM_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
1107
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001108static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001110 int ivga;
1111
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001112 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
1113
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001114 IBM_ACPIHANDLE_INIT(vid);
1115 IBM_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001116
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001117 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
1118 /* G41, assume IVGA doesn't change */
1119 vid_handle = vid2_handle;
1120
1121 if (!vid_handle)
1122 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001123 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001124 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
1125 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001126 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001127 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
1128 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001129 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001130 else
1131 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001132 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001134 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
1135 str_supported(video_supported != TPACPI_VIDEO_NONE),
1136 video_supported);
1137
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001138 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001141static void video_exit(void)
1142{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001143 dbg_printk(TPACPI_DBG_EXIT,
1144 "restoring original video autoswitch mode\n");
1145 if (video_autosw_set(video_orig_autosw))
1146 printk(IBM_ERR "error while trying to restore original "
1147 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001148}
1149
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001150static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 int status = 0;
1153 int i;
1154
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001155 switch (video_supported) {
1156 case TPACPI_VIDEO_570:
1157 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
1158 TP_ACPI_VIDEO_570_PHSCMD))
1159 return -EIO;
1160 status = i & TP_ACPI_VIDEO_570_PHSMASK;
1161 break;
1162 case TPACPI_VIDEO_770:
1163 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
1164 return -EIO;
1165 if (i)
1166 status |= TP_ACPI_VIDEO_S_LCD;
1167 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
1168 return -EIO;
1169 if (i)
1170 status |= TP_ACPI_VIDEO_S_CRT;
1171 break;
1172 case TPACPI_VIDEO_NEW:
1173 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
1174 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
1175 return -EIO;
1176 if (i)
1177 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001179 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
1180 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
1181 return -EIO;
1182 if (i)
1183 status |= TP_ACPI_VIDEO_S_LCD;
1184 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
1185 return -EIO;
1186 if (i)
1187 status |= TP_ACPI_VIDEO_S_DVI;
1188 break;
1189 default:
1190 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 return status;
1194}
1195
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001196static int video_outputsw_set(int status)
1197{
1198 int autosw;
1199 int res = 0;
1200
1201 switch (video_supported) {
1202 case TPACPI_VIDEO_570:
1203 res = acpi_evalf(NULL, NULL,
1204 "\\_SB.PHS2", "vdd",
1205 TP_ACPI_VIDEO_570_PHS2CMD,
1206 status | TP_ACPI_VIDEO_570_PHS2SET);
1207 break;
1208 case TPACPI_VIDEO_770:
1209 autosw = video_autosw_get();
1210 if (autosw < 0)
1211 return autosw;
1212
1213 res = video_autosw_set(1);
1214 if (res)
1215 return res;
1216 res = acpi_evalf(vid_handle, NULL,
1217 "ASWT", "vdd", status * 0x100, 0);
1218 if (!autosw && video_autosw_set(autosw)) {
1219 printk(IBM_ERR "video auto-switch left enabled due to error\n");
1220 return -EIO;
1221 }
1222 break;
1223 case TPACPI_VIDEO_NEW:
1224 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
1225 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
1226 break;
1227 default:
1228 return -ENOSYS;
1229 }
1230
1231 return (res)? 0 : -EIO;
1232}
1233
1234static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001236 int autosw = 0;
1237
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001238 switch (video_supported) {
1239 case TPACPI_VIDEO_570:
1240 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
1241 return -EIO;
1242 break;
1243 case TPACPI_VIDEO_770:
1244 case TPACPI_VIDEO_NEW:
1245 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
1246 return -EIO;
1247 break;
1248 default:
1249 return -ENOSYS;
1250 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001251
1252 return autosw & 1;
1253}
1254
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001255static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001256{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001257 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001258 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001259 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001260}
1261
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001262static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001263{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001264 int autosw = video_autosw_get();
1265 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001266
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001267 if (autosw < 0)
1268 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001269
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001270 switch (video_supported) {
1271 case TPACPI_VIDEO_570:
1272 res = video_autosw_set(1);
1273 if (res)
1274 return res;
1275 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
1276 break;
1277 case TPACPI_VIDEO_770:
1278 case TPACPI_VIDEO_NEW:
1279 res = video_autosw_set(1);
1280 if (res)
1281 return res;
1282 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
1283 break;
1284 default:
1285 return -ENOSYS;
1286 }
1287 if (!autosw && video_autosw_set(autosw)) {
1288 printk(IBM_ERR "video auto-switch left enabled due to error\n");
1289 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001290 }
1291
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001292 return (res)? 0 : -EIO;
1293}
1294
1295static int video_expand_toggle(void)
1296{
1297 switch (video_supported) {
1298 case TPACPI_VIDEO_570:
1299 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
1300 0 : -EIO;
1301 case TPACPI_VIDEO_770:
1302 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
1303 0 : -EIO;
1304 case TPACPI_VIDEO_NEW:
1305 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
1306 0 : -EIO;
1307 default:
1308 return -ENOSYS;
1309 }
1310 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001311}
1312
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001313static int video_read(char *p)
1314{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001315 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001316 int len = 0;
1317
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001318 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001319 len += sprintf(p + len, "status:\t\tnot supported\n");
1320 return len;
1321 }
1322
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001323 status = video_outputsw_get();
1324 if (status < 0)
1325 return status;
1326
1327 autosw = video_autosw_get();
1328 if (autosw < 0)
1329 return autosw;
1330
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001331 len += sprintf(p + len, "status:\t\tsupported\n");
1332 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
1333 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001334 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001335 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
1336 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
1337 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
1338 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001339 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001340 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
1341 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
1342 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
1343
1344 return len;
1345}
1346
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001347static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 char *cmd;
1350 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001351 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001353 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001354 return -ENODEV;
1355
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001356 enable = 0;
1357 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 while ((cmd = next_cmd(&buf))) {
1360 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001361 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001363 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001365 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001367 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001368 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001369 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001370 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001371 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001372 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001373 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001375 res = video_autosw_set(1);
1376 if (res)
1377 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001379 res = video_autosw_set(0);
1380 if (res)
1381 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001383 res = video_outputsw_cycle();
1384 if (res)
1385 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001387 res = video_expand_toggle();
1388 if (res)
1389 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 } else
1391 return -EINVAL;
1392 }
1393
1394 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03001395 status = video_outputsw_get();
1396 if (status < 0)
1397 return status;
1398 res = video_outputsw_set((status & ~disable) | enable);
1399 if (res)
1400 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 return 0;
1404}
1405
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001406static struct ibm_struct video_driver_data = {
1407 .name = "video",
1408 .read = video_read,
1409 .write = video_write,
1410 .exit = video_exit,
1411};
1412
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001413/*************************************************************************
1414 * Light (thinklight) subdriver
1415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001417IBM_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
1418IBM_HANDLE(ledb, ec, "LEDB"); /* G4x */
1419
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001420static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001422 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
1423
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001424 IBM_ACPIHANDLE_INIT(ledb);
1425 IBM_ACPIHANDLE_INIT(lght);
1426 IBM_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001427
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001428 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001429 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001430
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001431 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001432 /* light status not supported on
1433 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001434 tp_features.light_status =
1435 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001437 vdbg_printk(TPACPI_DBG_INIT, "light is %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001438 str_supported(tp_features.light));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001439
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001440 return (tp_features.light)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001443static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 int len = 0;
1446 int status = 0;
1447
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001448 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001449 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001450 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001451 len += sprintf(p + len, "status:\t\tunknown\n");
1452 len += sprintf(p + len, "commands:\ton, off\n");
1453 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
1455 return -EIO;
1456 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001457 len += sprintf(p + len, "commands:\ton, off\n");
1458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 return len;
1461}
1462
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001463static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
1465 int cmos_cmd, lght_cmd;
1466 char *cmd;
1467 int success;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001468
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001469 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001470 return -ENODEV;
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 while ((cmd = next_cmd(&buf))) {
1473 if (strlencmp(cmd, "on") == 0) {
1474 cmos_cmd = 0x0c;
1475 lght_cmd = 1;
1476 } else if (strlencmp(cmd, "off") == 0) {
1477 cmos_cmd = 0x0d;
1478 lght_cmd = 0;
1479 } else
1480 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 success = cmos_handle ?
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001483 acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd) :
1484 acpi_evalf(lght_handle, NULL, NULL, "vd", lght_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (!success)
1486 return -EIO;
1487 }
1488
1489 return 0;
1490}
1491
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001492static struct ibm_struct light_driver_data = {
1493 .name = "light",
1494 .read = light_read,
1495 .write = light_write,
1496};
1497
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001498/*************************************************************************
1499 * Dock subdriver
1500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03001502#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001503
1504IBM_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
1505 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
1506 "\\_SB.PCI0.PCI1.DOCK", /* all others */
1507 "\\_SB.PCI.ISA.SLCE", /* 570 */
1508 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
1509
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001510/* don't list other alternatives as we install a notify handler on the 570 */
1511IBM_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513#define dock_docked() (_sta(dock_handle) & 1)
1514
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001515static int __init dock_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001516{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001517 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
1518
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001519 IBM_ACPIHANDLE_INIT(dock);
1520 IBM_ACPIHANDLE_INIT(pci);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001521
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001522 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
1523 str_supported(dock_handle != NULL));
1524
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001525 return (dock_handle)? 0 : 1;
1526}
1527
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001528static void dock_notify(struct ibm_struct *ibm, u32 event)
1529{
1530 int docked = dock_docked();
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001531 int pci = ibm->acpi->hid && strstr(ibm->acpi->hid, IBM_PCI_HID);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001532
1533 if (event == 1 && !pci) /* 570 */
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001534 acpi_bus_generate_event(ibm->acpi->device, event, 1); /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001535 else if (event == 1 && pci) /* 570 */
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001536 acpi_bus_generate_event(ibm->acpi->device, event, 3); /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001537 else if (event == 3 && docked)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001538 acpi_bus_generate_event(ibm->acpi->device, event, 1); /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001539 else if (event == 3 && !docked)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001540 acpi_bus_generate_event(ibm->acpi->device, event, 2); /* undock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001541 else if (event == 0 && docked)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001542 acpi_bus_generate_event(ibm->acpi->device, event, 3); /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001543 else {
1544 printk(IBM_ERR "unknown dock event %d, status %d\n",
1545 event, _sta(dock_handle));
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001546 acpi_bus_generate_event(ibm->acpi->device, event, 0); /* unknown */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001547 }
1548}
1549
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001550static int dock_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 int len = 0;
1553 int docked = dock_docked();
1554
1555 if (!dock_handle)
1556 len += sprintf(p + len, "status:\t\tnot supported\n");
1557 else if (!docked)
1558 len += sprintf(p + len, "status:\t\tundocked\n");
1559 else {
1560 len += sprintf(p + len, "status:\t\tdocked\n");
1561 len += sprintf(p + len, "commands:\tdock, undock\n");
1562 }
1563
1564 return len;
1565}
1566
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001567static int dock_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 char *cmd;
1570
1571 if (!dock_docked())
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001572 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 while ((cmd = next_cmd(&buf))) {
1575 if (strlencmp(cmd, "undock") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001576 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
1577 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return -EIO;
1579 } else if (strlencmp(cmd, "dock") == 0) {
1580 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
1581 return -EIO;
1582 } else
1583 return -EINVAL;
1584 }
1585
1586 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001589static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001590 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001591 .notify = dock_notify,
1592 .handle = &dock_handle,
1593 .type = ACPI_SYSTEM_NOTIFY,
1594 },
1595 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001596 .hid = IBM_PCI_HID,
1597 .notify = dock_notify,
1598 .handle = &pci_handle,
1599 .type = ACPI_SYSTEM_NOTIFY,
1600 },
1601};
1602
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001603static struct ibm_struct dock_driver_data[2] = {
1604 {
1605 .name = "dock",
1606 .read = dock_read,
1607 .write = dock_write,
1608 .acpi = &ibm_dock_acpidriver[0],
1609 },
1610 {
1611 .name = "dock",
1612 .acpi = &ibm_dock_acpidriver[1],
1613 },
1614};
1615
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03001616#endif /* CONFIG_THINKPAD_ACPI_DOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001618/*************************************************************************
1619 * Bay subdriver
1620 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03001622#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001623IBM_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
1624 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
1625 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
1626 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
1627 ); /* A21e, R30, R31 */
1628IBM_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
1629 "_EJ0", /* all others */
1630 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
1631IBM_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
1632 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
1633 ); /* all others */
1634IBM_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
1635 "_EJ0", /* 770x */
1636 ); /* all others */
1637
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001638static int __init bay_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001640 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
1641
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001642 IBM_ACPIHANDLE_INIT(bay);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001643 if (bay_handle)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001644 IBM_ACPIHANDLE_INIT(bay_ej);
1645 IBM_ACPIHANDLE_INIT(bay2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001646 if (bay2_handle)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001647 IBM_ACPIHANDLE_INIT(bay2_ej);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001648
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001649 tp_features.bay_status = bay_handle &&
1650 acpi_evalf(bay_handle, NULL, "_STA", "qv");
1651 tp_features.bay_status2 = bay2_handle &&
1652 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001653
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001654 tp_features.bay_eject = bay_handle && bay_ej_handle &&
1655 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
1656 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
1657 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001659 vdbg_printk(TPACPI_DBG_INIT,
1660 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001661 str_supported(tp_features.bay_status),
1662 str_supported(tp_features.bay_eject),
1663 str_supported(tp_features.bay_status2),
1664 str_supported(tp_features.bay_eject2));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001665
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001666 return (tp_features.bay_status || tp_features.bay_eject ||
1667 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001670static void bay_notify(struct ibm_struct *ibm, u32 event)
1671{
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001672 acpi_bus_generate_event(ibm->acpi->device, event, 0);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001673}
1674
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001675#define bay_occupied(b) (_sta(b##_handle) & 1)
1676
1677static int bay_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 int len = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001680 int occupied = bay_occupied(bay);
1681 int occupied2 = bay_occupied(bay2);
1682 int eject, eject2;
1683
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001684 len += sprintf(p + len, "status:\t\t%s\n",
1685 tp_features.bay_status ?
1686 (occupied ? "occupied" : "unoccupied") :
1687 "not supported");
1688 if (tp_features.bay_status2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001689 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
1690 "occupied" : "unoccupied");
1691
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001692 eject = tp_features.bay_eject && occupied;
1693 eject2 = tp_features.bay_eject2 && occupied2;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001694
1695 if (eject && eject2)
1696 len += sprintf(p + len, "commands:\teject, eject2\n");
1697 else if (eject)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 len += sprintf(p + len, "commands:\teject\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001699 else if (eject2)
1700 len += sprintf(p + len, "commands:\teject2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 return len;
1703}
1704
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001705static int bay_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 char *cmd;
1708
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001709 if (!tp_features.bay_eject && !tp_features.bay_eject2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001710 return -ENODEV;
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001713 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001714 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
1715 return -EIO;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03001716 } else if (tp_features.bay_eject2 &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001717 strlencmp(cmd, "eject2") == 0) {
1718 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return -EIO;
1720 } else
1721 return -EINVAL;
1722 }
1723
1724 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001725}
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001726
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001727static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
1728 .notify = bay_notify,
1729 .handle = &bay_handle,
1730 .type = ACPI_SYSTEM_NOTIFY,
1731};
1732
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001733static struct ibm_struct bay_driver_data = {
1734 .name = "bay",
1735 .read = bay_read,
1736 .write = bay_write,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001737 .acpi = &ibm_bay_acpidriver,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001738};
1739
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03001740#endif /* CONFIG_THINKPAD_ACPI_BAY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001742/*************************************************************************
1743 * CMOS subdriver
1744 */
1745
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03001746/* sysfs cmos_command -------------------------------------------------- */
1747static ssize_t cmos_command_store(struct device *dev,
1748 struct device_attribute *attr,
1749 const char *buf, size_t count)
1750{
1751 unsigned long cmos_cmd;
1752 int res;
1753
1754 if (parse_strtoul(buf, 21, &cmos_cmd))
1755 return -EINVAL;
1756
1757 res = issue_thinkpad_cmos_command(cmos_cmd);
1758 return (res)? res : count;
1759}
1760
1761static struct device_attribute dev_attr_cmos_command =
1762 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
1763
1764/* --------------------------------------------------------------------- */
1765
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001766static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001767{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03001768 int res;
1769
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001770 vdbg_printk(TPACPI_DBG_INIT,
1771 "initializing cmos commands subdriver\n");
1772
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001773 IBM_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001774
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001775 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
1776 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03001777
1778 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
1779 if (res)
1780 return res;
1781
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001782 return (cmos_handle)? 0 : 1;
1783}
1784
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03001785static void cmos_exit(void)
1786{
1787 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
1788}
1789
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001790static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 int len = 0;
1793
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001794 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
1795 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (!cmos_handle)
1797 len += sprintf(p + len, "status:\t\tnot supported\n");
1798 else {
1799 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001800 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802
1803 return len;
1804}
1805
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001806static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03001809 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001812 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
1813 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 /* cmos_cmd set */
1815 } else
1816 return -EINVAL;
1817
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03001818 res = issue_thinkpad_cmos_command(cmos_cmd);
1819 if (res)
1820 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822
1823 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001824}
1825
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001826static struct ibm_struct cmos_driver_data = {
1827 .name = "cmos",
1828 .read = cmos_read,
1829 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03001830 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001831};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001832
1833/*************************************************************************
1834 * LED subdriver
1835 */
1836
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02001837static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001838
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001839IBM_HANDLE(led, ec, "SLED", /* 570 */
1840 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
1841 "LED", /* all others */
1842 ); /* R30, R31 */
1843
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001844static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001845{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001846 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
1847
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001848 IBM_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001849
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001850 if (!led_handle)
1851 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001852 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001853 else if (strlencmp(led_path, "SLED") == 0)
1854 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001855 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001856 else if (strlencmp(led_path, "SYSL") == 0)
1857 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001858 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001859 else
1860 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001861 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001862
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001863 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
1864 str_supported(led_supported), led_supported);
1865
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001866 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001867}
1868
1869#define led_status(s) ((s) == 0 ? "off" : ((s) == 1 ? "on" : "blinking"))
1870
1871static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 int len = 0;
1874
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001875 if (!led_supported) {
1876 len += sprintf(p + len, "status:\t\tnot supported\n");
1877 return len;
1878 }
1879 len += sprintf(p + len, "status:\t\tsupported\n");
1880
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001881 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001882 /* 570 */
1883 int i, status;
1884 for (i = 0; i < 8; i++) {
1885 if (!acpi_evalf(ec_handle,
1886 &status, "GLED", "dd", 1 << i))
1887 return -EIO;
1888 len += sprintf(p + len, "%d:\t\t%s\n",
1889 i, led_status(status));
1890 }
1891 }
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 len += sprintf(p + len, "commands:\t"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001894 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 return len;
1897}
1898
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001899/* off, on, blink */
1900static const int led_sled_arg1[] = { 0, 1, 3 };
1901static const int led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */
1902static const int led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */
1903static const int led_led_arg1[] = { 0, 0x80, 0xc0 };
1904
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001905static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
1907 char *cmd;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001908 int led, ind, ret;
1909
1910 if (!led_supported)
1911 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001914 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return -EINVAL;
1916
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001917 if (strstr(cmd, "off")) {
1918 ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 } else if (strstr(cmd, "on")) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001920 ind = 1;
1921 } else if (strstr(cmd, "blink")) {
1922 ind = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 } else
1924 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001925
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001926 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001927 /* 570 */
1928 led = 1 << led;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001930 led, led_sled_arg1[ind]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return -EIO;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001932 } else if (led_supported == TPACPI_LED_OLD) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001933 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
1934 led = 1 << led;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001935 ret = ec_write(TPACPI_LED_EC_HLMS, led);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001936 if (ret >= 0)
1937 ret =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001938 ec_write(TPACPI_LED_EC_HLBL,
Henrique de Moraes Holschuhe062e032007-03-23 17:33:55 -03001939 led * led_exp_hlbl[ind]);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001940 if (ret >= 0)
1941 ret =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03001942 ec_write(TPACPI_LED_EC_HLCL,
Henrique de Moraes Holschuhe062e032007-03-23 17:33:55 -03001943 led * led_exp_hlcl[ind]);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001944 if (ret < 0)
1945 return ret;
1946 } else {
1947 /* all others */
1948 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
1949 led, led_led_arg1[ind]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
1954 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001955}
1956
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001957static struct ibm_struct led_driver_data = {
1958 .name = "led",
1959 .read = led_read,
1960 .write = led_write,
1961};
1962
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001963/*************************************************************************
1964 * Beep subdriver
1965 */
1966
1967IBM_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
1968
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001969static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001970{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001971 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
1972
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03001973 IBM_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001974
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03001975 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
1976 str_supported(beep_handle != NULL));
1977
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03001978 return (beep_handle)? 0 : 1;
1979}
1980
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001981static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 int len = 0;
1984
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001985 if (!beep_handle)
1986 len += sprintf(p + len, "status:\t\tnot supported\n");
1987 else {
1988 len += sprintf(p + len, "status:\t\tsupported\n");
1989 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 return len;
1993}
1994
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001995static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 char *cmd;
1998 int beep_cmd;
1999
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002000 if (!beep_handle)
2001 return -ENODEV;
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002004 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
2005 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 /* beep_cmd set */
2007 } else
2008 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002009 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -EIO;
2011 }
2012
2013 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002014}
2015
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002016static struct ibm_struct beep_driver_data = {
2017 .name = "beep",
2018 .read = beep_read,
2019 .write = beep_write,
2020};
2021
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002022/*************************************************************************
2023 * Thermal subdriver
2024 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002025
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002026static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002027
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03002028/* sysfs temp##_input -------------------------------------------------- */
2029
2030static ssize_t thermal_temp_input_show(struct device *dev,
2031 struct device_attribute *attr,
2032 char *buf)
2033{
2034 struct sensor_device_attribute *sensor_attr =
2035 to_sensor_dev_attr(attr);
2036 int idx = sensor_attr->index;
2037 s32 value;
2038 int res;
2039
2040 res = thermal_get_sensor(idx, &value);
2041 if (res)
2042 return res;
2043 if (value == TP_EC_THERMAL_TMP_NA * 1000)
2044 return -ENXIO;
2045
2046 return snprintf(buf, PAGE_SIZE, "%d\n", value);
2047}
2048
2049#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
2050 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, thermal_temp_input_show, NULL, _idxB)
2051
2052static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
2053 THERMAL_SENSOR_ATTR_TEMP(1, 0),
2054 THERMAL_SENSOR_ATTR_TEMP(2, 1),
2055 THERMAL_SENSOR_ATTR_TEMP(3, 2),
2056 THERMAL_SENSOR_ATTR_TEMP(4, 3),
2057 THERMAL_SENSOR_ATTR_TEMP(5, 4),
2058 THERMAL_SENSOR_ATTR_TEMP(6, 5),
2059 THERMAL_SENSOR_ATTR_TEMP(7, 6),
2060 THERMAL_SENSOR_ATTR_TEMP(8, 7),
2061 THERMAL_SENSOR_ATTR_TEMP(9, 8),
2062 THERMAL_SENSOR_ATTR_TEMP(10, 9),
2063 THERMAL_SENSOR_ATTR_TEMP(11, 10),
2064 THERMAL_SENSOR_ATTR_TEMP(12, 11),
2065 THERMAL_SENSOR_ATTR_TEMP(13, 12),
2066 THERMAL_SENSOR_ATTR_TEMP(14, 13),
2067 THERMAL_SENSOR_ATTR_TEMP(15, 14),
2068 THERMAL_SENSOR_ATTR_TEMP(16, 15),
2069};
2070
2071#define THERMAL_ATTRS(X) \
2072 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
2073
2074static struct attribute *thermal_temp_input_attr[] = {
2075 THERMAL_ATTRS(8),
2076 THERMAL_ATTRS(9),
2077 THERMAL_ATTRS(10),
2078 THERMAL_ATTRS(11),
2079 THERMAL_ATTRS(12),
2080 THERMAL_ATTRS(13),
2081 THERMAL_ATTRS(14),
2082 THERMAL_ATTRS(15),
2083 THERMAL_ATTRS(0),
2084 THERMAL_ATTRS(1),
2085 THERMAL_ATTRS(2),
2086 THERMAL_ATTRS(3),
2087 THERMAL_ATTRS(4),
2088 THERMAL_ATTRS(5),
2089 THERMAL_ATTRS(6),
2090 THERMAL_ATTRS(7),
2091 NULL
2092};
2093
2094static const struct attribute_group thermal_temp_input16_group = {
2095 .attrs = thermal_temp_input_attr
2096};
2097
2098static const struct attribute_group thermal_temp_input8_group = {
2099 .attrs = &thermal_temp_input_attr[8]
2100};
2101
2102#undef THERMAL_SENSOR_ATTR_TEMP
2103#undef THERMAL_ATTRS
2104
2105/* --------------------------------------------------------------------- */
2106
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002107static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002108{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002109 u8 t, ta1, ta2;
2110 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002111 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03002112 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002113
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002114 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
2115
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002116 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002117
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002118 if (ibm_thinkpad_ec_found && experimental) {
2119 /*
2120 * Direct EC access mode: sensors at registers
2121 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
2122 * non-implemented, thermal sensors return 0x80 when
2123 * not available
2124 */
2125
2126 ta1 = ta2 = 0;
2127 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002128 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002129 ta1 |= t;
2130 } else {
2131 ta1 = 0;
2132 break;
2133 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002134 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002135 ta2 |= t;
2136 } else {
2137 ta1 = 0;
2138 break;
2139 }
2140 }
2141 if (ta1 == 0) {
2142 /* This is sheer paranoia, but we handle it anyway */
2143 if (acpi_tmp7) {
2144 printk(IBM_ERR
2145 "ThinkPad ACPI EC access misbehaving, "
2146 "falling back to ACPI TMPx access mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002147 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002148 } else {
2149 printk(IBM_ERR
2150 "ThinkPad ACPI EC access misbehaving, "
2151 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002152 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002153 }
2154 } else {
2155 thermal_read_mode =
2156 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002157 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002158 }
2159 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002160 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
2161 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002162 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002163 } else {
2164 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002165 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002166 }
2167 } else {
2168 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002169 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002170 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002171
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002172 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
2173 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
2174 thermal_read_mode);
2175
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03002176 switch(thermal_read_mode) {
2177 case TPACPI_THERMAL_TPEC_16:
2178 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2179 &thermal_temp_input16_group);
2180 if (res)
2181 return res;
2182 break;
2183 case TPACPI_THERMAL_TPEC_8:
2184 case TPACPI_THERMAL_ACPI_TMP07:
2185 case TPACPI_THERMAL_ACPI_UPDT:
2186 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2187 &thermal_temp_input8_group);
2188 if (res)
2189 return res;
2190 break;
2191 case TPACPI_THERMAL_NONE:
2192 default:
2193 return 1;
2194 }
2195
2196 return 0;
2197}
2198
2199static void thermal_exit(void)
2200{
2201 switch(thermal_read_mode) {
2202 case TPACPI_THERMAL_TPEC_16:
2203 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2204 &thermal_temp_input16_group);
2205 break;
2206 case TPACPI_THERMAL_TPEC_8:
2207 case TPACPI_THERMAL_ACPI_TMP07:
2208 case TPACPI_THERMAL_ACPI_UPDT:
2209 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2210 &thermal_temp_input16_group);
2211 break;
2212 case TPACPI_THERMAL_NONE:
2213 default:
2214 break;
2215 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002216}
2217
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002218/* idx is zero-based */
2219static int thermal_get_sensor(int idx, s32 *value)
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002220{
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002221 int t;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002222 s8 tmp;
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002223 char tmpi[5];
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002224
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002225 t = TP_EC_THERMAL_TMP0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002226
2227 switch (thermal_read_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002228#if TPACPI_MAX_THERMAL_SENSORS >= 16
2229 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002230 if (idx >= 8 && idx <= 15) {
2231 t = TP_EC_THERMAL_TMP8;
2232 idx -= 8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002233 }
2234 /* fallthrough */
2235#endif
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002236 case TPACPI_THERMAL_TPEC_8:
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002237 if (idx <= 7) {
2238 if (!acpi_ec_read(t + idx, &tmp))
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002239 return -EIO;
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002240 *value = tmp * 1000;
2241 return 0;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002242 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002243 break;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02002244
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002245 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002246 if (idx <= 7) {
2247 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
2248 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
2249 return -EIO;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002250 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
2251 return -EIO;
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002252 *value = (t - 2732) * 100;
2253 return 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002254 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002255 break;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002256
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002257 case TPACPI_THERMAL_ACPI_TMP07:
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002258 if (idx <= 7) {
2259 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002260 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
2261 return -EIO;
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002262 *value = t * 1000;
2263 return 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002264 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002265 break;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002266
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002267 case TPACPI_THERMAL_NONE:
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002268 default:
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002269 return -ENOSYS;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002270 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03002271
2272 return -EINVAL;
2273}
2274
2275static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
2276{
2277 int res, i;
2278 int n;
2279
2280 n = 8;
2281 i = 0;
2282
2283 if (!s)
2284 return -EINVAL;
2285
2286 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
2287 n = 16;
2288
2289 for(i = 0 ; i < n; i++) {
2290 res = thermal_get_sensor(i, &s->temp[i]);
2291 if (res)
2292 return res;
2293 }
2294
2295 return n;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002296}
2297
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002298static int thermal_read(char *p)
2299{
2300 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002301 int n, i;
2302 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002303
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002304 n = thermal_get_sensors(&t);
2305 if (unlikely(n < 0))
2306 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002307
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002308 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002309
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02002310 if (n > 0) {
2311 for (i = 0; i < (n - 1); i++)
2312 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
2313 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
2314 } else
2315 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002316
2317 return len;
2318}
2319
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002320static struct ibm_struct thermal_driver_data = {
2321 .name = "thermal",
2322 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03002323 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002324};
2325
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002326/*************************************************************************
2327 * EC Dump subdriver
2328 */
2329
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002330static u8 ecdump_regs[256];
2331
2332static int ecdump_read(char *p)
2333{
2334 int len = 0;
2335 int i, j;
2336 u8 v;
2337
2338 len += sprintf(p + len, "EC "
2339 " +00 +01 +02 +03 +04 +05 +06 +07"
2340 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
2341 for (i = 0; i < 256; i += 16) {
2342 len += sprintf(p + len, "EC 0x%02x:", i);
2343 for (j = 0; j < 16; j++) {
2344 if (!acpi_ec_read(i + j, &v))
2345 break;
2346 if (v != ecdump_regs[i + j])
2347 len += sprintf(p + len, " *%02x", v);
2348 else
2349 len += sprintf(p + len, " %02x", v);
2350 ecdump_regs[i + j] = v;
2351 }
2352 len += sprintf(p + len, "\n");
2353 if (j != 16)
2354 break;
2355 }
2356
2357 /* These are way too dangerous to advertise openly... */
2358#if 0
2359 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
2360 " (<offset> is 00-ff, <value> is 00-ff)\n");
2361 len += sprintf(p + len, "commands:\t0x<offset> <value> "
2362 " (<offset> is 00-ff, <value> is 0-255)\n");
2363#endif
2364 return len;
2365}
2366
2367static int ecdump_write(char *buf)
2368{
2369 char *cmd;
2370 int i, v;
2371
2372 while ((cmd = next_cmd(&buf))) {
2373 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
2374 /* i and v set */
2375 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
2376 /* i and v set */
2377 } else
2378 return -EINVAL;
2379 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
2380 if (!acpi_ec_write(i, v))
2381 return -EIO;
2382 } else
2383 return -EINVAL;
2384 }
2385
2386 return 0;
2387}
2388
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002389static struct ibm_struct ecdump_driver_data = {
2390 .name = "ecdump",
2391 .read = ecdump_read,
2392 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03002393 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002394};
2395
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002396/*************************************************************************
2397 * Backlight/brightness subdriver
2398 */
Holger Macht8acb0252006-10-20 14:30:28 -07002399
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002400static struct backlight_device *ibm_backlight_device = NULL;
Holger Macht8acb0252006-10-20 14:30:28 -07002401
Richard Purdie599a52d2007-02-10 23:07:48 +00002402static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002403 .get_brightness = brightness_get,
2404 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002405};
2406
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002407static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002408{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02002409 int b;
2410
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002411 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
2412
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02002413 b = brightness_get(NULL);
2414 if (b < 0)
2415 return b;
2416
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03002417 ibm_backlight_device = backlight_device_register(
2418 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
2419 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002420 if (IS_ERR(ibm_backlight_device)) {
2421 printk(IBM_ERR "Could not register backlight device\n");
2422 return PTR_ERR(ibm_backlight_device);
2423 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002424 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002425
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02002426 ibm_backlight_device->props.max_brightness = 7;
2427 ibm_backlight_device->props.brightness = b;
2428 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00002429
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002430 return 0;
2431}
2432
2433static void brightness_exit(void)
2434{
2435 if (ibm_backlight_device) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002436 vdbg_printk(TPACPI_DBG_EXIT,
2437 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02002438 backlight_device_unregister(ibm_backlight_device);
2439 ibm_backlight_device = NULL;
2440 }
2441}
2442
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002443static int brightness_update_status(struct backlight_device *bd)
2444{
2445 return brightness_set(
2446 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
2447 bd->props.power == FB_BLANK_UNBLANK) ?
2448 bd->props.brightness : 0);
2449}
2450
2451static int brightness_get(struct backlight_device *bd)
2452{
2453 u8 level;
2454 if (!acpi_ec_read(brightness_offset, &level))
2455 return -EIO;
2456
2457 level &= 0x7;
2458
2459 return level;
2460}
2461
2462static int brightness_set(int value)
2463{
2464 int cmos_cmd, inc, i;
2465 int current_value = brightness_get(NULL);
2466
2467 value &= 7;
2468
2469 cmos_cmd = value > current_value ? TP_CMOS_BRIGHTNESS_UP : TP_CMOS_BRIGHTNESS_DOWN;
2470 inc = value > current_value ? 1 : -1;
2471 for (i = current_value; i != value; i += inc) {
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03002472 if (issue_thinkpad_cmos_command(cmos_cmd))
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002473 return -EIO;
2474 if (!acpi_ec_write(brightness_offset, i + inc))
2475 return -EIO;
2476 }
2477
2478 return 0;
2479}
2480
2481static int brightness_read(char *p)
2482{
2483 int len = 0;
2484 int level;
2485
2486 if ((level = brightness_get(NULL)) < 0) {
2487 len += sprintf(p + len, "level:\t\tunreadable\n");
2488 } else {
2489 len += sprintf(p + len, "level:\t\t%d\n", level & 0x7);
2490 len += sprintf(p + len, "commands:\tup, down\n");
2491 len += sprintf(p + len, "commands:\tlevel <level>"
2492 " (<level> is 0-7)\n");
2493 }
2494
2495 return len;
2496}
2497
2498static int brightness_write(char *buf)
2499{
2500 int level;
2501 int new_level;
2502 char *cmd;
2503
2504 while ((cmd = next_cmd(&buf))) {
2505 if ((level = brightness_get(NULL)) < 0)
2506 return level;
2507 level &= 7;
2508
2509 if (strlencmp(cmd, "up") == 0) {
2510 new_level = level == 7 ? 7 : level + 1;
2511 } else if (strlencmp(cmd, "down") == 0) {
2512 new_level = level == 0 ? 0 : level - 1;
2513 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
2514 new_level >= 0 && new_level <= 7) {
2515 /* new_level set */
2516 } else
2517 return -EINVAL;
2518
2519 brightness_set(new_level);
2520 }
2521
2522 return 0;
2523}
2524
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002525static struct ibm_struct brightness_driver_data = {
2526 .name = "brightness",
2527 .read = brightness_read,
2528 .write = brightness_write,
2529 .exit = brightness_exit,
2530};
2531
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002532/*************************************************************************
2533 * Volume subdriver
2534 */
2535
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002536static int volume_read(char *p)
2537{
2538 int len = 0;
2539 u8 level;
2540
2541 if (!acpi_ec_read(volume_offset, &level)) {
2542 len += sprintf(p + len, "level:\t\tunreadable\n");
2543 } else {
2544 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
2545 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
2546 len += sprintf(p + len, "commands:\tup, down, mute\n");
2547 len += sprintf(p + len, "commands:\tlevel <level>"
2548 " (<level> is 0-15)\n");
2549 }
2550
2551 return len;
2552}
2553
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002554static int volume_write(char *buf)
2555{
2556 int cmos_cmd, inc, i;
2557 u8 level, mute;
2558 int new_level, new_mute;
2559 char *cmd;
2560
2561 while ((cmd = next_cmd(&buf))) {
2562 if (!acpi_ec_read(volume_offset, &level))
2563 return -EIO;
2564 new_mute = mute = level & 0x40;
2565 new_level = level = level & 0xf;
2566
2567 if (strlencmp(cmd, "up") == 0) {
2568 if (mute)
2569 new_mute = 0;
2570 else
2571 new_level = level == 15 ? 15 : level + 1;
2572 } else if (strlencmp(cmd, "down") == 0) {
2573 if (mute)
2574 new_mute = 0;
2575 else
2576 new_level = level == 0 ? 0 : level - 1;
2577 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
2578 new_level >= 0 && new_level <= 15) {
2579 /* new_level set */
2580 } else if (strlencmp(cmd, "mute") == 0) {
2581 new_mute = 0x40;
2582 } else
2583 return -EINVAL;
2584
2585 if (new_level != level) { /* mute doesn't change */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002586 cmos_cmd = new_level > level ? TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002587 inc = new_level > level ? 1 : -1;
2588
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03002589 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002590 !acpi_ec_write(volume_offset, level)))
2591 return -EIO;
2592
2593 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03002594 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002595 !acpi_ec_write(volume_offset, i + inc))
2596 return -EIO;
2597
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03002598 if (mute && (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002599 !acpi_ec_write(volume_offset,
2600 new_level + mute)))
2601 return -EIO;
2602 }
2603
2604 if (new_mute != mute) { /* level doesn't change */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002605 cmos_cmd = new_mute ? TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002606
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03002607 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002608 !acpi_ec_write(volume_offset, level + new_mute))
2609 return -EIO;
2610 }
2611 }
2612
2613 return 0;
2614}
2615
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002616static struct ibm_struct volume_driver_data = {
2617 .name = "volume",
2618 .read = volume_read,
2619 .write = volume_write,
2620};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002621
2622/*************************************************************************
2623 * Fan subdriver
2624 */
2625
2626/*
2627 * FAN ACCESS MODES
2628 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002629 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002630 * ACPI GFAN method: returns fan level
2631 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002632 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002633 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002634 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002635 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002636 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
2637 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002638 * EC 0x2f (HFSP) might be available *for reading*, but do not use
2639 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002640 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002641 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002642 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
2643 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002644 *
2645 * Fan speed changes of any sort (including those caused by the
2646 * disengaged mode) are usually done slowly by the firmware as the
2647 * maximum ammount of fan duty cycle change per second seems to be
2648 * limited.
2649 *
2650 * Reading is not available if GFAN exists.
2651 * Writing is not available if SFAN exists.
2652 *
2653 * Bits
2654 * 7 automatic mode engaged;
2655 * (default operation mode of the ThinkPad)
2656 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002657 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002658 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002659 * the tachometer while the fan controller ramps up
2660 * the speed (which can take up to a few *minutes*).
2661 * Speeds up fan to 100% duty-cycle, which is far above
2662 * the standard RPM levels. It is not impossible that
2663 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002664 * 5-3 unused in some models. Extra bits for fan level
2665 * in others, but still useless as all values above
2666 * 7 map to the same speed as level 7 in these models.
2667 * 2-0 fan level (0..7 usually)
2668 * 0x00 = stop
2669 * 0x07 = max (set when temperatures critical)
2670 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002671 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002672 *
2673 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
2674 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
2675 * does so, its initial value is meaningless (0x07).
2676 *
2677 * For firmware bugs, refer to:
2678 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
2679 *
2680 * ----
2681 *
2682 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
2683 * Main fan tachometer reading (in RPM)
2684 *
2685 * This register is present on all ThinkPads with a new-style EC, and
2686 * it is known not to be present on the A21m/e, and T22, as there is
2687 * something else in offset 0x84 according to the ACPI DSDT. Other
2688 * ThinkPads from this same time period (and earlier) probably lack the
2689 * tachometer as well.
2690 *
2691 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
2692 * was never fixed by IBM to report the EC firmware version string
2693 * probably support the tachometer (like the early X models), so
2694 * detecting it is quite hard. We need more data to know for sure.
2695 *
2696 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
2697 * might result.
2698 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03002699 * FIRMWARE BUG: may go stale while the EC is switching to full speed
2700 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002701 *
2702 * For firmware bugs, refer to:
2703 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
2704 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002705 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002706 * ThinkPad X31, X40, X41. Not available in the X60.
2707 *
2708 * FANS ACPI handle: takes three arguments: low speed, medium speed,
2709 * high speed. ACPI DSDT seems to map these three speeds to levels
2710 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
2711 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
2712 *
2713 * The speeds are stored on handles
2714 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
2715 *
2716 * There are three default speed sets, acessible as handles:
2717 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
2718 *
2719 * ACPI DSDT switches which set is in use depending on various
2720 * factors.
2721 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002722 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002723 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
2724 * but the ACPI tables just mention level 7.
2725 */
2726
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002727static enum fan_status_access_mode fan_status_access_mode;
2728static enum fan_control_access_mode fan_control_access_mode;
2729static enum fan_control_commands fan_control_commands;
2730
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02002731static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03002732static u8 fan_control_desired_level;
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02002733
Len Brown25c68a32006-12-08 04:43:41 -05002734static void fan_watchdog_fire(struct work_struct *ignored);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02002735static int fan_watchdog_maxinterval;
Len Brown25c68a32006-12-08 04:43:41 -05002736static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02002737
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002738IBM_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
2739IBM_HANDLE(gfan, ec, "GFAN", /* 570 */
2740 "\\FSPD", /* 600e/x, 770e, 770x */
2741 ); /* all others */
2742IBM_HANDLE(sfan, ec, "SFAN", /* 570 */
2743 "JFNS", /* 770x-JL */
2744 ); /* all others */
2745
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03002746/*
2747 * SYSFS fan layout: hwmon compatible (device)
2748 *
2749 * pwm*_enable:
2750 * 0: "disengaged" mode
2751 * 1: manual mode
2752 * 2: native EC "auto" mode (recommended, hardware default)
2753 *
2754 * pwm*: set speed in manual mode, ignored otherwise.
2755 * 0 is level 0; 255 is level 7. Intermediate points done with linear
2756 * interpolation.
2757 *
2758 * fan*_input: tachometer reading, RPM
2759 *
2760 *
2761 * SYSFS fan layout: extensions
2762 *
2763 * fan_watchdog (driver):
2764 * fan watchdog interval in seconds, 0 disables (default), max 120
2765 */
2766
2767/* sysfs fan pwm1_enable ----------------------------------------------- */
2768static ssize_t fan_pwm1_enable_show(struct device *dev,
2769 struct device_attribute *attr,
2770 char *buf)
2771{
2772 int res, mode;
2773 u8 status;
2774
2775 res = fan_get_status_safe(&status);
2776 if (res)
2777 return res;
2778
2779 if (unlikely(tp_features.fan_ctrl_status_undef)) {
2780 if (status != fan_control_initial_status) {
2781 tp_features.fan_ctrl_status_undef = 0;
2782 } else {
2783 /* Return most likely status. In fact, it
2784 * might be the only possible status */
2785 status = TP_EC_FAN_AUTO;
2786 }
2787 }
2788
2789 if (status & TP_EC_FAN_FULLSPEED) {
2790 mode = 0;
2791 } else if (status & TP_EC_FAN_AUTO) {
2792 mode = 2;
2793 } else
2794 mode = 1;
2795
2796 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
2797}
2798
2799static ssize_t fan_pwm1_enable_store(struct device *dev,
2800 struct device_attribute *attr,
2801 const char *buf, size_t count)
2802{
2803 unsigned long t;
2804 int res, level;
2805
2806 if (parse_strtoul(buf, 2, &t))
2807 return -EINVAL;
2808
2809 switch (t) {
2810 case 0:
2811 level = TP_EC_FAN_FULLSPEED;
2812 break;
2813 case 1:
2814 level = TPACPI_FAN_LAST_LEVEL;
2815 break;
2816 case 2:
2817 level = TP_EC_FAN_AUTO;
2818 break;
2819 case 3:
2820 /* reserved for software-controlled auto mode */
2821 return -ENOSYS;
2822 default:
2823 return -EINVAL;
2824 }
2825
2826 res = fan_set_level_safe(level);
2827 if (res < 0)
2828 return res;
2829
2830 fan_watchdog_reset();
2831
2832 return count;
2833}
2834
2835static struct device_attribute dev_attr_fan_pwm1_enable =
2836 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
2837 fan_pwm1_enable_show, fan_pwm1_enable_store);
2838
2839/* sysfs fan pwm1 ------------------------------------------------------ */
2840static ssize_t fan_pwm1_show(struct device *dev,
2841 struct device_attribute *attr,
2842 char *buf)
2843{
2844 int res;
2845 u8 status;
2846
2847 res = fan_get_status_safe(&status);
2848 if (res)
2849 return res;
2850
2851 if (unlikely(tp_features.fan_ctrl_status_undef)) {
2852 if (status != fan_control_initial_status) {
2853 tp_features.fan_ctrl_status_undef = 0;
2854 } else {
2855 status = TP_EC_FAN_AUTO;
2856 }
2857 }
2858
2859 if ((status &
2860 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
2861 status = fan_control_desired_level;
2862
2863 if (status > 7)
2864 status = 7;
2865
2866 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
2867}
2868
2869static ssize_t fan_pwm1_store(struct device *dev,
2870 struct device_attribute *attr,
2871 const char *buf, size_t count)
2872{
2873 unsigned long s;
2874 int rc;
2875 u8 status, newlevel;
2876
2877 if (parse_strtoul(buf, 255, &s))
2878 return -EINVAL;
2879
2880 /* scale down from 0-255 to 0-7 */
2881 newlevel = (s >> 5) & 0x07;
2882
2883 rc = mutex_lock_interruptible(&fan_mutex);
2884 if (rc < 0)
2885 return rc;
2886
2887 rc = fan_get_status(&status);
2888 if (!rc && (status &
2889 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
2890 rc = fan_set_level(newlevel);
2891 if (!rc)
2892 fan_update_desired_level(newlevel);
2893 fan_watchdog_reset();
2894 }
2895
2896 mutex_unlock(&fan_mutex);
2897 return (rc)? rc : count;
2898}
2899
2900static struct device_attribute dev_attr_fan_pwm1 =
2901 __ATTR(pwm1, S_IWUSR | S_IRUGO,
2902 fan_pwm1_show, fan_pwm1_store);
2903
2904/* sysfs fan fan1_input ------------------------------------------------ */
2905static ssize_t fan_fan1_input_show(struct device *dev,
2906 struct device_attribute *attr,
2907 char *buf)
2908{
2909 int res;
2910 unsigned int speed;
2911
2912 res = fan_get_speed(&speed);
2913 if (res < 0)
2914 return res;
2915
2916 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
2917}
2918
2919static struct device_attribute dev_attr_fan_fan1_input =
2920 __ATTR(fan1_input, S_IRUGO,
2921 fan_fan1_input_show, NULL);
2922
2923/* sysfs fan fan_watchdog (driver) ------------------------------------- */
2924static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
2925 char *buf)
2926{
2927 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
2928}
2929
2930static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
2931 const char *buf, size_t count)
2932{
2933 unsigned long t;
2934
2935 if (parse_strtoul(buf, 120, &t))
2936 return -EINVAL;
2937
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03002938 if (!fan_control_allowed)
2939 return -EPERM;
2940
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03002941 fan_watchdog_maxinterval = t;
2942 fan_watchdog_reset();
2943
2944 return count;
2945}
2946
2947static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
2948 fan_fan_watchdog_show, fan_fan_watchdog_store);
2949
2950/* --------------------------------------------------------------------- */
2951static struct attribute *fan_attributes[] = {
2952 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
2953 &dev_attr_fan_fan1_input.attr,
2954 NULL
2955};
2956
2957static const struct attribute_group fan_attr_group = {
2958 .attrs = fan_attributes,
2959};
2960
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002961static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002962{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03002963 int rc;
2964
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002965 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
2966
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002967 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002968 fan_status_access_mode = TPACPI_FAN_NONE;
2969 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002970 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02002971 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002972 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03002973 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002974
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002975 IBM_ACPIHANDLE_INIT(fans);
2976 IBM_ACPIHANDLE_INIT(gfan);
2977 IBM_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002978
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002979 if (gfan_handle) {
2980 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002981 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02002982 } else {
2983 /* all other ThinkPads: note that even old-style
2984 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02002985 if (likely(acpi_ec_read(fan_status_offset,
2986 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002987 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02002988
2989 /* In some ThinkPads, neither the EC nor the ACPI
2990 * DSDT initialize the fan status, and it ends up
2991 * being set to 0x07 when it *could* be either
2992 * 0x07 or 0x80.
2993 *
2994 * Enable for TP-1Y (T43), TP-78 (R51e),
2995 * TP-76 (R52), TP-70 (T43, R52), which are known
2996 * to be buggy. */
2997 if (fan_control_initial_status == 0x07 &&
2998 ibm_thinkpad_ec_found &&
2999 ((ibm_thinkpad_ec_found[0] == '1' &&
3000 ibm_thinkpad_ec_found[1] == 'Y') ||
3001 (ibm_thinkpad_ec_found[0] == '7' &&
3002 (ibm_thinkpad_ec_found[1] == '6' ||
3003 ibm_thinkpad_ec_found[1] == '8' ||
3004 ibm_thinkpad_ec_found[1] == '0'))
3005 )) {
3006 printk(IBM_NOTICE
3007 "fan_init: initial fan status is "
3008 "unknown, assuming it is in auto "
3009 "mode\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003010 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02003011 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003012 } else {
3013 printk(IBM_ERR
3014 "ThinkPad ACPI EC access misbehaving, "
3015 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003016 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003017 }
3018 }
3019
3020 if (sfan_handle) {
3021 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003022 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003023 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003024 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003025 } else {
3026 if (!gfan_handle) {
3027 /* gfan without sfan means no fan control */
3028 /* all other models implement TP EC 0x2f control */
3029
3030 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02003031 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003032 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003033 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003034 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003035 TPACPI_FAN_CMD_SPEED |
3036 TPACPI_FAN_CMD_LEVEL |
3037 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003038 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003039 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003040 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003041 TPACPI_FAN_CMD_LEVEL |
3042 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003043 }
3044 }
3045 }
3046
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003047 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
3048 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
3049 fan_control_access_mode != TPACPI_FAN_WR_NONE),
3050 fan_status_access_mode, fan_control_access_mode);
3051
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003052 /* fan control master switch */
3053 if (!fan_control_allowed) {
3054 fan_control_access_mode = TPACPI_FAN_WR_NONE;
3055 fan_control_commands = 0;
3056 dbg_printk(TPACPI_DBG_INIT,
3057 "fan control features disabled by parameter\n");
3058 }
3059
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003060 /* update fan_control_desired_level */
3061 if (fan_status_access_mode != TPACPI_FAN_NONE)
3062 fan_get_status_safe(NULL);
3063
3064 if (fan_status_access_mode != TPACPI_FAN_NONE ||
3065 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
3066 rc = sysfs_create_group(&tpacpi_pdev->dev.kobj,
3067 &fan_attr_group);
3068 if (!(rc < 0))
3069 rc = driver_create_file(&tpacpi_pdriver.driver,
3070 &driver_attr_fan_watchdog);
3071 if (rc < 0)
3072 return rc;
3073 return 0;
3074 } else
3075 return 1;
3076}
3077
3078/*
3079 * Call with fan_mutex held
3080 */
3081static void fan_update_desired_level(u8 status)
3082{
3083 if ((status &
3084 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
3085 if (status > 7)
3086 fan_control_desired_level = 7;
3087 else
3088 fan_control_desired_level = status;
3089 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02003090}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003091
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003092static int fan_get_status(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003093{
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003094 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003095
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02003096 /* TODO:
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003097 * Add TPACPI_FAN_RD_ACPI_FANS ? */
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02003098
Henrique de Moraes Holschuh3ef8a602006-11-24 11:47:10 -02003099 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003100 case TPACPI_FAN_RD_ACPI_GFAN:
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003101 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003102
3103 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003104 return -EIO;
3105
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003106 if (likely(status))
3107 *status = s & 0x07;
3108
3109 break;
3110
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003111 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003112 /* all except 570, 600e/x, 770e, 770x */
3113 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
3114 return -EIO;
3115
3116 if (likely(status))
3117 *status = s;
3118
3119 break;
3120
3121 default:
3122 return -ENXIO;
3123 }
3124
3125 return 0;
3126}
3127
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003128static int fan_get_status_safe(u8 *status)
3129{
3130 int rc;
3131 u8 s;
3132
3133 rc = mutex_lock_interruptible(&fan_mutex);
3134 if (rc < 0)
3135 return rc;
3136 rc = fan_get_status(&s);
3137 if (!rc)
3138 fan_update_desired_level(s);
3139 mutex_unlock(&fan_mutex);
3140
3141 if (status)
3142 *status = s;
3143
3144 return rc;
3145}
3146
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003147static void fan_exit(void)
3148{
Henrique de Moraes Holschuh99fba3f2007-04-21 11:08:44 -03003149 vdbg_printk(TPACPI_DBG_EXIT, "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003150
3151 /* FIXME: can we really do this unconditionally? */
3152 sysfs_remove_group(&tpacpi_pdev->dev.kobj, &fan_attr_group);
3153 driver_remove_file(&tpacpi_pdriver.driver, &driver_attr_fan_watchdog);
3154
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003155 cancel_delayed_work(&fan_watchdog_task);
3156 flush_scheduled_work();
3157}
3158
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003159static int fan_get_speed(unsigned int *speed)
3160{
3161 u8 hi, lo;
3162
3163 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003164 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuhc52f0aa2006-11-24 11:47:10 -02003165 /* all except 570, 600e/x, 770e, 770x */
3166 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
3167 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
3168 return -EIO;
3169
3170 if (likely(speed))
3171 *speed = (hi << 8) | lo;
3172
3173 break;
3174
3175 default:
3176 return -ENXIO;
3177 }
3178
3179 return 0;
3180}
3181
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003182static void fan_watchdog_fire(struct work_struct *ignored)
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02003183{
Henrique de Moraes Holschuh99fba3f2007-04-21 11:08:44 -03003184 int rc;
3185
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003186 printk(IBM_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuh99fba3f2007-04-21 11:08:44 -03003187 rc = fan_set_enable();
3188 if (rc < 0) {
3189 printk(IBM_ERR "fan watchdog: error %d while enabling fan, "
3190 "will try again later...\n", -rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003191 /* reschedule for later */
3192 fan_watchdog_reset();
3193 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02003194}
3195
3196static void fan_watchdog_reset(void)
3197{
3198 static int fan_watchdog_active = 0;
3199
3200 if (fan_watchdog_active)
3201 cancel_delayed_work(&fan_watchdog_task);
3202
3203 if (fan_watchdog_maxinterval > 0) {
3204 fan_watchdog_active = 1;
3205 if (!schedule_delayed_work(&fan_watchdog_task,
3206 msecs_to_jiffies(fan_watchdog_maxinterval
3207 * 1000))) {
3208 printk(IBM_ERR "failed to schedule the fan watchdog, "
3209 "watchdog will not trigger\n");
3210 }
3211 } else
3212 fan_watchdog_active = 0;
3213}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003214
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003215static int fan_set_level(int level)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003216{
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003217 if (!fan_control_allowed)
3218 return -EPERM;
3219
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003220 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003221 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003222 if (level >= 0 && level <= 7) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003223 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003224 return -EIO;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003225 } else
3226 return -EINVAL;
3227 break;
3228
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003229 case TPACPI_FAN_WR_ACPI_FANS:
3230 case TPACPI_FAN_WR_TPEC:
3231 if ((level != TP_EC_FAN_AUTO) &&
3232 (level != TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003233 ((level < 0) || (level > 7)))
3234 return -EINVAL;
3235
Henrique de Moraes Holschuheaa75712007-04-24 11:48:18 -03003236 /* safety net should the EC not support AUTO
3237 * or FULLSPEED mode bits and just ignore them */
3238 if (level & TP_EC_FAN_FULLSPEED)
3239 level |= 7; /* safety min speed 7 */
3240 else if (level & TP_EC_FAN_FULLSPEED)
3241 level |= 4; /* safety min speed 4 */
3242
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003243 if (!acpi_ec_write(fan_status_offset, level))
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003244 return -EIO;
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02003245 else
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003246 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003247 break;
3248
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003249 default:
3250 return -ENXIO;
3251 }
3252 return 0;
3253}
3254
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003255static int fan_set_level_safe(int level)
3256{
3257 int rc;
3258
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003259 if (!fan_control_allowed)
3260 return -EPERM;
3261
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003262 rc = mutex_lock_interruptible(&fan_mutex);
3263 if (rc < 0)
3264 return rc;
3265
3266 if (level == TPACPI_FAN_LAST_LEVEL)
3267 level = fan_control_desired_level;
3268
3269 rc = fan_set_level(level);
3270 if (!rc)
3271 fan_update_desired_level(level);
3272
3273 mutex_unlock(&fan_mutex);
3274 return rc;
3275}
3276
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003277static int fan_set_enable(void)
3278{
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003279 u8 s;
3280 int rc;
3281
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003282 if (!fan_control_allowed)
3283 return -EPERM;
3284
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003285 rc = mutex_lock_interruptible(&fan_mutex);
3286 if (rc < 0)
3287 return rc;
3288
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003289 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003290 case TPACPI_FAN_WR_ACPI_FANS:
3291 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003292 rc = fan_get_status(&s);
3293 if (rc < 0)
3294 break;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003295
3296 /* Don't go out of emergency fan mode */
Henrique de Moraes Holschuheaa75712007-04-24 11:48:18 -03003297 if (s != 7) {
3298 s &= 0x07;
3299 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
3300 }
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003301
3302 if (!acpi_ec_write(fan_status_offset, s))
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003303 rc = -EIO;
3304 else {
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003305 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003306 rc = 0;
3307 }
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003308 break;
3309
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003310 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003311 rc = fan_get_status(&s);
3312 if (rc < 0)
3313 break;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003314
3315 s &= 0x07;
3316
3317 /* Set fan to at least level 4 */
Henrique de Moraes Holschuheaa75712007-04-24 11:48:18 -03003318 s |= 4;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003319
3320 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003321 rc= -EIO;
3322 else
3323 rc = 0;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003324 break;
3325
3326 default:
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003327 rc = -ENXIO;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003328 }
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003329
3330 mutex_unlock(&fan_mutex);
3331 return rc;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003332}
3333
3334static int fan_set_disable(void)
3335{
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003336 int rc;
3337
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003338 if (!fan_control_allowed)
3339 return -EPERM;
3340
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003341 rc = mutex_lock_interruptible(&fan_mutex);
3342 if (rc < 0)
3343 return rc;
3344
3345 rc = 0;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003346 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003347 case TPACPI_FAN_WR_ACPI_FANS:
3348 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003349 if (!acpi_ec_write(fan_status_offset, 0x00))
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003350 rc = -EIO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003351 else {
3352 fan_control_desired_level = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003353 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003354 }
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003355 break;
3356
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003357 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003358 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003359 rc = -EIO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003360 else
3361 fan_control_desired_level = 0;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02003362 break;
3363
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003364 default:
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003365 rc = -ENXIO;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003366 }
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003367
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003368
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003369 mutex_unlock(&fan_mutex);
3370 return rc;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003371}
3372
3373static int fan_set_speed(int speed)
3374{
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003375 int rc;
3376
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003377 if (!fan_control_allowed)
3378 return -EPERM;
3379
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003380 rc = mutex_lock_interruptible(&fan_mutex);
3381 if (rc < 0)
3382 return rc;
3383
3384 rc = 0;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003385 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003386 case TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003387 if (speed >= 0 && speed <= 65535) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003388 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
3389 speed, speed, speed))
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003390 rc = -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003391 } else
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003392 rc = -EINVAL;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003393 break;
3394
3395 default:
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003396 rc = -ENXIO;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003397 }
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003398
3399 mutex_unlock(&fan_mutex);
3400 return rc;
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003401}
3402
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003403static int fan_read(char *p)
3404{
3405 int len = 0;
3406 int rc;
3407 u8 status;
3408 unsigned int speed = 0;
3409
3410 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003411 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003412 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003413 if ((rc = fan_get_status_safe(&status)) < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003414 return rc;
3415
3416 len += sprintf(p + len, "status:\t\t%s\n"
3417 "level:\t\t%d\n",
3418 (status != 0) ? "enabled" : "disabled", status);
3419 break;
3420
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003421 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003422 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003423 if ((rc = fan_get_status_safe(&status)) < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003424 return rc;
3425
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003426 if (unlikely(tp_features.fan_ctrl_status_undef)) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003427 if (status != fan_control_initial_status)
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003428 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003429 else
3430 /* Return most likely status. In fact, it
3431 * might be the only possible status */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003432 status = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003433 }
3434
3435 len += sprintf(p + len, "status:\t\t%s\n",
3436 (status != 0) ? "enabled" : "disabled");
3437
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003438 if ((rc = fan_get_speed(&speed)) < 0)
3439 return rc;
3440
3441 len += sprintf(p + len, "speed:\t\t%d\n", speed);
3442
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003443 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003444 /* Disengaged mode takes precedence */
3445 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003446 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003447 len += sprintf(p + len, "level:\t\tauto\n");
3448 else
3449 len += sprintf(p + len, "level:\t\t%d\n", status);
3450 break;
3451
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003452 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003453 default:
3454 len += sprintf(p + len, "status:\t\tnot supported\n");
3455 }
3456
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003457 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003458 len += sprintf(p + len, "commands:\tlevel <level>");
3459
3460 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003461 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003462 len += sprintf(p + len, " (<level> is 0-7)\n");
3463 break;
3464
3465 default:
3466 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003467 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003468 break;
3469 }
3470 }
3471
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003472 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003473 len += sprintf(p + len, "commands:\tenable, disable\n"
3474 "commands:\twatchdog <timeout> (<timeout> is 0 (off), "
3475 "1-120 (seconds))\n");
3476
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003477 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003478 len += sprintf(p + len, "commands:\tspeed <speed>"
3479 " (<speed> is 0-65535)\n");
3480
3481 return len;
3482}
3483
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003484static int fan_write_cmd_level(const char *cmd, int *rc)
3485{
3486 int level;
3487
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003488 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003489 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003490 else if ((strlencmp(cmd, "level disengaged") == 0) |
3491 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003492 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02003493 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003494 return 0;
3495
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03003496 if ((*rc = fan_set_level_safe(level)) == -ENXIO)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003497 printk(IBM_ERR "level command accepted for unsupported "
3498 "access mode %d", fan_control_access_mode);
3499
3500 return 1;
3501}
3502
3503static int fan_write_cmd_enable(const char *cmd, int *rc)
3504{
3505 if (strlencmp(cmd, "enable") != 0)
3506 return 0;
3507
3508 if ((*rc = fan_set_enable()) == -ENXIO)
3509 printk(IBM_ERR "enable command accepted for unsupported "
3510 "access mode %d", fan_control_access_mode);
3511
3512 return 1;
3513}
3514
3515static int fan_write_cmd_disable(const char *cmd, int *rc)
3516{
3517 if (strlencmp(cmd, "disable") != 0)
3518 return 0;
3519
3520 if ((*rc = fan_set_disable()) == -ENXIO)
3521 printk(IBM_ERR "disable command accepted for unsupported "
3522 "access mode %d", fan_control_access_mode);
3523
3524 return 1;
3525}
3526
3527static int fan_write_cmd_speed(const char *cmd, int *rc)
3528{
3529 int speed;
3530
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02003531 /* TODO:
3532 * Support speed <low> <medium> <high> ? */
3533
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003534 if (sscanf(cmd, "speed %d", &speed) != 1)
3535 return 0;
3536
3537 if ((*rc = fan_set_speed(speed)) == -ENXIO)
3538 printk(IBM_ERR "speed command accepted for unsupported "
3539 "access mode %d", fan_control_access_mode);
3540
3541 return 1;
3542}
3543
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02003544static int fan_write_cmd_watchdog(const char *cmd, int *rc)
3545{
3546 int interval;
3547
3548 if (sscanf(cmd, "watchdog %d", &interval) != 1)
3549 return 0;
3550
3551 if (interval < 0 || interval > 120)
3552 *rc = -EINVAL;
3553 else
3554 fan_watchdog_maxinterval = interval;
3555
3556 return 1;
3557}
3558
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003559static int fan_write(char *buf)
3560{
3561 char *cmd;
3562 int rc = 0;
3563
3564 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003565 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003566 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003567 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003568 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02003569 fan_write_cmd_disable(cmd, &rc) ||
3570 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003571 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003572 fan_write_cmd_speed(cmd, &rc))
3573 )
3574 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02003575 else if (!rc)
3576 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003577 }
3578
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02003579 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003580}
3581
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003582static struct ibm_struct fan_driver_data = {
3583 .name = "fan",
3584 .read = fan_read,
3585 .write = fan_write,
3586 .exit = fan_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003587};
3588
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003589/****************************************************************************
3590 ****************************************************************************
3591 *
3592 * Infrastructure
3593 *
3594 ****************************************************************************
3595 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003597/* /proc support */
3598static struct proc_dir_entry *proc_dir = NULL;
3599
3600/* Subdriver registry */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003601static LIST_HEAD(tpacpi_all_drivers);
3602
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003604/*
3605 * Module and infrastructure proble, init and exit handling
3606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003608#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003609static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003610{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003611 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003612
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003613 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003614}
3615#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
3616
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003617static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618{
3619 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003620 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 struct proc_dir_entry *entry;
3622
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003623 BUG_ON(ibm == NULL);
3624
3625 INIT_LIST_HEAD(&ibm->all_drivers);
3626
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003627 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return 0;
3629
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003630 dbg_printk(TPACPI_DBG_INIT,
3631 "probing for %s\n", ibm->name);
3632
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003633 if (iibm->init) {
3634 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003635 if (ret > 0)
3636 return 0; /* probe failed */
3637 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003639
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003640 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 }
3642
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003643 if (ibm->acpi) {
3644 if (ibm->acpi->hid) {
3645 ret = register_tpacpi_subdriver(ibm);
3646 if (ret)
3647 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003648 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003649
3650 if (ibm->acpi->notify) {
3651 ret = setup_acpi_notify(ibm);
3652 if (ret == -ENODEV) {
3653 printk(IBM_NOTICE "disabling subdriver %s\n",
3654 ibm->name);
3655 ret = 0;
3656 goto err_out;
3657 }
3658 if (ret < 0)
3659 goto err_out;
3660 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003661 }
3662
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003663 dbg_printk(TPACPI_DBG_INIT,
3664 "%s installed\n", ibm->name);
3665
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003666 if (ibm->read) {
3667 entry = create_proc_entry(ibm->name,
3668 S_IFREG | S_IRUGO | S_IWUSR,
3669 proc_dir);
3670 if (!entry) {
3671 printk(IBM_ERR "unable to create proc entry %s\n",
3672 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003673 ret = -ENODEV;
3674 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003675 }
3676 entry->owner = THIS_MODULE;
3677 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003678 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003679 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003680 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003681 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003684 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
3685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003687
3688err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003689 dbg_printk(TPACPI_DBG_INIT,
3690 "%s: at error exit path with result %d\n",
3691 ibm->name, ret);
3692
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003693 ibm_exit(ibm);
3694 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695}
3696
3697static void ibm_exit(struct ibm_struct *ibm)
3698{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003699 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003700
3701 list_del_init(&ibm->all_drivers);
3702
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003703 if (ibm->flags.acpi_notify_installed) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003704 dbg_printk(TPACPI_DBG_EXIT,
3705 "%s: acpi_remove_notify_handler\n", ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003706 BUG_ON(!ibm->acpi);
3707 acpi_remove_notify_handler(*ibm->acpi->handle,
3708 ibm->acpi->type,
3709 dispatch_acpi_notify);
3710 ibm->flags.acpi_notify_installed = 0;
3711 ibm->flags.acpi_notify_installed = 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003714 if (ibm->flags.proc_created) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003715 dbg_printk(TPACPI_DBG_EXIT,
3716 "%s: remove_proc_entry\n", ibm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 remove_proc_entry(ibm->name, proc_dir);
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003718 ibm->flags.proc_created = 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003721 if (ibm->flags.acpi_driver_registered) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003722 dbg_printk(TPACPI_DBG_EXIT,
3723 "%s: acpi_bus_unregister_driver\n", ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003724 BUG_ON(!ibm->acpi);
3725 acpi_bus_unregister_driver(ibm->acpi->driver);
3726 kfree(ibm->acpi->driver);
3727 ibm->acpi->driver = NULL;
3728 ibm->flags.acpi_driver_registered = 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003729 }
3730
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003731 if (ibm->flags.init_called && ibm->exit) {
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003732 ibm->exit();
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03003733 ibm->flags.init_called = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003735
3736 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737}
3738
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003739/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003741static char *ibm_thinkpad_ec_found = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02003743static char* __init check_dmi_for_ec(void)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02003744{
3745 struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02003746 char ec_fw_string[18];
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02003747
3748 /*
3749 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
3750 * X32 or newer, all Z series; Some models must have an
3751 * up-to-date BIOS or they will not be detected.
3752 *
3753 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
3754 */
3755 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02003756 if (sscanf(dev->name,
3757 "IBM ThinkPad Embedded Controller -[%17c",
3758 ec_fw_string) == 1) {
3759 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
3760 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
3761 return kstrdup(ec_fw_string, GFP_KERNEL);
3762 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02003763 }
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02003764 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765}
3766
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003767static int __init probe_for_thinkpad(void)
3768{
3769 int is_thinkpad;
3770
3771 if (acpi_disabled)
3772 return -ENODEV;
3773
3774 /*
3775 * Non-ancient models have better DMI tagging, but very old models
3776 * don't.
3777 */
3778 is_thinkpad = dmi_name_in_vendors("ThinkPad");
3779
3780 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003781 IBM_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003782 if (!ec_handle) {
3783 if (is_thinkpad)
3784 printk(IBM_ERR
3785 "Not yet supported ThinkPad detected!\n");
3786 return -ENODEV;
3787 }
3788
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03003789 /*
3790 * Risks a regression on very old machines, but reduces potential
3791 * false positives a damn great deal
3792 */
3793 if (!is_thinkpad)
3794 is_thinkpad = dmi_name_in_vendors("IBM");
3795
3796 if (!is_thinkpad && !force_load)
3797 return -ENODEV;
3798
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003799 return 0;
3800}
3801
3802
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003803/* Module init, exit, parameters */
3804
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003805static struct ibm_init_struct ibms_init[] __initdata = {
3806 {
3807 .init = thinkpad_acpi_driver_init,
3808 .data = &thinkpad_acpi_driver_data,
3809 },
3810 {
3811 .init = hotkey_init,
3812 .data = &hotkey_driver_data,
3813 },
3814 {
3815 .init = bluetooth_init,
3816 .data = &bluetooth_driver_data,
3817 },
3818 {
3819 .init = wan_init,
3820 .data = &wan_driver_data,
3821 },
3822 {
3823 .init = video_init,
3824 .data = &video_driver_data,
3825 },
3826 {
3827 .init = light_init,
3828 .data = &light_driver_data,
3829 },
3830#ifdef CONFIG_THINKPAD_ACPI_DOCK
3831 {
3832 .init = dock_init,
3833 .data = &dock_driver_data[0],
3834 },
3835 {
3836 .data = &dock_driver_data[1],
3837 },
3838#endif
3839#ifdef CONFIG_THINKPAD_ACPI_BAY
3840 {
3841 .init = bay_init,
3842 .data = &bay_driver_data,
3843 },
3844#endif
3845 {
3846 .init = cmos_init,
3847 .data = &cmos_driver_data,
3848 },
3849 {
3850 .init = led_init,
3851 .data = &led_driver_data,
3852 },
3853 {
3854 .init = beep_init,
3855 .data = &beep_driver_data,
3856 },
3857 {
3858 .init = thermal_init,
3859 .data = &thermal_driver_data,
3860 },
3861 {
3862 .data = &ecdump_driver_data,
3863 },
3864 {
3865 .init = brightness_init,
3866 .data = &brightness_driver_data,
3867 },
3868 {
3869 .data = &volume_driver_data,
3870 },
3871 {
3872 .init = fan_init,
3873 .data = &fan_driver_data,
3874 },
3875};
3876
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003877static int __init set_ibm_param(const char *val, struct kernel_param *kp)
3878{
3879 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003880 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003881
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003882 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
3883 ibm = ibms_init[i].data;
3884 BUG_ON(ibm == NULL);
3885
3886 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
3887 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003888 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003889 strcpy(ibms_init[i].param, val);
3890 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003891 return 0;
3892 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003893 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003894
3895 return -EINVAL;
3896}
3897
3898static int experimental;
3899module_param(experimental, int, 0);
3900
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03003901static u32 dbg_level;
3902module_param_named(debug, dbg_level, uint, 0);
3903
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03003904static int force_load;
3905module_param(force_load, int, 0);
3906
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03003907static int fan_control_allowed;
3908module_param_named(fan_control, fan_control_allowed, int, 0);
3909
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003910#define IBM_PARAM(feature) \
3911 module_param_call(feature, set_ibm_param, NULL, NULL, 0)
3912
3913IBM_PARAM(hotkey);
3914IBM_PARAM(bluetooth);
3915IBM_PARAM(video);
3916IBM_PARAM(light);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003917#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003918IBM_PARAM(dock);
3919#endif
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003920#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003921IBM_PARAM(bay);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003922#endif /* CONFIG_THINKPAD_ACPI_BAY */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003923IBM_PARAM(cmos);
3924IBM_PARAM(led);
3925IBM_PARAM(beep);
3926IBM_PARAM(ecdump);
3927IBM_PARAM(brightness);
3928IBM_PARAM(volume);
3929IBM_PARAM(fan);
3930
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03003931static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
3933 int ret, i;
3934
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03003935 /* Driver-level probe */
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003936 ret = probe_for_thinkpad();
3937 if (ret)
3938 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03003940 /* Driver initialization */
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02003941 ibm_thinkpad_ec_found = check_dmi_for_ec();
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003942 IBM_ACPIHANDLE_INIT(ecrd);
3943 IBM_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003945 proc_dir = proc_mkdir(IBM_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 if (!proc_dir) {
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003947 printk(IBM_ERR "unable to create proc dir " IBM_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03003948 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return -ENODEV;
3950 }
3951 proc_dir->owner = THIS_MODULE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003952
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03003953 ret = platform_driver_register(&tpacpi_pdriver);
3954 if (ret) {
3955 printk(IBM_ERR "unable to register platform driver\n");
3956 thinkpad_acpi_module_exit();
3957 return ret;
3958 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03003959 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
3960 if (ret) {
3961 printk(IBM_ERR "unable to create sysfs driver attributes\n");
3962 thinkpad_acpi_module_exit();
3963 return ret;
3964 }
3965
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03003966
3967 /* Device initialization */
3968 tpacpi_pdev = platform_device_register_simple(IBM_DRVR_NAME, -1,
3969 NULL, 0);
3970 if (IS_ERR(tpacpi_pdev)) {
3971 ret = PTR_ERR(tpacpi_pdev);
3972 tpacpi_pdev = NULL;
3973 printk(IBM_ERR "unable to register platform device\n");
3974 thinkpad_acpi_module_exit();
3975 return ret;
3976 }
3977 tpacpi_hwmon = hwmon_device_register(&tpacpi_pdev->dev);
3978 if (IS_ERR(tpacpi_hwmon)) {
3979 ret = PTR_ERR(tpacpi_hwmon);
3980 tpacpi_hwmon = NULL;
3981 printk(IBM_ERR "unable to register hwmon device\n");
3982 thinkpad_acpi_module_exit();
3983 return ret;
3984 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003985 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
3986 ret = ibm_init(&ibms_init[i]);
3987 if (ret >= 0 && *ibms_init[i].param)
3988 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03003990 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 return ret;
3992 }
3993 }
3994
3995 return 0;
3996}
3997
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03003998static void thinkpad_acpi_module_exit(void)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003999{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004000 struct ibm_struct *ibm, *itmp;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004001
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004002 list_for_each_entry_safe_reverse(ibm, itmp,
4003 &tpacpi_all_drivers,
4004 all_drivers) {
4005 ibm_exit(ibm);
4006 }
4007
4008 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004009
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03004010 if (tpacpi_hwmon)
4011 hwmon_device_unregister(tpacpi_hwmon);
4012
4013 if (tpacpi_pdev)
4014 platform_device_unregister(tpacpi_pdev);
4015
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03004016 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03004017 platform_driver_unregister(&tpacpi_pdriver);
4018
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004019 if (proc_dir)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004020 remove_proc_entry(IBM_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004021
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004022 kfree(ibm_thinkpad_ec_found);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004023}
4024
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03004025module_init(thinkpad_acpi_module_init);
4026module_exit(thinkpad_acpi_module_exit);