blob: 58973da1e6d122a841b20bd38cf5a9f5cf4e4dd7 [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 Holschuh6a2e2932008-01-08 13:02:56 -02006 * Copyright (C) 2006-2008 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 Holschuh68f12ae2008-04-26 01:02:30 -030024#define TPACPI_VERSION "0.20"
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -020025#define TPACPI_SYSFS_VERSION 0x020200
Borislav Deianov78f81cc2005-08-17 00:00:00 -040026
27/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Changelog:
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020029 * 2007-10-20 changelog trimmed down
30 *
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030031 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
32 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020033 *
34 * 2006-11-22 0.13 new maintainer
35 * changelog now lives in git commit history, and will
36 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030037 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040038 * 2005-03-17 0.11 support for 600e, 770x
39 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020040 *
41 * 2005-01-16 0.9 use MODULE_VERSION
Borislav Deianov78f81cc2005-08-17 00:00:00 -040042 * thanks to Henrik Brix Andersen <brix@gentoo.org>
43 * fix parameter passing on module loading
44 * thanks to Rusty Russell <rusty@rustcorp.com.au>
45 * thanks to Jim Radford <radford@blackbean.org>
46 * 2004-11-08 0.8 fix init error case, don't return from a macro
47 * thanks to Chris Wright <chrisw@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020050#include <linux/kernel.h>
51#include <linux/module.h>
52#include <linux/init.h>
53#include <linux/types.h>
54#include <linux/string.h>
55#include <linux/list.h>
56#include <linux/mutex.h>
57#include <linux/kthread.h>
58#include <linux/freezer.h>
59#include <linux/delay.h>
60
61#include <linux/nvram.h>
62#include <linux/proc_fs.h>
63#include <linux/sysfs.h>
64#include <linux/backlight.h>
65#include <linux/fb.h>
66#include <linux/platform_device.h>
67#include <linux/hwmon.h>
68#include <linux/hwmon-sysfs.h>
69#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030070#include <linux/leds.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020071#include <asm/uaccess.h>
72
73#include <linux/dmi.h>
74#include <linux/jiffies.h>
75#include <linux/workqueue.h>
76
77#include <acpi/acpi_drivers.h>
78#include <acpi/acnamesp.h>
79
80#include <linux/pci_ids.h>
81
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020082
83/* ThinkPad CMOS commands */
84#define TP_CMOS_VOLUME_DOWN 0
85#define TP_CMOS_VOLUME_UP 1
86#define TP_CMOS_VOLUME_MUTE 2
87#define TP_CMOS_BRIGHTNESS_UP 4
88#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030089#define TP_CMOS_THINKLIGHT_ON 12
90#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020091
92/* NVRAM Addresses */
93enum tp_nvram_addr {
94 TP_NVRAM_ADDR_HK2 = 0x57,
95 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
96 TP_NVRAM_ADDR_VIDEO = 0x59,
97 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
98 TP_NVRAM_ADDR_MIXER = 0x60,
99};
100
101/* NVRAM bit masks */
102enum {
103 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
104 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
105 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
106 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
107 TP_NVRAM_MASK_THINKLIGHT = 0x10,
108 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
109 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
110 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
111 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
112 TP_NVRAM_MASK_MUTE = 0x40,
113 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
114 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
115 TP_NVRAM_POS_LEVEL_VOLUME = 0,
116};
117
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200118/* ACPI HIDs */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200119#define TPACPI_ACPI_HKEY_HID "IBM0068"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200120
121/* Input IDs */
122#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
123#define TPACPI_HKEY_INPUT_VERSION 0x4101
124
125
126/****************************************************************************
127 * Main driver
128 */
129
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200130#define TPACPI_NAME "thinkpad"
131#define TPACPI_DESC "ThinkPad ACPI Extras"
132#define TPACPI_FILE TPACPI_NAME "_acpi"
133#define TPACPI_URL "http://ibm-acpi.sf.net/"
134#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200135
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200136#define TPACPI_PROC_DIR "ibm"
137#define TPACPI_ACPI_EVENT_PREFIX "ibm"
138#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300139#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200140#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200141
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300142#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300143#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300144
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200145#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200146
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200147/* Debugging */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200148#define TPACPI_LOG TPACPI_FILE ": "
149#define TPACPI_ERR KERN_ERR TPACPI_LOG
150#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
151#define TPACPI_INFO KERN_INFO TPACPI_LOG
152#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200153
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200154#define TPACPI_DBG_ALL 0xffff
155#define TPACPI_DBG_ALL 0xffff
156#define TPACPI_DBG_INIT 0x0001
157#define TPACPI_DBG_EXIT 0x0002
158#define dbg_printk(a_dbg_level, format, arg...) \
159 do { if (dbg_level & a_dbg_level) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200160 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
161 } while (0)
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200162#ifdef CONFIG_THINKPAD_ACPI_DEBUG
163#define vdbg_printk(a_dbg_level, format, arg...) \
164 dbg_printk(a_dbg_level, format, ## arg)
165static const char *str_supported(int is_supported);
166#else
167#define vdbg_printk(a_dbg_level, format, arg...)
168#endif
169
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200170#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
171#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
172#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200173
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200174
175/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200176 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200177 */
178
179struct ibm_struct;
180
181struct tp_acpi_drv_struct {
182 const struct acpi_device_id *hid;
183 struct acpi_driver *driver;
184
185 void (*notify) (struct ibm_struct *, u32);
186 acpi_handle *handle;
187 u32 type;
188 struct acpi_device *device;
189};
190
191struct ibm_struct {
192 char *name;
193
194 int (*read) (char *);
195 int (*write) (char *);
196 void (*exit) (void);
197 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200198 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200199
200 struct list_head all_drivers;
201
202 struct tp_acpi_drv_struct *acpi;
203
204 struct {
205 u8 acpi_driver_registered:1;
206 u8 acpi_notify_installed:1;
207 u8 proc_created:1;
208 u8 init_called:1;
209 u8 experimental:1;
210 } flags;
211};
212
213struct ibm_init_struct {
214 char param[32];
215
216 int (*init) (struct ibm_init_struct *);
217 struct ibm_struct *data;
218};
219
220static struct {
221#ifdef CONFIG_THINKPAD_ACPI_BAY
222 u32 bay_status:1;
223 u32 bay_eject:1;
224 u32 bay_status2:1;
225 u32 bay_eject2:1;
226#endif
227 u32 bluetooth:1;
228 u32 hotkey:1;
229 u32 hotkey_mask:1;
230 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200231 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200232 u32 light:1;
233 u32 light_status:1;
234 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300235 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200236 u32 wan:1;
237 u32 fan_ctrl_status_undef:1;
238 u32 input_device_registered:1;
239 u32 platform_drv_registered:1;
240 u32 platform_drv_attrs_registered:1;
241 u32 sensors_pdrv_registered:1;
242 u32 sensors_pdrv_attrs_registered:1;
243 u32 sensors_pdev_attrs_registered:1;
244 u32 hotkey_poll_active:1;
245} tp_features;
246
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300247static struct {
248 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -0300249 u16 bright_cmos_ec_unsync:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300250} tp_warned;
251
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200252struct thinkpad_id_data {
253 unsigned int vendor; /* ThinkPad vendor:
254 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
255
256 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
257 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
258
259 u16 bios_model; /* Big Endian, TP-1Y = 0x5931, 0 = unknown */
260 u16 ec_model;
261
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300262 char *model_str; /* ThinkPad T43 */
263 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200264};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200265static struct thinkpad_id_data thinkpad_id;
266
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300267static enum {
268 TPACPI_LIFE_INIT = 0,
269 TPACPI_LIFE_RUNNING,
270 TPACPI_LIFE_EXITING,
271} tpacpi_lifecycle;
272
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200273static int experimental;
274static u32 dbg_level;
275
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300276static struct workqueue_struct *tpacpi_wq;
277
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300278/* Special LED class that can defer work */
279struct tpacpi_led_classdev {
280 struct led_classdev led_classdev;
281 struct work_struct work;
282 enum led_brightness new_brightness;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300283 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300284};
285
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300286/****************************************************************************
287 ****************************************************************************
288 *
289 * ACPI Helpers and device model
290 *
291 ****************************************************************************
292 ****************************************************************************/
293
294/*************************************************************************
295 * ACPI basic handles
296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -0300298static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200300#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 static acpi_handle object##_handle; \
302 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400303 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 static char *object##_paths[] = { paths }
305
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200306TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400307 "\\_SB.PCI.ISA.EC", /* 570 */
308 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
309 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
310 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
311 "\\_SB.PCI0.ICH3.EC0", /* R31 */
312 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300313 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200315TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
316TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200318TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
319 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400320 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
321 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300322 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400323
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200324TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400325 "^HKEY", /* R30, R31 */
326 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300327 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400328
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200329TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
330 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
331 "\\_SB.PCI0.VID0", /* 770e */
332 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
333 "\\_SB.PCI0.AGP.VID", /* all others */
334 ); /* R30, R31 */
335
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400336
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300337/*************************************************************************
338 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200339 */
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static int acpi_evalf(acpi_handle handle,
342 void *res, char *method, char *fmt, ...)
343{
344 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400345 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200346 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400347 struct acpi_buffer result, *resultp;
348 union acpi_object out_obj;
349 acpi_status status;
350 va_list ap;
351 char res_type;
352 int success;
353 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200356 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358 }
359
360 if (*fmt == 'q') {
361 quiet = 1;
362 fmt++;
363 } else
364 quiet = 0;
365
366 res_type = *(fmt++);
367
368 params.count = 0;
369 params.pointer = &in_objs[0];
370
371 va_start(ap, fmt);
372 while (*fmt) {
373 char c = *(fmt++);
374 switch (c) {
375 case 'd': /* int */
376 in_objs[params.count].integer.value = va_arg(ap, int);
377 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
378 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400379 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200381 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 "with invalid format character '%c'\n", c);
383 return 0;
384 }
385 }
386 va_end(ap);
387
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400388 if (res_type != 'v') {
389 result.length = sizeof(out_obj);
390 result.pointer = &out_obj;
391 resultp = &result;
392 } else
393 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400395 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400398 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (res)
400 *(int *)res = out_obj.integer.value;
401 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
402 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400403 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 success = status == AE_OK;
405 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400406 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200408 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 "with invalid format character '%c'\n", res_type);
410 return 0;
411 }
412
413 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200414 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 method, fmt0, status);
416
417 return success;
418}
419
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200420static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300421{
422 int v;
423
424 if (ecrd_handle) {
425 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
426 return 0;
427 *p = v;
428 } else {
429 if (ec_read(i, p) < 0)
430 return 0;
431 }
432
433 return 1;
434}
435
436static int acpi_ec_write(int i, u8 v)
437{
438 if (ecwr_handle) {
439 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
440 return 0;
441 } else {
442 if (ec_write(i, v) < 0)
443 return 0;
444 }
445
446 return 1;
447}
448
Henrique de Moraes Holschuh013c40e2008-01-08 13:02:54 -0200449#if defined(CONFIG_THINKPAD_ACPI_DOCK) || defined(CONFIG_THINKPAD_ACPI_BAY)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300450static int _sta(acpi_handle handle)
451{
452 int status;
453
454 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
455 status = 0;
456
457 return status;
458}
Henrique de Moraes Holschuh013c40e2008-01-08 13:02:54 -0200459#endif
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300460
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300461static int issue_thinkpad_cmos_command(int cmos_cmd)
462{
463 if (!cmos_handle)
464 return -ENXIO;
465
466 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
467 return -EIO;
468
469 return 0;
470}
471
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300472/*************************************************************************
473 * ACPI device model
474 */
475
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200476#define TPACPI_ACPIHANDLE_INIT(object) \
477 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200478 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
479
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300480static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300481 acpi_handle *handle, acpi_handle parent,
482 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300483{
484 int i;
485 acpi_status status;
486
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300487 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
488 name);
489
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300490 for (i = 0; i < num_paths; i++) {
491 status = acpi_get_handle(parent, paths[i], handle);
492 if (ACPI_SUCCESS(status)) {
493 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300494 dbg_printk(TPACPI_DBG_INIT,
495 "Found ACPI handle %s for %s\n",
496 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300497 return;
498 }
499 }
500
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300501 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
502 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300503 *handle = NULL;
504}
505
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300506static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300507{
508 struct ibm_struct *ibm = data;
509
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300510 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
511 return;
512
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300513 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300514 return;
515
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300516 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300517}
518
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300519static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300520{
521 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300522 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300523
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300524 BUG_ON(!ibm->acpi);
525
526 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300527 return 0;
528
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300529 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300530 "setting up ACPI notify for %s\n", ibm->name);
531
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300532 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
533 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200534 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300535 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300536 return -ENODEV;
537 }
538
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300539 acpi_driver_data(ibm->acpi->device) = ibm;
540 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200541 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300542 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300543
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300544 status = acpi_install_notify_handler(*ibm->acpi->handle,
545 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300546 if (ACPI_FAILURE(status)) {
547 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200548 printk(TPACPI_NOTICE
549 "another device driver is already "
550 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300551 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200552 printk(TPACPI_ERR
553 "acpi_install_notify_handler(%s) failed: %d\n",
554 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300555 }
556 return -ENODEV;
557 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300558 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300559 return 0;
560}
561
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300562static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300563{
564 return 0;
565}
566
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300567static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300568{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300569 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300570
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300571 dbg_printk(TPACPI_DBG_INIT,
572 "registering %s as an ACPI driver\n", ibm->name);
573
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300574 BUG_ON(!ibm->acpi);
575
576 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
577 if (!ibm->acpi->driver) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200578 printk(TPACPI_ERR "kzalloc(ibm->driver) failed\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300579 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300580 }
581
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200582 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300583 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200584
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300585 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300586
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300587 rc = acpi_bus_register_driver(ibm->acpi->driver);
588 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200589 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200590 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300591 kfree(ibm->acpi->driver);
592 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300593 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300594 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300595
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300596 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300597}
598
599
600/****************************************************************************
601 ****************************************************************************
602 *
603 * Procfs Helpers
604 *
605 ****************************************************************************
606 ****************************************************************************/
607
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300608static int dispatch_procfs_read(char *page, char **start, off_t off,
609 int count, int *eof, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300610{
611 struct ibm_struct *ibm = data;
612 int len;
613
614 if (!ibm || !ibm->read)
615 return -EINVAL;
616
617 len = ibm->read(page);
618 if (len < 0)
619 return len;
620
621 if (len <= off + count)
622 *eof = 1;
623 *start = page + off;
624 len -= off;
625 if (len > count)
626 len = count;
627 if (len < 0)
628 len = 0;
629
630 return len;
631}
632
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300633static int dispatch_procfs_write(struct file *file,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200634 const char __user *userbuf,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300635 unsigned long count, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300636{
637 struct ibm_struct *ibm = data;
638 char *kernbuf;
639 int ret;
640
641 if (!ibm || !ibm->write)
642 return -EINVAL;
643
644 kernbuf = kmalloc(count + 2, GFP_KERNEL);
645 if (!kernbuf)
646 return -ENOMEM;
647
648 if (copy_from_user(kernbuf, userbuf, count)) {
649 kfree(kernbuf);
650 return -EFAULT;
651 }
652
653 kernbuf[count] = 0;
654 strcat(kernbuf, ",");
655 ret = ibm->write(kernbuf);
656 if (ret == 0)
657 ret = count;
658
659 kfree(kernbuf);
660
661 return ret;
662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664static char *next_cmd(char **cmds)
665{
666 char *start = *cmds;
667 char *end;
668
669 while ((end = strchr(start, ',')) && end == start)
670 start = end + 1;
671
672 if (!end)
673 return NULL;
674
675 *end = 0;
676 *cmds = end + 1;
677 return start;
678}
679
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300680
681/****************************************************************************
682 ****************************************************************************
683 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300684 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300685 *
686 ****************************************************************************
687 ****************************************************************************/
688
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -0300689static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300690static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700691static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300692static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300693static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200694static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300695
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200696static int tpacpi_suspend_handler(struct platform_device *pdev,
697 pm_message_t state)
698{
699 struct ibm_struct *ibm, *itmp;
700
701 list_for_each_entry_safe(ibm, itmp,
702 &tpacpi_all_drivers,
703 all_drivers) {
704 if (ibm->suspend)
705 (ibm->suspend)(state);
706 }
707
708 return 0;
709}
710
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300711static int tpacpi_resume_handler(struct platform_device *pdev)
712{
713 struct ibm_struct *ibm, *itmp;
714
715 list_for_each_entry_safe(ibm, itmp,
716 &tpacpi_all_drivers,
717 all_drivers) {
718 if (ibm->resume)
719 (ibm->resume)();
720 }
721
722 return 0;
723}
724
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300725static struct platform_driver tpacpi_pdriver = {
726 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200727 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300728 .owner = THIS_MODULE,
729 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200730 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300731 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300732};
733
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300734static struct platform_driver tpacpi_hwmon_pdriver = {
735 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200736 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300737 .owner = THIS_MODULE,
738 },
739};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300740
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300741/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300742 * sysfs support helpers
743 */
744
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200745struct attribute_set {
746 unsigned int members, max_members;
747 struct attribute_group group;
748};
749
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300750struct attribute_set_obj {
751 struct attribute_set s;
752 struct attribute *a;
753} __attribute__((packed));
754
755static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200756 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300757{
758 struct attribute_set_obj *sobj;
759
760 if (max_members == 0)
761 return NULL;
762
763 /* Allocates space for implicit NULL at the end too */
764 sobj = kzalloc(sizeof(struct attribute_set_obj) +
765 max_members * sizeof(struct attribute *),
766 GFP_KERNEL);
767 if (!sobj)
768 return NULL;
769 sobj->s.max_members = max_members;
770 sobj->s.group.attrs = &sobj->a;
771 sobj->s.group.name = name;
772
773 return &sobj->s;
774}
775
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200776#define destroy_attr_set(_set) \
777 kfree(_set);
778
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300779/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200780static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300781{
782 if (!s || !attr)
783 return -EINVAL;
784
785 if (s->members >= s->max_members)
786 return -ENOMEM;
787
788 s->group.attrs[s->members] = attr;
789 s->members++;
790
791 return 0;
792}
793
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200794static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300795 struct attribute **attr,
796 unsigned int count)
797{
798 int i, res;
799
800 for (i = 0; i < count; i++) {
801 res = add_to_attr_set(s, attr[i]);
802 if (res)
803 return res;
804 }
805
806 return 0;
807}
808
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200809static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300810{
811 sysfs_remove_group(kobj, &s->group);
812 destroy_attr_set(s);
813}
814
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200815#define register_attr_set_with_sysfs(_attr_set, _kobj) \
816 sysfs_create_group(_kobj, &_attr_set->group)
817
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300818static int parse_strtoul(const char *buf,
819 unsigned long max, unsigned long *value)
820{
821 char *endp;
822
Henrique de Moraes Holschuh32afbf02007-10-08 10:12:56 -0300823 while (*buf && isspace(*buf))
824 buf++;
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300825 *value = simple_strtoul(buf, &endp, 0);
826 while (*endp && isspace(*endp))
827 endp++;
828 if (*endp || *value > max)
829 return -EINVAL;
830
831 return 0;
832}
833
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300834static int __init tpacpi_query_bcl_levels(acpi_handle handle)
835{
836 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
837 union acpi_object *obj;
838 int rc;
839
840 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
841 obj = (union acpi_object *)buffer.pointer;
842 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
843 printk(TPACPI_ERR "Unknown _BCL data, "
844 "please report this to %s\n", TPACPI_MAIL);
845 rc = 0;
846 } else {
847 rc = obj->package.count;
848 }
849 } else {
850 return 0;
851 }
852
853 kfree(buffer.pointer);
854 return rc;
855}
856
857static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
858 u32 lvl, void *context, void **rv)
859{
860 char name[ACPI_PATH_SEGMENT_LENGTH];
861 struct acpi_buffer buffer = { sizeof(name), &name };
862
863 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
864 !strncmp("_BCL", name, sizeof(name) - 1)) {
865 BUG_ON(!rv || !*rv);
866 **(int **)rv = tpacpi_query_bcl_levels(handle);
867 return AE_CTRL_TERMINATE;
868 } else {
869 return AE_OK;
870 }
871}
872
873/*
874 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
875 */
876static int __init tpacpi_check_std_acpi_brightness_support(void)
877{
878 int status;
879 int bcl_levels = 0;
880 void *bcl_ptr = &bcl_levels;
881
882 if (!vid_handle) {
883 TPACPI_ACPIHANDLE_INIT(vid);
884 }
885 if (!vid_handle)
886 return 0;
887
888 /*
889 * Search for a _BCL method, and execute it. This is safe on all
890 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
891 * BIOS in ACPI backlight control mode. We do NOT have to care
892 * about calling the _BCL method in an enabled video device, any
893 * will do for our purposes.
894 */
895
896 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
897 tpacpi_acpi_walk_find_bcl, NULL,
898 &bcl_ptr);
899
900 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
901 tp_features.bright_acpimode = 1;
902 return (bcl_levels - 2);
903 }
904
905 return 0;
906}
907
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200908/*************************************************************************
909 * thinkpad-acpi driver attributes
910 */
911
912/* interface_version --------------------------------------------------- */
913static ssize_t tpacpi_driver_interface_version_show(
914 struct device_driver *drv,
915 char *buf)
916{
917 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
918}
919
920static DRIVER_ATTR(interface_version, S_IRUGO,
921 tpacpi_driver_interface_version_show, NULL);
922
923/* debug_level --------------------------------------------------------- */
924static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
925 char *buf)
926{
927 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
928}
929
930static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
931 const char *buf, size_t count)
932{
933 unsigned long t;
934
935 if (parse_strtoul(buf, 0xffff, &t))
936 return -EINVAL;
937
938 dbg_level = t;
939
940 return count;
941}
942
943static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
944 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
945
946/* version ------------------------------------------------------------- */
947static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
948 char *buf)
949{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200950 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
951 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200952}
953
954static DRIVER_ATTR(version, S_IRUGO,
955 tpacpi_driver_version_show, NULL);
956
957/* --------------------------------------------------------------------- */
958
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200959static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200960 &driver_attr_debug_level, &driver_attr_version,
961 &driver_attr_interface_version,
962};
963
964static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
965{
966 int i, res;
967
968 i = 0;
969 res = 0;
970 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
971 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
972 i++;
973 }
974
975 return res;
976}
977
978static void tpacpi_remove_driver_attributes(struct device_driver *drv)
979{
980 int i;
981
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200982 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200983 driver_remove_file(drv, tpacpi_driver_attributes[i]);
984}
985
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300986/****************************************************************************
987 ****************************************************************************
988 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300989 * Subdrivers
990 *
991 ****************************************************************************
992 ****************************************************************************/
993
994/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -0300995 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300996 */
997
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300998static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001000 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1001 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001003 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001004 (thinkpad_id.bios_version_str) ?
1005 thinkpad_id.bios_version_str : "unknown",
1006 (thinkpad_id.ec_version_str) ?
1007 thinkpad_id.ec_version_str : "unknown");
1008
1009 if (thinkpad_id.vendor && thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001010 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001011 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1012 "IBM" : ((thinkpad_id.vendor ==
1013 PCI_VENDOR_ID_LENOVO) ?
1014 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001015 thinkpad_id.model_str,
1016 (thinkpad_id.nummodel_str) ?
1017 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return 0;
1020}
1021
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03001022static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 int len = 0;
1025
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001026 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1027 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 return len;
1030}
1031
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001032static struct ibm_struct thinkpad_acpi_driver_data = {
1033 .name = "driver",
1034 .read = thinkpad_acpi_driver_read,
1035};
1036
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001037/*************************************************************************
1038 * Hotkey subdriver
1039 */
1040
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001041enum { /* hot key scan codes (derived from ACPI DSDT) */
1042 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1043 TP_ACPI_HOTKEYSCAN_FNF2,
1044 TP_ACPI_HOTKEYSCAN_FNF3,
1045 TP_ACPI_HOTKEYSCAN_FNF4,
1046 TP_ACPI_HOTKEYSCAN_FNF5,
1047 TP_ACPI_HOTKEYSCAN_FNF6,
1048 TP_ACPI_HOTKEYSCAN_FNF7,
1049 TP_ACPI_HOTKEYSCAN_FNF8,
1050 TP_ACPI_HOTKEYSCAN_FNF9,
1051 TP_ACPI_HOTKEYSCAN_FNF10,
1052 TP_ACPI_HOTKEYSCAN_FNF11,
1053 TP_ACPI_HOTKEYSCAN_FNF12,
1054 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1055 TP_ACPI_HOTKEYSCAN_FNINSERT,
1056 TP_ACPI_HOTKEYSCAN_FNDELETE,
1057 TP_ACPI_HOTKEYSCAN_FNHOME,
1058 TP_ACPI_HOTKEYSCAN_FNEND,
1059 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1060 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1061 TP_ACPI_HOTKEYSCAN_FNSPACE,
1062 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1063 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1064 TP_ACPI_HOTKEYSCAN_MUTE,
1065 TP_ACPI_HOTKEYSCAN_THINKPAD,
1066};
1067
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001068enum { /* Keys available through NVRAM polling */
1069 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1070 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1071};
1072
1073enum { /* Positions of some of the keys in hotkey masks */
1074 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1075 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1076 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1077 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1078 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1079 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1080 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1081 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1082 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1083 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1084 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1085};
1086
1087enum { /* NVRAM to ACPI HKEY group map */
1088 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1089 TP_ACPI_HKEY_ZOOM_MASK |
1090 TP_ACPI_HKEY_DISPSWTCH_MASK |
1091 TP_ACPI_HKEY_HIBERNATE_MASK,
1092 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1093 TP_ACPI_HKEY_BRGHTDWN_MASK,
1094 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1095 TP_ACPI_HKEY_VOLDWN_MASK |
1096 TP_ACPI_HKEY_MUTE_MASK,
1097};
1098
1099#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1100struct tp_nvram_state {
1101 u16 thinkpad_toggle:1;
1102 u16 zoom_toggle:1;
1103 u16 display_toggle:1;
1104 u16 thinklight_toggle:1;
1105 u16 hibernate_toggle:1;
1106 u16 displayexp_toggle:1;
1107 u16 display_state:1;
1108 u16 brightness_toggle:1;
1109 u16 volume_toggle:1;
1110 u16 mute:1;
1111
1112 u8 brightness_level;
1113 u8 volume_level;
1114};
1115
1116static struct task_struct *tpacpi_hotkey_task;
1117static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1118static int hotkey_poll_freq = 10; /* Hz */
1119static struct mutex hotkey_thread_mutex;
1120static struct mutex hotkey_thread_data_mutex;
1121static unsigned int hotkey_config_change;
1122
1123#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1124
1125#define hotkey_source_mask 0U
1126
1127#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1128
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001129static struct mutex hotkey_mutex;
1130
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001131static enum { /* Reasons for waking up */
1132 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1133 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1134 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1135} hotkey_wakeup_reason;
1136
1137static int hotkey_autosleep_ack;
1138
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001139static int hotkey_orig_status;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001140static u32 hotkey_orig_mask;
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001141static u32 hotkey_all_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001142static u32 hotkey_reserved_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001143static u32 hotkey_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001144
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001145static unsigned int hotkey_report_mode;
1146
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001147static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001148
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03001149static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001150
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001151#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1152#define HOTKEY_CONFIG_CRITICAL_START \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001153 do { \
1154 mutex_lock(&hotkey_thread_data_mutex); \
1155 hotkey_config_change++; \
1156 } while (0);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001157#define HOTKEY_CONFIG_CRITICAL_END \
1158 mutex_unlock(&hotkey_thread_data_mutex);
1159#else
1160#define HOTKEY_CONFIG_CRITICAL_START
1161#define HOTKEY_CONFIG_CRITICAL_END
1162#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1163
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001164/* HKEY.MHKG() return bits */
1165#define TP_HOTKEY_TABLET_MASK (1 << 3)
1166
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03001167static int hotkey_get_wlsw(int *status)
1168{
1169 if (!acpi_evalf(hkey_handle, status, "WLSW", "d"))
1170 return -EIO;
1171 return 0;
1172}
1173
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001174static int hotkey_get_tablet_mode(int *status)
1175{
1176 int s;
1177
1178 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
1179 return -EIO;
1180
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08001181 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
1182 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001183}
1184
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001185/*
1186 * Call with hotkey_mutex held
1187 */
1188static int hotkey_mask_get(void)
1189{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001190 u32 m = 0;
1191
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001192 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001193 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001194 return -EIO;
1195 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001196 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001197
1198 return 0;
1199}
1200
1201/*
1202 * Call with hotkey_mutex held
1203 */
1204static int hotkey_mask_set(u32 mask)
1205{
1206 int i;
1207 int rc = 0;
1208
1209 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03001210 if (!tp_warned.hotkey_mask_ff &&
1211 (mask == 0xffff || mask == 0xffffff ||
1212 mask == 0xffffffff)) {
1213 tp_warned.hotkey_mask_ff = 1;
1214 printk(TPACPI_NOTICE
1215 "setting the hotkey mask to 0x%08x is likely "
1216 "not the best way to go about it\n", mask);
1217 printk(TPACPI_NOTICE
1218 "please consider using the driver defaults, "
1219 "and refer to up-to-date thinkpad-acpi "
1220 "documentation\n");
1221 }
1222
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001223 HOTKEY_CONFIG_CRITICAL_START
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001224 for (i = 0; i < 32; i++) {
1225 u32 m = 1 << i;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001226 /* enable in firmware mask only keys not in NVRAM
1227 * mode, but enable the key in the cached hotkey_mask
1228 * regardless of mode, or the key will end up
1229 * disabled by hotkey_mask_get() */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001230 if (!acpi_evalf(hkey_handle,
1231 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001232 !!((mask & ~hotkey_source_mask) & m))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001233 rc = -EIO;
1234 break;
1235 } else {
1236 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
1237 }
1238 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001239 HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001240
1241 /* hotkey_mask_get must be called unconditionally below */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001242 if (!hotkey_mask_get() && !rc &&
1243 (hotkey_mask & ~hotkey_source_mask) !=
1244 (mask & ~hotkey_source_mask)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001245 printk(TPACPI_NOTICE
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001246 "requested hot key mask 0x%08x, but "
1247 "firmware forced it to 0x%08x\n",
1248 mask, hotkey_mask);
1249 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001250 } else {
1251#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1252 HOTKEY_CONFIG_CRITICAL_START
1253 hotkey_mask = mask & hotkey_source_mask;
1254 HOTKEY_CONFIG_CRITICAL_END
1255 hotkey_mask_get();
1256 if (hotkey_mask != mask) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001257 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001258 "requested hot key mask 0x%08x, "
1259 "forced to 0x%08x (NVRAM poll mask is "
1260 "0x%08x): no firmware mask support\n",
1261 mask, hotkey_mask, hotkey_source_mask);
1262 }
1263#else
1264 hotkey_mask_get();
1265 rc = -ENXIO;
1266#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001267 }
1268
1269 return rc;
1270}
1271
1272static int hotkey_status_get(int *status)
1273{
1274 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
1275 return -EIO;
1276
1277 return 0;
1278}
1279
1280static int hotkey_status_set(int status)
1281{
1282 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status))
1283 return -EIO;
1284
1285 return 0;
1286}
1287
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001288static void tpacpi_input_send_radiosw(void)
1289{
1290 int wlsw;
1291
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001292 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
Henrique de Moraes Holschuhd147da72008-02-16 02:17:57 -02001293 mutex_lock(&tpacpi_inputdev_send_mutex);
1294
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001295 input_report_switch(tpacpi_inputdev,
Henrique de Moraes Holschuh197a2cd2008-06-03 23:36:09 -03001296 SW_RFKILL_ALL, !!wlsw);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001297 input_sync(tpacpi_inputdev);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001298
Henrique de Moraes Holschuhd147da72008-02-16 02:17:57 -02001299 mutex_unlock(&tpacpi_inputdev_send_mutex);
1300 }
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001301}
1302
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001303static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001304{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001305 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001306
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001307 if (tp_features.hotkey_tablet &&
1308 !hotkey_get_tablet_mode(&state)) {
1309 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001310
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001311 input_report_switch(tpacpi_inputdev,
1312 SW_TABLET_MODE, !!state);
1313 input_sync(tpacpi_inputdev);
1314
1315 mutex_unlock(&tpacpi_inputdev_send_mutex);
1316 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001317}
1318
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001319static void tpacpi_input_send_key(unsigned int scancode)
1320{
1321 unsigned int keycode;
1322
1323 keycode = hotkey_keycode_map[scancode];
1324
1325 if (keycode != KEY_RESERVED) {
1326 mutex_lock(&tpacpi_inputdev_send_mutex);
1327
1328 input_report_key(tpacpi_inputdev, keycode, 1);
1329 if (keycode == KEY_UNKNOWN)
1330 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1331 scancode);
1332 input_sync(tpacpi_inputdev);
1333
1334 input_report_key(tpacpi_inputdev, keycode, 0);
1335 if (keycode == KEY_UNKNOWN)
1336 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1337 scancode);
1338 input_sync(tpacpi_inputdev);
1339
1340 mutex_unlock(&tpacpi_inputdev_send_mutex);
1341 }
1342}
1343
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001344#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1345static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
1346
1347static void tpacpi_hotkey_send_key(unsigned int scancode)
1348{
1349 tpacpi_input_send_key(scancode);
1350 if (hotkey_report_mode < 2) {
1351 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
1352 0x80, 0x1001 + scancode);
1353 }
1354}
1355
1356static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
1357{
1358 u8 d;
1359
1360 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
1361 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
1362 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
1363 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
1364 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
1365 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
1366 }
1367 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
1368 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
1369 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
1370 }
1371 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
1372 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
1373 n->displayexp_toggle =
1374 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
1375 }
1376 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
1377 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
1378 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
1379 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
1380 n->brightness_toggle =
1381 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
1382 }
1383 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
1384 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
1385 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
1386 >> TP_NVRAM_POS_LEVEL_VOLUME;
1387 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
1388 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
1389 }
1390}
1391
1392#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001393 do { \
1394 if ((mask & (1 << __scancode)) && \
1395 oldn->__member != newn->__member) \
1396 tpacpi_hotkey_send_key(__scancode); \
1397 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001398
1399#define TPACPI_MAY_SEND_KEY(__scancode) \
1400 do { if (mask & (1 << __scancode)) \
1401 tpacpi_hotkey_send_key(__scancode); } while (0)
1402
1403static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001404 struct tp_nvram_state *newn,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001405 u32 mask)
1406{
1407 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
1408 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
1409 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
1410 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
1411
1412 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
1413
1414 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
1415
1416 /* handle volume */
1417 if (oldn->volume_toggle != newn->volume_toggle) {
1418 if (oldn->mute != newn->mute) {
1419 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1420 }
1421 if (oldn->volume_level > newn->volume_level) {
1422 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1423 } else if (oldn->volume_level < newn->volume_level) {
1424 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1425 } else if (oldn->mute == newn->mute) {
1426 /* repeated key presses that didn't change state */
1427 if (newn->mute) {
1428 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1429 } else if (newn->volume_level != 0) {
1430 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1431 } else {
1432 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1433 }
1434 }
1435 }
1436
1437 /* handle brightness */
1438 if (oldn->brightness_toggle != newn->brightness_toggle) {
1439 if (oldn->brightness_level < newn->brightness_level) {
1440 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1441 } else if (oldn->brightness_level > newn->brightness_level) {
1442 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1443 } else {
1444 /* repeated key presses that didn't change state */
1445 if (newn->brightness_level != 0) {
1446 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1447 } else {
1448 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1449 }
1450 }
1451 }
1452}
1453
1454#undef TPACPI_COMPARE_KEY
1455#undef TPACPI_MAY_SEND_KEY
1456
1457static int hotkey_kthread(void *data)
1458{
1459 struct tp_nvram_state s[2];
1460 u32 mask;
1461 unsigned int si, so;
1462 unsigned long t;
1463 unsigned int change_detector, must_reset;
1464
1465 mutex_lock(&hotkey_thread_mutex);
1466
1467 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
1468 goto exit;
1469
1470 set_freezable();
1471
1472 so = 0;
1473 si = 1;
1474 t = 0;
1475
1476 /* Initial state for compares */
1477 mutex_lock(&hotkey_thread_data_mutex);
1478 change_detector = hotkey_config_change;
1479 mask = hotkey_source_mask & hotkey_mask;
1480 mutex_unlock(&hotkey_thread_data_mutex);
1481 hotkey_read_nvram(&s[so], mask);
1482
1483 while (!kthread_should_stop() && hotkey_poll_freq) {
1484 if (t == 0)
1485 t = 1000/hotkey_poll_freq;
1486 t = msleep_interruptible(t);
1487 if (unlikely(kthread_should_stop()))
1488 break;
1489 must_reset = try_to_freeze();
1490 if (t > 0 && !must_reset)
1491 continue;
1492
1493 mutex_lock(&hotkey_thread_data_mutex);
1494 if (must_reset || hotkey_config_change != change_detector) {
1495 /* forget old state on thaw or config change */
1496 si = so;
1497 t = 0;
1498 change_detector = hotkey_config_change;
1499 }
1500 mask = hotkey_source_mask & hotkey_mask;
1501 mutex_unlock(&hotkey_thread_data_mutex);
1502
1503 if (likely(mask)) {
1504 hotkey_read_nvram(&s[si], mask);
1505 if (likely(si != so)) {
1506 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001507 mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001508 }
1509 }
1510
1511 so = si;
1512 si ^= 1;
1513 }
1514
1515exit:
1516 mutex_unlock(&hotkey_thread_mutex);
1517 return 0;
1518}
1519
1520static void hotkey_poll_stop_sync(void)
1521{
1522 if (tpacpi_hotkey_task) {
1523 if (frozen(tpacpi_hotkey_task) ||
1524 freezing(tpacpi_hotkey_task))
1525 thaw_process(tpacpi_hotkey_task);
1526
1527 kthread_stop(tpacpi_hotkey_task);
1528 tpacpi_hotkey_task = NULL;
1529 mutex_lock(&hotkey_thread_mutex);
1530 /* at this point, the thread did exit */
1531 mutex_unlock(&hotkey_thread_mutex);
1532 }
1533}
1534
1535/* call with hotkey_mutex held */
1536static void hotkey_poll_setup(int may_warn)
1537{
1538 if ((hotkey_source_mask & hotkey_mask) != 0 &&
1539 hotkey_poll_freq > 0 &&
1540 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
1541 if (!tpacpi_hotkey_task) {
1542 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03001543 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001544 if (IS_ERR(tpacpi_hotkey_task)) {
1545 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001546 printk(TPACPI_ERR
1547 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001548 "for hotkey polling\n");
1549 }
1550 }
1551 } else {
1552 hotkey_poll_stop_sync();
1553 if (may_warn &&
1554 hotkey_source_mask != 0 && hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001555 printk(TPACPI_NOTICE
1556 "hot keys 0x%08x require polling, "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001557 "which is currently disabled\n",
1558 hotkey_source_mask);
1559 }
1560 }
1561}
1562
1563static void hotkey_poll_setup_safe(int may_warn)
1564{
1565 mutex_lock(&hotkey_mutex);
1566 hotkey_poll_setup(may_warn);
1567 mutex_unlock(&hotkey_mutex);
1568}
1569
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02001570#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1571
1572static void hotkey_poll_setup_safe(int __unused)
1573{
1574}
1575
1576#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1577
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001578static int hotkey_inputdev_open(struct input_dev *dev)
1579{
1580 switch (tpacpi_lifecycle) {
1581 case TPACPI_LIFE_INIT:
1582 /*
1583 * hotkey_init will call hotkey_poll_setup_safe
1584 * at the appropriate moment
1585 */
1586 return 0;
1587 case TPACPI_LIFE_EXITING:
1588 return -EBUSY;
1589 case TPACPI_LIFE_RUNNING:
1590 hotkey_poll_setup_safe(0);
1591 return 0;
1592 }
1593
1594 /* Should only happen if tpacpi_lifecycle is corrupt */
1595 BUG();
1596 return -EBUSY;
1597}
1598
1599static void hotkey_inputdev_close(struct input_dev *dev)
1600{
1601 /* disable hotkey polling when possible */
1602 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
1603 hotkey_poll_setup_safe(0);
1604}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001605
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001606/* sysfs hotkey enable ------------------------------------------------- */
1607static ssize_t hotkey_enable_show(struct device *dev,
1608 struct device_attribute *attr,
1609 char *buf)
1610{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001611 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001612
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001613 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001614 if (res)
1615 return res;
1616
1617 return snprintf(buf, PAGE_SIZE, "%d\n", status);
1618}
1619
1620static ssize_t hotkey_enable_store(struct device *dev,
1621 struct device_attribute *attr,
1622 const char *buf, size_t count)
1623{
1624 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001625 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001626
1627 if (parse_strtoul(buf, 1, &t))
1628 return -EINVAL;
1629
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001630 res = hotkey_status_set(t);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001631
1632 return (res) ? res : count;
1633}
1634
1635static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001636 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001637 hotkey_enable_show, hotkey_enable_store);
1638
1639/* sysfs hotkey mask --------------------------------------------------- */
1640static ssize_t hotkey_mask_show(struct device *dev,
1641 struct device_attribute *attr,
1642 char *buf)
1643{
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001644 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001645
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001646 if (mutex_lock_interruptible(&hotkey_mutex))
1647 return -ERESTARTSYS;
1648 res = hotkey_mask_get();
1649 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001650
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001651 return (res)?
1652 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001653}
1654
1655static ssize_t hotkey_mask_store(struct device *dev,
1656 struct device_attribute *attr,
1657 const char *buf, size_t count)
1658{
1659 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001660 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001661
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001662 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001663 return -EINVAL;
1664
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001665 if (mutex_lock_interruptible(&hotkey_mutex))
1666 return -ERESTARTSYS;
1667
1668 res = hotkey_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001669
1670#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1671 hotkey_poll_setup(1);
1672#endif
1673
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001674 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001675
1676 return (res) ? res : count;
1677}
1678
1679static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001680 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001681 hotkey_mask_show, hotkey_mask_store);
1682
1683/* sysfs hotkey bios_enabled ------------------------------------------- */
1684static ssize_t hotkey_bios_enabled_show(struct device *dev,
1685 struct device_attribute *attr,
1686 char *buf)
1687{
1688 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_orig_status);
1689}
1690
1691static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001692 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001693
1694/* sysfs hotkey bios_mask ---------------------------------------------- */
1695static ssize_t hotkey_bios_mask_show(struct device *dev,
1696 struct device_attribute *attr,
1697 char *buf)
1698{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001699 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001700}
1701
1702static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001703 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001704
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001705/* sysfs hotkey all_mask ----------------------------------------------- */
1706static ssize_t hotkey_all_mask_show(struct device *dev,
1707 struct device_attribute *attr,
1708 char *buf)
1709{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001710 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1711 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001712}
1713
1714static struct device_attribute dev_attr_hotkey_all_mask =
1715 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
1716
1717/* sysfs hotkey recommended_mask --------------------------------------- */
1718static ssize_t hotkey_recommended_mask_show(struct device *dev,
1719 struct device_attribute *attr,
1720 char *buf)
1721{
1722 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001723 (hotkey_all_mask | hotkey_source_mask)
1724 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001725}
1726
1727static struct device_attribute dev_attr_hotkey_recommended_mask =
1728 __ATTR(hotkey_recommended_mask, S_IRUGO,
1729 hotkey_recommended_mask_show, NULL);
1730
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001731#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1732
1733/* sysfs hotkey hotkey_source_mask ------------------------------------- */
1734static ssize_t hotkey_source_mask_show(struct device *dev,
1735 struct device_attribute *attr,
1736 char *buf)
1737{
1738 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
1739}
1740
1741static ssize_t hotkey_source_mask_store(struct device *dev,
1742 struct device_attribute *attr,
1743 const char *buf, size_t count)
1744{
1745 unsigned long t;
1746
1747 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
1748 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
1749 return -EINVAL;
1750
1751 if (mutex_lock_interruptible(&hotkey_mutex))
1752 return -ERESTARTSYS;
1753
1754 HOTKEY_CONFIG_CRITICAL_START
1755 hotkey_source_mask = t;
1756 HOTKEY_CONFIG_CRITICAL_END
1757
1758 hotkey_poll_setup(1);
1759
1760 mutex_unlock(&hotkey_mutex);
1761
1762 return count;
1763}
1764
1765static struct device_attribute dev_attr_hotkey_source_mask =
1766 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
1767 hotkey_source_mask_show, hotkey_source_mask_store);
1768
1769/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
1770static ssize_t hotkey_poll_freq_show(struct device *dev,
1771 struct device_attribute *attr,
1772 char *buf)
1773{
1774 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
1775}
1776
1777static ssize_t hotkey_poll_freq_store(struct device *dev,
1778 struct device_attribute *attr,
1779 const char *buf, size_t count)
1780{
1781 unsigned long t;
1782
1783 if (parse_strtoul(buf, 25, &t))
1784 return -EINVAL;
1785
1786 if (mutex_lock_interruptible(&hotkey_mutex))
1787 return -ERESTARTSYS;
1788
1789 hotkey_poll_freq = t;
1790
1791 hotkey_poll_setup(1);
1792 mutex_unlock(&hotkey_mutex);
1793
1794 return count;
1795}
1796
1797static struct device_attribute dev_attr_hotkey_poll_freq =
1798 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
1799 hotkey_poll_freq_show, hotkey_poll_freq_store);
1800
1801#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1802
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02001803/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03001804static ssize_t hotkey_radio_sw_show(struct device *dev,
1805 struct device_attribute *attr,
1806 char *buf)
1807{
1808 int res, s;
1809 res = hotkey_get_wlsw(&s);
1810 if (res < 0)
1811 return res;
1812
1813 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1814}
1815
1816static struct device_attribute dev_attr_hotkey_radio_sw =
1817 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
1818
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02001819static void hotkey_radio_sw_notify_change(void)
1820{
1821 if (tp_features.hotkey_wlsw)
1822 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1823 "hotkey_radio_sw");
1824}
1825
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001826/* sysfs hotkey tablet mode (pollable) --------------------------------- */
1827static ssize_t hotkey_tablet_mode_show(struct device *dev,
1828 struct device_attribute *attr,
1829 char *buf)
1830{
1831 int res, s;
1832 res = hotkey_get_tablet_mode(&s);
1833 if (res < 0)
1834 return res;
1835
1836 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1837}
1838
1839static struct device_attribute dev_attr_hotkey_tablet_mode =
1840 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
1841
1842static void hotkey_tablet_mode_notify_change(void)
1843{
1844 if (tp_features.hotkey_tablet)
1845 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1846 "hotkey_tablet_mode");
1847}
1848
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03001849/* sysfs hotkey report_mode -------------------------------------------- */
1850static ssize_t hotkey_report_mode_show(struct device *dev,
1851 struct device_attribute *attr,
1852 char *buf)
1853{
1854 return snprintf(buf, PAGE_SIZE, "%d\n",
1855 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
1856}
1857
1858static struct device_attribute dev_attr_hotkey_report_mode =
1859 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
1860
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02001861/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001862static ssize_t hotkey_wakeup_reason_show(struct device *dev,
1863 struct device_attribute *attr,
1864 char *buf)
1865{
1866 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
1867}
1868
1869static struct device_attribute dev_attr_hotkey_wakeup_reason =
1870 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
1871
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02001872static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02001873{
1874 if (tp_features.hotkey_mask)
1875 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1876 "wakeup_reason");
1877}
1878
1879/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001880static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
1881 struct device_attribute *attr,
1882 char *buf)
1883{
1884 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
1885}
1886
1887static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
1888 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
1889 hotkey_wakeup_hotunplug_complete_show, NULL);
1890
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02001891static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02001892{
1893 if (tp_features.hotkey_mask)
1894 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1895 "wakeup_hotunplug_complete");
1896}
1897
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001898/* --------------------------------------------------------------------- */
1899
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03001900static struct attribute *hotkey_attributes[] __initdata = {
1901 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001902 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03001903 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001904#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1905 &dev_attr_hotkey_mask.attr,
1906 &dev_attr_hotkey_all_mask.attr,
1907 &dev_attr_hotkey_recommended_mask.attr,
1908 &dev_attr_hotkey_source_mask.attr,
1909 &dev_attr_hotkey_poll_freq.attr,
1910#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03001911};
1912
1913static struct attribute *hotkey_mask_attributes[] __initdata = {
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001914 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001915#ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1916 &dev_attr_hotkey_mask.attr,
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001917 &dev_attr_hotkey_all_mask.attr,
1918 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001919#endif
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001920 &dev_attr_hotkey_wakeup_reason.attr,
1921 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001922};
1923
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03001924static void hotkey_exit(void)
1925{
1926#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1927 hotkey_poll_stop_sync();
1928#endif
1929
1930 if (hotkey_dev_attributes)
1931 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
1932
1933 kfree(hotkey_keycode_map);
1934
1935 if (tp_features.hotkey) {
1936 dbg_printk(TPACPI_DBG_EXIT,
1937 "restoring original hot key mask\n");
1938 /* no short-circuit boolean operator below! */
1939 if ((hotkey_mask_set(hotkey_orig_mask) |
1940 hotkey_status_set(hotkey_orig_status)) != 0)
1941 printk(TPACPI_ERR
1942 "failed to restore hot key mask "
1943 "to BIOS defaults\n");
1944 }
1945}
1946
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001947static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001948{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02001949 /* Requirements for changing the default keymaps:
1950 *
1951 * 1. Many of the keys are mapped to KEY_RESERVED for very
1952 * good reasons. Do not change them unless you have deep
1953 * knowledge on the IBM and Lenovo ThinkPad firmware for
1954 * the various ThinkPad models. The driver behaves
1955 * differently for KEY_RESERVED: such keys have their
1956 * hot key mask *unset* in mask_recommended, and also
1957 * in the initial hot key mask programmed into the
1958 * firmware at driver load time, which means the firm-
1959 * ware may react very differently if you change them to
1960 * something else;
1961 *
1962 * 2. You must be subscribed to the linux-thinkpad and
1963 * ibm-acpi-devel mailing lists, and you should read the
1964 * list archives since 2007 if you want to change the
1965 * keymaps. This requirement exists so that you will
1966 * know the past history of problems with the thinkpad-
1967 * acpi driver keymaps, and also that you will be
1968 * listening to any bug reports;
1969 *
1970 * 3. Do not send thinkpad-acpi specific patches directly to
1971 * for merging, *ever*. Send them to the linux-acpi
1972 * mailinglist for comments. Merging is to be done only
1973 * through acpi-test and the ACPI maintainer.
1974 *
1975 * If the above is too much to ask, don't change the keymap.
1976 * Ask the thinkpad-acpi maintainer to do it, instead.
1977 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001978 static u16 ibm_keycode_map[] __initdata = {
1979 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1980 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
1981 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1982 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02001983
1984 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001985 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1986 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1987 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02001988
1989 /* brightness: firmware always reacts to them, unless
1990 * X.org did some tricks in the radeon BIOS scratch
1991 * registers of *some* models */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02001992 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02001993 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02001994
1995 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001996 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02001997
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001998 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
1999 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002000
2001 /* Volume: firmware always react to it and reprograms
2002 * the built-in *extra* mixer. Never map it to control
2003 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002004 KEY_RESERVED, /* 0x14: VOLUME UP */
2005 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2006 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002007
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002008 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002009
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002010 /* (assignments unknown, please report if found) */
2011 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2012 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2013 };
2014 static u16 lenovo_keycode_map[] __initdata = {
2015 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
2016 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
2017 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
2018 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002019
2020 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002021 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
2022 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2023 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002024
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03002025 /* These either have to go through ACPI video, or
2026 * act like in the IBM ThinkPads, so don't ever
2027 * enable them by default */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002028 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002029 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002030
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002031 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002032
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002033 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2034 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002035
2036 /* Volume: z60/z61, T60 (BIOS version?): firmware always
2037 * react to it and reprograms the built-in *extra* mixer.
2038 * Never map it to control another mixer by default.
2039 *
2040 * T60?, T61, R60?, R61: firmware and EC tries to send
2041 * these over the regular keyboard, so these are no-ops,
2042 * but there are still weird bugs re. MUTE, so do not
2043 * change unless you get test reports from all Lenovo
2044 * models. May cause the BIOS to interfere with the
2045 * HDA mixer.
2046 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002047 KEY_RESERVED, /* 0x14: VOLUME UP */
2048 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2049 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002050
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002051 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002052
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002053 /* (assignments unknown, please report if found) */
2054 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2055 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2056 };
2057
2058#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
2059#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
2060#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
2061
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002062 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002063 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03002064 int hkeyv;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03002065
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002066 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
2067
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002068 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002069 BUG_ON(tpacpi_inputdev->open != NULL ||
2070 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002071
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002072 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002073 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002074
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002075#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2076 mutex_init(&hotkey_thread_mutex);
2077 mutex_init(&hotkey_thread_data_mutex);
2078#endif
2079
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002080 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002081 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002082
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002083 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002084 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002085
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002086 if (!tp_features.hotkey)
2087 return 1;
2088
2089 hotkey_dev_attributes = create_attr_set(13, NULL);
2090 if (!hotkey_dev_attributes)
2091 return -ENOMEM;
2092 res = add_many_to_attr_set(hotkey_dev_attributes,
2093 hotkey_attributes,
2094 ARRAY_SIZE(hotkey_attributes));
2095 if (res)
2096 goto err_exit;
2097
2098 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2099 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
2100 for HKEY interface version 0x100 */
2101 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
2102 if ((hkeyv >> 8) != 1) {
2103 printk(TPACPI_ERR "unknown version of the "
2104 "HKEY interface: 0x%x\n", hkeyv);
2105 printk(TPACPI_ERR "please report this to %s\n",
2106 TPACPI_MAIL);
2107 } else {
2108 /*
2109 * MHKV 0x100 in A31, R40, R40e,
2110 * T4x, X31, and later
2111 */
2112 tp_features.hotkey_mask = 1;
2113 }
2114 }
2115
2116 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
2117 str_supported(tp_features.hotkey_mask));
2118
2119 if (tp_features.hotkey_mask) {
2120 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
2121 "MHKA", "qd")) {
2122 printk(TPACPI_ERR
2123 "missing MHKA handler, "
2124 "please report this to %s\n",
2125 TPACPI_MAIL);
2126 /* FN+F12, FN+F4, FN+F3 */
2127 hotkey_all_mask = 0x080cU;
2128 }
2129 }
2130
2131 /* hotkey_source_mask *must* be zero for
2132 * the first hotkey_mask_get */
2133 res = hotkey_status_get(&hotkey_orig_status);
2134 if (res)
2135 goto err_exit;
2136
2137 if (tp_features.hotkey_mask) {
2138 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002139 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002140 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002141
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002142 hotkey_orig_mask = hotkey_mask;
2143 res = add_many_to_attr_set(
2144 hotkey_dev_attributes,
2145 hotkey_mask_attributes,
2146 ARRAY_SIZE(hotkey_mask_attributes));
2147 if (res)
2148 goto err_exit;
2149 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002150
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002151#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002152 if (tp_features.hotkey_mask) {
2153 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
2154 & ~hotkey_all_mask;
2155 } else {
2156 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
2157 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002158
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002159 vdbg_printk(TPACPI_DBG_INIT,
2160 "hotkey source mask 0x%08x, polling freq %d\n",
2161 hotkey_source_mask, hotkey_poll_freq);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002162#endif
2163
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002164 /* Not all thinkpads have a hardware radio switch */
2165 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
2166 tp_features.hotkey_wlsw = 1;
2167 printk(TPACPI_INFO
2168 "radio switch found; radios are %s\n",
2169 enabled(status, 0));
2170 res = add_to_attr_set(hotkey_dev_attributes,
2171 &dev_attr_hotkey_radio_sw.attr);
2172 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002173
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002174 /* For X41t, X60t, X61t Tablets... */
2175 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
2176 tp_features.hotkey_tablet = 1;
2177 printk(TPACPI_INFO
2178 "possible tablet mode switch found; "
2179 "ThinkPad in %s mode\n",
2180 (status & TP_HOTKEY_TABLET_MASK)?
2181 "tablet" : "laptop");
2182 res = add_to_attr_set(hotkey_dev_attributes,
2183 &dev_attr_hotkey_tablet_mode.attr);
2184 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002185
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002186 if (!res)
2187 res = register_attr_set_with_sysfs(
2188 hotkey_dev_attributes,
2189 &tpacpi_pdev->dev.kobj);
2190 if (res)
2191 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002192
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002193 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002194
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002195 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
2196 GFP_KERNEL);
2197 if (!hotkey_keycode_map) {
2198 printk(TPACPI_ERR
2199 "failed to allocate memory for key map\n");
2200 res = -ENOMEM;
2201 goto err_exit;
2202 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002203
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002204 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
2205 dbg_printk(TPACPI_DBG_INIT,
2206 "using Lenovo default hot key map\n");
2207 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
2208 TPACPI_HOTKEY_MAP_SIZE);
2209 } else {
2210 dbg_printk(TPACPI_DBG_INIT,
2211 "using IBM default hot key map\n");
2212 memcpy(hotkey_keycode_map, &ibm_keycode_map,
2213 TPACPI_HOTKEY_MAP_SIZE);
2214 }
2215
2216 set_bit(EV_KEY, tpacpi_inputdev->evbit);
2217 set_bit(EV_MSC, tpacpi_inputdev->evbit);
2218 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
2219 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
2220 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
2221 tpacpi_inputdev->keycode = hotkey_keycode_map;
2222 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
2223 if (hotkey_keycode_map[i] != KEY_RESERVED) {
2224 set_bit(hotkey_keycode_map[i],
2225 tpacpi_inputdev->keybit);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002226 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002227 if (i < sizeof(hotkey_reserved_mask)*8)
2228 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002229 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002230 }
2231
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002232 if (tp_features.hotkey_wlsw) {
2233 set_bit(EV_SW, tpacpi_inputdev->evbit);
2234 set_bit(SW_RFKILL_ALL, tpacpi_inputdev->swbit);
2235 }
2236 if (tp_features.hotkey_tablet) {
2237 set_bit(EV_SW, tpacpi_inputdev->evbit);
2238 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002239 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002240
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002241 /* Do not issue duplicate brightness change events to
2242 * userspace */
2243 if (!tp_features.bright_acpimode)
2244 /* update bright_acpimode... */
2245 tpacpi_check_std_acpi_brightness_support();
2246
2247 if (tp_features.bright_acpimode) {
2248 printk(TPACPI_INFO
2249 "This ThinkPad has standard ACPI backlight "
2250 "brightness control, supported by the ACPI "
2251 "video driver\n");
2252 printk(TPACPI_NOTICE
2253 "Disabling thinkpad-acpi brightness events "
2254 "by default...\n");
2255
2256 /* The hotkey_reserved_mask change below is not
2257 * necessary while the keys are at KEY_RESERVED in the
2258 * default map, but better safe than sorry, leave it
2259 * here as a marker of what we have to do, especially
2260 * when we finally become able to set this at runtime
2261 * on response to X.org requests */
2262 hotkey_reserved_mask |=
2263 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
2264 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002265 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002266
2267 dbg_printk(TPACPI_DBG_INIT, "enabling hot key handling\n");
2268 res = hotkey_status_set(1);
2269 if (res) {
2270 hotkey_exit();
2271 return res;
2272 }
2273 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
2274 & ~hotkey_reserved_mask)
2275 | hotkey_orig_mask);
2276 if (res < 0 && res != -ENXIO) {
2277 hotkey_exit();
2278 return res;
2279 }
2280
2281 dbg_printk(TPACPI_DBG_INIT,
2282 "legacy hot key reporting over procfs %s\n",
2283 (hotkey_report_mode < 2) ?
2284 "enabled" : "disabled");
2285
2286 tpacpi_inputdev->open = &hotkey_inputdev_open;
2287 tpacpi_inputdev->close = &hotkey_inputdev_close;
2288
2289 hotkey_poll_setup_safe(1);
2290 tpacpi_input_send_radiosw();
2291 tpacpi_input_send_tabletsw();
2292
2293 return 0;
2294
2295err_exit:
2296 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2297 hotkey_dev_attributes = NULL;
2298
2299 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002300}
2301
2302static void hotkey_notify(struct ibm_struct *ibm, u32 event)
2303{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002304 u32 hkey;
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002305 unsigned int scancode;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002306 int send_acpi_ev;
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002307 int ignore_acpi_ev;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002308 int unk_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002309
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002310 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002311 printk(TPACPI_ERR
2312 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002313 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002314 acpi_bus_generate_netlink_event(
2315 ibm->acpi->device->pnp.device_class,
2316 ibm->acpi->device->dev.bus_id,
2317 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002318 return;
2319 }
2320
2321 while (1) {
2322 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002323 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002324 return;
2325 }
2326
2327 if (hkey == 0) {
2328 /* queue empty */
2329 return;
2330 }
2331
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002332 send_acpi_ev = 1;
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002333 ignore_acpi_ev = 0;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002334 unk_ev = 0;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002335
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002336 switch (hkey >> 12) {
2337 case 1:
2338 /* 0x1000-0x1FFF: key presses */
2339 scancode = hkey & 0xfff;
2340 if (scancode > 0 && scancode < 0x21) {
2341 scancode--;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002342 if (!(hotkey_source_mask & (1 << scancode))) {
2343 tpacpi_input_send_key(scancode);
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002344 send_acpi_ev = 0;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002345 } else {
2346 ignore_acpi_ev = 1;
2347 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002348 } else {
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002349 unk_ev = 1;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002350 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002351 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002352 case 2:
2353 /* Wakeup reason */
2354 switch (hkey) {
2355 case 0x2304: /* suspend, undock */
2356 case 0x2404: /* hibernation, undock */
2357 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
2358 ignore_acpi_ev = 1;
2359 break;
2360 case 0x2305: /* suspend, bay eject */
2361 case 0x2405: /* hibernation, bay eject */
2362 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
2363 ignore_acpi_ev = 1;
2364 break;
2365 default:
2366 unk_ev = 1;
2367 }
2368 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
2369 printk(TPACPI_INFO
2370 "woke up due to a hot-unplug "
2371 "request...\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002372 hotkey_wakeup_reason_notify_change();
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002373 }
2374 break;
2375 case 3:
2376 /* bay-related wakeups */
2377 if (hkey == 0x3003) {
2378 hotkey_autosleep_ack = 1;
2379 printk(TPACPI_INFO
2380 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002381 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002382 } else {
2383 unk_ev = 1;
2384 }
2385 break;
2386 case 4:
2387 /* dock-related wakeups */
2388 if (hkey == 0x4003) {
2389 hotkey_autosleep_ack = 1;
2390 printk(TPACPI_INFO
2391 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002392 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002393 } else {
2394 unk_ev = 1;
2395 }
2396 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002397 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02002398 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002399 switch (hkey) {
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02002400 case 0x5010: /* Lenovo new BIOS: brightness changed */
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02002401 case 0x500b: /* X61t: tablet pen inserted into bay */
2402 case 0x500c: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002403 break;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002404 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
2405 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
2406 tpacpi_input_send_tabletsw();
2407 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002408 send_acpi_ev = 0;
2409 break;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002410 case 0x5001:
2411 case 0x5002:
2412 /* LID switch events. Do not propagate */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002413 ignore_acpi_ev = 1;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002414 break;
2415 default:
2416 unk_ev = 1;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002417 }
2418 break;
2419 case 7:
2420 /* 0x7000-0x7FFF: misc */
2421 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
2422 tpacpi_input_send_radiosw();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002423 hotkey_radio_sw_notify_change();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002424 send_acpi_ev = 0;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002425 break;
2426 }
2427 /* fallthrough to default */
2428 default:
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002429 unk_ev = 1;
2430 }
2431 if (unk_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002432 printk(TPACPI_NOTICE
2433 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002434 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002435
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002436 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002437 if (!ignore_acpi_ev &&
2438 (send_acpi_ev || hotkey_report_mode < 2)) {
2439 acpi_bus_generate_proc_event(ibm->acpi->device,
2440 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002441 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002442
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002443 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002444 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002445 acpi_bus_generate_netlink_event(
2446 ibm->acpi->device->pnp.device_class,
2447 ibm->acpi->device->dev.bus_id,
2448 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002449 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002450 }
2451}
2452
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002453static void hotkey_suspend(pm_message_t state)
2454{
2455 /* Do these on suspend, we get the events on early resume! */
2456 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
2457 hotkey_autosleep_ack = 0;
2458}
2459
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002460static void hotkey_resume(void)
2461{
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002462 if (hotkey_mask_get())
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002463 printk(TPACPI_ERR
2464 "error while trying to read hot key mask "
2465 "from firmware\n");
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002466 tpacpi_input_send_radiosw();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002467 hotkey_radio_sw_notify_change();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002468 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002469 hotkey_wakeup_reason_notify_change();
2470 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002471 hotkey_poll_setup_safe(0);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002472}
2473
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002474/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002475static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002477 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 int len = 0;
2479
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002480 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002481 len += sprintf(p + len, "status:\t\tnot supported\n");
2482 return len;
2483 }
2484
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02002485 if (mutex_lock_interruptible(&hotkey_mutex))
2486 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002487 res = hotkey_status_get(&status);
2488 if (!res)
2489 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002490 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03002491 if (res)
2492 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002495 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002496 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 len += sprintf(p + len,
2498 "commands:\tenable, disable, reset, <mask>\n");
2499 } else {
2500 len += sprintf(p + len, "mask:\t\tnot supported\n");
2501 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
2502 }
2503
2504 return len;
2505}
2506
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002507static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002509 int res, status;
2510 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002513 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return -ENODEV;
2515
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02002516 if (mutex_lock_interruptible(&hotkey_mutex))
2517 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002518
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002519 status = -1;
2520 mask = hotkey_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002521
2522 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 while ((cmd = next_cmd(&buf))) {
2524 if (strlencmp(cmd, "enable") == 0) {
2525 status = 1;
2526 } else if (strlencmp(cmd, "disable") == 0) {
2527 status = 0;
2528 } else if (strlencmp(cmd, "reset") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002529 status = hotkey_orig_status;
2530 mask = hotkey_orig_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
2532 /* mask set */
2533 } else if (sscanf(cmd, "%x", &mask) == 1) {
2534 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002535 } else {
2536 res = -EINVAL;
2537 goto errexit;
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002540 if (status != -1)
2541 res = hotkey_status_set(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002543 if (!res && mask != hotkey_mask)
2544 res = hotkey_mask_set(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002546errexit:
2547 mutex_unlock(&hotkey_mutex);
2548 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002551static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002552 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002553 {"", 0},
2554};
2555
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002556static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002557 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002558 .notify = hotkey_notify,
2559 .handle = &hkey_handle,
2560 .type = ACPI_DEVICE_NOTIFY,
2561};
2562
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002563static struct ibm_struct hotkey_driver_data = {
2564 .name = "hotkey",
2565 .read = hotkey_read,
2566 .write = hotkey_write,
2567 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002568 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002569 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002570 .acpi = &ibm_hotkey_acpidriver,
2571};
2572
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002573/*************************************************************************
2574 * Bluetooth subdriver
2575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002577enum {
2578 /* ACPI GBDC/SBDC bits */
2579 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
2580 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
2581 TP_ACPI_BLUETOOTH_UNK = 0x04, /* unknown function */
2582};
2583
2584static int bluetooth_get_radiosw(void);
2585static int bluetooth_set_radiosw(int radio_on);
2586
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002587/* sysfs bluetooth enable ---------------------------------------------- */
2588static ssize_t bluetooth_enable_show(struct device *dev,
2589 struct device_attribute *attr,
2590 char *buf)
2591{
2592 int status;
2593
2594 status = bluetooth_get_radiosw();
2595 if (status < 0)
2596 return status;
2597
2598 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2599}
2600
2601static ssize_t bluetooth_enable_store(struct device *dev,
2602 struct device_attribute *attr,
2603 const char *buf, size_t count)
2604{
2605 unsigned long t;
2606 int res;
2607
2608 if (parse_strtoul(buf, 1, &t))
2609 return -EINVAL;
2610
2611 res = bluetooth_set_radiosw(t);
2612
2613 return (res) ? res : count;
2614}
2615
2616static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002617 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002618 bluetooth_enable_show, bluetooth_enable_store);
2619
2620/* --------------------------------------------------------------------- */
2621
2622static struct attribute *bluetooth_attributes[] = {
2623 &dev_attr_bluetooth_enable.attr,
2624 NULL
2625};
2626
2627static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002628 .attrs = bluetooth_attributes,
2629};
2630
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002631static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002633 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002634 int status = 0;
2635
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002636 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
2637
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002638 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002639
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002640 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2641 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002642 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002643 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002645 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
2646 str_supported(tp_features.bluetooth),
2647 status);
2648
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002649 if (tp_features.bluetooth) {
2650 if (!(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
2651 /* no bluetooth hardware present in system */
2652 tp_features.bluetooth = 0;
2653 dbg_printk(TPACPI_DBG_INIT,
2654 "bluetooth hardware not installed\n");
2655 } else {
2656 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2657 &bluetooth_attr_group);
2658 if (res)
2659 return res;
2660 }
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002661 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002662
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002663 return (tp_features.bluetooth)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002666static void bluetooth_exit(void)
2667{
2668 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2669 &bluetooth_attr_group);
2670}
2671
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002672static int bluetooth_get_radiosw(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
2674 int status;
2675
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002676 if (!tp_features.bluetooth)
2677 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002679 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2680 return -EIO;
2681
2682 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0);
2683}
2684
2685static int bluetooth_set_radiosw(int radio_on)
2686{
2687 int status;
2688
2689 if (!tp_features.bluetooth)
2690 return -ENODEV;
2691
2692 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2693 return -EIO;
2694 if (radio_on)
2695 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
2696 else
2697 status &= ~TP_ACPI_BLUETOOTH_RADIOSSW;
2698 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
2699 return -EIO;
2700
2701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002704/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002705static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
2707 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002708 int status = bluetooth_get_radiosw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002710 if (!tp_features.bluetooth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 len += sprintf(p + len, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002713 len += sprintf(p + len, "status:\t\t%s\n",
2714 (status)? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 len += sprintf(p + len, "commands:\tenable, disable\n");
2716 }
2717
2718 return len;
2719}
2720
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002721static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002725 if (!tp_features.bluetooth)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002726 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 while ((cmd = next_cmd(&buf))) {
2729 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002730 bluetooth_set_radiosw(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002732 bluetooth_set_radiosw(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 } else
2734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 }
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return 0;
2738}
2739
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002740static struct ibm_struct bluetooth_driver_data = {
2741 .name = "bluetooth",
2742 .read = bluetooth_read,
2743 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002744 .exit = bluetooth_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002745};
2746
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002747/*************************************************************************
2748 * Wan subdriver
2749 */
2750
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002751enum {
2752 /* ACPI GWAN/SWAN bits */
2753 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
2754 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
2755 TP_ACPI_WANCARD_UNK = 0x04, /* unknown function */
2756};
2757
2758static int wan_get_radiosw(void);
2759static int wan_set_radiosw(int radio_on);
2760
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002761/* sysfs wan enable ---------------------------------------------------- */
2762static ssize_t wan_enable_show(struct device *dev,
2763 struct device_attribute *attr,
2764 char *buf)
2765{
2766 int status;
2767
2768 status = wan_get_radiosw();
2769 if (status < 0)
2770 return status;
2771
2772 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2773}
2774
2775static ssize_t wan_enable_store(struct device *dev,
2776 struct device_attribute *attr,
2777 const char *buf, size_t count)
2778{
2779 unsigned long t;
2780 int res;
2781
2782 if (parse_strtoul(buf, 1, &t))
2783 return -EINVAL;
2784
2785 res = wan_set_radiosw(t);
2786
2787 return (res) ? res : count;
2788}
2789
2790static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002791 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002792 wan_enable_show, wan_enable_store);
2793
2794/* --------------------------------------------------------------------- */
2795
2796static struct attribute *wan_attributes[] = {
2797 &dev_attr_wan_enable.attr,
2798 NULL
2799};
2800
2801static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002802 .attrs = wan_attributes,
2803};
2804
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002805static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002806{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002807 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002808 int status = 0;
2809
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002810 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
2811
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002812 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002813
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002814 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002815 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002816
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002817 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
2818 str_supported(tp_features.wan),
2819 status);
2820
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002821 if (tp_features.wan) {
2822 if (!(status & TP_ACPI_WANCARD_HWPRESENT)) {
2823 /* no wan hardware present in system */
2824 tp_features.wan = 0;
2825 dbg_printk(TPACPI_DBG_INIT,
2826 "wan hardware not installed\n");
2827 } else {
2828 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2829 &wan_attr_group);
2830 if (res)
2831 return res;
2832 }
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002833 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002834
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002835 return (tp_features.wan)? 0 : 1;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002836}
2837
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002838static void wan_exit(void)
2839{
2840 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2841 &wan_attr_group);
2842}
2843
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002844static int wan_get_radiosw(void)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002845{
2846 int status;
2847
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002848 if (!tp_features.wan)
2849 return -ENODEV;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002850
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002851 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2852 return -EIO;
2853
2854 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0);
2855}
2856
2857static int wan_set_radiosw(int radio_on)
2858{
2859 int status;
2860
2861 if (!tp_features.wan)
2862 return -ENODEV;
2863
2864 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2865 return -EIO;
2866 if (radio_on)
2867 status |= TP_ACPI_WANCARD_RADIOSSW;
2868 else
2869 status &= ~TP_ACPI_WANCARD_RADIOSSW;
2870 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
2871 return -EIO;
2872
2873 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002874}
2875
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002876/* procfs -------------------------------------------------------------- */
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002877static int wan_read(char *p)
2878{
2879 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002880 int status = wan_get_radiosw();
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002881
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002882 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002883 len += sprintf(p + len, "status:\t\tnot supported\n");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002884 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002885 len += sprintf(p + len, "status:\t\t%s\n",
2886 (status)? "enabled" : "disabled");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002887 len += sprintf(p + len, "commands:\tenable, disable\n");
2888 }
2889
2890 return len;
2891}
2892
2893static int wan_write(char *buf)
2894{
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002895 char *cmd;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002896
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002897 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002898 return -ENODEV;
2899
2900 while ((cmd = next_cmd(&buf))) {
2901 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002902 wan_set_radiosw(1);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002903 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03002904 wan_set_radiosw(0);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002905 } else
2906 return -EINVAL;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002907 }
2908
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04002909 return 0;
2910}
2911
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002912static struct ibm_struct wan_driver_data = {
2913 .name = "wan",
2914 .read = wan_read,
2915 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03002916 .exit = wan_exit,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03002917 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002918};
2919
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002920/*************************************************************************
2921 * Video subdriver
2922 */
2923
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02002924#ifdef CONFIG_THINKPAD_ACPI_VIDEO
2925
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002926enum video_access_mode {
2927 TPACPI_VIDEO_NONE = 0,
2928 TPACPI_VIDEO_570, /* 570 */
2929 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
2930 TPACPI_VIDEO_NEW, /* all others */
2931};
2932
2933enum { /* video status flags, based on VIDEO_570 */
2934 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
2935 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
2936 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
2937};
2938
2939enum { /* TPACPI_VIDEO_570 constants */
2940 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
2941 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
2942 * video_status_flags */
2943 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
2944 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
2945};
2946
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02002947static enum video_access_mode video_supported;
2948static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002949
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002950static int video_autosw_get(void);
2951static int video_autosw_set(int enable);
2952
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002953TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002954
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002955static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002957 int ivga;
2958
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002959 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
2960
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002961 TPACPI_ACPIHANDLE_INIT(vid);
2962 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002963
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002964 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
2965 /* G41, assume IVGA doesn't change */
2966 vid_handle = vid2_handle;
2967
2968 if (!vid_handle)
2969 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002970 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002971 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
2972 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002973 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002974 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
2975 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002976 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002977 else
2978 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03002979 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002981 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
2982 str_supported(video_supported != TPACPI_VIDEO_NONE),
2983 video_supported);
2984
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002985 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002988static void video_exit(void)
2989{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03002990 dbg_printk(TPACPI_DBG_EXIT,
2991 "restoring original video autoswitch mode\n");
2992 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002993 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03002994 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002995}
2996
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03002997static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
2999 int status = 0;
3000 int i;
3001
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003002 switch (video_supported) {
3003 case TPACPI_VIDEO_570:
3004 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
3005 TP_ACPI_VIDEO_570_PHSCMD))
3006 return -EIO;
3007 status = i & TP_ACPI_VIDEO_570_PHSMASK;
3008 break;
3009 case TPACPI_VIDEO_770:
3010 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
3011 return -EIO;
3012 if (i)
3013 status |= TP_ACPI_VIDEO_S_LCD;
3014 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
3015 return -EIO;
3016 if (i)
3017 status |= TP_ACPI_VIDEO_S_CRT;
3018 break;
3019 case TPACPI_VIDEO_NEW:
3020 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
3021 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
3022 return -EIO;
3023 if (i)
3024 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003026 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
3027 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
3028 return -EIO;
3029 if (i)
3030 status |= TP_ACPI_VIDEO_S_LCD;
3031 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
3032 return -EIO;
3033 if (i)
3034 status |= TP_ACPI_VIDEO_S_DVI;
3035 break;
3036 default:
3037 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 return status;
3041}
3042
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003043static int video_outputsw_set(int status)
3044{
3045 int autosw;
3046 int res = 0;
3047
3048 switch (video_supported) {
3049 case TPACPI_VIDEO_570:
3050 res = acpi_evalf(NULL, NULL,
3051 "\\_SB.PHS2", "vdd",
3052 TP_ACPI_VIDEO_570_PHS2CMD,
3053 status | TP_ACPI_VIDEO_570_PHS2SET);
3054 break;
3055 case TPACPI_VIDEO_770:
3056 autosw = video_autosw_get();
3057 if (autosw < 0)
3058 return autosw;
3059
3060 res = video_autosw_set(1);
3061 if (res)
3062 return res;
3063 res = acpi_evalf(vid_handle, NULL,
3064 "ASWT", "vdd", status * 0x100, 0);
3065 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003066 printk(TPACPI_ERR
3067 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003068 return -EIO;
3069 }
3070 break;
3071 case TPACPI_VIDEO_NEW:
3072 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003073 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003074 break;
3075 default:
3076 return -ENOSYS;
3077 }
3078
3079 return (res)? 0 : -EIO;
3080}
3081
3082static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003084 int autosw = 0;
3085
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003086 switch (video_supported) {
3087 case TPACPI_VIDEO_570:
3088 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
3089 return -EIO;
3090 break;
3091 case TPACPI_VIDEO_770:
3092 case TPACPI_VIDEO_NEW:
3093 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
3094 return -EIO;
3095 break;
3096 default:
3097 return -ENOSYS;
3098 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003099
3100 return autosw & 1;
3101}
3102
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003103static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003104{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003105 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003106 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003107 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003108}
3109
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003110static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003111{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003112 int autosw = video_autosw_get();
3113 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003114
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003115 if (autosw < 0)
3116 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003117
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003118 switch (video_supported) {
3119 case TPACPI_VIDEO_570:
3120 res = video_autosw_set(1);
3121 if (res)
3122 return res;
3123 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
3124 break;
3125 case TPACPI_VIDEO_770:
3126 case TPACPI_VIDEO_NEW:
3127 res = video_autosw_set(1);
3128 if (res)
3129 return res;
3130 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
3131 break;
3132 default:
3133 return -ENOSYS;
3134 }
3135 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003136 printk(TPACPI_ERR
3137 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003138 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003139 }
3140
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003141 return (res)? 0 : -EIO;
3142}
3143
3144static int video_expand_toggle(void)
3145{
3146 switch (video_supported) {
3147 case TPACPI_VIDEO_570:
3148 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
3149 0 : -EIO;
3150 case TPACPI_VIDEO_770:
3151 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
3152 0 : -EIO;
3153 case TPACPI_VIDEO_NEW:
3154 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
3155 0 : -EIO;
3156 default:
3157 return -ENOSYS;
3158 }
3159 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003160}
3161
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003162static int video_read(char *p)
3163{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003164 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003165 int len = 0;
3166
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003167 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003168 len += sprintf(p + len, "status:\t\tnot supported\n");
3169 return len;
3170 }
3171
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003172 status = video_outputsw_get();
3173 if (status < 0)
3174 return status;
3175
3176 autosw = video_autosw_get();
3177 if (autosw < 0)
3178 return autosw;
3179
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003180 len += sprintf(p + len, "status:\t\tsupported\n");
3181 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
3182 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003183 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003184 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
3185 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
3186 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
3187 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003188 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003189 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
3190 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
3191 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
3192
3193 return len;
3194}
3195
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003196static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
3198 char *cmd;
3199 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003200 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003202 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003203 return -ENODEV;
3204
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003205 enable = 0;
3206 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
3208 while ((cmd = next_cmd(&buf))) {
3209 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003210 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003212 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003214 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003216 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003217 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003218 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003219 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003220 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003221 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003222 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003224 res = video_autosw_set(1);
3225 if (res)
3226 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003228 res = video_autosw_set(0);
3229 if (res)
3230 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003232 res = video_outputsw_cycle();
3233 if (res)
3234 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003236 res = video_expand_toggle();
3237 if (res)
3238 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 } else
3240 return -EINVAL;
3241 }
3242
3243 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003244 status = video_outputsw_get();
3245 if (status < 0)
3246 return status;
3247 res = video_outputsw_set((status & ~disable) | enable);
3248 if (res)
3249 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 }
3251
3252 return 0;
3253}
3254
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003255static struct ibm_struct video_driver_data = {
3256 .name = "video",
3257 .read = video_read,
3258 .write = video_write,
3259 .exit = video_exit,
3260};
3261
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02003262#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
3263
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003264/*************************************************************************
3265 * Light (thinklight) subdriver
3266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003268TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
3269TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003270
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003271static int light_get_status(void)
3272{
3273 int status = 0;
3274
3275 if (tp_features.light_status) {
3276 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
3277 return -EIO;
3278 return (!!status);
3279 }
3280
3281 return -ENXIO;
3282}
3283
3284static int light_set_status(int status)
3285{
3286 int rc;
3287
3288 if (tp_features.light) {
3289 if (cmos_handle) {
3290 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
3291 (status)?
3292 TP_CMOS_THINKLIGHT_ON :
3293 TP_CMOS_THINKLIGHT_OFF);
3294 } else {
3295 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
3296 (status)? 1 : 0);
3297 }
3298 return (rc)? 0 : -EIO;
3299 }
3300
3301 return -ENXIO;
3302}
3303
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003304static void light_set_status_worker(struct work_struct *work)
3305{
3306 struct tpacpi_led_classdev *data =
3307 container_of(work, struct tpacpi_led_classdev, work);
3308
3309 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
3310 light_set_status((data->new_brightness != LED_OFF));
3311}
3312
3313static void light_sysfs_set(struct led_classdev *led_cdev,
3314 enum led_brightness brightness)
3315{
3316 struct tpacpi_led_classdev *data =
3317 container_of(led_cdev,
3318 struct tpacpi_led_classdev,
3319 led_classdev);
3320 data->new_brightness = brightness;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03003321 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003322}
3323
3324static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
3325{
3326 return (light_get_status() == 1)? LED_FULL : LED_OFF;
3327}
3328
3329static struct tpacpi_led_classdev tpacpi_led_thinklight = {
3330 .led_classdev = {
3331 .name = "tpacpi::thinklight",
3332 .brightness_set = &light_sysfs_set,
3333 .brightness_get = &light_sysfs_get,
3334 }
3335};
3336
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003337static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003339 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003340
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003341 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
3342
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003343 TPACPI_ACPIHANDLE_INIT(ledb);
3344 TPACPI_ACPIHANDLE_INIT(lght);
3345 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003346 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003347
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003348 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003349 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003350
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003351 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003352 /* light status not supported on
3353 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003354 tp_features.light_status =
3355 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003357 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
3358 str_supported(tp_features.light),
3359 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003360
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003361 if (!tp_features.light)
3362 return 1;
3363
3364 rc = led_classdev_register(&tpacpi_pdev->dev,
3365 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003366
3367 if (rc < 0) {
3368 tp_features.light = 0;
3369 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003370 } else {
3371 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003372 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003373
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003374 return rc;
3375}
3376
3377static void light_exit(void)
3378{
3379 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
3380 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03003381 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382}
3383
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003384static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385{
3386 int len = 0;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003387 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003389 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003390 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003391 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003392 len += sprintf(p + len, "status:\t\tunknown\n");
3393 len += sprintf(p + len, "commands:\ton, off\n");
3394 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003395 status = light_get_status();
3396 if (status < 0)
3397 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003399 len += sprintf(p + len, "commands:\ton, off\n");
3400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 return len;
3403}
3404
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003405static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003408 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003409
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003410 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003411 return -ENODEV;
3412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 while ((cmd = next_cmd(&buf))) {
3414 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003415 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003417 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 } else
3419 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 }
3421
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003422 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423}
3424
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003425static struct ibm_struct light_driver_data = {
3426 .name = "light",
3427 .read = light_read,
3428 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03003429 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003430};
3431
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003432/*************************************************************************
3433 * Dock subdriver
3434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003436#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003437
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003438static void dock_notify(struct ibm_struct *ibm, u32 event);
3439static int dock_read(char *p);
3440static int dock_write(char *buf);
3441
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003442TPACPI_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003443 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
3444 "\\_SB.PCI0.PCI1.DOCK", /* all others */
3445 "\\_SB.PCI.ISA.SLCE", /* 570 */
3446 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
3447
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003448/* don't list other alternatives as we install a notify handler on the 570 */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003449TPACPI_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003450
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003451static const struct acpi_device_id ibm_pci_device_ids[] = {
3452 {PCI_ROOT_HID_STRING, 0},
3453 {"", 0},
3454};
3455
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03003456static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
3457 {
3458 .notify = dock_notify,
3459 .handle = &dock_handle,
3460 .type = ACPI_SYSTEM_NOTIFY,
3461 },
3462 {
Henrique de Moraes Holschuh996fba02007-07-18 23:45:40 -03003463 /* THIS ONE MUST NEVER BE USED FOR DRIVER AUTOLOADING.
3464 * We just use it to get notifications of dock hotplug
3465 * in very old thinkpads */
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003466 .hid = ibm_pci_device_ids,
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03003467 .notify = dock_notify,
3468 .handle = &pci_handle,
3469 .type = ACPI_SYSTEM_NOTIFY,
3470 },
3471};
3472
3473static struct ibm_struct dock_driver_data[2] = {
3474 {
3475 .name = "dock",
3476 .read = dock_read,
3477 .write = dock_write,
3478 .acpi = &ibm_dock_acpidriver[0],
3479 },
3480 {
3481 .name = "dock",
3482 .acpi = &ibm_dock_acpidriver[1],
3483 },
3484};
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486#define dock_docked() (_sta(dock_handle) & 1)
3487
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003488static int __init dock_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003489{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003490 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
3491
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003492 TPACPI_ACPIHANDLE_INIT(dock);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003493
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003494 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
3495 str_supported(dock_handle != NULL));
3496
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003497 return (dock_handle)? 0 : 1;
3498}
3499
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03003500static int __init dock_init2(struct ibm_init_struct *iibm)
3501{
3502 int dock2_needed;
3503
3504 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver part 2\n");
3505
3506 if (dock_driver_data[0].flags.acpi_driver_registered &&
3507 dock_driver_data[0].flags.acpi_notify_installed) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003508 TPACPI_ACPIHANDLE_INIT(pci);
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03003509 dock2_needed = (pci_handle != NULL);
3510 vdbg_printk(TPACPI_DBG_INIT,
3511 "dock PCI handler for the TP 570 is %s\n",
3512 str_supported(dock2_needed));
3513 } else {
3514 vdbg_printk(TPACPI_DBG_INIT,
3515 "dock subdriver part 2 not required\n");
3516 dock2_needed = 0;
3517 }
3518
3519 return (dock2_needed)? 0 : 1;
3520}
3521
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003522static void dock_notify(struct ibm_struct *ibm, u32 event)
3523{
3524 int docked = dock_docked();
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003525 int pci = ibm->acpi->hid && ibm->acpi->device &&
3526 acpi_match_device_ids(ibm->acpi->device, ibm_pci_device_ids);
Zhang Rui962ce8c2007-08-23 01:24:31 +08003527 int data;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003528
3529 if (event == 1 && !pci) /* 570 */
Zhang Rui962ce8c2007-08-23 01:24:31 +08003530 data = 1; /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003531 else if (event == 1 && pci) /* 570 */
Zhang Rui962ce8c2007-08-23 01:24:31 +08003532 data = 3; /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003533 else if (event == 3 && docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08003534 data = 1; /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003535 else if (event == 3 && !docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08003536 data = 2; /* undock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003537 else if (event == 0 && docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08003538 data = 3; /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003539 else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003540 printk(TPACPI_ERR "unknown dock event %d, status %d\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003541 event, _sta(dock_handle));
Zhang Rui962ce8c2007-08-23 01:24:31 +08003542 data = 0; /* unknown */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003543 }
Len Brown14e04fb2007-08-23 15:20:26 -04003544 acpi_bus_generate_proc_event(ibm->acpi->device, event, data);
Zhang Rui962ce8c2007-08-23 01:24:31 +08003545 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3546 ibm->acpi->device->dev.bus_id,
3547 event, data);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003548}
3549
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003550static int dock_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551{
3552 int len = 0;
3553 int docked = dock_docked();
3554
3555 if (!dock_handle)
3556 len += sprintf(p + len, "status:\t\tnot supported\n");
3557 else if (!docked)
3558 len += sprintf(p + len, "status:\t\tundocked\n");
3559 else {
3560 len += sprintf(p + len, "status:\t\tdocked\n");
3561 len += sprintf(p + len, "commands:\tdock, undock\n");
3562 }
3563
3564 return len;
3565}
3566
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003567static int dock_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
3569 char *cmd;
3570
3571 if (!dock_docked())
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003572 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 while ((cmd = next_cmd(&buf))) {
3575 if (strlencmp(cmd, "undock") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003576 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
3577 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 return -EIO;
3579 } else if (strlencmp(cmd, "dock") == 0) {
3580 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
3581 return -EIO;
3582 } else
3583 return -EINVAL;
3584 }
3585
3586 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003589#endif /* CONFIG_THINKPAD_ACPI_DOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003591/*************************************************************************
3592 * Bay subdriver
3593 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003595#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003596
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003597TPACPI_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003598 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
3599 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
3600 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
3601 ); /* A21e, R30, R31 */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003602TPACPI_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003603 "_EJ0", /* all others */
3604 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003605TPACPI_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003606 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
3607 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003608TPACPI_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003609 "_EJ0", /* 770x */
3610 ); /* all others */
3611
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003612static int __init bay_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003614 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
3615
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003616 TPACPI_ACPIHANDLE_INIT(bay);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003617 if (bay_handle)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003618 TPACPI_ACPIHANDLE_INIT(bay_ej);
3619 TPACPI_ACPIHANDLE_INIT(bay2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003620 if (bay2_handle)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003621 TPACPI_ACPIHANDLE_INIT(bay2_ej);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003622
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003623 tp_features.bay_status = bay_handle &&
3624 acpi_evalf(bay_handle, NULL, "_STA", "qv");
3625 tp_features.bay_status2 = bay2_handle &&
3626 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003627
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003628 tp_features.bay_eject = bay_handle && bay_ej_handle &&
3629 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
3630 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
3631 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003633 vdbg_printk(TPACPI_DBG_INIT,
3634 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003635 str_supported(tp_features.bay_status),
3636 str_supported(tp_features.bay_eject),
3637 str_supported(tp_features.bay_status2),
3638 str_supported(tp_features.bay_eject2));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003639
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003640 return (tp_features.bay_status || tp_features.bay_eject ||
3641 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642}
3643
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003644static void bay_notify(struct ibm_struct *ibm, u32 event)
3645{
Len Brown14e04fb2007-08-23 15:20:26 -04003646 acpi_bus_generate_proc_event(ibm->acpi->device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08003647 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3648 ibm->acpi->device->dev.bus_id,
3649 event, 0);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003650}
3651
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003652#define bay_occupied(b) (_sta(b##_handle) & 1)
3653
3654static int bay_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
3656 int len = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003657 int occupied = bay_occupied(bay);
3658 int occupied2 = bay_occupied(bay2);
3659 int eject, eject2;
3660
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003661 len += sprintf(p + len, "status:\t\t%s\n",
3662 tp_features.bay_status ?
3663 (occupied ? "occupied" : "unoccupied") :
3664 "not supported");
3665 if (tp_features.bay_status2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003666 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
3667 "occupied" : "unoccupied");
3668
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003669 eject = tp_features.bay_eject && occupied;
3670 eject2 = tp_features.bay_eject2 && occupied2;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003671
3672 if (eject && eject2)
3673 len += sprintf(p + len, "commands:\teject, eject2\n");
3674 else if (eject)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 len += sprintf(p + len, "commands:\teject\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003676 else if (eject2)
3677 len += sprintf(p + len, "commands:\teject2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679 return len;
3680}
3681
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003682static int bay_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
3684 char *cmd;
3685
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003686 if (!tp_features.bay_eject && !tp_features.bay_eject2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003687 return -ENODEV;
3688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003690 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003691 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
3692 return -EIO;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003693 } else if (tp_features.bay_eject2 &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003694 strlencmp(cmd, "eject2") == 0) {
3695 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 return -EIO;
3697 } else
3698 return -EINVAL;
3699 }
3700
3701 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003702}
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003703
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003704static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
3705 .notify = bay_notify,
3706 .handle = &bay_handle,
3707 .type = ACPI_SYSTEM_NOTIFY,
3708};
3709
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003710static struct ibm_struct bay_driver_data = {
3711 .name = "bay",
3712 .read = bay_read,
3713 .write = bay_write,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003714 .acpi = &ibm_bay_acpidriver,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003715};
3716
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03003717#endif /* CONFIG_THINKPAD_ACPI_BAY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003719/*************************************************************************
3720 * CMOS subdriver
3721 */
3722
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03003723/* sysfs cmos_command -------------------------------------------------- */
3724static ssize_t cmos_command_store(struct device *dev,
3725 struct device_attribute *attr,
3726 const char *buf, size_t count)
3727{
3728 unsigned long cmos_cmd;
3729 int res;
3730
3731 if (parse_strtoul(buf, 21, &cmos_cmd))
3732 return -EINVAL;
3733
3734 res = issue_thinkpad_cmos_command(cmos_cmd);
3735 return (res)? res : count;
3736}
3737
3738static struct device_attribute dev_attr_cmos_command =
3739 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
3740
3741/* --------------------------------------------------------------------- */
3742
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003743static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003744{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03003745 int res;
3746
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003747 vdbg_printk(TPACPI_DBG_INIT,
3748 "initializing cmos commands subdriver\n");
3749
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003750 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003751
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003752 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
3753 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03003754
3755 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3756 if (res)
3757 return res;
3758
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003759 return (cmos_handle)? 0 : 1;
3760}
3761
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03003762static void cmos_exit(void)
3763{
3764 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3765}
3766
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003767static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768{
3769 int len = 0;
3770
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003771 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3772 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 if (!cmos_handle)
3774 len += sprintf(p + len, "status:\t\tnot supported\n");
3775 else {
3776 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003777 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 }
3779
3780 return len;
3781}
3782
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003783static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784{
3785 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03003786 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003789 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
3790 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 /* cmos_cmd set */
3792 } else
3793 return -EINVAL;
3794
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03003795 res = issue_thinkpad_cmos_command(cmos_cmd);
3796 if (res)
3797 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 }
3799
3800 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003801}
3802
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003803static struct ibm_struct cmos_driver_data = {
3804 .name = "cmos",
3805 .read = cmos_read,
3806 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03003807 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003808};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003809
3810/*************************************************************************
3811 * LED subdriver
3812 */
3813
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003814enum led_access_mode {
3815 TPACPI_LED_NONE = 0,
3816 TPACPI_LED_570, /* 570 */
3817 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
3818 TPACPI_LED_NEW, /* all others */
3819};
3820
3821enum { /* For TPACPI_LED_OLD */
3822 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
3823 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
3824 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
3825};
3826
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003827enum led_status_t {
3828 TPACPI_LED_OFF = 0,
3829 TPACPI_LED_ON,
3830 TPACPI_LED_BLINK,
3831};
3832
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02003833static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003834
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003835TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003836 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
3837 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003838 "LED", /* all others */
3839 ); /* R30, R31 */
3840
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003841#define TPACPI_LED_NUMLEDS 8
3842static struct tpacpi_led_classdev *tpacpi_leds;
3843static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07003844static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003845 /* there's a limit of 19 chars + NULL before 2.6.26 */
3846 "tpacpi::power",
3847 "tpacpi:orange:batt",
3848 "tpacpi:green:batt",
3849 "tpacpi::dock_active",
3850 "tpacpi::bay_active",
3851 "tpacpi::dock_batt",
3852 "tpacpi::unknown_led",
3853 "tpacpi::standby",
3854};
3855
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003856static int led_get_status(unsigned int led)
3857{
3858 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003859 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003860
3861 switch (led_supported) {
3862 case TPACPI_LED_570:
3863 if (!acpi_evalf(ec_handle,
3864 &status, "GLED", "dd", 1 << led))
3865 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003866 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003867 TPACPI_LED_OFF :
3868 ((status == 1)?
3869 TPACPI_LED_ON :
3870 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003871 tpacpi_led_state_cache[led] = led_s;
3872 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003873 default:
3874 return -ENXIO;
3875 }
3876
3877 /* not reached */
3878}
3879
3880static int led_set_status(unsigned int led, enum led_status_t ledstatus)
3881{
3882 /* off, on, blink. Index is led_status_t */
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07003883 static const int led_sled_arg1[] = { 0, 1, 3 };
3884 static const int led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */
3885 static const int led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */
3886 static const int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003887
3888 int rc = 0;
3889
3890 switch (led_supported) {
3891 case TPACPI_LED_570:
3892 /* 570 */
3893 led = 1 << led;
3894 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3895 led, led_sled_arg1[ledstatus]))
3896 rc = -EIO;
3897 break;
3898 case TPACPI_LED_OLD:
3899 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
3900 led = 1 << led;
3901 rc = ec_write(TPACPI_LED_EC_HLMS, led);
3902 if (rc >= 0)
3903 rc = ec_write(TPACPI_LED_EC_HLBL,
3904 led * led_exp_hlbl[ledstatus]);
3905 if (rc >= 0)
3906 rc = ec_write(TPACPI_LED_EC_HLCL,
Henrique de Moraes Holschuh10cc9272008-04-26 01:02:27 -03003907 led * led_exp_hlcl[ledstatus]);
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003908 break;
3909 case TPACPI_LED_NEW:
3910 /* all others */
3911 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3912 led, led_led_arg1[ledstatus]))
3913 rc = -EIO;
3914 break;
3915 default:
3916 rc = -ENXIO;
3917 }
3918
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003919 if (!rc)
3920 tpacpi_led_state_cache[led] = ledstatus;
3921
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03003922 return rc;
3923}
3924
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003925static void led_sysfs_set_status(unsigned int led,
3926 enum led_brightness brightness)
3927{
3928 led_set_status(led,
3929 (brightness == LED_OFF) ?
3930 TPACPI_LED_OFF :
3931 (tpacpi_led_state_cache[led] == TPACPI_LED_BLINK) ?
3932 TPACPI_LED_BLINK : TPACPI_LED_ON);
3933}
3934
3935static void led_set_status_worker(struct work_struct *work)
3936{
3937 struct tpacpi_led_classdev *data =
3938 container_of(work, struct tpacpi_led_classdev, work);
3939
3940 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
3941 led_sysfs_set_status(data->led, data->new_brightness);
3942}
3943
3944static void led_sysfs_set(struct led_classdev *led_cdev,
3945 enum led_brightness brightness)
3946{
3947 struct tpacpi_led_classdev *data = container_of(led_cdev,
3948 struct tpacpi_led_classdev, led_classdev);
3949
3950 data->new_brightness = brightness;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03003951 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003952}
3953
3954static int led_sysfs_blink_set(struct led_classdev *led_cdev,
3955 unsigned long *delay_on, unsigned long *delay_off)
3956{
3957 struct tpacpi_led_classdev *data = container_of(led_cdev,
3958 struct tpacpi_led_classdev, led_classdev);
3959
3960 /* Can we choose the flash rate? */
3961 if (*delay_on == 0 && *delay_off == 0) {
3962 /* yes. set them to the hardware blink rate (1 Hz) */
3963 *delay_on = 500; /* ms */
3964 *delay_off = 500; /* ms */
3965 } else if ((*delay_on != 500) || (*delay_off != 500))
3966 return -EINVAL;
3967
3968 data->new_brightness = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03003969 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03003970
3971 return 0;
3972}
3973
3974static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
3975{
3976 int rc;
3977
3978 struct tpacpi_led_classdev *data = container_of(led_cdev,
3979 struct tpacpi_led_classdev, led_classdev);
3980
3981 rc = led_get_status(data->led);
3982
3983 if (rc == TPACPI_LED_OFF || rc < 0)
3984 rc = LED_OFF; /* no error handling in led class :( */
3985 else
3986 rc = LED_FULL;
3987
3988 return rc;
3989}
3990
3991static void led_exit(void)
3992{
3993 unsigned int i;
3994
3995 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
3996 if (tpacpi_leds[i].led_classdev.name)
3997 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
3998 }
3999
4000 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004001}
4002
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004003static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004004{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004005 unsigned int i;
4006 int rc;
4007
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004008 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
4009
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004010 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004011
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004012 if (!led_handle)
4013 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004014 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004015 else if (strlencmp(led_path, "SLED") == 0)
4016 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004017 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004018 else if (strlencmp(led_path, "SYSL") == 0)
4019 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004020 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004021 else
4022 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004023 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004024
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004025 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
4026 str_supported(led_supported), led_supported);
4027
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004028 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
4029 GFP_KERNEL);
4030 if (!tpacpi_leds) {
4031 printk(TPACPI_ERR "Out of memory for LED data\n");
4032 return -ENOMEM;
4033 }
4034
4035 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
4036 tpacpi_leds[i].led = i;
4037
4038 tpacpi_leds[i].led_classdev.brightness_set = &led_sysfs_set;
4039 tpacpi_leds[i].led_classdev.blink_set = &led_sysfs_blink_set;
4040 if (led_supported == TPACPI_LED_570)
4041 tpacpi_leds[i].led_classdev.brightness_get =
4042 &led_sysfs_get;
4043
4044 tpacpi_leds[i].led_classdev.name = tpacpi_led_names[i];
4045
4046 INIT_WORK(&tpacpi_leds[i].work, led_set_status_worker);
4047
4048 rc = led_classdev_register(&tpacpi_pdev->dev,
4049 &tpacpi_leds[i].led_classdev);
4050 if (rc < 0) {
4051 tpacpi_leds[i].led_classdev.name = NULL;
4052 led_exit();
4053 return rc;
4054 }
4055 }
4056
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004057 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004058}
4059
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004060#define str_led_status(s) \
4061 ((s) == TPACPI_LED_OFF ? "off" : \
4062 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004063
4064static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065{
4066 int len = 0;
4067
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004068 if (!led_supported) {
4069 len += sprintf(p + len, "status:\t\tnot supported\n");
4070 return len;
4071 }
4072 len += sprintf(p + len, "status:\t\tsupported\n");
4073
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004074 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004075 /* 570 */
4076 int i, status;
4077 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004078 status = led_get_status(i);
4079 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004080 return -EIO;
4081 len += sprintf(p + len, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004082 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004083 }
4084 }
4085
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 len += sprintf(p + len, "commands:\t"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004087 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
4089 return len;
4090}
4091
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004092static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093{
4094 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004095 int led, rc;
4096 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004097
4098 if (!led_supported)
4099 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
4101 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004102 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 return -EINVAL;
4104
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004105 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004106 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004108 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004109 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004110 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004111 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004112 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004113 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004114
4115 rc = led_set_status(led, s);
4116 if (rc < 0)
4117 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 }
4119
4120 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004121}
4122
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004123static struct ibm_struct led_driver_data = {
4124 .name = "led",
4125 .read = led_read,
4126 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004127 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004128};
4129
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004130/*************************************************************************
4131 * Beep subdriver
4132 */
4133
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004134TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004135
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004136static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004137{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004138 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
4139
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004140 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004141
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004142 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
4143 str_supported(beep_handle != NULL));
4144
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004145 return (beep_handle)? 0 : 1;
4146}
4147
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004148static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149{
4150 int len = 0;
4151
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004152 if (!beep_handle)
4153 len += sprintf(p + len, "status:\t\tnot supported\n");
4154 else {
4155 len += sprintf(p + len, "status:\t\tsupported\n");
4156 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
4157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
4159 return len;
4160}
4161
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004162static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163{
4164 char *cmd;
4165 int beep_cmd;
4166
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004167 if (!beep_handle)
4168 return -ENODEV;
4169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004171 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
4172 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 /* beep_cmd set */
4174 } else
4175 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004176 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return -EIO;
4178 }
4179
4180 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004181}
4182
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004183static struct ibm_struct beep_driver_data = {
4184 .name = "beep",
4185 .read = beep_read,
4186 .write = beep_write,
4187};
4188
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004189/*************************************************************************
4190 * Thermal subdriver
4191 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004192
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004193enum thermal_access_mode {
4194 TPACPI_THERMAL_NONE = 0, /* No thermal support */
4195 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
4196 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
4197 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
4198 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
4199};
4200
4201enum { /* TPACPI_THERMAL_TPEC_* */
4202 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
4203 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
4204 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
4205};
4206
4207#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
4208struct ibm_thermal_sensors_struct {
4209 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
4210};
4211
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004212static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004213
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004214/* idx is zero-based */
4215static int thermal_get_sensor(int idx, s32 *value)
4216{
4217 int t;
4218 s8 tmp;
4219 char tmpi[5];
4220
4221 t = TP_EC_THERMAL_TMP0;
4222
4223 switch (thermal_read_mode) {
4224#if TPACPI_MAX_THERMAL_SENSORS >= 16
4225 case TPACPI_THERMAL_TPEC_16:
4226 if (idx >= 8 && idx <= 15) {
4227 t = TP_EC_THERMAL_TMP8;
4228 idx -= 8;
4229 }
4230 /* fallthrough */
4231#endif
4232 case TPACPI_THERMAL_TPEC_8:
4233 if (idx <= 7) {
4234 if (!acpi_ec_read(t + idx, &tmp))
4235 return -EIO;
4236 *value = tmp * 1000;
4237 return 0;
4238 }
4239 break;
4240
4241 case TPACPI_THERMAL_ACPI_UPDT:
4242 if (idx <= 7) {
4243 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4244 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
4245 return -EIO;
4246 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4247 return -EIO;
4248 *value = (t - 2732) * 100;
4249 return 0;
4250 }
4251 break;
4252
4253 case TPACPI_THERMAL_ACPI_TMP07:
4254 if (idx <= 7) {
4255 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4256 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4257 return -EIO;
4258 if (t > 127 || t < -127)
4259 t = TP_EC_THERMAL_TMP_NA;
4260 *value = t * 1000;
4261 return 0;
4262 }
4263 break;
4264
4265 case TPACPI_THERMAL_NONE:
4266 default:
4267 return -ENOSYS;
4268 }
4269
4270 return -EINVAL;
4271}
4272
4273static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
4274{
4275 int res, i;
4276 int n;
4277
4278 n = 8;
4279 i = 0;
4280
4281 if (!s)
4282 return -EINVAL;
4283
4284 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
4285 n = 16;
4286
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004287 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004288 res = thermal_get_sensor(i, &s->temp[i]);
4289 if (res)
4290 return res;
4291 }
4292
4293 return n;
4294}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004295
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004296/* sysfs temp##_input -------------------------------------------------- */
4297
4298static ssize_t thermal_temp_input_show(struct device *dev,
4299 struct device_attribute *attr,
4300 char *buf)
4301{
4302 struct sensor_device_attribute *sensor_attr =
4303 to_sensor_dev_attr(attr);
4304 int idx = sensor_attr->index;
4305 s32 value;
4306 int res;
4307
4308 res = thermal_get_sensor(idx, &value);
4309 if (res)
4310 return res;
4311 if (value == TP_EC_THERMAL_TMP_NA * 1000)
4312 return -ENXIO;
4313
4314 return snprintf(buf, PAGE_SIZE, "%d\n", value);
4315}
4316
4317#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004318 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
4319 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004320
4321static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
4322 THERMAL_SENSOR_ATTR_TEMP(1, 0),
4323 THERMAL_SENSOR_ATTR_TEMP(2, 1),
4324 THERMAL_SENSOR_ATTR_TEMP(3, 2),
4325 THERMAL_SENSOR_ATTR_TEMP(4, 3),
4326 THERMAL_SENSOR_ATTR_TEMP(5, 4),
4327 THERMAL_SENSOR_ATTR_TEMP(6, 5),
4328 THERMAL_SENSOR_ATTR_TEMP(7, 6),
4329 THERMAL_SENSOR_ATTR_TEMP(8, 7),
4330 THERMAL_SENSOR_ATTR_TEMP(9, 8),
4331 THERMAL_SENSOR_ATTR_TEMP(10, 9),
4332 THERMAL_SENSOR_ATTR_TEMP(11, 10),
4333 THERMAL_SENSOR_ATTR_TEMP(12, 11),
4334 THERMAL_SENSOR_ATTR_TEMP(13, 12),
4335 THERMAL_SENSOR_ATTR_TEMP(14, 13),
4336 THERMAL_SENSOR_ATTR_TEMP(15, 14),
4337 THERMAL_SENSOR_ATTR_TEMP(16, 15),
4338};
4339
4340#define THERMAL_ATTRS(X) \
4341 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
4342
4343static struct attribute *thermal_temp_input_attr[] = {
4344 THERMAL_ATTRS(8),
4345 THERMAL_ATTRS(9),
4346 THERMAL_ATTRS(10),
4347 THERMAL_ATTRS(11),
4348 THERMAL_ATTRS(12),
4349 THERMAL_ATTRS(13),
4350 THERMAL_ATTRS(14),
4351 THERMAL_ATTRS(15),
4352 THERMAL_ATTRS(0),
4353 THERMAL_ATTRS(1),
4354 THERMAL_ATTRS(2),
4355 THERMAL_ATTRS(3),
4356 THERMAL_ATTRS(4),
4357 THERMAL_ATTRS(5),
4358 THERMAL_ATTRS(6),
4359 THERMAL_ATTRS(7),
4360 NULL
4361};
4362
4363static const struct attribute_group thermal_temp_input16_group = {
4364 .attrs = thermal_temp_input_attr
4365};
4366
4367static const struct attribute_group thermal_temp_input8_group = {
4368 .attrs = &thermal_temp_input_attr[8]
4369};
4370
4371#undef THERMAL_SENSOR_ATTR_TEMP
4372#undef THERMAL_ATTRS
4373
4374/* --------------------------------------------------------------------- */
4375
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004376static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004377{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004378 u8 t, ta1, ta2;
4379 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004380 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004381 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004382
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004383 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
4384
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004385 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004386
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03004387 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004388 /*
4389 * Direct EC access mode: sensors at registers
4390 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
4391 * non-implemented, thermal sensors return 0x80 when
4392 * not available
4393 */
4394
4395 ta1 = ta2 = 0;
4396 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03004397 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004398 ta1 |= t;
4399 } else {
4400 ta1 = 0;
4401 break;
4402 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03004403 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004404 ta2 |= t;
4405 } else {
4406 ta1 = 0;
4407 break;
4408 }
4409 }
4410 if (ta1 == 0) {
4411 /* This is sheer paranoia, but we handle it anyway */
4412 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004413 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004414 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004415 "falling back to ACPI TMPx access "
4416 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004417 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004418 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004419 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004420 "ThinkPad ACPI EC access misbehaving, "
4421 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004422 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004423 }
4424 } else {
4425 thermal_read_mode =
4426 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004427 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02004428 }
4429 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004430 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
4431 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004432 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004433 } else {
4434 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004435 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004436 }
4437 } else {
4438 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004439 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004440 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004441
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004442 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
4443 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
4444 thermal_read_mode);
4445
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004446 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004447 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03004448 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004449 &thermal_temp_input16_group);
4450 if (res)
4451 return res;
4452 break;
4453 case TPACPI_THERMAL_TPEC_8:
4454 case TPACPI_THERMAL_ACPI_TMP07:
4455 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03004456 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004457 &thermal_temp_input8_group);
4458 if (res)
4459 return res;
4460 break;
4461 case TPACPI_THERMAL_NONE:
4462 default:
4463 return 1;
4464 }
4465
4466 return 0;
4467}
4468
4469static void thermal_exit(void)
4470{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004471 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004472 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03004473 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004474 &thermal_temp_input16_group);
4475 break;
4476 case TPACPI_THERMAL_TPEC_8:
4477 case TPACPI_THERMAL_ACPI_TMP07:
4478 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03004479 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004480 &thermal_temp_input16_group);
4481 break;
4482 case TPACPI_THERMAL_NONE:
4483 default:
4484 break;
4485 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004486}
4487
4488static int thermal_read(char *p)
4489{
4490 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004491 int n, i;
4492 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004493
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004494 n = thermal_get_sensors(&t);
4495 if (unlikely(n < 0))
4496 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004497
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004498 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004499
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02004500 if (n > 0) {
4501 for (i = 0; i < (n - 1); i++)
4502 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
4503 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
4504 } else
4505 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004506
4507 return len;
4508}
4509
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004510static struct ibm_struct thermal_driver_data = {
4511 .name = "thermal",
4512 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03004513 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004514};
4515
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004516/*************************************************************************
4517 * EC Dump subdriver
4518 */
4519
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004520static u8 ecdump_regs[256];
4521
4522static int ecdump_read(char *p)
4523{
4524 int len = 0;
4525 int i, j;
4526 u8 v;
4527
4528 len += sprintf(p + len, "EC "
4529 " +00 +01 +02 +03 +04 +05 +06 +07"
4530 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
4531 for (i = 0; i < 256; i += 16) {
4532 len += sprintf(p + len, "EC 0x%02x:", i);
4533 for (j = 0; j < 16; j++) {
4534 if (!acpi_ec_read(i + j, &v))
4535 break;
4536 if (v != ecdump_regs[i + j])
4537 len += sprintf(p + len, " *%02x", v);
4538 else
4539 len += sprintf(p + len, " %02x", v);
4540 ecdump_regs[i + j] = v;
4541 }
4542 len += sprintf(p + len, "\n");
4543 if (j != 16)
4544 break;
4545 }
4546
4547 /* These are way too dangerous to advertise openly... */
4548#if 0
4549 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
4550 " (<offset> is 00-ff, <value> is 00-ff)\n");
4551 len += sprintf(p + len, "commands:\t0x<offset> <value> "
4552 " (<offset> is 00-ff, <value> is 0-255)\n");
4553#endif
4554 return len;
4555}
4556
4557static int ecdump_write(char *buf)
4558{
4559 char *cmd;
4560 int i, v;
4561
4562 while ((cmd = next_cmd(&buf))) {
4563 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
4564 /* i and v set */
4565 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
4566 /* i and v set */
4567 } else
4568 return -EINVAL;
4569 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
4570 if (!acpi_ec_write(i, v))
4571 return -EIO;
4572 } else
4573 return -EINVAL;
4574 }
4575
4576 return 0;
4577}
4578
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004579static struct ibm_struct ecdump_driver_data = {
4580 .name = "ecdump",
4581 .read = ecdump_read,
4582 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03004583 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004584};
4585
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004586/*************************************************************************
4587 * Backlight/brightness subdriver
4588 */
Holger Macht8acb0252006-10-20 14:30:28 -07004589
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004590#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
4591
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004592enum {
4593 TP_EC_BACKLIGHT = 0x31,
4594
4595 /* TP_EC_BACKLIGHT bitmasks */
4596 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
4597 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
4598 TP_EC_BACKLIGHT_MAPSW = 0x20,
4599};
4600
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03004601static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004602static int brightness_mode;
4603static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
4604
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004605static struct mutex brightness_mutex;
4606
4607/*
4608 * ThinkPads can read brightness from two places: EC 0x31, or
4609 * CMOS NVRAM byte 0x5E, bits 0-3.
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004610 *
4611 * EC 0x31 has the following layout
4612 * Bit 7: unknown function
4613 * Bit 6: unknown function
4614 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
4615 * Bit 4: must be set to zero to avoid problems
4616 * Bit 3-0: backlight brightness level
4617 *
4618 * brightness_get_raw returns status data in the EC 0x31 layout
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004619 */
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004620static int brightness_get_raw(int *status)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004621{
4622 u8 lec = 0, lcmos = 0, level = 0;
4623
4624 if (brightness_mode & 1) {
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004625 if (!acpi_ec_read(TP_EC_BACKLIGHT, &lec))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004626 return -EIO;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004627 level = lec & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004628 };
4629 if (brightness_mode & 2) {
4630 lcmos = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
4631 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
4632 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
4633 lcmos &= (tp_features.bright_16levels)? 0x0f : 0x07;
4634 level = lcmos;
4635 }
4636
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03004637 if (brightness_mode == 3) {
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004638 *status = lec; /* Prefer EC, CMOS is just a backing store */
4639 lec &= TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03004640 if (lec == lcmos)
4641 tp_warned.bright_cmos_ec_unsync = 0;
4642 else {
4643 if (!tp_warned.bright_cmos_ec_unsync) {
4644 printk(TPACPI_ERR
4645 "CMOS NVRAM (%u) and EC (%u) do not "
4646 "agree on display brightness level\n",
4647 (unsigned int) lcmos,
4648 (unsigned int) lec);
4649 tp_warned.bright_cmos_ec_unsync = 1;
4650 }
4651 return -EIO;
4652 }
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004653 } else {
4654 *status = level;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004655 }
4656
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004657 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004658}
4659
4660/* May return EINTR which can always be mapped to ERESTARTSYS */
4661static int brightness_set(int value)
4662{
4663 int cmos_cmd, inc, i, res;
4664 int current_value;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004665 int command_bits;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004666
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004667 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
4668 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004669 return -EINVAL;
4670
4671 res = mutex_lock_interruptible(&brightness_mutex);
4672 if (res < 0)
4673 return res;
4674
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004675 res = brightness_get_raw(&current_value);
4676 if (res < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004677 goto errout;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004678
4679 command_bits = current_value & TP_EC_BACKLIGHT_CMDMSK;
4680 current_value &= TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004681
4682 cmos_cmd = value > current_value ?
4683 TP_CMOS_BRIGHTNESS_UP :
4684 TP_CMOS_BRIGHTNESS_DOWN;
4685 inc = (value > current_value)? 1 : -1;
4686
4687 res = 0;
4688 for (i = current_value; i != value; i += inc) {
4689 if ((brightness_mode & 2) &&
4690 issue_thinkpad_cmos_command(cmos_cmd)) {
4691 res = -EIO;
4692 goto errout;
4693 }
4694 if ((brightness_mode & 1) &&
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004695 !acpi_ec_write(TP_EC_BACKLIGHT,
4696 (i + inc) | command_bits)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004697 res = -EIO;
4698 goto errout;;
4699 }
4700 }
4701
4702errout:
4703 mutex_unlock(&brightness_mutex);
4704 return res;
4705}
4706
4707/* sysfs backlight class ----------------------------------------------- */
4708
4709static int brightness_update_status(struct backlight_device *bd)
4710{
4711 /* it is the backlight class's job (caller) to handle
4712 * EINTR and other errors properly */
4713 return brightness_set(
4714 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
4715 bd->props.power == FB_BLANK_UNBLANK) ?
4716 bd->props.brightness : 0);
4717}
Holger Macht8acb0252006-10-20 14:30:28 -07004718
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004719static int brightness_get(struct backlight_device *bd)
4720{
4721 int status, res;
4722
4723 res = brightness_get_raw(&status);
4724 if (res < 0)
4725 return 0; /* FIXME: teach backlight about error handling */
4726
4727 return status & TP_EC_BACKLIGHT_LVLMSK;
4728}
4729
Richard Purdie599a52d2007-02-10 23:07:48 +00004730static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004731 .get_brightness = brightness_get,
4732 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004733};
4734
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02004735/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03004736
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004737static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004738{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02004739 int b;
4740
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004741 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
4742
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03004743 mutex_init(&brightness_mutex);
4744
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03004745 /*
4746 * We always attempt to detect acpi support, so as to switch
4747 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
4748 * going to publish a backlight interface
4749 */
4750 b = tpacpi_check_std_acpi_brightness_support();
4751 if (b > 0) {
4752 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
4753 printk(TPACPI_NOTICE
4754 "Lenovo BIOS switched to ACPI backlight "
4755 "control mode\n");
4756 }
4757 if (brightness_enable > 1) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004758 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004759 "standard ACPI backlight interface "
4760 "available, not loading native one...\n");
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02004761 return 1;
4762 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02004763 }
4764
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03004765 if (!brightness_enable) {
4766 dbg_printk(TPACPI_DBG_INIT,
4767 "brightness support disabled by "
4768 "module parameter\n");
4769 return 1;
4770 }
4771
4772 if (b > 16) {
4773 printk(TPACPI_ERR
4774 "Unsupported brightness interface, "
4775 "please contact %s\n", TPACPI_MAIL);
4776 return 1;
4777 }
4778 if (b == 16)
4779 tp_features.bright_16levels = 1;
4780
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03004781 if (!brightness_mode) {
4782 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO)
4783 brightness_mode = 2;
4784 else
4785 brightness_mode = 3;
4786
4787 dbg_printk(TPACPI_DBG_INIT, "selected brightness_mode=%d\n",
4788 brightness_mode);
4789 }
4790
4791 if (brightness_mode > 3)
4792 return -EINVAL;
4793
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004794 if (brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03004795 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02004796
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004797 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004798 printk(TPACPI_INFO
4799 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004800
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03004801 ibm_backlight_device = backlight_device_register(
4802 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
4803 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004804 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004805 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004806 return PTR_ERR(ibm_backlight_device);
4807 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004808 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004809
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004810 ibm_backlight_device->props.max_brightness =
4811 (tp_features.bright_16levels)? 15 : 7;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03004812 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02004813 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00004814
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004815 return 0;
4816}
4817
4818static void brightness_exit(void)
4819{
4820 if (ibm_backlight_device) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004821 vdbg_printk(TPACPI_DBG_EXIT,
4822 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004823 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02004824 }
4825}
4826
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004827static int brightness_read(char *p)
4828{
4829 int len = 0;
4830 int level;
4831
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004832 level = brightness_get(NULL);
4833 if (level < 0) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004834 len += sprintf(p + len, "level:\t\tunreadable\n");
4835 } else {
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004836 len += sprintf(p + len, "level:\t\t%d\n", level);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004837 len += sprintf(p + len, "commands:\tup, down\n");
4838 len += sprintf(p + len, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004839 " (<level> is 0-%d)\n",
4840 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004841 }
4842
4843 return len;
4844}
4845
4846static int brightness_write(char *buf)
4847{
4848 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004849 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004850 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02004851 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004852
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004853 level = brightness_get(NULL);
4854 if (level < 0)
4855 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004856
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004857 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004858 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004859 if (level < max_level)
4860 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004861 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004862 if (level > 0)
4863 level--;
4864 } else if (sscanf(cmd, "level %d", &level) == 1 &&
4865 level >= 0 && level <= max_level) {
4866 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004867 } else
4868 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004869 }
4870
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02004871 /*
4872 * Now we know what the final level should be, so we try to set it.
4873 * Doing it this way makes the syscall restartable in case of EINTR
4874 */
4875 rc = brightness_set(level);
4876 return (rc == -EINTR)? ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004877}
4878
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004879static struct ibm_struct brightness_driver_data = {
4880 .name = "brightness",
4881 .read = brightness_read,
4882 .write = brightness_write,
4883 .exit = brightness_exit,
4884};
4885
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004886/*************************************************************************
4887 * Volume subdriver
4888 */
4889
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004890static int volume_offset = 0x30;
4891
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004892static int volume_read(char *p)
4893{
4894 int len = 0;
4895 u8 level;
4896
4897 if (!acpi_ec_read(volume_offset, &level)) {
4898 len += sprintf(p + len, "level:\t\tunreadable\n");
4899 } else {
4900 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
4901 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
4902 len += sprintf(p + len, "commands:\tup, down, mute\n");
4903 len += sprintf(p + len, "commands:\tlevel <level>"
4904 " (<level> is 0-15)\n");
4905 }
4906
4907 return len;
4908}
4909
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004910static int volume_write(char *buf)
4911{
4912 int cmos_cmd, inc, i;
4913 u8 level, mute;
4914 int new_level, new_mute;
4915 char *cmd;
4916
4917 while ((cmd = next_cmd(&buf))) {
4918 if (!acpi_ec_read(volume_offset, &level))
4919 return -EIO;
4920 new_mute = mute = level & 0x40;
4921 new_level = level = level & 0xf;
4922
4923 if (strlencmp(cmd, "up") == 0) {
4924 if (mute)
4925 new_mute = 0;
4926 else
4927 new_level = level == 15 ? 15 : level + 1;
4928 } else if (strlencmp(cmd, "down") == 0) {
4929 if (mute)
4930 new_mute = 0;
4931 else
4932 new_level = level == 0 ? 0 : level - 1;
4933 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
4934 new_level >= 0 && new_level <= 15) {
4935 /* new_level set */
4936 } else if (strlencmp(cmd, "mute") == 0) {
4937 new_mute = 0x40;
4938 } else
4939 return -EINVAL;
4940
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004941 if (new_level != level) {
4942 /* mute doesn't change */
4943
4944 cmos_cmd = (new_level > level) ?
4945 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004946 inc = new_level > level ? 1 : -1;
4947
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004948 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004949 !acpi_ec_write(volume_offset, level)))
4950 return -EIO;
4951
4952 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004953 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004954 !acpi_ec_write(volume_offset, i + inc))
4955 return -EIO;
4956
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004957 if (mute &&
4958 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
4959 !acpi_ec_write(volume_offset, new_level + mute))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004960 return -EIO;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004961 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004962 }
4963
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004964 if (new_mute != mute) {
4965 /* level doesn't change */
4966
4967 cmos_cmd = (new_mute) ?
4968 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004969
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004970 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004971 !acpi_ec_write(volume_offset, level + new_mute))
4972 return -EIO;
4973 }
4974 }
4975
4976 return 0;
4977}
4978
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004979static struct ibm_struct volume_driver_data = {
4980 .name = "volume",
4981 .read = volume_read,
4982 .write = volume_write,
4983};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004984
4985/*************************************************************************
4986 * Fan subdriver
4987 */
4988
4989/*
4990 * FAN ACCESS MODES
4991 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004992 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004993 * ACPI GFAN method: returns fan level
4994 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004995 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03004996 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004997 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004998 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004999 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
5000 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005001 * EC 0x2f (HFSP) might be available *for reading*, but do not use
5002 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005003 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005004 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005005 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
5006 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005007 *
5008 * Fan speed changes of any sort (including those caused by the
5009 * disengaged mode) are usually done slowly by the firmware as the
5010 * maximum ammount of fan duty cycle change per second seems to be
5011 * limited.
5012 *
5013 * Reading is not available if GFAN exists.
5014 * Writing is not available if SFAN exists.
5015 *
5016 * Bits
5017 * 7 automatic mode engaged;
5018 * (default operation mode of the ThinkPad)
5019 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005020 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005021 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005022 * the tachometer while the fan controller ramps up
5023 * the speed (which can take up to a few *minutes*).
5024 * Speeds up fan to 100% duty-cycle, which is far above
5025 * the standard RPM levels. It is not impossible that
5026 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005027 * 5-3 unused in some models. Extra bits for fan level
5028 * in others, but still useless as all values above
5029 * 7 map to the same speed as level 7 in these models.
5030 * 2-0 fan level (0..7 usually)
5031 * 0x00 = stop
5032 * 0x07 = max (set when temperatures critical)
5033 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005034 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005035 *
5036 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
5037 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
5038 * does so, its initial value is meaningless (0x07).
5039 *
5040 * For firmware bugs, refer to:
5041 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5042 *
5043 * ----
5044 *
5045 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
5046 * Main fan tachometer reading (in RPM)
5047 *
5048 * This register is present on all ThinkPads with a new-style EC, and
5049 * it is known not to be present on the A21m/e, and T22, as there is
5050 * something else in offset 0x84 according to the ACPI DSDT. Other
5051 * ThinkPads from this same time period (and earlier) probably lack the
5052 * tachometer as well.
5053 *
5054 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
5055 * was never fixed by IBM to report the EC firmware version string
5056 * probably support the tachometer (like the early X models), so
5057 * detecting it is quite hard. We need more data to know for sure.
5058 *
5059 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
5060 * might result.
5061 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005062 * FIRMWARE BUG: may go stale while the EC is switching to full speed
5063 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005064 *
5065 * For firmware bugs, refer to:
5066 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5067 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005068 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005069 * ThinkPad X31, X40, X41. Not available in the X60.
5070 *
5071 * FANS ACPI handle: takes three arguments: low speed, medium speed,
5072 * high speed. ACPI DSDT seems to map these three speeds to levels
5073 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
5074 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
5075 *
5076 * The speeds are stored on handles
5077 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
5078 *
5079 * There are three default speed sets, acessible as handles:
5080 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
5081 *
5082 * ACPI DSDT switches which set is in use depending on various
5083 * factors.
5084 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005085 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005086 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
5087 * but the ACPI tables just mention level 7.
5088 */
5089
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005090enum { /* Fan control constants */
5091 fan_status_offset = 0x2f, /* EC register 0x2f */
5092 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
5093 * 0x84 must be read before 0x85 */
5094
5095 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
5096 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
5097
5098 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
5099};
5100
5101enum fan_status_access_mode {
5102 TPACPI_FAN_NONE = 0, /* No fan status or control */
5103 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
5104 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
5105};
5106
5107enum fan_control_access_mode {
5108 TPACPI_FAN_WR_NONE = 0, /* No fan control */
5109 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
5110 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
5111 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
5112};
5113
5114enum fan_control_commands {
5115 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
5116 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
5117 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
5118 * and also watchdog cmd */
5119};
5120
5121static int fan_control_allowed;
5122
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005123static enum fan_status_access_mode fan_status_access_mode;
5124static enum fan_control_access_mode fan_control_access_mode;
5125static enum fan_control_commands fan_control_commands;
5126
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02005127static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005128static u8 fan_control_desired_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005129static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005130
5131static struct mutex fan_mutex;
5132
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005133static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05005134static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005135
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005136TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
5137TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005138 "\\FSPD", /* 600e/x, 770e, 770x */
5139 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005140TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005141 "JFNS", /* 770x-JL */
5142 ); /* all others */
5143
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005144/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005145 * Call with fan_mutex held
5146 */
5147static void fan_update_desired_level(u8 status)
5148{
5149 if ((status &
5150 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5151 if (status > 7)
5152 fan_control_desired_level = 7;
5153 else
5154 fan_control_desired_level = status;
5155 }
5156}
5157
5158static int fan_get_status(u8 *status)
5159{
5160 u8 s;
5161
5162 /* TODO:
5163 * Add TPACPI_FAN_RD_ACPI_FANS ? */
5164
5165 switch (fan_status_access_mode) {
5166 case TPACPI_FAN_RD_ACPI_GFAN:
5167 /* 570, 600e/x, 770e, 770x */
5168
5169 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
5170 return -EIO;
5171
5172 if (likely(status))
5173 *status = s & 0x07;
5174
5175 break;
5176
5177 case TPACPI_FAN_RD_TPEC:
5178 /* all except 570, 600e/x, 770e, 770x */
5179 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
5180 return -EIO;
5181
5182 if (likely(status))
5183 *status = s;
5184
5185 break;
5186
5187 default:
5188 return -ENXIO;
5189 }
5190
5191 return 0;
5192}
5193
5194static int fan_get_status_safe(u8 *status)
5195{
5196 int rc;
5197 u8 s;
5198
5199 if (mutex_lock_interruptible(&fan_mutex))
5200 return -ERESTARTSYS;
5201 rc = fan_get_status(&s);
5202 if (!rc)
5203 fan_update_desired_level(s);
5204 mutex_unlock(&fan_mutex);
5205
5206 if (status)
5207 *status = s;
5208
5209 return rc;
5210}
5211
5212static int fan_get_speed(unsigned int *speed)
5213{
5214 u8 hi, lo;
5215
5216 switch (fan_status_access_mode) {
5217 case TPACPI_FAN_RD_TPEC:
5218 /* all except 570, 600e/x, 770e, 770x */
5219 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
5220 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
5221 return -EIO;
5222
5223 if (likely(speed))
5224 *speed = (hi << 8) | lo;
5225
5226 break;
5227
5228 default:
5229 return -ENXIO;
5230 }
5231
5232 return 0;
5233}
5234
5235static int fan_set_level(int level)
5236{
5237 if (!fan_control_allowed)
5238 return -EPERM;
5239
5240 switch (fan_control_access_mode) {
5241 case TPACPI_FAN_WR_ACPI_SFAN:
5242 if (level >= 0 && level <= 7) {
5243 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
5244 return -EIO;
5245 } else
5246 return -EINVAL;
5247 break;
5248
5249 case TPACPI_FAN_WR_ACPI_FANS:
5250 case TPACPI_FAN_WR_TPEC:
5251 if ((level != TP_EC_FAN_AUTO) &&
5252 (level != TP_EC_FAN_FULLSPEED) &&
5253 ((level < 0) || (level > 7)))
5254 return -EINVAL;
5255
5256 /* safety net should the EC not support AUTO
5257 * or FULLSPEED mode bits and just ignore them */
5258 if (level & TP_EC_FAN_FULLSPEED)
5259 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01005260 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005261 level |= 4; /* safety min speed 4 */
5262
5263 if (!acpi_ec_write(fan_status_offset, level))
5264 return -EIO;
5265 else
5266 tp_features.fan_ctrl_status_undef = 0;
5267 break;
5268
5269 default:
5270 return -ENXIO;
5271 }
5272 return 0;
5273}
5274
5275static int fan_set_level_safe(int level)
5276{
5277 int rc;
5278
5279 if (!fan_control_allowed)
5280 return -EPERM;
5281
5282 if (mutex_lock_interruptible(&fan_mutex))
5283 return -ERESTARTSYS;
5284
5285 if (level == TPACPI_FAN_LAST_LEVEL)
5286 level = fan_control_desired_level;
5287
5288 rc = fan_set_level(level);
5289 if (!rc)
5290 fan_update_desired_level(level);
5291
5292 mutex_unlock(&fan_mutex);
5293 return rc;
5294}
5295
5296static int fan_set_enable(void)
5297{
5298 u8 s;
5299 int rc;
5300
5301 if (!fan_control_allowed)
5302 return -EPERM;
5303
5304 if (mutex_lock_interruptible(&fan_mutex))
5305 return -ERESTARTSYS;
5306
5307 switch (fan_control_access_mode) {
5308 case TPACPI_FAN_WR_ACPI_FANS:
5309 case TPACPI_FAN_WR_TPEC:
5310 rc = fan_get_status(&s);
5311 if (rc < 0)
5312 break;
5313
5314 /* Don't go out of emergency fan mode */
5315 if (s != 7) {
5316 s &= 0x07;
5317 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
5318 }
5319
5320 if (!acpi_ec_write(fan_status_offset, s))
5321 rc = -EIO;
5322 else {
5323 tp_features.fan_ctrl_status_undef = 0;
5324 rc = 0;
5325 }
5326 break;
5327
5328 case TPACPI_FAN_WR_ACPI_SFAN:
5329 rc = fan_get_status(&s);
5330 if (rc < 0)
5331 break;
5332
5333 s &= 0x07;
5334
5335 /* Set fan to at least level 4 */
5336 s |= 4;
5337
5338 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005339 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005340 else
5341 rc = 0;
5342 break;
5343
5344 default:
5345 rc = -ENXIO;
5346 }
5347
5348 mutex_unlock(&fan_mutex);
5349 return rc;
5350}
5351
5352static int fan_set_disable(void)
5353{
5354 int rc;
5355
5356 if (!fan_control_allowed)
5357 return -EPERM;
5358
5359 if (mutex_lock_interruptible(&fan_mutex))
5360 return -ERESTARTSYS;
5361
5362 rc = 0;
5363 switch (fan_control_access_mode) {
5364 case TPACPI_FAN_WR_ACPI_FANS:
5365 case TPACPI_FAN_WR_TPEC:
5366 if (!acpi_ec_write(fan_status_offset, 0x00))
5367 rc = -EIO;
5368 else {
5369 fan_control_desired_level = 0;
5370 tp_features.fan_ctrl_status_undef = 0;
5371 }
5372 break;
5373
5374 case TPACPI_FAN_WR_ACPI_SFAN:
5375 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
5376 rc = -EIO;
5377 else
5378 fan_control_desired_level = 0;
5379 break;
5380
5381 default:
5382 rc = -ENXIO;
5383 }
5384
5385
5386 mutex_unlock(&fan_mutex);
5387 return rc;
5388}
5389
5390static int fan_set_speed(int speed)
5391{
5392 int rc;
5393
5394 if (!fan_control_allowed)
5395 return -EPERM;
5396
5397 if (mutex_lock_interruptible(&fan_mutex))
5398 return -ERESTARTSYS;
5399
5400 rc = 0;
5401 switch (fan_control_access_mode) {
5402 case TPACPI_FAN_WR_ACPI_FANS:
5403 if (speed >= 0 && speed <= 65535) {
5404 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
5405 speed, speed, speed))
5406 rc = -EIO;
5407 } else
5408 rc = -EINVAL;
5409 break;
5410
5411 default:
5412 rc = -ENXIO;
5413 }
5414
5415 mutex_unlock(&fan_mutex);
5416 return rc;
5417}
5418
5419static void fan_watchdog_reset(void)
5420{
5421 static int fan_watchdog_active;
5422
5423 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
5424 return;
5425
5426 if (fan_watchdog_active)
5427 cancel_delayed_work(&fan_watchdog_task);
5428
5429 if (fan_watchdog_maxinterval > 0 &&
5430 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
5431 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005432 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005433 msecs_to_jiffies(fan_watchdog_maxinterval
5434 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005435 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005436 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005437 "watchdog will not trigger\n");
5438 }
5439 } else
5440 fan_watchdog_active = 0;
5441}
5442
5443static void fan_watchdog_fire(struct work_struct *ignored)
5444{
5445 int rc;
5446
5447 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
5448 return;
5449
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005450 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005451 rc = fan_set_enable();
5452 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005453 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005454 "will try again later...\n", -rc);
5455 /* reschedule for later */
5456 fan_watchdog_reset();
5457 }
5458}
5459
5460/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005461 * SYSFS fan layout: hwmon compatible (device)
5462 *
5463 * pwm*_enable:
5464 * 0: "disengaged" mode
5465 * 1: manual mode
5466 * 2: native EC "auto" mode (recommended, hardware default)
5467 *
5468 * pwm*: set speed in manual mode, ignored otherwise.
5469 * 0 is level 0; 255 is level 7. Intermediate points done with linear
5470 * interpolation.
5471 *
5472 * fan*_input: tachometer reading, RPM
5473 *
5474 *
5475 * SYSFS fan layout: extensions
5476 *
5477 * fan_watchdog (driver):
5478 * fan watchdog interval in seconds, 0 disables (default), max 120
5479 */
5480
5481/* sysfs fan pwm1_enable ----------------------------------------------- */
5482static ssize_t fan_pwm1_enable_show(struct device *dev,
5483 struct device_attribute *attr,
5484 char *buf)
5485{
5486 int res, mode;
5487 u8 status;
5488
5489 res = fan_get_status_safe(&status);
5490 if (res)
5491 return res;
5492
5493 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5494 if (status != fan_control_initial_status) {
5495 tp_features.fan_ctrl_status_undef = 0;
5496 } else {
5497 /* Return most likely status. In fact, it
5498 * might be the only possible status */
5499 status = TP_EC_FAN_AUTO;
5500 }
5501 }
5502
5503 if (status & TP_EC_FAN_FULLSPEED) {
5504 mode = 0;
5505 } else if (status & TP_EC_FAN_AUTO) {
5506 mode = 2;
5507 } else
5508 mode = 1;
5509
5510 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
5511}
5512
5513static ssize_t fan_pwm1_enable_store(struct device *dev,
5514 struct device_attribute *attr,
5515 const char *buf, size_t count)
5516{
5517 unsigned long t;
5518 int res, level;
5519
5520 if (parse_strtoul(buf, 2, &t))
5521 return -EINVAL;
5522
5523 switch (t) {
5524 case 0:
5525 level = TP_EC_FAN_FULLSPEED;
5526 break;
5527 case 1:
5528 level = TPACPI_FAN_LAST_LEVEL;
5529 break;
5530 case 2:
5531 level = TP_EC_FAN_AUTO;
5532 break;
5533 case 3:
5534 /* reserved for software-controlled auto mode */
5535 return -ENOSYS;
5536 default:
5537 return -EINVAL;
5538 }
5539
5540 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03005541 if (res == -ENXIO)
5542 return -EINVAL;
5543 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005544 return res;
5545
5546 fan_watchdog_reset();
5547
5548 return count;
5549}
5550
5551static struct device_attribute dev_attr_fan_pwm1_enable =
5552 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
5553 fan_pwm1_enable_show, fan_pwm1_enable_store);
5554
5555/* sysfs fan pwm1 ------------------------------------------------------ */
5556static ssize_t fan_pwm1_show(struct device *dev,
5557 struct device_attribute *attr,
5558 char *buf)
5559{
5560 int res;
5561 u8 status;
5562
5563 res = fan_get_status_safe(&status);
5564 if (res)
5565 return res;
5566
5567 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5568 if (status != fan_control_initial_status) {
5569 tp_features.fan_ctrl_status_undef = 0;
5570 } else {
5571 status = TP_EC_FAN_AUTO;
5572 }
5573 }
5574
5575 if ((status &
5576 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
5577 status = fan_control_desired_level;
5578
5579 if (status > 7)
5580 status = 7;
5581
5582 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
5583}
5584
5585static ssize_t fan_pwm1_store(struct device *dev,
5586 struct device_attribute *attr,
5587 const char *buf, size_t count)
5588{
5589 unsigned long s;
5590 int rc;
5591 u8 status, newlevel;
5592
5593 if (parse_strtoul(buf, 255, &s))
5594 return -EINVAL;
5595
5596 /* scale down from 0-255 to 0-7 */
5597 newlevel = (s >> 5) & 0x07;
5598
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02005599 if (mutex_lock_interruptible(&fan_mutex))
5600 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005601
5602 rc = fan_get_status(&status);
5603 if (!rc && (status &
5604 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5605 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03005606 if (rc == -ENXIO)
5607 rc = -EINVAL;
5608 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005609 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03005610 fan_watchdog_reset();
5611 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005612 }
5613
5614 mutex_unlock(&fan_mutex);
5615 return (rc)? rc : count;
5616}
5617
5618static struct device_attribute dev_attr_fan_pwm1 =
5619 __ATTR(pwm1, S_IWUSR | S_IRUGO,
5620 fan_pwm1_show, fan_pwm1_store);
5621
5622/* sysfs fan fan1_input ------------------------------------------------ */
5623static ssize_t fan_fan1_input_show(struct device *dev,
5624 struct device_attribute *attr,
5625 char *buf)
5626{
5627 int res;
5628 unsigned int speed;
5629
5630 res = fan_get_speed(&speed);
5631 if (res < 0)
5632 return res;
5633
5634 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
5635}
5636
5637static struct device_attribute dev_attr_fan_fan1_input =
5638 __ATTR(fan1_input, S_IRUGO,
5639 fan_fan1_input_show, NULL);
5640
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005641/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005642static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
5643 char *buf)
5644{
5645 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
5646}
5647
5648static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
5649 const char *buf, size_t count)
5650{
5651 unsigned long t;
5652
5653 if (parse_strtoul(buf, 120, &t))
5654 return -EINVAL;
5655
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03005656 if (!fan_control_allowed)
5657 return -EPERM;
5658
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005659 fan_watchdog_maxinterval = t;
5660 fan_watchdog_reset();
5661
5662 return count;
5663}
5664
5665static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
5666 fan_fan_watchdog_show, fan_fan_watchdog_store);
5667
5668/* --------------------------------------------------------------------- */
5669static struct attribute *fan_attributes[] = {
5670 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
5671 &dev_attr_fan_fan1_input.attr,
5672 NULL
5673};
5674
5675static const struct attribute_group fan_attr_group = {
5676 .attrs = fan_attributes,
5677};
5678
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005679static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005680{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005681 int rc;
5682
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005683 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
5684
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03005685 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005686 fan_status_access_mode = TPACPI_FAN_NONE;
5687 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005688 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005689 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005690 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005691 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005692
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005693 TPACPI_ACPIHANDLE_INIT(fans);
5694 TPACPI_ACPIHANDLE_INIT(gfan);
5695 TPACPI_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005696
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005697 if (gfan_handle) {
5698 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005699 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005700 } else {
5701 /* all other ThinkPads: note that even old-style
5702 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02005703 if (likely(acpi_ec_read(fan_status_offset,
5704 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005705 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02005706
5707 /* In some ThinkPads, neither the EC nor the ACPI
5708 * DSDT initialize the fan status, and it ends up
5709 * being set to 0x07 when it *could* be either
5710 * 0x07 or 0x80.
5711 *
5712 * Enable for TP-1Y (T43), TP-78 (R51e),
5713 * TP-76 (R52), TP-70 (T43, R52), which are known
5714 * to be buggy. */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03005715 if (fan_control_initial_status == 0x07) {
5716 switch (thinkpad_id.ec_model) {
5717 case 0x5931: /* TP-1Y */
5718 case 0x3837: /* TP-78 */
5719 case 0x3637: /* TP-76 */
5720 case 0x3037: /* TP-70 */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005721 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005722 "fan_init: initial fan status "
5723 "is unknown, assuming it is "
5724 "in auto mode\n");
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03005725 tp_features.fan_ctrl_status_undef = 1;
5726 ;;
5727 }
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02005728 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005729 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005730 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005731 "ThinkPad ACPI EC access misbehaving, "
5732 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005733 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005734 }
5735 }
5736
5737 if (sfan_handle) {
5738 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005739 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02005740 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005741 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005742 } else {
5743 if (!gfan_handle) {
5744 /* gfan without sfan means no fan control */
5745 /* all other models implement TP EC 0x2f control */
5746
5747 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02005748 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005749 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005750 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005751 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005752 TPACPI_FAN_CMD_SPEED |
5753 TPACPI_FAN_CMD_LEVEL |
5754 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005755 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005756 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02005757 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005758 TPACPI_FAN_CMD_LEVEL |
5759 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005760 }
5761 }
5762 }
5763
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005764 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
5765 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
5766 fan_control_access_mode != TPACPI_FAN_WR_NONE),
5767 fan_status_access_mode, fan_control_access_mode);
5768
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03005769 /* fan control master switch */
5770 if (!fan_control_allowed) {
5771 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5772 fan_control_commands = 0;
5773 dbg_printk(TPACPI_DBG_INIT,
5774 "fan control features disabled by parameter\n");
5775 }
5776
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005777 /* update fan_control_desired_level */
5778 if (fan_status_access_mode != TPACPI_FAN_NONE)
5779 fan_get_status_safe(NULL);
5780
5781 if (fan_status_access_mode != TPACPI_FAN_NONE ||
5782 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005783 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005784 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005785 if (rc < 0)
5786 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005787
5788 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
5789 &driver_attr_fan_watchdog);
5790 if (rc < 0) {
5791 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
5792 &fan_attr_group);
5793 return rc;
5794 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005795 return 0;
5796 } else
5797 return 1;
5798}
5799
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005800static void fan_exit(void)
5801{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005802 vdbg_printk(TPACPI_DBG_EXIT,
5803 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005804
5805 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005806 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005807 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
5808 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005809
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005810 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005811 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005812}
5813
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005814static int fan_read(char *p)
5815{
5816 int len = 0;
5817 int rc;
5818 u8 status;
5819 unsigned int speed = 0;
5820
5821 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005822 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005823 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005824 rc = fan_get_status_safe(&status);
5825 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005826 return rc;
5827
5828 len += sprintf(p + len, "status:\t\t%s\n"
5829 "level:\t\t%d\n",
5830 (status != 0) ? "enabled" : "disabled", status);
5831 break;
5832
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005833 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005834 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005835 rc = fan_get_status_safe(&status);
5836 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005837 return rc;
5838
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005839 if (unlikely(tp_features.fan_ctrl_status_undef)) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005840 if (status != fan_control_initial_status)
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005841 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005842 else
5843 /* Return most likely status. In fact, it
5844 * might be the only possible status */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005845 status = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005846 }
5847
5848 len += sprintf(p + len, "status:\t\t%s\n",
5849 (status != 0) ? "enabled" : "disabled");
5850
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005851 rc = fan_get_speed(&speed);
5852 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005853 return rc;
5854
5855 len += sprintf(p + len, "speed:\t\t%d\n", speed);
5856
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005857 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005858 /* Disengaged mode takes precedence */
5859 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005860 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005861 len += sprintf(p + len, "level:\t\tauto\n");
5862 else
5863 len += sprintf(p + len, "level:\t\t%d\n", status);
5864 break;
5865
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005866 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005867 default:
5868 len += sprintf(p + len, "status:\t\tnot supported\n");
5869 }
5870
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005871 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005872 len += sprintf(p + len, "commands:\tlevel <level>");
5873
5874 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005875 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005876 len += sprintf(p + len, " (<level> is 0-7)\n");
5877 break;
5878
5879 default:
5880 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005881 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005882 break;
5883 }
5884 }
5885
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005886 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005887 len += sprintf(p + len, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005888 "commands:\twatchdog <timeout> (<timeout> "
5889 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005890
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005891 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005892 len += sprintf(p + len, "commands:\tspeed <speed>"
5893 " (<speed> is 0-65535)\n");
5894
5895 return len;
5896}
5897
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005898static int fan_write_cmd_level(const char *cmd, int *rc)
5899{
5900 int level;
5901
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02005902 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005903 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005904 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005905 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005906 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02005907 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005908 return 0;
5909
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005910 *rc = fan_set_level_safe(level);
5911 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005912 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005913 "access mode %d", fan_control_access_mode);
5914
5915 return 1;
5916}
5917
5918static int fan_write_cmd_enable(const char *cmd, int *rc)
5919{
5920 if (strlencmp(cmd, "enable") != 0)
5921 return 0;
5922
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005923 *rc = fan_set_enable();
5924 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005925 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005926 "access mode %d", fan_control_access_mode);
5927
5928 return 1;
5929}
5930
5931static int fan_write_cmd_disable(const char *cmd, int *rc)
5932{
5933 if (strlencmp(cmd, "disable") != 0)
5934 return 0;
5935
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005936 *rc = fan_set_disable();
5937 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005938 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005939 "access mode %d", fan_control_access_mode);
5940
5941 return 1;
5942}
5943
5944static int fan_write_cmd_speed(const char *cmd, int *rc)
5945{
5946 int speed;
5947
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02005948 /* TODO:
5949 * Support speed <low> <medium> <high> ? */
5950
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005951 if (sscanf(cmd, "speed %d", &speed) != 1)
5952 return 0;
5953
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005954 *rc = fan_set_speed(speed);
5955 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005956 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005957 "access mode %d", fan_control_access_mode);
5958
5959 return 1;
5960}
5961
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005962static int fan_write_cmd_watchdog(const char *cmd, int *rc)
5963{
5964 int interval;
5965
5966 if (sscanf(cmd, "watchdog %d", &interval) != 1)
5967 return 0;
5968
5969 if (interval < 0 || interval > 120)
5970 *rc = -EINVAL;
5971 else
5972 fan_watchdog_maxinterval = interval;
5973
5974 return 1;
5975}
5976
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005977static int fan_write(char *buf)
5978{
5979 char *cmd;
5980 int rc = 0;
5981
5982 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005983 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005984 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005985 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005986 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005987 fan_write_cmd_disable(cmd, &rc) ||
5988 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005989 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005990 fan_write_cmd_speed(cmd, &rc))
5991 )
5992 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005993 else if (!rc)
5994 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005995 }
5996
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02005997 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005998}
5999
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006000static struct ibm_struct fan_driver_data = {
6001 .name = "fan",
6002 .read = fan_read,
6003 .write = fan_write,
6004 .exit = fan_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006005};
6006
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006007/****************************************************************************
6008 ****************************************************************************
6009 *
6010 * Infrastructure
6011 *
6012 ****************************************************************************
6013 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006015/* sysfs name ---------------------------------------------------------- */
6016static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
6017 struct device_attribute *attr,
6018 char *buf)
6019{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006020 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006021}
6022
6023static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
6024 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
6025
6026/* --------------------------------------------------------------------- */
6027
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006028/* /proc support */
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03006029static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006030
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006031/*
6032 * Module and infrastructure proble, init and exit handling
6033 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006035static int force_load;
6036
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006037#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006038static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006039{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006040 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006041
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006042 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006043}
6044#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
6045
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006046static void ibm_exit(struct ibm_struct *ibm)
6047{
6048 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
6049
6050 list_del_init(&ibm->all_drivers);
6051
6052 if (ibm->flags.acpi_notify_installed) {
6053 dbg_printk(TPACPI_DBG_EXIT,
6054 "%s: acpi_remove_notify_handler\n", ibm->name);
6055 BUG_ON(!ibm->acpi);
6056 acpi_remove_notify_handler(*ibm->acpi->handle,
6057 ibm->acpi->type,
6058 dispatch_acpi_notify);
6059 ibm->flags.acpi_notify_installed = 0;
6060 ibm->flags.acpi_notify_installed = 0;
6061 }
6062
6063 if (ibm->flags.proc_created) {
6064 dbg_printk(TPACPI_DBG_EXIT,
6065 "%s: remove_proc_entry\n", ibm->name);
6066 remove_proc_entry(ibm->name, proc_dir);
6067 ibm->flags.proc_created = 0;
6068 }
6069
6070 if (ibm->flags.acpi_driver_registered) {
6071 dbg_printk(TPACPI_DBG_EXIT,
6072 "%s: acpi_bus_unregister_driver\n", ibm->name);
6073 BUG_ON(!ibm->acpi);
6074 acpi_bus_unregister_driver(ibm->acpi->driver);
6075 kfree(ibm->acpi->driver);
6076 ibm->acpi->driver = NULL;
6077 ibm->flags.acpi_driver_registered = 0;
6078 }
6079
6080 if (ibm->flags.init_called && ibm->exit) {
6081 ibm->exit();
6082 ibm->flags.init_called = 0;
6083 }
6084
6085 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
6086}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006087
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006088static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089{
6090 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006091 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 struct proc_dir_entry *entry;
6093
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006094 BUG_ON(ibm == NULL);
6095
6096 INIT_LIST_HEAD(&ibm->all_drivers);
6097
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03006098 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 return 0;
6100
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006101 dbg_printk(TPACPI_DBG_INIT,
6102 "probing for %s\n", ibm->name);
6103
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006104 if (iibm->init) {
6105 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006106 if (ret > 0)
6107 return 0; /* probe failed */
6108 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006110
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03006111 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 }
6113
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03006114 if (ibm->acpi) {
6115 if (ibm->acpi->hid) {
6116 ret = register_tpacpi_subdriver(ibm);
6117 if (ret)
6118 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006119 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03006120
6121 if (ibm->acpi->notify) {
6122 ret = setup_acpi_notify(ibm);
6123 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006124 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03006125 ibm->name);
6126 ret = 0;
6127 goto err_out;
6128 }
6129 if (ret < 0)
6130 goto err_out;
6131 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006132 }
6133
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006134 dbg_printk(TPACPI_DBG_INIT,
6135 "%s installed\n", ibm->name);
6136
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006137 if (ibm->read) {
6138 entry = create_proc_entry(ibm->name,
6139 S_IFREG | S_IRUGO | S_IWUSR,
6140 proc_dir);
6141 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006142 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006143 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006144 ret = -ENODEV;
6145 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006146 }
6147 entry->owner = THIS_MODULE;
6148 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03006149 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006150 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03006151 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03006152 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006155 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
6156
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006158
6159err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006160 dbg_printk(TPACPI_DBG_INIT,
6161 "%s: at error exit path with result %d\n",
6162 ibm->name, ret);
6163
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006164 ibm_exit(ibm);
6165 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166}
6167
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006168/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006170static void __init get_thinkpad_model_data(struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006171{
Jeff Garzik18552562007-10-03 15:15:40 -04006172 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02006173 char ec_fw_string[18];
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006174
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006175 if (!tp)
6176 return;
6177
6178 memset(tp, 0, sizeof(*tp));
6179
6180 if (dmi_name_in_vendors("IBM"))
6181 tp->vendor = PCI_VENDOR_ID_IBM;
6182 else if (dmi_name_in_vendors("LENOVO"))
6183 tp->vendor = PCI_VENDOR_ID_LENOVO;
6184 else
6185 return;
6186
6187 tp->bios_version_str = kstrdup(dmi_get_system_info(DMI_BIOS_VERSION),
6188 GFP_KERNEL);
6189 if (!tp->bios_version_str)
6190 return;
6191 tp->bios_model = tp->bios_version_str[0]
6192 | (tp->bios_version_str[1] << 8);
6193
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006194 /*
6195 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
6196 * X32 or newer, all Z series; Some models must have an
6197 * up-to-date BIOS or they will not be detected.
6198 *
6199 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6200 */
6201 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02006202 if (sscanf(dev->name,
6203 "IBM ThinkPad Embedded Controller -[%17c",
6204 ec_fw_string) == 1) {
6205 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
6206 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006207
6208 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
6209 tp->ec_model = ec_fw_string[0]
6210 | (ec_fw_string[1] << 8);
6211 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02006212 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006213 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006214
6215 tp->model_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_VERSION),
6216 GFP_KERNEL);
Cyrill Gorcunov90fe17f2008-04-18 13:27:29 -07006217 if (tp->model_str && strnicmp(tp->model_str, "ThinkPad", 8) != 0) {
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006218 kfree(tp->model_str);
6219 tp->model_str = NULL;
6220 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03006221
6222 tp->nummodel_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_NAME),
6223 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224}
6225
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006226static int __init probe_for_thinkpad(void)
6227{
6228 int is_thinkpad;
6229
6230 if (acpi_disabled)
6231 return -ENODEV;
6232
6233 /*
6234 * Non-ancient models have better DMI tagging, but very old models
6235 * don't.
6236 */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006237 is_thinkpad = (thinkpad_id.model_str != NULL);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006238
6239 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006240 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006241 if (!ec_handle) {
6242 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006243 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006244 "Not yet supported ThinkPad detected!\n");
6245 return -ENODEV;
6246 }
6247
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03006248 /*
6249 * Risks a regression on very old machines, but reduces potential
6250 * false positives a damn great deal
6251 */
6252 if (!is_thinkpad)
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006253 is_thinkpad = (thinkpad_id.vendor == PCI_VENDOR_ID_IBM);
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03006254
6255 if (!is_thinkpad && !force_load)
6256 return -ENODEV;
6257
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006258 return 0;
6259}
6260
6261
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006262/* Module init, exit, parameters */
6263
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006264static struct ibm_init_struct ibms_init[] __initdata = {
6265 {
6266 .init = thinkpad_acpi_driver_init,
6267 .data = &thinkpad_acpi_driver_data,
6268 },
6269 {
6270 .init = hotkey_init,
6271 .data = &hotkey_driver_data,
6272 },
6273 {
6274 .init = bluetooth_init,
6275 .data = &bluetooth_driver_data,
6276 },
6277 {
6278 .init = wan_init,
6279 .data = &wan_driver_data,
6280 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02006281#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006282 {
6283 .init = video_init,
6284 .data = &video_driver_data,
6285 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02006286#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006287 {
6288 .init = light_init,
6289 .data = &light_driver_data,
6290 },
6291#ifdef CONFIG_THINKPAD_ACPI_DOCK
6292 {
6293 .init = dock_init,
6294 .data = &dock_driver_data[0],
6295 },
6296 {
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03006297 .init = dock_init2,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006298 .data = &dock_driver_data[1],
6299 },
6300#endif
6301#ifdef CONFIG_THINKPAD_ACPI_BAY
6302 {
6303 .init = bay_init,
6304 .data = &bay_driver_data,
6305 },
6306#endif
6307 {
6308 .init = cmos_init,
6309 .data = &cmos_driver_data,
6310 },
6311 {
6312 .init = led_init,
6313 .data = &led_driver_data,
6314 },
6315 {
6316 .init = beep_init,
6317 .data = &beep_driver_data,
6318 },
6319 {
6320 .init = thermal_init,
6321 .data = &thermal_driver_data,
6322 },
6323 {
6324 .data = &ecdump_driver_data,
6325 },
6326 {
6327 .init = brightness_init,
6328 .data = &brightness_driver_data,
6329 },
6330 {
6331 .data = &volume_driver_data,
6332 },
6333 {
6334 .init = fan_init,
6335 .data = &fan_driver_data,
6336 },
6337};
6338
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006339static int __init set_ibm_param(const char *val, struct kernel_param *kp)
6340{
6341 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006342 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006343
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02006344 if (!kp || !kp->name || !val)
6345 return -EINVAL;
6346
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006347 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6348 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02006349 WARN_ON(ibm == NULL);
6350
6351 if (!ibm || !ibm->name)
6352 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006353
6354 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
6355 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006356 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006357 strcpy(ibms_init[i].param, val);
6358 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006359 return 0;
6360 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006361 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006362
6363 return -EINVAL;
6364}
6365
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006366module_param(experimental, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006367MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006368 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006369
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03006370module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006371MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03006372
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03006373module_param(force_load, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006374MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006375 "Attempts to load the driver even on a "
6376 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03006377
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03006378module_param_named(fan_control, fan_control_allowed, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006379MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006380 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03006381
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006382module_param_named(brightness_mode, brightness_mode, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006383MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006384 "Selects brightness control strategy: "
6385 "0=auto, 1=EC, 2=CMOS, 3=both");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006386
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006387module_param(brightness_enable, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006388MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006389 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006390
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03006391module_param(hotkey_report_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006392MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006393 "used for backwards compatibility with userspace, "
6394 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03006395
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006396#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006397 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02006398 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006399 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006400
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006401TPACPI_PARAM(hotkey);
6402TPACPI_PARAM(bluetooth);
6403TPACPI_PARAM(video);
6404TPACPI_PARAM(light);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03006405#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006406TPACPI_PARAM(dock);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006407#endif
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03006408#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006409TPACPI_PARAM(bay);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03006410#endif /* CONFIG_THINKPAD_ACPI_BAY */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006411TPACPI_PARAM(cmos);
6412TPACPI_PARAM(led);
6413TPACPI_PARAM(beep);
6414TPACPI_PARAM(ecdump);
6415TPACPI_PARAM(brightness);
6416TPACPI_PARAM(volume);
6417TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006418
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006419static void thinkpad_acpi_module_exit(void)
6420{
6421 struct ibm_struct *ibm, *itmp;
6422
6423 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
6424
6425 list_for_each_entry_safe_reverse(ibm, itmp,
6426 &tpacpi_all_drivers,
6427 all_drivers) {
6428 ibm_exit(ibm);
6429 }
6430
6431 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
6432
6433 if (tpacpi_inputdev) {
6434 if (tp_features.input_device_registered)
6435 input_unregister_device(tpacpi_inputdev);
6436 else
6437 input_free_device(tpacpi_inputdev);
6438 }
6439
6440 if (tpacpi_hwmon)
6441 hwmon_device_unregister(tpacpi_hwmon);
6442
6443 if (tp_features.sensors_pdev_attrs_registered)
6444 device_remove_file(&tpacpi_sensors_pdev->dev,
6445 &dev_attr_thinkpad_acpi_pdev_name);
6446 if (tpacpi_sensors_pdev)
6447 platform_device_unregister(tpacpi_sensors_pdev);
6448 if (tpacpi_pdev)
6449 platform_device_unregister(tpacpi_pdev);
6450
6451 if (tp_features.sensors_pdrv_attrs_registered)
6452 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
6453 if (tp_features.platform_drv_attrs_registered)
6454 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
6455
6456 if (tp_features.sensors_pdrv_registered)
6457 platform_driver_unregister(&tpacpi_hwmon_pdriver);
6458
6459 if (tp_features.platform_drv_registered)
6460 platform_driver_unregister(&tpacpi_pdriver);
6461
6462 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006463 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006464
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006465 if (tpacpi_wq)
6466 destroy_workqueue(tpacpi_wq);
6467
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006468 kfree(thinkpad_id.bios_version_str);
6469 kfree(thinkpad_id.ec_version_str);
6470 kfree(thinkpad_id.model_str);
6471}
6472
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006473
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03006474static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475{
6476 int ret, i;
6477
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03006478 tpacpi_lifecycle = TPACPI_LIFE_INIT;
6479
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03006480 /* Parameter checking */
6481 if (hotkey_report_mode > 2)
6482 return -EINVAL;
6483
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006484 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006485
6486 get_thinkpad_model_data(&thinkpad_id);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006487 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006488 if (ret) {
6489 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006490 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006493 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03006494
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006495 TPACPI_ACPIHANDLE_INIT(ecrd);
6496 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006498 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
6499 if (!tpacpi_wq) {
6500 thinkpad_acpi_module_exit();
6501 return -ENOMEM;
6502 }
6503
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006504 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006506 printk(TPACPI_ERR
6507 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03006508 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509 return -ENODEV;
6510 }
6511 proc_dir->owner = THIS_MODULE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006512
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006513 ret = platform_driver_register(&tpacpi_pdriver);
6514 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006515 printk(TPACPI_ERR
6516 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006517 thinkpad_acpi_module_exit();
6518 return ret;
6519 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03006520 tp_features.platform_drv_registered = 1;
6521
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006522 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
6523 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006524 printk(TPACPI_ERR
6525 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006526 thinkpad_acpi_module_exit();
6527 return ret;
6528 }
6529 tp_features.sensors_pdrv_registered = 1;
6530
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03006531 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03006532 if (!ret) {
6533 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006534 ret = tpacpi_create_driver_attributes(
6535 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03006536 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03006537 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006538 printk(TPACPI_ERR
6539 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03006540 thinkpad_acpi_module_exit();
6541 return ret;
6542 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03006543 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03006544
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006545
6546 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006547 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006548 NULL, 0);
6549 if (IS_ERR(tpacpi_pdev)) {
6550 ret = PTR_ERR(tpacpi_pdev);
6551 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006552 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006553 thinkpad_acpi_module_exit();
6554 return ret;
6555 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006556 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006557 TPACPI_HWMON_DRVR_NAME,
6558 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006559 if (IS_ERR(tpacpi_sensors_pdev)) {
6560 ret = PTR_ERR(tpacpi_sensors_pdev);
6561 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006562 printk(TPACPI_ERR
6563 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006564 thinkpad_acpi_module_exit();
6565 return ret;
6566 }
6567 ret = device_create_file(&tpacpi_sensors_pdev->dev,
6568 &dev_attr_thinkpad_acpi_pdev_name);
6569 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006570 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006571 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006572 thinkpad_acpi_module_exit();
6573 return ret;
6574 }
6575 tp_features.sensors_pdev_attrs_registered = 1;
6576 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006577 if (IS_ERR(tpacpi_hwmon)) {
6578 ret = PTR_ERR(tpacpi_hwmon);
6579 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006580 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03006581 thinkpad_acpi_module_exit();
6582 return ret;
6583 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03006584 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006585 tpacpi_inputdev = input_allocate_device();
6586 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006587 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006588 thinkpad_acpi_module_exit();
6589 return -ENOMEM;
6590 } else {
6591 /* Prepare input device, but don't register */
6592 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006593 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006594 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03006595 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
6596 thinkpad_id.vendor :
6597 PCI_VENDOR_ID_IBM;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006598 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
6599 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
6600 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006601 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6602 ret = ibm_init(&ibms_init[i]);
6603 if (ret >= 0 && *ibms_init[i].param)
6604 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03006606 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607 return ret;
6608 }
6609 }
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006610 ret = input_register_device(tpacpi_inputdev);
6611 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006612 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03006613 thinkpad_acpi_module_exit();
6614 return ret;
6615 } else {
6616 tp_features.input_device_registered = 1;
6617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03006619 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620 return 0;
6621}
6622
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006623/* Please remove this in year 2009 */
6624MODULE_ALIAS("ibm_acpi");
6625
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03006626MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
6627
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006628/*
6629 * DMI matching for module autoloading
6630 *
6631 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6632 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
6633 *
6634 * Only models listed in thinkwiki will be supported, so add yours
6635 * if it is not there yet.
6636 */
6637#define IBM_BIOS_MODULE_ALIAS(__type) \
6638 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW")
6639
6640/* Non-ancient thinkpads */
6641MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*");
6642MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*");
6643
6644/* Ancient thinkpad BIOSes have to be identified by
6645 * BIOS type or model number, and there are far less
6646 * BIOS types than model numbers... */
6647IBM_BIOS_MODULE_ALIAS("I[B,D,H,I,M,N,O,T,W,V,Y,Z]");
6648IBM_BIOS_MODULE_ALIAS("1[0,3,6,8,A-G,I,K,M-P,S,T]");
6649IBM_BIOS_MODULE_ALIAS("K[U,X-Z]");
6650
6651MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006652MODULE_DESCRIPTION(TPACPI_DESC);
6653MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02006654MODULE_LICENSE("GPL");
6655
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03006656module_init(thinkpad_acpi_module_init);
6657module_exit(thinkpad_acpi_module_exit);