blob: ffd584c35808de4ba03c63118790117f4e2aa812 [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 Holschuh1c762ca2009-04-04 04:25:42 +00006 * Copyright (C) 2006-2009 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 Holschuhb57f7e72009-04-14 02:44:14 +000024#define TPACPI_VERSION "0.23"
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -030025#define TPACPI_SYSFS_VERSION 0x020500
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>
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +000057#include <linux/sched.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020058#include <linux/kthread.h>
59#include <linux/freezer.h>
60#include <linux/delay.h>
61
62#include <linux/nvram.h>
63#include <linux/proc_fs.h>
64#include <linux/sysfs.h>
65#include <linux/backlight.h>
66#include <linux/fb.h>
67#include <linux/platform_device.h>
68#include <linux/hwmon.h>
69#include <linux/hwmon-sysfs.h>
70#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030071#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030072#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020073#include <asm/uaccess.h>
74
75#include <linux/dmi.h>
76#include <linux/jiffies.h>
77#include <linux/workqueue.h>
78
79#include <acpi/acpi_drivers.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020080
81#include <linux/pci_ids.h>
82
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020083
84/* ThinkPad CMOS commands */
85#define TP_CMOS_VOLUME_DOWN 0
86#define TP_CMOS_VOLUME_UP 1
87#define TP_CMOS_VOLUME_MUTE 2
88#define TP_CMOS_BRIGHTNESS_UP 4
89#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030090#define TP_CMOS_THINKLIGHT_ON 12
91#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020092
93/* NVRAM Addresses */
94enum tp_nvram_addr {
95 TP_NVRAM_ADDR_HK2 = 0x57,
96 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
97 TP_NVRAM_ADDR_VIDEO = 0x59,
98 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
99 TP_NVRAM_ADDR_MIXER = 0x60,
100};
101
102/* NVRAM bit masks */
103enum {
104 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
105 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
106 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
107 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
108 TP_NVRAM_MASK_THINKLIGHT = 0x10,
109 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
110 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
111 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
112 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
113 TP_NVRAM_MASK_MUTE = 0x40,
114 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
115 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
116 TP_NVRAM_POS_LEVEL_VOLUME = 0,
117};
118
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200119/* ACPI HIDs */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200120#define TPACPI_ACPI_HKEY_HID "IBM0068"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200121
122/* Input IDs */
123#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
124#define TPACPI_HKEY_INPUT_VERSION 0x4101
125
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200126/* ACPI \WGSV commands */
127enum {
128 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
129 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
130 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
131 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
132};
133
134/* TP_ACPI_WGSV_GET_STATE bits */
135enum {
136 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
137 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
138 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
139 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
140 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
141 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
142 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
143 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
144 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
145 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
146};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200147
148/****************************************************************************
149 * Main driver
150 */
151
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200152#define TPACPI_NAME "thinkpad"
153#define TPACPI_DESC "ThinkPad ACPI Extras"
154#define TPACPI_FILE TPACPI_NAME "_acpi"
155#define TPACPI_URL "http://ibm-acpi.sf.net/"
156#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200157
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200158#define TPACPI_PROC_DIR "ibm"
159#define TPACPI_ACPI_EVENT_PREFIX "ibm"
160#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300161#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200162#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200163
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300164#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300165#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300166
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200167#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200168
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000169/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200170#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000171#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
172#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
173#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
174#define TPACPI_ERR KERN_ERR TPACPI_LOG
175#define TPACPI_WARN KERN_WARNING TPACPI_LOG
176#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
177#define TPACPI_INFO KERN_INFO TPACPI_LOG
178#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200179
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000180/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200181#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000182#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200183#define TPACPI_DBG_INIT 0x0001
184#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +0000185#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000186#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000187#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000188#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200189
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200190#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
191#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
192#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200193
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200194
195/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200196 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200197 */
198
199struct ibm_struct;
200
201struct tp_acpi_drv_struct {
202 const struct acpi_device_id *hid;
203 struct acpi_driver *driver;
204
205 void (*notify) (struct ibm_struct *, u32);
206 acpi_handle *handle;
207 u32 type;
208 struct acpi_device *device;
209};
210
211struct ibm_struct {
212 char *name;
213
214 int (*read) (char *);
215 int (*write) (char *);
216 void (*exit) (void);
217 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200218 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200219 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200220
221 struct list_head all_drivers;
222
223 struct tp_acpi_drv_struct *acpi;
224
225 struct {
226 u8 acpi_driver_registered:1;
227 u8 acpi_notify_installed:1;
228 u8 proc_created:1;
229 u8 init_called:1;
230 u8 experimental:1;
231 } flags;
232};
233
234struct ibm_init_struct {
235 char param[32];
236
237 int (*init) (struct ibm_init_struct *);
238 struct ibm_struct *data;
239};
240
241static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200242 u32 bluetooth:1;
243 u32 hotkey:1;
244 u32 hotkey_mask:1;
245 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200246 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200247 u32 light:1;
248 u32 light_status:1;
249 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300250 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200251 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200252 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200253 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300254 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300255 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200256 u32 input_device_registered:1;
257 u32 platform_drv_registered:1;
258 u32 platform_drv_attrs_registered:1;
259 u32 sensors_pdrv_registered:1;
260 u32 sensors_pdrv_attrs_registered:1;
261 u32 sensors_pdev_attrs_registered:1;
262 u32 hotkey_poll_active:1;
263} tp_features;
264
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300265static struct {
266 u16 hotkey_mask_ff:1;
267} tp_warned;
268
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200269struct thinkpad_id_data {
270 unsigned int vendor; /* ThinkPad vendor:
271 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
272
273 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
274 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
275
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300276 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200277 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300278 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
279 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200280
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300281 char *model_str; /* ThinkPad T43 */
282 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200283};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200284static struct thinkpad_id_data thinkpad_id;
285
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300286static enum {
287 TPACPI_LIFE_INIT = 0,
288 TPACPI_LIFE_RUNNING,
289 TPACPI_LIFE_EXITING,
290} tpacpi_lifecycle;
291
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200292static int experimental;
293static u32 dbg_level;
294
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300295static struct workqueue_struct *tpacpi_wq;
296
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000297enum led_status_t {
298 TPACPI_LED_OFF = 0,
299 TPACPI_LED_ON,
300 TPACPI_LED_BLINK,
301};
302
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300303/* Special LED class that can defer work */
304struct tpacpi_led_classdev {
305 struct led_classdev led_classdev;
306 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000307 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300308 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300309};
310
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200311#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
312static int dbg_wlswemul;
313static int tpacpi_wlsw_emulstate;
314static int dbg_bluetoothemul;
315static int tpacpi_bluetooth_emulstate;
316static int dbg_wwanemul;
317static int tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200318static int dbg_uwbemul;
319static int tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200320#endif
321
322
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000323/*************************************************************************
324 * Debugging helpers
325 */
326
327#define dbg_printk(a_dbg_level, format, arg...) \
328 do { if (dbg_level & (a_dbg_level)) \
329 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
330 } while (0)
331
332#ifdef CONFIG_THINKPAD_ACPI_DEBUG
333#define vdbg_printk dbg_printk
334static const char *str_supported(int is_supported);
335#else
336#define vdbg_printk(a_dbg_level, format, arg...) \
337 do { } while (0)
338#endif
339
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000340static void tpacpi_log_usertask(const char * const what)
341{
342 printk(TPACPI_DEBUG "%s: access by process with PID %d\n",
343 what, task_tgid_vnr(current));
344}
345
346#define tpacpi_disclose_usertask(what, format, arg...) \
347 do { \
348 if (unlikely( \
349 (dbg_level & TPACPI_DBG_DISCLOSETASK) && \
350 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
351 printk(TPACPI_DEBUG "%s: PID %d: " format, \
352 what, task_tgid_vnr(current), ## arg); \
353 } \
354 } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000355
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300356/*
357 * Quirk handling helpers
358 *
359 * ThinkPad IDs and versions seen in the field so far
360 * are two-characters from the set [0-9A-Z], i.e. base 36.
361 *
362 * We use values well outside that range as specials.
363 */
364
365#define TPACPI_MATCH_ANY 0xffffU
366#define TPACPI_MATCH_UNKNOWN 0U
367
368/* TPID('1', 'Y') == 0x5931 */
369#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
370
371#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
372 { .vendor = PCI_VENDOR_ID_IBM, \
373 .bios = TPID(__id1, __id2), \
374 .ec = TPACPI_MATCH_ANY, \
375 .quirks = (__quirk) }
376
377#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
378 { .vendor = PCI_VENDOR_ID_LENOVO, \
379 .bios = TPID(__id1, __id2), \
380 .ec = TPACPI_MATCH_ANY, \
381 .quirks = (__quirk) }
382
383struct tpacpi_quirk {
384 unsigned int vendor;
385 u16 bios;
386 u16 ec;
387 unsigned long quirks;
388};
389
390/**
391 * tpacpi_check_quirks() - search BIOS/EC version on a list
392 * @qlist: array of &struct tpacpi_quirk
393 * @qlist_size: number of elements in @qlist
394 *
395 * Iterates over a quirks list until one is found that matches the
396 * ThinkPad's vendor, BIOS and EC model.
397 *
398 * Returns 0 if nothing matches, otherwise returns the quirks field of
399 * the matching &struct tpacpi_quirk entry.
400 *
401 * The match criteria is: vendor, ec and bios much match.
402 */
403static unsigned long __init tpacpi_check_quirks(
404 const struct tpacpi_quirk *qlist,
405 unsigned int qlist_size)
406{
407 while (qlist_size) {
408 if ((qlist->vendor == thinkpad_id.vendor ||
409 qlist->vendor == TPACPI_MATCH_ANY) &&
410 (qlist->bios == thinkpad_id.bios_model ||
411 qlist->bios == TPACPI_MATCH_ANY) &&
412 (qlist->ec == thinkpad_id.ec_model ||
413 qlist->ec == TPACPI_MATCH_ANY))
414 return qlist->quirks;
415
416 qlist_size--;
417 qlist++;
418 }
419 return 0;
420}
421
422
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300423/****************************************************************************
424 ****************************************************************************
425 *
426 * ACPI Helpers and device model
427 *
428 ****************************************************************************
429 ****************************************************************************/
430
431/*************************************************************************
432 * ACPI basic handles
433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300435static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200437#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 static acpi_handle object##_handle; \
439 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400440 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 static char *object##_paths[] = { paths }
442
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200443TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400444 "\\_SB.PCI.ISA.EC", /* 570 */
445 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
446 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
447 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
448 "\\_SB.PCI0.ICH3.EC0", /* R31 */
449 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300450 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200452TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
453TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200455TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
456 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400457 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
458 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300459 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400460
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200461TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400462 "^HKEY", /* R30, R31 */
463 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300464 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400465
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200466TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
467 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
468 "\\_SB.PCI0.VID0", /* 770e */
469 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
470 "\\_SB.PCI0.AGP.VID", /* all others */
471 ); /* R30, R31 */
472
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400473
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300474/*************************************************************************
475 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200476 */
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static int acpi_evalf(acpi_handle handle,
479 void *res, char *method, char *fmt, ...)
480{
481 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400482 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200483 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400484 struct acpi_buffer result, *resultp;
485 union acpi_object out_obj;
486 acpi_status status;
487 va_list ap;
488 char res_type;
489 int success;
490 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200493 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
495 }
496
497 if (*fmt == 'q') {
498 quiet = 1;
499 fmt++;
500 } else
501 quiet = 0;
502
503 res_type = *(fmt++);
504
505 params.count = 0;
506 params.pointer = &in_objs[0];
507
508 va_start(ap, fmt);
509 while (*fmt) {
510 char c = *(fmt++);
511 switch (c) {
512 case 'd': /* int */
513 in_objs[params.count].integer.value = va_arg(ap, int);
514 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
515 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400516 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200518 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 "with invalid format character '%c'\n", c);
520 return 0;
521 }
522 }
523 va_end(ap);
524
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400525 if (res_type != 'v') {
526 result.length = sizeof(out_obj);
527 result.pointer = &out_obj;
528 resultp = &result;
529 } else
530 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400532 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400535 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (res)
537 *(int *)res = out_obj.integer.value;
538 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
539 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400540 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 success = status == AE_OK;
542 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400543 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200545 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 "with invalid format character '%c'\n", res_type);
547 return 0;
548 }
549
550 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200551 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 method, fmt0, status);
553
554 return success;
555}
556
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200557static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300558{
559 int v;
560
561 if (ecrd_handle) {
562 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
563 return 0;
564 *p = v;
565 } else {
566 if (ec_read(i, p) < 0)
567 return 0;
568 }
569
570 return 1;
571}
572
573static int acpi_ec_write(int i, u8 v)
574{
575 if (ecwr_handle) {
576 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
577 return 0;
578 } else {
579 if (ec_write(i, v) < 0)
580 return 0;
581 }
582
583 return 1;
584}
585
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300586static int issue_thinkpad_cmos_command(int cmos_cmd)
587{
588 if (!cmos_handle)
589 return -ENXIO;
590
591 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
592 return -EIO;
593
594 return 0;
595}
596
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300597/*************************************************************************
598 * ACPI device model
599 */
600
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200601#define TPACPI_ACPIHANDLE_INIT(object) \
602 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200603 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
604
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300605static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300606 acpi_handle *handle, acpi_handle parent,
607 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300608{
609 int i;
610 acpi_status status;
611
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300612 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
613 name);
614
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300615 for (i = 0; i < num_paths; i++) {
616 status = acpi_get_handle(parent, paths[i], handle);
617 if (ACPI_SUCCESS(status)) {
618 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300619 dbg_printk(TPACPI_DBG_INIT,
620 "Found ACPI handle %s for %s\n",
621 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300622 return;
623 }
624 }
625
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300626 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
627 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300628 *handle = NULL;
629}
630
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300631static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300632{
633 struct ibm_struct *ibm = data;
634
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300635 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
636 return;
637
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300638 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300639 return;
640
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300641 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300642}
643
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300644static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300645{
646 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300647 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300648
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300649 BUG_ON(!ibm->acpi);
650
651 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300652 return 0;
653
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300654 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300655 "setting up ACPI notify for %s\n", ibm->name);
656
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300657 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
658 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200659 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300660 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300661 return -ENODEV;
662 }
663
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700664 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300665 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200666 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300667 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300668
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300669 status = acpi_install_notify_handler(*ibm->acpi->handle,
670 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300671 if (ACPI_FAILURE(status)) {
672 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200673 printk(TPACPI_NOTICE
674 "another device driver is already "
675 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300676 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200677 printk(TPACPI_ERR
678 "acpi_install_notify_handler(%s) failed: %d\n",
679 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300680 }
681 return -ENODEV;
682 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300683 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300684 return 0;
685}
686
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300687static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300688{
689 return 0;
690}
691
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300692static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300693{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300694 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300695
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300696 dbg_printk(TPACPI_DBG_INIT,
697 "registering %s as an ACPI driver\n", ibm->name);
698
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300699 BUG_ON(!ibm->acpi);
700
701 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
702 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300703 printk(TPACPI_ERR
704 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300705 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300706 }
707
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200708 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300709 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200710
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300711 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300712
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300713 rc = acpi_bus_register_driver(ibm->acpi->driver);
714 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200715 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200716 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300717 kfree(ibm->acpi->driver);
718 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300719 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300720 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300721
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300722 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300723}
724
725
726/****************************************************************************
727 ****************************************************************************
728 *
729 * Procfs Helpers
730 *
731 ****************************************************************************
732 ****************************************************************************/
733
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300734static int dispatch_procfs_read(char *page, char **start, off_t off,
735 int count, int *eof, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300736{
737 struct ibm_struct *ibm = data;
738 int len;
739
740 if (!ibm || !ibm->read)
741 return -EINVAL;
742
743 len = ibm->read(page);
744 if (len < 0)
745 return len;
746
747 if (len <= off + count)
748 *eof = 1;
749 *start = page + off;
750 len -= off;
751 if (len > count)
752 len = count;
753 if (len < 0)
754 len = 0;
755
756 return len;
757}
758
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300759static int dispatch_procfs_write(struct file *file,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200760 const char __user *userbuf,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300761 unsigned long count, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300762{
763 struct ibm_struct *ibm = data;
764 char *kernbuf;
765 int ret;
766
767 if (!ibm || !ibm->write)
768 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300769 if (count > PAGE_SIZE - 2)
770 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300771
772 kernbuf = kmalloc(count + 2, GFP_KERNEL);
773 if (!kernbuf)
774 return -ENOMEM;
775
776 if (copy_from_user(kernbuf, userbuf, count)) {
777 kfree(kernbuf);
778 return -EFAULT;
779 }
780
781 kernbuf[count] = 0;
782 strcat(kernbuf, ",");
783 ret = ibm->write(kernbuf);
784 if (ret == 0)
785 ret = count;
786
787 kfree(kernbuf);
788
789 return ret;
790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static char *next_cmd(char **cmds)
793{
794 char *start = *cmds;
795 char *end;
796
797 while ((end = strchr(start, ',')) && end == start)
798 start = end + 1;
799
800 if (!end)
801 return NULL;
802
803 *end = 0;
804 *cmds = end + 1;
805 return start;
806}
807
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300808
809/****************************************************************************
810 ****************************************************************************
811 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300812 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300813 *
814 ****************************************************************************
815 ****************************************************************************/
816
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300817static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300818static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700819static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300820static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300821static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200822static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300823
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200824static int tpacpi_suspend_handler(struct platform_device *pdev,
825 pm_message_t state)
826{
827 struct ibm_struct *ibm, *itmp;
828
829 list_for_each_entry_safe(ibm, itmp,
830 &tpacpi_all_drivers,
831 all_drivers) {
832 if (ibm->suspend)
833 (ibm->suspend)(state);
834 }
835
836 return 0;
837}
838
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300839static int tpacpi_resume_handler(struct platform_device *pdev)
840{
841 struct ibm_struct *ibm, *itmp;
842
843 list_for_each_entry_safe(ibm, itmp,
844 &tpacpi_all_drivers,
845 all_drivers) {
846 if (ibm->resume)
847 (ibm->resume)();
848 }
849
850 return 0;
851}
852
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200853static void tpacpi_shutdown_handler(struct platform_device *pdev)
854{
855 struct ibm_struct *ibm, *itmp;
856
857 list_for_each_entry_safe(ibm, itmp,
858 &tpacpi_all_drivers,
859 all_drivers) {
860 if (ibm->shutdown)
861 (ibm->shutdown)();
862 }
863}
864
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300865static struct platform_driver tpacpi_pdriver = {
866 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200867 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300868 .owner = THIS_MODULE,
869 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200870 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300871 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200872 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300873};
874
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300875static struct platform_driver tpacpi_hwmon_pdriver = {
876 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200877 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300878 .owner = THIS_MODULE,
879 },
880};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300881
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300882/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300883 * sysfs support helpers
884 */
885
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200886struct attribute_set {
887 unsigned int members, max_members;
888 struct attribute_group group;
889};
890
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300891struct attribute_set_obj {
892 struct attribute_set s;
893 struct attribute *a;
894} __attribute__((packed));
895
896static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200897 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300898{
899 struct attribute_set_obj *sobj;
900
901 if (max_members == 0)
902 return NULL;
903
904 /* Allocates space for implicit NULL at the end too */
905 sobj = kzalloc(sizeof(struct attribute_set_obj) +
906 max_members * sizeof(struct attribute *),
907 GFP_KERNEL);
908 if (!sobj)
909 return NULL;
910 sobj->s.max_members = max_members;
911 sobj->s.group.attrs = &sobj->a;
912 sobj->s.group.name = name;
913
914 return &sobj->s;
915}
916
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200917#define destroy_attr_set(_set) \
918 kfree(_set);
919
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300920/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200921static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300922{
923 if (!s || !attr)
924 return -EINVAL;
925
926 if (s->members >= s->max_members)
927 return -ENOMEM;
928
929 s->group.attrs[s->members] = attr;
930 s->members++;
931
932 return 0;
933}
934
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200935static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300936 struct attribute **attr,
937 unsigned int count)
938{
939 int i, res;
940
941 for (i = 0; i < count; i++) {
942 res = add_to_attr_set(s, attr[i]);
943 if (res)
944 return res;
945 }
946
947 return 0;
948}
949
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200950static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300951{
952 sysfs_remove_group(kobj, &s->group);
953 destroy_attr_set(s);
954}
955
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200956#define register_attr_set_with_sysfs(_attr_set, _kobj) \
957 sysfs_create_group(_kobj, &_attr_set->group)
958
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300959static int parse_strtoul(const char *buf,
960 unsigned long max, unsigned long *value)
961{
962 char *endp;
963
Henrique de Moraes Holschuh32afbf02007-10-08 10:12:56 -0300964 while (*buf && isspace(*buf))
965 buf++;
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300966 *value = simple_strtoul(buf, &endp, 0);
967 while (*endp && isspace(*endp))
968 endp++;
969 if (*endp || *value > max)
970 return -EINVAL;
971
972 return 0;
973}
974
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -0300975static void tpacpi_disable_brightness_delay(void)
976{
977 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
978 printk(TPACPI_NOTICE
979 "ACPI backlight control delay disabled\n");
980}
981
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300982static int __init tpacpi_query_bcl_levels(acpi_handle handle)
983{
984 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
985 union acpi_object *obj;
986 int rc;
987
988 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
989 obj = (union acpi_object *)buffer.pointer;
990 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
991 printk(TPACPI_ERR "Unknown _BCL data, "
992 "please report this to %s\n", TPACPI_MAIL);
993 rc = 0;
994 } else {
995 rc = obj->package.count;
996 }
997 } else {
998 return 0;
999 }
1000
1001 kfree(buffer.pointer);
1002 return rc;
1003}
1004
1005static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
1006 u32 lvl, void *context, void **rv)
1007{
1008 char name[ACPI_PATH_SEGMENT_LENGTH];
1009 struct acpi_buffer buffer = { sizeof(name), &name };
1010
1011 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
1012 !strncmp("_BCL", name, sizeof(name) - 1)) {
1013 BUG_ON(!rv || !*rv);
1014 **(int **)rv = tpacpi_query_bcl_levels(handle);
1015 return AE_CTRL_TERMINATE;
1016 } else {
1017 return AE_OK;
1018 }
1019}
1020
1021/*
1022 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
1023 */
1024static int __init tpacpi_check_std_acpi_brightness_support(void)
1025{
1026 int status;
1027 int bcl_levels = 0;
1028 void *bcl_ptr = &bcl_levels;
1029
1030 if (!vid_handle) {
1031 TPACPI_ACPIHANDLE_INIT(vid);
1032 }
1033 if (!vid_handle)
1034 return 0;
1035
1036 /*
1037 * Search for a _BCL method, and execute it. This is safe on all
1038 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
1039 * BIOS in ACPI backlight control mode. We do NOT have to care
1040 * about calling the _BCL method in an enabled video device, any
1041 * will do for our purposes.
1042 */
1043
1044 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
1045 tpacpi_acpi_walk_find_bcl, NULL,
1046 &bcl_ptr);
1047
1048 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
1049 tp_features.bright_acpimode = 1;
1050 return (bcl_levels - 2);
1051 }
1052
1053 return 0;
1054}
1055
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001056static void printk_deprecated_attribute(const char * const what,
1057 const char * const details)
1058{
1059 tpacpi_log_usertask("deprecated sysfs attribute");
1060 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1061 "will be removed. %s\n",
1062 what, details);
1063}
1064
Johannes Berg19d337d2009-06-02 13:01:37 +02001065/*************************************************************************
1066 * rfkill and radio control support helpers
1067 */
1068
1069/*
1070 * ThinkPad-ACPI firmware handling model:
1071 *
1072 * WLSW (master wireless switch) is event-driven, and is common to all
1073 * firmware-controlled radios. It cannot be controlled, just monitored,
1074 * as expected. It overrides all radio state in firmware
1075 *
1076 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1077 * (TODO: verify how WLSW interacts with the returned radio state).
1078 *
1079 * The only time there are shadow radio state changes, is when
1080 * masked-off hotkeys are used.
1081 */
1082
1083/*
1084 * Internal driver API for radio state:
1085 *
1086 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1087 * bool: true means radio blocked (off)
1088 */
1089enum tpacpi_rfkill_state {
1090 TPACPI_RFK_RADIO_OFF = 0,
1091 TPACPI_RFK_RADIO_ON
1092};
1093
1094/* rfkill switches */
1095enum tpacpi_rfk_id {
1096 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1097 TPACPI_RFK_WWAN_SW_ID,
1098 TPACPI_RFK_UWB_SW_ID,
1099 TPACPI_RFK_SW_MAX
1100};
1101
1102static const char *tpacpi_rfkill_names[] = {
1103 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1104 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1105 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1106 [TPACPI_RFK_SW_MAX] = NULL
1107};
1108
1109/* ThinkPad-ACPI rfkill subdriver */
1110struct tpacpi_rfk {
1111 struct rfkill *rfkill;
1112 enum tpacpi_rfk_id id;
1113 const struct tpacpi_rfk_ops *ops;
1114};
1115
1116struct tpacpi_rfk_ops {
1117 /* firmware interface */
1118 int (*get_status)(void);
1119 int (*set_status)(const enum tpacpi_rfkill_state);
1120};
1121
1122static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1123
1124/* Query FW and update rfkill sw state for a given rfkill switch */
1125static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1126{
1127 int status;
1128
1129 if (!tp_rfk)
1130 return -ENODEV;
1131
1132 status = (tp_rfk->ops->get_status)();
1133 if (status < 0)
1134 return status;
1135
1136 rfkill_set_sw_state(tp_rfk->rfkill,
1137 (status == TPACPI_RFK_RADIO_OFF));
1138
1139 return status;
1140}
1141
1142/* Query FW and update rfkill sw state for all rfkill switches */
1143static void tpacpi_rfk_update_swstate_all(void)
1144{
1145 unsigned int i;
1146
1147 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1148 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1149}
1150
1151/*
1152 * Sync the HW-blocking state of all rfkill switches,
1153 * do notice it causes the rfkill core to schedule uevents
1154 */
1155static void tpacpi_rfk_update_hwblock_state(bool blocked)
1156{
1157 unsigned int i;
1158 struct tpacpi_rfk *tp_rfk;
1159
1160 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1161 tp_rfk = tpacpi_rfkill_switches[i];
1162 if (tp_rfk) {
1163 if (rfkill_set_hw_state(tp_rfk->rfkill,
1164 blocked)) {
1165 /* ignore -- we track sw block */
1166 }
1167 }
1168 }
1169}
1170
1171/* Call to get the WLSW state from the firmware */
1172static int hotkey_get_wlsw(void);
1173
1174/* Call to query WLSW state and update all rfkill switches */
1175static bool tpacpi_rfk_check_hwblock_state(void)
1176{
1177 int res = hotkey_get_wlsw();
1178 int hw_blocked;
1179
1180 /* When unknown or unsupported, we have to assume it is unblocked */
1181 if (res < 0)
1182 return false;
1183
1184 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1185 tpacpi_rfk_update_hwblock_state(hw_blocked);
1186
1187 return hw_blocked;
1188}
1189
1190static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1191{
1192 struct tpacpi_rfk *tp_rfk = data;
1193 int res;
1194
1195 dbg_printk(TPACPI_DBG_RFKILL,
1196 "request to change radio state to %s\n",
1197 blocked ? "blocked" : "unblocked");
1198
1199 /* try to set radio state */
1200 res = (tp_rfk->ops->set_status)(blocked ?
1201 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1202
1203 /* and update the rfkill core with whatever the FW really did */
1204 tpacpi_rfk_update_swstate(tp_rfk);
1205
1206 return (res < 0) ? res : 0;
1207}
1208
1209static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1210 .set_block = tpacpi_rfk_hook_set_block,
1211};
1212
1213static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1214 const struct tpacpi_rfk_ops *tp_rfkops,
1215 const enum rfkill_type rfktype,
1216 const char *name,
1217 const bool set_default)
1218{
1219 struct tpacpi_rfk *atp_rfk;
1220 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001221 bool sw_state = false;
1222 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001223
1224 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1225
Johannes Berg19d337d2009-06-02 13:01:37 +02001226 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1227 if (atp_rfk)
1228 atp_rfk->rfkill = rfkill_alloc(name,
1229 &tpacpi_pdev->dev,
1230 rfktype,
1231 &tpacpi_rfk_rfkill_ops,
1232 atp_rfk);
1233 if (!atp_rfk || !atp_rfk->rfkill) {
1234 printk(TPACPI_ERR
1235 "failed to allocate memory for rfkill class\n");
1236 kfree(atp_rfk);
1237 return -ENOMEM;
1238 }
1239
1240 atp_rfk->id = id;
1241 atp_rfk->ops = tp_rfkops;
1242
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001243 sw_status = (tp_rfkops->get_status)();
1244 if (sw_status < 0) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001245 printk(TPACPI_ERR
1246 "failed to read initial state for %s, error %d\n",
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001247 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001248 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001249 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001250 if (set_default) {
1251 /* try to keep the initial state, since we ask the
1252 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001253 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001254 }
1255 }
1256 rfkill_set_hw_state(atp_rfk->rfkill, tpacpi_rfk_check_hwblock_state());
Johannes Berg19d337d2009-06-02 13:01:37 +02001257
1258 res = rfkill_register(atp_rfk->rfkill);
1259 if (res < 0) {
1260 printk(TPACPI_ERR
1261 "failed to register %s rfkill switch: %d\n",
1262 name, res);
1263 rfkill_destroy(atp_rfk->rfkill);
1264 kfree(atp_rfk);
1265 return res;
1266 }
1267
1268 tpacpi_rfkill_switches[id] = atp_rfk;
1269 return 0;
1270}
1271
1272static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1273{
1274 struct tpacpi_rfk *tp_rfk;
1275
1276 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1277
1278 tp_rfk = tpacpi_rfkill_switches[id];
1279 if (tp_rfk) {
1280 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001281 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001282 tpacpi_rfkill_switches[id] = NULL;
1283 kfree(tp_rfk);
1284 }
1285}
1286
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001287static void printk_deprecated_rfkill_attribute(const char * const what)
1288{
1289 printk_deprecated_attribute(what,
1290 "Please switch to generic rfkill before year 2010");
1291}
1292
Johannes Berg19d337d2009-06-02 13:01:37 +02001293/* sysfs <radio> enable ------------------------------------------------ */
1294static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1295 struct device_attribute *attr,
1296 char *buf)
1297{
1298 int status;
1299
1300 printk_deprecated_rfkill_attribute(attr->attr.name);
1301
1302 /* This is in the ABI... */
1303 if (tpacpi_rfk_check_hwblock_state()) {
1304 status = TPACPI_RFK_RADIO_OFF;
1305 } else {
1306 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1307 if (status < 0)
1308 return status;
1309 }
1310
1311 return snprintf(buf, PAGE_SIZE, "%d\n",
1312 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1313}
1314
1315static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1316 struct device_attribute *attr,
1317 const char *buf, size_t count)
1318{
1319 unsigned long t;
1320 int res;
1321
1322 printk_deprecated_rfkill_attribute(attr->attr.name);
1323
1324 if (parse_strtoul(buf, 1, &t))
1325 return -EINVAL;
1326
1327 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1328
1329 /* This is in the ABI... */
1330 if (tpacpi_rfk_check_hwblock_state() && !!t)
1331 return -EPERM;
1332
1333 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1334 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1335 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1336
1337 return (res < 0) ? res : count;
1338}
1339
1340/* procfs -------------------------------------------------------------- */
1341static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, char *p)
1342{
1343 int len = 0;
1344
1345 if (id >= TPACPI_RFK_SW_MAX)
1346 len += sprintf(p + len, "status:\t\tnot supported\n");
1347 else {
1348 int status;
1349
1350 /* This is in the ABI... */
1351 if (tpacpi_rfk_check_hwblock_state()) {
1352 status = TPACPI_RFK_RADIO_OFF;
1353 } else {
1354 status = tpacpi_rfk_update_swstate(
1355 tpacpi_rfkill_switches[id]);
1356 if (status < 0)
1357 return status;
1358 }
1359
1360 len += sprintf(p + len, "status:\t\t%s\n",
1361 (status == TPACPI_RFK_RADIO_ON) ?
1362 "enabled" : "disabled");
1363 len += sprintf(p + len, "commands:\tenable, disable\n");
1364 }
1365
1366 return len;
1367}
1368
1369static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1370{
1371 char *cmd;
1372 int status = -1;
1373 int res = 0;
1374
1375 if (id >= TPACPI_RFK_SW_MAX)
1376 return -ENODEV;
1377
1378 while ((cmd = next_cmd(&buf))) {
1379 if (strlencmp(cmd, "enable") == 0)
1380 status = TPACPI_RFK_RADIO_ON;
1381 else if (strlencmp(cmd, "disable") == 0)
1382 status = TPACPI_RFK_RADIO_OFF;
1383 else
1384 return -EINVAL;
1385 }
1386
1387 if (status != -1) {
1388 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1389 (status == TPACPI_RFK_RADIO_ON) ?
1390 "enable" : "disable",
1391 tpacpi_rfkill_names[id]);
1392 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1393 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1394 }
1395
1396 return res;
1397}
1398
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001399/*************************************************************************
1400 * thinkpad-acpi driver attributes
1401 */
1402
1403/* interface_version --------------------------------------------------- */
1404static ssize_t tpacpi_driver_interface_version_show(
1405 struct device_driver *drv,
1406 char *buf)
1407{
1408 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1409}
1410
1411static DRIVER_ATTR(interface_version, S_IRUGO,
1412 tpacpi_driver_interface_version_show, NULL);
1413
1414/* debug_level --------------------------------------------------------- */
1415static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1416 char *buf)
1417{
1418 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1419}
1420
1421static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1422 const char *buf, size_t count)
1423{
1424 unsigned long t;
1425
1426 if (parse_strtoul(buf, 0xffff, &t))
1427 return -EINVAL;
1428
1429 dbg_level = t;
1430
1431 return count;
1432}
1433
1434static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1435 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1436
1437/* version ------------------------------------------------------------- */
1438static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1439 char *buf)
1440{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001441 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1442 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001443}
1444
1445static DRIVER_ATTR(version, S_IRUGO,
1446 tpacpi_driver_version_show, NULL);
1447
1448/* --------------------------------------------------------------------- */
1449
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001450#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1451
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001452/* wlsw_emulstate ------------------------------------------------------ */
1453static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1454 char *buf)
1455{
1456 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1457}
1458
1459static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1460 const char *buf, size_t count)
1461{
1462 unsigned long t;
1463
1464 if (parse_strtoul(buf, 1, &t))
1465 return -EINVAL;
1466
Johannes Berg19d337d2009-06-02 13:01:37 +02001467 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001468 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001469 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1470 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001471
1472 return count;
1473}
1474
1475static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1476 tpacpi_driver_wlsw_emulstate_show,
1477 tpacpi_driver_wlsw_emulstate_store);
1478
1479/* bluetooth_emulstate ------------------------------------------------- */
1480static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1481 struct device_driver *drv,
1482 char *buf)
1483{
1484 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1485}
1486
1487static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1488 struct device_driver *drv,
1489 const char *buf, size_t count)
1490{
1491 unsigned long t;
1492
1493 if (parse_strtoul(buf, 1, &t))
1494 return -EINVAL;
1495
1496 tpacpi_bluetooth_emulstate = !!t;
1497
1498 return count;
1499}
1500
1501static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1502 tpacpi_driver_bluetooth_emulstate_show,
1503 tpacpi_driver_bluetooth_emulstate_store);
1504
1505/* wwan_emulstate ------------------------------------------------- */
1506static ssize_t tpacpi_driver_wwan_emulstate_show(
1507 struct device_driver *drv,
1508 char *buf)
1509{
1510 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1511}
1512
1513static ssize_t tpacpi_driver_wwan_emulstate_store(
1514 struct device_driver *drv,
1515 const char *buf, size_t count)
1516{
1517 unsigned long t;
1518
1519 if (parse_strtoul(buf, 1, &t))
1520 return -EINVAL;
1521
1522 tpacpi_wwan_emulstate = !!t;
1523
1524 return count;
1525}
1526
1527static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1528 tpacpi_driver_wwan_emulstate_show,
1529 tpacpi_driver_wwan_emulstate_store);
1530
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001531/* uwb_emulstate ------------------------------------------------- */
1532static ssize_t tpacpi_driver_uwb_emulstate_show(
1533 struct device_driver *drv,
1534 char *buf)
1535{
1536 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1537}
1538
1539static ssize_t tpacpi_driver_uwb_emulstate_store(
1540 struct device_driver *drv,
1541 const char *buf, size_t count)
1542{
1543 unsigned long t;
1544
1545 if (parse_strtoul(buf, 1, &t))
1546 return -EINVAL;
1547
1548 tpacpi_uwb_emulstate = !!t;
1549
1550 return count;
1551}
1552
1553static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1554 tpacpi_driver_uwb_emulstate_show,
1555 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001556#endif
1557
1558/* --------------------------------------------------------------------- */
1559
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001560static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001561 &driver_attr_debug_level, &driver_attr_version,
1562 &driver_attr_interface_version,
1563};
1564
1565static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1566{
1567 int i, res;
1568
1569 i = 0;
1570 res = 0;
1571 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1572 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1573 i++;
1574 }
1575
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001576#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1577 if (!res && dbg_wlswemul)
1578 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1579 if (!res && dbg_bluetoothemul)
1580 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1581 if (!res && dbg_wwanemul)
1582 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001583 if (!res && dbg_uwbemul)
1584 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001585#endif
1586
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001587 return res;
1588}
1589
1590static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1591{
1592 int i;
1593
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001594 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001595 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001596
1597#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1598 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1599 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1600 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001601 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001602#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001603}
1604
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001605/*************************************************************************
1606 * Firmware Data
1607 */
1608
1609/*
1610 * Table of recommended minimum BIOS versions
1611 *
1612 * Reasons for listing:
1613 * 1. Stable BIOS, listed because the unknown ammount of
1614 * bugs and bad ACPI behaviour on older versions
1615 *
1616 * 2. BIOS or EC fw with known bugs that trigger on Linux
1617 *
1618 * 3. BIOS with known reduced functionality in older versions
1619 *
1620 * We recommend the latest BIOS and EC version.
1621 * We only support the latest BIOS and EC fw version as a rule.
1622 *
1623 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1624 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001625 *
1626 * WARNING: we use this table also to detect that the machine is
1627 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001628 */
1629
1630#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1631 { .vendor = (__v), \
1632 .bios = TPID(__id1, __id2), \
1633 .ec = TPACPI_MATCH_ANY, \
1634 .quirks = TPACPI_MATCH_ANY << 16 \
1635 | (__bv1) << 8 | (__bv2) }
1636
1637#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
1638 __eid1, __eid2, __ev1, __ev2) \
1639 { .vendor = (__v), \
1640 .bios = TPID(__bid1, __bid2), \
1641 .ec = TPID(__eid1, __eid2), \
1642 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1643 | (__bv1) << 8 | (__bv2) }
1644
1645#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1646 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1647
1648#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1649 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1650 __bv1, __bv2, __id1, __id2, __ev1, __ev2)
1651
1652#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1653 __eid1, __eid2, __ev1, __ev2) \
1654 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1655 __bv1, __bv2, __eid1, __eid2, __ev1, __ev2)
1656
1657#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1658 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1659
1660#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1661 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
1662 __bv1, __bv2, __id1, __id2, __ev1, __ev2)
1663
1664#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1665 __eid1, __eid2, __ev1, __ev2) \
1666 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
1667 __bv1, __bv2, __eid1, __eid2, __ev1, __ev2)
1668
1669static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1670 /* Numeric models ------------------ */
1671 /* FW MODEL BIOS VERS */
1672 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1673 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1674 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1675 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1676 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1677 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1678 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1679 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1680 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1681
1682 /* A-series ------------------------- */
1683 /* FW MODEL BIOS VERS EC VERS */
1684 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1685 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1686 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1687 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1688 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1689 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1690 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1691 TPV_QI0('1', '3', '2', '0'), /* A22m */
1692 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1693 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1694 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1695
1696 /* G-series ------------------------- */
1697 /* FW MODEL BIOS VERS */
1698 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1699 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1700
1701 /* R-series, T-series --------------- */
1702 /* FW MODEL BIOS VERS EC VERS */
1703 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1704 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1705 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1706 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1707 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1708 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1709 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1710 T40/p, T41/p, T42/p (1) */
1711 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1712 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1713 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1714 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1715
1716 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1717 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1718 TPV_QI0('1', '6', '3', '2'), /* T22 */
1719 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1720 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1721 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1722
1723 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1724 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
1725 TPV_QL0('7', 'E', 'D', '0'), /* R60e, R60i */
1726
1727 /* BIOS FW BIOS VERS EC FW EC VERS */
1728 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1729 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1730
1731 /* X-series ------------------------- */
1732 /* FW MODEL BIOS VERS EC VERS */
1733 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1734 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1735 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1736 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1737 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1738 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1739 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1740
1741 TPV_QL0('7', 'B', 'D', '7'), /* X60/s */
1742 TPV_QL0('7', 'J', '3', '0'), /* X60t */
1743
1744 /* (0) - older versions lack DMI EC fw string and functionality */
1745 /* (1) - older versions known to lack functionality */
1746};
1747
1748#undef TPV_QL1
1749#undef TPV_QL0
1750#undef TPV_QI2
1751#undef TPV_QI1
1752#undef TPV_QI0
1753#undef TPV_Q_X
1754#undef TPV_Q
1755
1756static void __init tpacpi_check_outdated_fw(void)
1757{
1758 unsigned long fwvers;
1759 u16 ec_version, bios_version;
1760
1761 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1762 ARRAY_SIZE(tpacpi_bios_version_qtable));
1763
1764 if (!fwvers)
1765 return;
1766
1767 bios_version = fwvers & 0xffffU;
1768 ec_version = (fwvers >> 16) & 0xffffU;
1769
1770 /* note that unknown versions are set to 0x0000 and we use that */
1771 if ((bios_version > thinkpad_id.bios_release) ||
1772 (ec_version > thinkpad_id.ec_release &&
1773 ec_version != TPACPI_MATCH_ANY)) {
1774 /*
1775 * The changelogs would let us track down the exact
1776 * reason, but it is just too much of a pain to track
1777 * it. We only list BIOSes that are either really
1778 * broken, or really stable to begin with, so it is
1779 * best if the user upgrades the firmware anyway.
1780 */
1781 printk(TPACPI_WARN
1782 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1783 printk(TPACPI_WARN
1784 "WARNING: This firmware may be missing critical bug "
1785 "fixes and/or important features\n");
1786 }
1787}
1788
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001789static bool __init tpacpi_is_fw_known(void)
1790{
1791 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1792 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1793}
1794
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001795/****************************************************************************
1796 ****************************************************************************
1797 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001798 * Subdrivers
1799 *
1800 ****************************************************************************
1801 ****************************************************************************/
1802
1803/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001804 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001805 */
1806
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001807static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001809 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1810 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001812 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001813 (thinkpad_id.bios_version_str) ?
1814 thinkpad_id.bios_version_str : "unknown",
1815 (thinkpad_id.ec_version_str) ?
1816 thinkpad_id.ec_version_str : "unknown");
1817
1818 if (thinkpad_id.vendor && thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001819 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001820 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1821 "IBM" : ((thinkpad_id.vendor ==
1822 PCI_VENDOR_ID_LENOVO) ?
1823 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001824 thinkpad_id.model_str,
1825 (thinkpad_id.nummodel_str) ?
1826 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001827
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001828 tpacpi_check_outdated_fw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return 0;
1830}
1831
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03001832static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 int len = 0;
1835
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001836 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1837 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 return len;
1840}
1841
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001842static struct ibm_struct thinkpad_acpi_driver_data = {
1843 .name = "driver",
1844 .read = thinkpad_acpi_driver_read,
1845};
1846
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001847/*************************************************************************
1848 * Hotkey subdriver
1849 */
1850
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001851/*
1852 * ThinkPad firmware event model
1853 *
1854 * The ThinkPad firmware has two main event interfaces: normal ACPI
1855 * notifications (which follow the ACPI standard), and a private event
1856 * interface.
1857 *
1858 * The private event interface also issues events for the hotkeys. As
1859 * the driver gained features, the event handling code ended up being
1860 * built around the hotkey subdriver. This will need to be refactored
1861 * to a more formal event API eventually.
1862 *
1863 * Some "hotkeys" are actually supposed to be used as event reports,
1864 * such as "brightness has changed", "volume has changed", depending on
1865 * the ThinkPad model and how the firmware is operating.
1866 *
1867 * Unlike other classes, hotkey-class events have mask/unmask control on
1868 * non-ancient firmware. However, how it behaves changes a lot with the
1869 * firmware model and version.
1870 */
1871
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001872enum { /* hot key scan codes (derived from ACPI DSDT) */
1873 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1874 TP_ACPI_HOTKEYSCAN_FNF2,
1875 TP_ACPI_HOTKEYSCAN_FNF3,
1876 TP_ACPI_HOTKEYSCAN_FNF4,
1877 TP_ACPI_HOTKEYSCAN_FNF5,
1878 TP_ACPI_HOTKEYSCAN_FNF6,
1879 TP_ACPI_HOTKEYSCAN_FNF7,
1880 TP_ACPI_HOTKEYSCAN_FNF8,
1881 TP_ACPI_HOTKEYSCAN_FNF9,
1882 TP_ACPI_HOTKEYSCAN_FNF10,
1883 TP_ACPI_HOTKEYSCAN_FNF11,
1884 TP_ACPI_HOTKEYSCAN_FNF12,
1885 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1886 TP_ACPI_HOTKEYSCAN_FNINSERT,
1887 TP_ACPI_HOTKEYSCAN_FNDELETE,
1888 TP_ACPI_HOTKEYSCAN_FNHOME,
1889 TP_ACPI_HOTKEYSCAN_FNEND,
1890 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1891 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1892 TP_ACPI_HOTKEYSCAN_FNSPACE,
1893 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1894 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1895 TP_ACPI_HOTKEYSCAN_MUTE,
1896 TP_ACPI_HOTKEYSCAN_THINKPAD,
1897};
1898
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001899enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001900 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1901 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1902};
1903
1904enum { /* Positions of some of the keys in hotkey masks */
1905 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1906 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1907 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1908 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1909 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1910 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1911 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1912 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1913 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1914 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1915 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1916};
1917
1918enum { /* NVRAM to ACPI HKEY group map */
1919 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1920 TP_ACPI_HKEY_ZOOM_MASK |
1921 TP_ACPI_HKEY_DISPSWTCH_MASK |
1922 TP_ACPI_HKEY_HIBERNATE_MASK,
1923 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1924 TP_ACPI_HKEY_BRGHTDWN_MASK,
1925 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1926 TP_ACPI_HKEY_VOLDWN_MASK |
1927 TP_ACPI_HKEY_MUTE_MASK,
1928};
1929
1930#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1931struct tp_nvram_state {
1932 u16 thinkpad_toggle:1;
1933 u16 zoom_toggle:1;
1934 u16 display_toggle:1;
1935 u16 thinklight_toggle:1;
1936 u16 hibernate_toggle:1;
1937 u16 displayexp_toggle:1;
1938 u16 display_state:1;
1939 u16 brightness_toggle:1;
1940 u16 volume_toggle:1;
1941 u16 mute:1;
1942
1943 u8 brightness_level;
1944 u8 volume_level;
1945};
1946
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001947/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001948static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001949
1950/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001951static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001952
1953/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001954 * Acquire mutex to write poller control variables as an
1955 * atomic block.
1956 *
1957 * Increment hotkey_config_change when changing them if you
1958 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001959 *
1960 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1961 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001962static struct mutex hotkey_thread_data_mutex;
1963static unsigned int hotkey_config_change;
1964
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001965/*
1966 * hotkey poller control variables
1967 *
1968 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001969 *
1970 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1971 * should be used only when the changes need to be taken as
1972 * a block, OR when one needs to force the kthread to forget
1973 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001974 */
1975static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1976static unsigned int hotkey_poll_freq = 10; /* Hz */
1977
1978#define HOTKEY_CONFIG_CRITICAL_START \
1979 do { \
1980 mutex_lock(&hotkey_thread_data_mutex); \
1981 hotkey_config_change++; \
1982 } while (0);
1983#define HOTKEY_CONFIG_CRITICAL_END \
1984 mutex_unlock(&hotkey_thread_data_mutex);
1985
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001986#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1987
1988#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001989#define HOTKEY_CONFIG_CRITICAL_START
1990#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001991
1992#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1993
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001994static struct mutex hotkey_mutex;
1995
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001996static enum { /* Reasons for waking up */
1997 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1998 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1999 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2000} hotkey_wakeup_reason;
2001
2002static int hotkey_autosleep_ack;
2003
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002004static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2005static u32 hotkey_all_mask; /* all events supported in fw */
2006static u32 hotkey_reserved_mask; /* events better left disabled */
2007static u32 hotkey_driver_mask; /* events needed by the driver */
2008static u32 hotkey_user_mask; /* events visible to userspace */
2009static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002010
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02002011static unsigned int hotkey_report_mode;
2012
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002013static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002014
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002015static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002016
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002017static void tpacpi_driver_event(const unsigned int hkey_event);
2018static void hotkey_driver_event(const unsigned int scancode);
2019
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002020/* HKEY.MHKG() return bits */
2021#define TP_HOTKEY_TABLET_MASK (1 << 3)
2022
Johannes Berg19d337d2009-06-02 13:01:37 +02002023static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002024{
Johannes Berg19d337d2009-06-02 13:01:37 +02002025 int status;
2026
2027 if (!tp_features.hotkey_wlsw)
2028 return -ENODEV;
2029
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002030#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002031 if (dbg_wlswemul)
2032 return (tpacpi_wlsw_emulstate) ?
2033 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002034#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002035
2036 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002037 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002038
2039 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002040}
2041
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002042static int hotkey_get_tablet_mode(int *status)
2043{
2044 int s;
2045
2046 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2047 return -EIO;
2048
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002049 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2050 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002051}
2052
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002053/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002054 * Reads current event mask from firmware, and updates
2055 * hotkey_acpi_mask accordingly. Also resets any bits
2056 * from hotkey_user_mask that are unavailable to be
2057 * delivered (shadow requirement of the userspace ABI).
2058 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002059 * Call with hotkey_mutex held
2060 */
2061static int hotkey_mask_get(void)
2062{
2063 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002064 u32 m = 0;
2065
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002066 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002067 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002068
2069 hotkey_acpi_mask = m;
2070 } else {
2071 /* no mask support doesn't mean no event support... */
2072 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002073 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002074
2075 /* sync userspace-visible mask */
2076 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002077
2078 return 0;
2079}
2080
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002081void static hotkey_mask_warn_incomplete_mask(void)
2082{
2083 /* log only what the user can fix... */
2084 const u32 wantedmask = hotkey_driver_mask &
2085 ~(hotkey_acpi_mask | hotkey_source_mask) &
2086 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2087
2088 if (wantedmask)
2089 printk(TPACPI_NOTICE
2090 "required events 0x%08x not enabled!\n",
2091 wantedmask);
2092}
2093
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002094/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002095 * Set the firmware mask when supported
2096 *
2097 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2098 *
2099 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2100 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002101 * Call with hotkey_mutex held
2102 */
2103static int hotkey_mask_set(u32 mask)
2104{
2105 int i;
2106 int rc = 0;
2107
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002108 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002109
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002110 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002111 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002112 if (!acpi_evalf(hkey_handle,
2113 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002114 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002115 rc = -EIO;
2116 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002117 }
2118 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002119 }
2120
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002121 /*
2122 * We *must* make an inconditional call to hotkey_mask_get to
2123 * refresh hotkey_acpi_mask and update hotkey_user_mask
2124 *
2125 * Take the opportunity to also log when we cannot _enable_
2126 * a given event.
2127 */
2128 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2129 printk(TPACPI_NOTICE
2130 "asked for hotkey mask 0x%08x, but "
2131 "firmware forced it to 0x%08x\n",
2132 fwmask, hotkey_acpi_mask);
2133 }
2134
2135 hotkey_mask_warn_incomplete_mask();
2136
2137 return rc;
2138}
2139
2140/*
2141 * Sets hotkey_user_mask and tries to set the firmware mask
2142 *
2143 * Call with hotkey_mutex held
2144 */
2145static int hotkey_user_mask_set(const u32 mask)
2146{
2147 int rc;
2148
2149 /* Give people a chance to notice they are doing something that
2150 * is bound to go boom on their users sooner or later */
2151 if (!tp_warned.hotkey_mask_ff &&
2152 (mask == 0xffff || mask == 0xffffff ||
2153 mask == 0xffffffff)) {
2154 tp_warned.hotkey_mask_ff = 1;
2155 printk(TPACPI_NOTICE
2156 "setting the hotkey mask to 0x%08x is likely "
2157 "not the best way to go about it\n", mask);
2158 printk(TPACPI_NOTICE
2159 "please consider using the driver defaults, "
2160 "and refer to up-to-date thinkpad-acpi "
2161 "documentation\n");
2162 }
2163
2164 /* Try to enable what the user asked for, plus whatever we need.
2165 * this syncs everything but won't enable bits in hotkey_user_mask */
2166 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2167
2168 /* Enable the available bits in hotkey_user_mask */
2169 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2170
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002171 return rc;
2172}
2173
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002174/*
2175 * Sets the driver hotkey mask.
2176 *
2177 * Can be called even if the hotkey subdriver is inactive
2178 */
2179static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2180{
2181 int rc;
2182
2183 /* Do the right thing if hotkey_init has not been called yet */
2184 if (!tp_features.hotkey) {
2185 hotkey_driver_mask = mask;
2186 return 0;
2187 }
2188
2189 mutex_lock(&hotkey_mutex);
2190
2191 HOTKEY_CONFIG_CRITICAL_START
2192 hotkey_driver_mask = mask;
2193 hotkey_source_mask |= (mask & ~hotkey_all_mask);
2194 HOTKEY_CONFIG_CRITICAL_END
2195
2196 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2197 ~hotkey_source_mask);
2198 mutex_unlock(&hotkey_mutex);
2199
2200 return rc;
2201}
2202
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002203static int hotkey_status_get(int *status)
2204{
2205 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2206 return -EIO;
2207
2208 return 0;
2209}
2210
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002211static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002212{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002213 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002214 return -EIO;
2215
2216 return 0;
2217}
2218
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002219static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002220{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002221 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002222
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002223 if (tp_features.hotkey_tablet &&
2224 !hotkey_get_tablet_mode(&state)) {
2225 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002226
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002227 input_report_switch(tpacpi_inputdev,
2228 SW_TABLET_MODE, !!state);
2229 input_sync(tpacpi_inputdev);
2230
2231 mutex_unlock(&tpacpi_inputdev_send_mutex);
2232 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002233}
2234
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002235/* Do NOT call without validating scancode first */
2236static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002237{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002238 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002239
2240 if (keycode != KEY_RESERVED) {
2241 mutex_lock(&tpacpi_inputdev_send_mutex);
2242
2243 input_report_key(tpacpi_inputdev, keycode, 1);
2244 if (keycode == KEY_UNKNOWN)
2245 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2246 scancode);
2247 input_sync(tpacpi_inputdev);
2248
2249 input_report_key(tpacpi_inputdev, keycode, 0);
2250 if (keycode == KEY_UNKNOWN)
2251 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2252 scancode);
2253 input_sync(tpacpi_inputdev);
2254
2255 mutex_unlock(&tpacpi_inputdev_send_mutex);
2256 }
2257}
2258
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002259/* Do NOT call without validating scancode first */
2260static void tpacpi_input_send_key_masked(const unsigned int scancode)
2261{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002262 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002263 if (hotkey_user_mask & (1 << scancode))
2264 tpacpi_input_send_key(scancode);
2265}
2266
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002267#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2268static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2269
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002270/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002271static void tpacpi_hotkey_send_key(unsigned int scancode)
2272{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002273 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002274 if (hotkey_report_mode < 2) {
2275 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
2276 0x80, 0x1001 + scancode);
2277 }
2278}
2279
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002280static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002281{
2282 u8 d;
2283
2284 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2285 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2286 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2287 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2288 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2289 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2290 }
2291 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2292 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2293 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2294 }
2295 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2296 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2297 n->displayexp_toggle =
2298 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2299 }
2300 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2301 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2302 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2303 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2304 n->brightness_toggle =
2305 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2306 }
2307 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2308 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2309 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2310 >> TP_NVRAM_POS_LEVEL_VOLUME;
2311 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2312 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2313 }
2314}
2315
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002316static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2317 struct tp_nvram_state *newn,
2318 const u32 event_mask)
2319{
2320
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002321#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002322 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002323 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002324 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002325 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002326 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002327
2328#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002329 do { \
2330 if (event_mask & (1 << __scancode)) \
2331 tpacpi_hotkey_send_key(__scancode); \
2332 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002333
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002334 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2335 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2336 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2337 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2338
2339 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2340
2341 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2342
2343 /* handle volume */
2344 if (oldn->volume_toggle != newn->volume_toggle) {
2345 if (oldn->mute != newn->mute) {
2346 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2347 }
2348 if (oldn->volume_level > newn->volume_level) {
2349 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2350 } else if (oldn->volume_level < newn->volume_level) {
2351 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2352 } else if (oldn->mute == newn->mute) {
2353 /* repeated key presses that didn't change state */
2354 if (newn->mute) {
2355 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2356 } else if (newn->volume_level != 0) {
2357 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2358 } else {
2359 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2360 }
2361 }
2362 }
2363
2364 /* handle brightness */
2365 if (oldn->brightness_toggle != newn->brightness_toggle) {
2366 if (oldn->brightness_level < newn->brightness_level) {
2367 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2368 } else if (oldn->brightness_level > newn->brightness_level) {
2369 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2370 } else {
2371 /* repeated key presses that didn't change state */
2372 if (newn->brightness_level != 0) {
2373 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2374 } else {
2375 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2376 }
2377 }
2378 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002379
2380#undef TPACPI_COMPARE_KEY
2381#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002382}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002383
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002384/*
2385 * Polling driver
2386 *
2387 * We track all events in hotkey_source_mask all the time, since
2388 * most of them are edge-based. We only issue those requested by
2389 * hotkey_user_mask or hotkey_driver_mask, though.
2390 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002391static int hotkey_kthread(void *data)
2392{
2393 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002394 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002395 unsigned int si, so;
2396 unsigned long t;
2397 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002398 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002399
2400 mutex_lock(&hotkey_thread_mutex);
2401
2402 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2403 goto exit;
2404
2405 set_freezable();
2406
2407 so = 0;
2408 si = 1;
2409 t = 0;
2410
2411 /* Initial state for compares */
2412 mutex_lock(&hotkey_thread_data_mutex);
2413 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002414 poll_mask = hotkey_source_mask;
2415 event_mask = hotkey_source_mask &
2416 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002417 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002418 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002419 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002420
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002421 while (!kthread_should_stop()) {
2422 if (t == 0) {
2423 if (likely(poll_freq))
2424 t = 1000/poll_freq;
2425 else
2426 t = 100; /* should never happen... */
2427 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002428 t = msleep_interruptible(t);
2429 if (unlikely(kthread_should_stop()))
2430 break;
2431 must_reset = try_to_freeze();
2432 if (t > 0 && !must_reset)
2433 continue;
2434
2435 mutex_lock(&hotkey_thread_data_mutex);
2436 if (must_reset || hotkey_config_change != change_detector) {
2437 /* forget old state on thaw or config change */
2438 si = so;
2439 t = 0;
2440 change_detector = hotkey_config_change;
2441 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002442 poll_mask = hotkey_source_mask;
2443 event_mask = hotkey_source_mask &
2444 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002445 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002446 mutex_unlock(&hotkey_thread_data_mutex);
2447
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002448 if (likely(poll_mask)) {
2449 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002450 if (likely(si != so)) {
2451 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002452 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002453 }
2454 }
2455
2456 so = si;
2457 si ^= 1;
2458 }
2459
2460exit:
2461 mutex_unlock(&hotkey_thread_mutex);
2462 return 0;
2463}
2464
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002465/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002466static void hotkey_poll_stop_sync(void)
2467{
2468 if (tpacpi_hotkey_task) {
2469 if (frozen(tpacpi_hotkey_task) ||
2470 freezing(tpacpi_hotkey_task))
2471 thaw_process(tpacpi_hotkey_task);
2472
2473 kthread_stop(tpacpi_hotkey_task);
2474 tpacpi_hotkey_task = NULL;
2475 mutex_lock(&hotkey_thread_mutex);
2476 /* at this point, the thread did exit */
2477 mutex_unlock(&hotkey_thread_mutex);
2478 }
2479}
2480
2481/* call with hotkey_mutex held */
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002482static void hotkey_poll_setup(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002483{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002484 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2485 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002486
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002487 if (hotkey_poll_freq > 0 &&
2488 (poll_driver_mask ||
2489 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002490 if (!tpacpi_hotkey_task) {
2491 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002492 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002493 if (IS_ERR(tpacpi_hotkey_task)) {
2494 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002495 printk(TPACPI_ERR
2496 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002497 "for hotkey polling\n");
2498 }
2499 }
2500 } else {
2501 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002502 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002503 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002504 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002505 "hot keys 0x%08x and/or events 0x%08x "
2506 "require polling, which is currently "
2507 "disabled\n",
2508 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002509 }
2510 }
2511}
2512
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002513static void hotkey_poll_setup_safe(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002514{
2515 mutex_lock(&hotkey_mutex);
2516 hotkey_poll_setup(may_warn);
2517 mutex_unlock(&hotkey_mutex);
2518}
2519
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002520/* call with hotkey_mutex held */
2521static void hotkey_poll_set_freq(unsigned int freq)
2522{
2523 if (!freq)
2524 hotkey_poll_stop_sync();
2525
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002526 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002527}
2528
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002529#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2530
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002531static void hotkey_poll_setup_safe(bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002532{
2533}
2534
2535#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2536
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002537static int hotkey_inputdev_open(struct input_dev *dev)
2538{
2539 switch (tpacpi_lifecycle) {
2540 case TPACPI_LIFE_INIT:
2541 /*
2542 * hotkey_init will call hotkey_poll_setup_safe
2543 * at the appropriate moment
2544 */
2545 return 0;
2546 case TPACPI_LIFE_EXITING:
2547 return -EBUSY;
2548 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002549 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002550 return 0;
2551 }
2552
2553 /* Should only happen if tpacpi_lifecycle is corrupt */
2554 BUG();
2555 return -EBUSY;
2556}
2557
2558static void hotkey_inputdev_close(struct input_dev *dev)
2559{
2560 /* disable hotkey polling when possible */
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002561 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING &&
2562 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002563 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002564}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002565
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002566/* sysfs hotkey enable ------------------------------------------------- */
2567static ssize_t hotkey_enable_show(struct device *dev,
2568 struct device_attribute *attr,
2569 char *buf)
2570{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002571 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002572
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002573 printk_deprecated_attribute("hotkey_enable",
2574 "Hotkey reporting is always enabled");
2575
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002576 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002577 if (res)
2578 return res;
2579
2580 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2581}
2582
2583static ssize_t hotkey_enable_store(struct device *dev,
2584 struct device_attribute *attr,
2585 const char *buf, size_t count)
2586{
2587 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002588
2589 printk_deprecated_attribute("hotkey_enable",
2590 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002591
2592 if (parse_strtoul(buf, 1, &t))
2593 return -EINVAL;
2594
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002595 if (t == 0)
2596 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002597
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002598 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002599}
2600
2601static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002602 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002603 hotkey_enable_show, hotkey_enable_store);
2604
2605/* sysfs hotkey mask --------------------------------------------------- */
2606static ssize_t hotkey_mask_show(struct device *dev,
2607 struct device_attribute *attr,
2608 char *buf)
2609{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002610 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002611}
2612
2613static ssize_t hotkey_mask_store(struct device *dev,
2614 struct device_attribute *attr,
2615 const char *buf, size_t count)
2616{
2617 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002618 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002619
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002620 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002621 return -EINVAL;
2622
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002623 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002624 return -ERESTARTSYS;
2625
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002626 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002627
2628#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002629 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002630#endif
2631
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002632 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002633
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002634 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2635
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002636 return (res) ? res : count;
2637}
2638
2639static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002640 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002641 hotkey_mask_show, hotkey_mask_store);
2642
2643/* sysfs hotkey bios_enabled ------------------------------------------- */
2644static ssize_t hotkey_bios_enabled_show(struct device *dev,
2645 struct device_attribute *attr,
2646 char *buf)
2647{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002648 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002649}
2650
2651static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002652 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002653
2654/* sysfs hotkey bios_mask ---------------------------------------------- */
2655static ssize_t hotkey_bios_mask_show(struct device *dev,
2656 struct device_attribute *attr,
2657 char *buf)
2658{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002659 printk_deprecated_attribute("hotkey_bios_mask",
2660 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002661 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002662}
2663
2664static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002665 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002666
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002667/* sysfs hotkey all_mask ----------------------------------------------- */
2668static ssize_t hotkey_all_mask_show(struct device *dev,
2669 struct device_attribute *attr,
2670 char *buf)
2671{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002672 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2673 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002674}
2675
2676static struct device_attribute dev_attr_hotkey_all_mask =
2677 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2678
2679/* sysfs hotkey recommended_mask --------------------------------------- */
2680static ssize_t hotkey_recommended_mask_show(struct device *dev,
2681 struct device_attribute *attr,
2682 char *buf)
2683{
2684 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002685 (hotkey_all_mask | hotkey_source_mask)
2686 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002687}
2688
2689static struct device_attribute dev_attr_hotkey_recommended_mask =
2690 __ATTR(hotkey_recommended_mask, S_IRUGO,
2691 hotkey_recommended_mask_show, NULL);
2692
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002693#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2694
2695/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2696static ssize_t hotkey_source_mask_show(struct device *dev,
2697 struct device_attribute *attr,
2698 char *buf)
2699{
2700 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2701}
2702
2703static ssize_t hotkey_source_mask_store(struct device *dev,
2704 struct device_attribute *attr,
2705 const char *buf, size_t count)
2706{
2707 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002708 u32 r_ev;
2709 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002710
2711 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2712 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2713 return -EINVAL;
2714
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002715 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002716 return -ERESTARTSYS;
2717
2718 HOTKEY_CONFIG_CRITICAL_START
2719 hotkey_source_mask = t;
2720 HOTKEY_CONFIG_CRITICAL_END
2721
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002722 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2723 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002724 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002725
2726 /* check if events needed by the driver got disabled */
2727 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2728 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002729
2730 mutex_unlock(&hotkey_mutex);
2731
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002732 if (rc < 0)
2733 printk(TPACPI_ERR "hotkey_source_mask: failed to update the"
2734 "firmware event mask!\n");
2735
2736 if (r_ev)
2737 printk(TPACPI_NOTICE "hotkey_source_mask: "
2738 "some important events were disabled: "
2739 "0x%04x\n", r_ev);
2740
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002741 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2742
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002743 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002744}
2745
2746static struct device_attribute dev_attr_hotkey_source_mask =
2747 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2748 hotkey_source_mask_show, hotkey_source_mask_store);
2749
2750/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2751static ssize_t hotkey_poll_freq_show(struct device *dev,
2752 struct device_attribute *attr,
2753 char *buf)
2754{
2755 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2756}
2757
2758static ssize_t hotkey_poll_freq_store(struct device *dev,
2759 struct device_attribute *attr,
2760 const char *buf, size_t count)
2761{
2762 unsigned long t;
2763
2764 if (parse_strtoul(buf, 25, &t))
2765 return -EINVAL;
2766
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002767 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002768 return -ERESTARTSYS;
2769
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002770 hotkey_poll_set_freq(t);
2771 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002772
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002773 mutex_unlock(&hotkey_mutex);
2774
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002775 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2776
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002777 return count;
2778}
2779
2780static struct device_attribute dev_attr_hotkey_poll_freq =
2781 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2782 hotkey_poll_freq_show, hotkey_poll_freq_store);
2783
2784#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2785
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002786/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002787static ssize_t hotkey_radio_sw_show(struct device *dev,
2788 struct device_attribute *attr,
2789 char *buf)
2790{
Johannes Berg19d337d2009-06-02 13:01:37 +02002791 int res;
2792 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002793 if (res < 0)
2794 return res;
2795
Johannes Berg19d337d2009-06-02 13:01:37 +02002796 /* Opportunistic update */
2797 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2798
2799 return snprintf(buf, PAGE_SIZE, "%d\n",
2800 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002801}
2802
2803static struct device_attribute dev_attr_hotkey_radio_sw =
2804 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2805
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002806static void hotkey_radio_sw_notify_change(void)
2807{
2808 if (tp_features.hotkey_wlsw)
2809 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2810 "hotkey_radio_sw");
2811}
2812
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002813/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2814static ssize_t hotkey_tablet_mode_show(struct device *dev,
2815 struct device_attribute *attr,
2816 char *buf)
2817{
2818 int res, s;
2819 res = hotkey_get_tablet_mode(&s);
2820 if (res < 0)
2821 return res;
2822
2823 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2824}
2825
2826static struct device_attribute dev_attr_hotkey_tablet_mode =
2827 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2828
2829static void hotkey_tablet_mode_notify_change(void)
2830{
2831 if (tp_features.hotkey_tablet)
2832 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2833 "hotkey_tablet_mode");
2834}
2835
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002836/* sysfs hotkey report_mode -------------------------------------------- */
2837static ssize_t hotkey_report_mode_show(struct device *dev,
2838 struct device_attribute *attr,
2839 char *buf)
2840{
2841 return snprintf(buf, PAGE_SIZE, "%d\n",
2842 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2843}
2844
2845static struct device_attribute dev_attr_hotkey_report_mode =
2846 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2847
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002848/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002849static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2850 struct device_attribute *attr,
2851 char *buf)
2852{
2853 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2854}
2855
2856static struct device_attribute dev_attr_hotkey_wakeup_reason =
2857 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2858
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002859static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002860{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002861 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2862 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002863}
2864
2865/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002866static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2867 struct device_attribute *attr,
2868 char *buf)
2869{
2870 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2871}
2872
2873static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2874 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2875 hotkey_wakeup_hotunplug_complete_show, NULL);
2876
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002877static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002878{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002879 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2880 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002881}
2882
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002883/* --------------------------------------------------------------------- */
2884
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002885static struct attribute *hotkey_attributes[] __initdata = {
2886 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002887 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002888 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002889 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002890 &dev_attr_hotkey_wakeup_reason.attr,
2891 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002892 &dev_attr_hotkey_mask.attr,
2893 &dev_attr_hotkey_all_mask.attr,
2894 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002895#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002896 &dev_attr_hotkey_source_mask.attr,
2897 &dev_attr_hotkey_poll_freq.attr,
2898#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002899};
2900
Johannes Berg19d337d2009-06-02 13:01:37 +02002901/*
2902 * Sync both the hw and sw blocking state of all switches
2903 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002904static void tpacpi_send_radiosw_update(void)
2905{
2906 int wlsw;
2907
Johannes Berg19d337d2009-06-02 13:01:37 +02002908 /*
2909 * We must sync all rfkill controllers *before* issuing any
2910 * rfkill input events, or we will race the rfkill core input
2911 * handler.
2912 *
2913 * tpacpi_inputdev_send_mutex works as a syncronization point
2914 * for the above.
2915 *
2916 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2917 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002918
Johannes Berg19d337d2009-06-02 13:01:37 +02002919 wlsw = hotkey_get_wlsw();
2920
2921 /* Sync hw blocking state first if it is hw-blocked */
2922 if (wlsw == TPACPI_RFK_RADIO_OFF)
2923 tpacpi_rfk_update_hwblock_state(true);
2924
2925 /* Sync sw blocking state */
2926 tpacpi_rfk_update_swstate_all();
2927
2928 /* Sync hw blocking state last if it is hw-unblocked */
2929 if (wlsw == TPACPI_RFK_RADIO_ON)
2930 tpacpi_rfk_update_hwblock_state(false);
2931
2932 /* Issue rfkill input event for WLSW switch */
2933 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002934 mutex_lock(&tpacpi_inputdev_send_mutex);
2935
2936 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02002937 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002938 input_sync(tpacpi_inputdev);
2939
2940 mutex_unlock(&tpacpi_inputdev_send_mutex);
2941 }
Johannes Berg19d337d2009-06-02 13:01:37 +02002942
2943 /*
2944 * this can be unconditional, as we will poll state again
2945 * if userspace uses the notify to read data
2946 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002947 hotkey_radio_sw_notify_change();
2948}
2949
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002950static void hotkey_exit(void)
2951{
2952#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002953 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002954 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002955 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002956#endif
2957
2958 if (hotkey_dev_attributes)
2959 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2960
2961 kfree(hotkey_keycode_map);
2962
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03002963 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002964 "restoring original HKEY status and mask\n");
2965 /* yes, there is a bitwise or below, we want the
2966 * functions to be called even if one of them fail */
2967 if (((tp_features.hotkey_mask &&
2968 hotkey_mask_set(hotkey_orig_mask)) |
2969 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03002970 printk(TPACPI_ERR
2971 "failed to restore hot key mask "
2972 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002973}
2974
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03002975static void __init hotkey_unmap(const unsigned int scancode)
2976{
2977 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
2978 clear_bit(hotkey_keycode_map[scancode],
2979 tpacpi_inputdev->keybit);
2980 hotkey_keycode_map[scancode] = KEY_RESERVED;
2981 }
2982}
2983
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002984/*
2985 * HKEY quirks:
2986 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
2987 */
2988
2989#define TPACPI_HK_Q_INIMASK 0x0001
2990
2991static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
2992 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
2993 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
2994 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
2995 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
2996 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
2997 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
2998 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
2999 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3000 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3001 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3002 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3003 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3004 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3005 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3006 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3007 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3008 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3009 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3010 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3011};
3012
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003013static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003014{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003015 /* Requirements for changing the default keymaps:
3016 *
3017 * 1. Many of the keys are mapped to KEY_RESERVED for very
3018 * good reasons. Do not change them unless you have deep
3019 * knowledge on the IBM and Lenovo ThinkPad firmware for
3020 * the various ThinkPad models. The driver behaves
3021 * differently for KEY_RESERVED: such keys have their
3022 * hot key mask *unset* in mask_recommended, and also
3023 * in the initial hot key mask programmed into the
3024 * firmware at driver load time, which means the firm-
3025 * ware may react very differently if you change them to
3026 * something else;
3027 *
3028 * 2. You must be subscribed to the linux-thinkpad and
3029 * ibm-acpi-devel mailing lists, and you should read the
3030 * list archives since 2007 if you want to change the
3031 * keymaps. This requirement exists so that you will
3032 * know the past history of problems with the thinkpad-
3033 * acpi driver keymaps, and also that you will be
3034 * listening to any bug reports;
3035 *
3036 * 3. Do not send thinkpad-acpi specific patches directly to
3037 * for merging, *ever*. Send them to the linux-acpi
3038 * mailinglist for comments. Merging is to be done only
3039 * through acpi-test and the ACPI maintainer.
3040 *
3041 * If the above is too much to ask, don't change the keymap.
3042 * Ask the thinkpad-acpi maintainer to do it, instead.
3043 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003044 static u16 ibm_keycode_map[] __initdata = {
3045 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3046 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
3047 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3048 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003049
3050 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003051 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3052 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3053 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003054
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003055 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003056 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003057 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003058
3059 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003060 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003061
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003062 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3063 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003064
3065 /* Volume: firmware always react to it and reprograms
3066 * the built-in *extra* mixer. Never map it to control
3067 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003068 KEY_RESERVED, /* 0x14: VOLUME UP */
3069 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3070 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003071
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003072 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003073
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003074 /* (assignments unknown, please report if found) */
3075 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3076 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3077 };
3078 static u16 lenovo_keycode_map[] __initdata = {
3079 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3080 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
3081 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3082 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003083
3084 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003085 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3086 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3087 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003088
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003089 /* These should be enabled --only-- when ACPI video
3090 * is disabled (i.e. in "vendor" mode), and are handled
3091 * in a special way by the init code */
3092 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3093 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003094
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003095 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003096
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003097 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3098 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003099
3100 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3101 * react to it and reprograms the built-in *extra* mixer.
3102 * Never map it to control another mixer by default.
3103 *
3104 * T60?, T61, R60?, R61: firmware and EC tries to send
3105 * these over the regular keyboard, so these are no-ops,
3106 * but there are still weird bugs re. MUTE, so do not
3107 * change unless you get test reports from all Lenovo
3108 * models. May cause the BIOS to interfere with the
3109 * HDA mixer.
3110 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003111 KEY_RESERVED, /* 0x14: VOLUME UP */
3112 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3113 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003114
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003115 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003116
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003117 /* (assignments unknown, please report if found) */
3118 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3119 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3120 };
3121
3122#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
3123#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
3124#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
3125
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003126 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003127 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003128 int hkeyv;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003129
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003130 unsigned long quirks;
3131
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003132 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3133 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003134
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003135 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003136 BUG_ON(tpacpi_inputdev->open != NULL ||
3137 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003138
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003139 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003140 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003141
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003142#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3143 mutex_init(&hotkey_thread_mutex);
3144 mutex_init(&hotkey_thread_data_mutex);
3145#endif
3146
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003147 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003148 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003149
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003150 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3151 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003152 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003153
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003154 if (!tp_features.hotkey)
3155 return 1;
3156
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003157 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3158 ARRAY_SIZE(tpacpi_hotkey_qtable));
3159
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003160 tpacpi_disable_brightness_delay();
3161
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003162 /* MUST have enough space for all attributes to be added to
3163 * hotkey_dev_attributes */
3164 hotkey_dev_attributes = create_attr_set(
3165 ARRAY_SIZE(hotkey_attributes) + 2,
3166 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003167 if (!hotkey_dev_attributes)
3168 return -ENOMEM;
3169 res = add_many_to_attr_set(hotkey_dev_attributes,
3170 hotkey_attributes,
3171 ARRAY_SIZE(hotkey_attributes));
3172 if (res)
3173 goto err_exit;
3174
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003175 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003176 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3177 for HKEY interface version 0x100 */
3178 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3179 if ((hkeyv >> 8) != 1) {
3180 printk(TPACPI_ERR "unknown version of the "
3181 "HKEY interface: 0x%x\n", hkeyv);
3182 printk(TPACPI_ERR "please report this to %s\n",
3183 TPACPI_MAIL);
3184 } else {
3185 /*
3186 * MHKV 0x100 in A31, R40, R40e,
3187 * T4x, X31, and later
3188 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003189 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3190 "firmware HKEY interface version: 0x%x\n",
3191 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003192
3193 /* Paranoia check AND init hotkey_all_mask */
3194 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3195 "MHKA", "qd")) {
3196 printk(TPACPI_ERR
3197 "missing MHKA handler, "
3198 "please report this to %s\n",
3199 TPACPI_MAIL);
3200 /* Fallback: pre-init for FN+F3,F4,F12 */
3201 hotkey_all_mask = 0x080cU;
3202 } else {
3203 tp_features.hotkey_mask = 1;
3204 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003205 }
3206 }
3207
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003208 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3209 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003210 str_supported(tp_features.hotkey_mask));
3211
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003212 /* Init hotkey_all_mask if not initialized yet */
3213 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3214 (quirks & TPACPI_HK_Q_INIMASK))
3215 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003216
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003217 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003218 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003219 /* hotkey_source_mask *must* be zero for
3220 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003221 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003222 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003223 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003224
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003225 hotkey_orig_mask = hotkey_acpi_mask;
3226 } else {
3227 hotkey_orig_mask = hotkey_all_mask;
3228 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003229 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003230
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003231#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3232 if (dbg_wlswemul) {
3233 tp_features.hotkey_wlsw = 1;
3234 printk(TPACPI_INFO
3235 "radio switch emulation enabled\n");
3236 } else
3237#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003238 /* Not all thinkpads have a hardware radio switch */
3239 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3240 tp_features.hotkey_wlsw = 1;
3241 printk(TPACPI_INFO
3242 "radio switch found; radios are %s\n",
3243 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003244 }
3245 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003246 res = add_to_attr_set(hotkey_dev_attributes,
3247 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003248
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003249 /* For X41t, X60t, X61t Tablets... */
3250 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3251 tp_features.hotkey_tablet = 1;
3252 printk(TPACPI_INFO
3253 "possible tablet mode switch found; "
3254 "ThinkPad in %s mode\n",
3255 (status & TP_HOTKEY_TABLET_MASK)?
3256 "tablet" : "laptop");
3257 res = add_to_attr_set(hotkey_dev_attributes,
3258 &dev_attr_hotkey_tablet_mode.attr);
3259 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003260
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003261 if (!res)
3262 res = register_attr_set_with_sysfs(
3263 hotkey_dev_attributes,
3264 &tpacpi_pdev->dev.kobj);
3265 if (res)
3266 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003267
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003268 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003269
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003270 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3271 GFP_KERNEL);
3272 if (!hotkey_keycode_map) {
3273 printk(TPACPI_ERR
3274 "failed to allocate memory for key map\n");
3275 res = -ENOMEM;
3276 goto err_exit;
3277 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003278
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003279 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003280 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003281 "using Lenovo default hot key map\n");
3282 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3283 TPACPI_HOTKEY_MAP_SIZE);
3284 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003285 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003286 "using IBM default hot key map\n");
3287 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3288 TPACPI_HOTKEY_MAP_SIZE);
3289 }
3290
3291 set_bit(EV_KEY, tpacpi_inputdev->evbit);
3292 set_bit(EV_MSC, tpacpi_inputdev->evbit);
3293 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
3294 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3295 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3296 tpacpi_inputdev->keycode = hotkey_keycode_map;
3297 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3298 if (hotkey_keycode_map[i] != KEY_RESERVED) {
3299 set_bit(hotkey_keycode_map[i],
3300 tpacpi_inputdev->keybit);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003301 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003302 if (i < sizeof(hotkey_reserved_mask)*8)
3303 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003304 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003305 }
3306
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003307 if (tp_features.hotkey_wlsw) {
3308 set_bit(EV_SW, tpacpi_inputdev->evbit);
3309 set_bit(SW_RFKILL_ALL, tpacpi_inputdev->swbit);
3310 }
3311 if (tp_features.hotkey_tablet) {
3312 set_bit(EV_SW, tpacpi_inputdev->evbit);
3313 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003314 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003315
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003316 /* Do not issue duplicate brightness change events to
3317 * userspace */
3318 if (!tp_features.bright_acpimode)
3319 /* update bright_acpimode... */
3320 tpacpi_check_std_acpi_brightness_support();
3321
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003322 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003323 printk(TPACPI_INFO
3324 "This ThinkPad has standard ACPI backlight "
3325 "brightness control, supported by the ACPI "
3326 "video driver\n");
3327 printk(TPACPI_NOTICE
3328 "Disabling thinkpad-acpi brightness events "
3329 "by default...\n");
3330
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003331 /* Disable brightness up/down on Lenovo thinkpads when
3332 * ACPI is handling them, otherwise it is plain impossible
3333 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003334 hotkey_reserved_mask |=
3335 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3336 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003337 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3338 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003339 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003340
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003341#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003342 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3343 & ~hotkey_all_mask
3344 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003345
3346 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3347 "hotkey source mask 0x%08x, polling freq %u\n",
3348 hotkey_source_mask, hotkey_poll_freq);
3349#endif
3350
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003351 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3352 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003353 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003354 if (res) {
3355 hotkey_exit();
3356 return res;
3357 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003358 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3359 | hotkey_driver_mask)
3360 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003361 if (res < 0 && res != -ENXIO) {
3362 hotkey_exit();
3363 return res;
3364 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003365 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3366 & ~hotkey_reserved_mask;
3367 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3368 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3369 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003370
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003371 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3372 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003373 (hotkey_report_mode < 2) ?
3374 "enabled" : "disabled");
3375
3376 tpacpi_inputdev->open = &hotkey_inputdev_open;
3377 tpacpi_inputdev->close = &hotkey_inputdev_close;
3378
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003379 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003380 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003381 tpacpi_input_send_tabletsw();
3382
3383 return 0;
3384
3385err_exit:
3386 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3387 hotkey_dev_attributes = NULL;
3388
3389 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003390}
3391
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003392static bool hotkey_notify_hotkey(const u32 hkey,
3393 bool *send_acpi_ev,
3394 bool *ignore_acpi_ev)
3395{
3396 /* 0x1000-0x1FFF: key presses */
3397 unsigned int scancode = hkey & 0xfff;
3398 *send_acpi_ev = true;
3399 *ignore_acpi_ev = false;
3400
3401 if (scancode > 0 && scancode < 0x21) {
3402 scancode--;
3403 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003404 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003405 *send_acpi_ev = false;
3406 } else {
3407 *ignore_acpi_ev = true;
3408 }
3409 return true;
3410 }
3411 return false;
3412}
3413
3414static bool hotkey_notify_wakeup(const u32 hkey,
3415 bool *send_acpi_ev,
3416 bool *ignore_acpi_ev)
3417{
3418 /* 0x2000-0x2FFF: Wakeup reason */
3419 *send_acpi_ev = true;
3420 *ignore_acpi_ev = false;
3421
3422 switch (hkey) {
3423 case 0x2304: /* suspend, undock */
3424 case 0x2404: /* hibernation, undock */
3425 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3426 *ignore_acpi_ev = true;
3427 break;
3428
3429 case 0x2305: /* suspend, bay eject */
3430 case 0x2405: /* hibernation, bay eject */
3431 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3432 *ignore_acpi_ev = true;
3433 break;
3434
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003435 case 0x2313: /* Battery on critical low level (S3) */
3436 case 0x2413: /* Battery on critical low level (S4) */
3437 printk(TPACPI_ALERT
3438 "EMERGENCY WAKEUP: battery almost empty\n");
3439 /* how to auto-heal: */
3440 /* 2313: woke up from S3, go to S4/S5 */
3441 /* 2413: woke up from S4, go to S5 */
3442 break;
3443
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003444 default:
3445 return false;
3446 }
3447
3448 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3449 printk(TPACPI_INFO
3450 "woke up due to a hot-unplug "
3451 "request...\n");
3452 hotkey_wakeup_reason_notify_change();
3453 }
3454 return true;
3455}
3456
3457static bool hotkey_notify_usrevent(const u32 hkey,
3458 bool *send_acpi_ev,
3459 bool *ignore_acpi_ev)
3460{
3461 /* 0x5000-0x5FFF: human interface helpers */
3462 *send_acpi_ev = true;
3463 *ignore_acpi_ev = false;
3464
3465 switch (hkey) {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003466 case 0x500b: /* X61t: tablet pen inserted into bay */
3467 case 0x500c: /* X61t: tablet pen removed from bay */
3468 return true;
3469
3470 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
3471 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
3472 tpacpi_input_send_tabletsw();
3473 hotkey_tablet_mode_notify_change();
3474 *send_acpi_ev = false;
3475 return true;
3476
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003477 case 0x5001: /* Lid close */
3478 case 0x5002: /* Lid open */
3479 case 0x5010: /* brightness control */
3480 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003481 *ignore_acpi_ev = true;
3482 return true;
3483
3484 default:
3485 return false;
3486 }
3487}
3488
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003489static bool hotkey_notify_thermal(const u32 hkey,
3490 bool *send_acpi_ev,
3491 bool *ignore_acpi_ev)
3492{
3493 /* 0x6000-0x6FFF: thermal alarms */
3494 *send_acpi_ev = true;
3495 *ignore_acpi_ev = false;
3496
3497 switch (hkey) {
3498 case 0x6011:
3499 printk(TPACPI_CRIT
3500 "THERMAL ALARM: battery is too hot!\n");
3501 /* recommended action: warn user through gui */
3502 return true;
3503 case 0x6012:
3504 printk(TPACPI_ALERT
3505 "THERMAL EMERGENCY: battery is extremely hot!\n");
3506 /* recommended action: immediate sleep/hibernate */
3507 return true;
3508 case 0x6021:
3509 printk(TPACPI_CRIT
3510 "THERMAL ALARM: "
3511 "a sensor reports something is too hot!\n");
3512 /* recommended action: warn user through gui, that */
3513 /* some internal component is too hot */
3514 return true;
3515 case 0x6022:
3516 printk(TPACPI_ALERT
3517 "THERMAL EMERGENCY: "
3518 "a sensor reports something is extremely hot!\n");
3519 /* recommended action: immediate sleep/hibernate */
3520 return true;
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003521 case 0x6030:
3522 printk(TPACPI_INFO
3523 "EC reports that Thermal Table has changed\n");
3524 /* recommended action: do nothing, we don't have
3525 * Lenovo ATM information */
3526 return true;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003527 default:
3528 printk(TPACPI_ALERT
3529 "THERMAL ALERT: unknown thermal alarm received\n");
3530 return false;
3531 }
3532}
3533
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003534static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3535{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003536 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003537 bool send_acpi_ev;
3538 bool ignore_acpi_ev;
3539 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003540
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003541 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003542 printk(TPACPI_ERR
3543 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003544 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003545 acpi_bus_generate_netlink_event(
3546 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003547 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003548 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003549 return;
3550 }
3551
3552 while (1) {
3553 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003554 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003555 return;
3556 }
3557
3558 if (hkey == 0) {
3559 /* queue empty */
3560 return;
3561 }
3562
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003563 send_acpi_ev = true;
3564 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003565
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003566 switch (hkey >> 12) {
3567 case 1:
3568 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003569 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3570 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003571 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003572 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003573 /* 0x2000-0x2FFF: Wakeup reason */
3574 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3575 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003576 break;
3577 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003578 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003579 if (hkey == 0x3003) {
3580 hotkey_autosleep_ack = 1;
3581 printk(TPACPI_INFO
3582 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003583 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003584 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003585 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003586 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003587 }
3588 break;
3589 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003590 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003591 if (hkey == 0x4003) {
3592 hotkey_autosleep_ack = 1;
3593 printk(TPACPI_INFO
3594 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003595 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003596 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003597 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003598 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003599 }
3600 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003601 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003602 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003603 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3604 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003605 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003606 case 6:
3607 /* 0x6000-0x6FFF: thermal alarms */
3608 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3609 &ignore_acpi_ev);
3610 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003611 case 7:
3612 /* 0x7000-0x7FFF: misc */
3613 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003614 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003615 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003616 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003617 break;
3618 }
3619 /* fallthrough to default */
3620 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003621 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003622 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003623 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003624 printk(TPACPI_NOTICE
3625 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003626 printk(TPACPI_NOTICE
3627 "please report the conditions when this "
3628 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003629 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003630
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003631 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003632 if (!ignore_acpi_ev &&
3633 (send_acpi_ev || hotkey_report_mode < 2)) {
3634 acpi_bus_generate_proc_event(ibm->acpi->device,
3635 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003636 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003637
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003638 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003639 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003640 acpi_bus_generate_netlink_event(
3641 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003642 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003643 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003644 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003645 }
3646}
3647
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003648static void hotkey_suspend(pm_message_t state)
3649{
3650 /* Do these on suspend, we get the events on early resume! */
3651 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3652 hotkey_autosleep_ack = 0;
3653}
3654
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003655static void hotkey_resume(void)
3656{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003657 tpacpi_disable_brightness_delay();
3658
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003659 if (hotkey_status_set(true) < 0 ||
3660 hotkey_mask_set(hotkey_acpi_mask) < 0)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003661 printk(TPACPI_ERR
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003662 "error while attempting to reset the event "
3663 "firmware interface\n");
3664
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003665 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003666 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003667 hotkey_wakeup_reason_notify_change();
3668 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003669 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003670}
3671
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003672/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003673static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003675 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 int len = 0;
3677
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003678 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003679 len += sprintf(p + len, "status:\t\tnot supported\n");
3680 return len;
3681 }
3682
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003683 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003684 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003685 res = hotkey_status_get(&status);
3686 if (!res)
3687 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003688 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003689 if (res)
3690 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003693 if (hotkey_all_mask) {
3694 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_user_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 len += sprintf(p + len,
3696 "commands:\tenable, disable, reset, <mask>\n");
3697 } else {
3698 len += sprintf(p + len, "mask:\t\tnot supported\n");
3699 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
3700 }
3701
3702 return len;
3703}
3704
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003705static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003706{
3707 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003708 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3709 TPACPI_WARN
3710 "hotkey enable/disable functionality has been "
3711 "removed from the driver. Hotkeys are always "
3712 "enabled\n"))
3713 printk(TPACPI_ERR
3714 "Please remove the hotkey=enable module "
3715 "parameter, it is deprecated. Hotkeys are always "
3716 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003717}
3718
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003719static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003721 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003722 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003725 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 return -ENODEV;
3727
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003728 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003729 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003730
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003731 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003732
3733 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 while ((cmd = next_cmd(&buf))) {
3735 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003736 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003738 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003739 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003741 mask = (hotkey_all_mask | hotkey_source_mask)
3742 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3744 /* mask set */
3745 } else if (sscanf(cmd, "%x", &mask) == 1) {
3746 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003747 } else {
3748 res = -EINVAL;
3749 goto errexit;
3750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003752
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003753 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003754 tpacpi_disclose_usertask("procfs hotkey",
3755 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003756 res = hotkey_user_mask_set(mask);
3757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003759errexit:
3760 mutex_unlock(&hotkey_mutex);
3761 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003762}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003764static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003765 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003766 {"", 0},
3767};
3768
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003769static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003770 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003771 .notify = hotkey_notify,
3772 .handle = &hkey_handle,
3773 .type = ACPI_DEVICE_NOTIFY,
3774};
3775
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003776static struct ibm_struct hotkey_driver_data = {
3777 .name = "hotkey",
3778 .read = hotkey_read,
3779 .write = hotkey_write,
3780 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003781 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003782 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003783 .acpi = &ibm_hotkey_acpidriver,
3784};
3785
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003786/*************************************************************************
3787 * Bluetooth subdriver
3788 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003790enum {
3791 /* ACPI GBDC/SBDC bits */
3792 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3793 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003794 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
3795 off / last state */
3796};
3797
3798enum {
3799 /* ACPI \BLTH commands */
3800 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3801 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3802 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3803 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3804 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003805};
3806
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003807#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3808
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003809static void bluetooth_suspend(pm_message_t state)
3810{
3811 /* Try to make sure radio will resume powered off */
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003812 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3813 TP_ACPI_BLTH_PWR_OFF_ON_RESUME))
3814 vdbg_printk(TPACPI_DBG_RFKILL,
3815 "bluetooth power down on resume request failed\n");
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003816}
3817
Johannes Berg19d337d2009-06-02 13:01:37 +02003818static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003819{
3820 int status;
3821
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003822#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3823 if (dbg_bluetoothemul)
3824 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003825 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003826#endif
3827
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003828 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3829 return -EIO;
3830
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003831 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003832 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003833}
3834
Johannes Berg19d337d2009-06-02 13:01:37 +02003835static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003836{
3837 int status;
3838
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003839 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003840 "will attempt to %s bluetooth\n",
3841 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003842
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003843#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3844 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003845 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003846 return 0;
3847 }
3848#endif
3849
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003850 /* We make sure to keep TP_ACPI_BLUETOOTH_RESUMECTRL off */
Johannes Berg19d337d2009-06-02 13:01:37 +02003851 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003852 status = TP_ACPI_BLUETOOTH_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003853 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003854 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003855
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003856 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3857 return -EIO;
3858
3859 return 0;
3860}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003861
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003862/* sysfs bluetooth enable ---------------------------------------------- */
3863static ssize_t bluetooth_enable_show(struct device *dev,
3864 struct device_attribute *attr,
3865 char *buf)
3866{
Johannes Berg19d337d2009-06-02 13:01:37 +02003867 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3868 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003869}
3870
3871static ssize_t bluetooth_enable_store(struct device *dev,
3872 struct device_attribute *attr,
3873 const char *buf, size_t count)
3874{
Johannes Berg19d337d2009-06-02 13:01:37 +02003875 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3876 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003877}
3878
3879static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003880 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003881 bluetooth_enable_show, bluetooth_enable_store);
3882
3883/* --------------------------------------------------------------------- */
3884
3885static struct attribute *bluetooth_attributes[] = {
3886 &dev_attr_bluetooth_enable.attr,
3887 NULL
3888};
3889
3890static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003891 .attrs = bluetooth_attributes,
3892};
3893
Johannes Berg19d337d2009-06-02 13:01:37 +02003894static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3895 .get_status = bluetooth_get_status,
3896 .set_status = bluetooth_set_status,
3897};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003898
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003899static void bluetooth_shutdown(void)
3900{
3901 /* Order firmware to save current state to NVRAM */
3902 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3903 TP_ACPI_BLTH_SAVE_STATE))
3904 printk(TPACPI_NOTICE
3905 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003906 else
3907 vdbg_printk(TPACPI_DBG_RFKILL,
3908 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003909}
3910
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003911static void bluetooth_exit(void)
3912{
3913 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3914 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003915
3916 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
3917
3918 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003919}
3920
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003921static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003923 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003924 int status = 0;
3925
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003926 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3927 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003928
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003929 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003930
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003931 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3932 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003933 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003934 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003936 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3937 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003938 str_supported(tp_features.bluetooth),
3939 status);
3940
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003941#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3942 if (dbg_bluetoothemul) {
3943 tp_features.bluetooth = 1;
3944 printk(TPACPI_INFO
3945 "bluetooth switch emulation enabled\n");
3946 } else
3947#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003948 if (tp_features.bluetooth &&
3949 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
3950 /* no bluetooth hardware present in system */
3951 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003952 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003953 "bluetooth hardware not installed\n");
3954 }
3955
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003956 if (!tp_features.bluetooth)
3957 return 1;
3958
Johannes Berg19d337d2009-06-02 13:01:37 +02003959 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
3960 &bluetooth_tprfk_ops,
3961 RFKILL_TYPE_BLUETOOTH,
3962 TPACPI_RFK_BLUETOOTH_SW_NAME,
3963 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003964 if (res)
3965 return res;
3966
Johannes Berg19d337d2009-06-02 13:01:37 +02003967 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
3968 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003969 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003970 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003971 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003972 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003973
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
3976
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003977/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003978static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979{
Johannes Berg19d337d2009-06-02 13:01:37 +02003980 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981}
3982
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003983static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984{
Johannes Berg19d337d2009-06-02 13:01:37 +02003985 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986}
3987
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003988static struct ibm_struct bluetooth_driver_data = {
3989 .name = "bluetooth",
3990 .read = bluetooth_read,
3991 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003992 .exit = bluetooth_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003993 .suspend = bluetooth_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003994 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003995};
3996
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003997/*************************************************************************
3998 * Wan subdriver
3999 */
4000
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004001enum {
4002 /* ACPI GWAN/SWAN bits */
4003 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4004 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004005 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
4006 off / last state */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004007};
4008
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004009#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4010
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004011static void wan_suspend(pm_message_t state)
4012{
4013 /* Try to make sure radio will resume powered off */
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004014 if (!acpi_evalf(NULL, NULL, "\\WGSV", "qvd",
4015 TP_ACPI_WGSV_PWR_OFF_ON_RESUME))
4016 vdbg_printk(TPACPI_DBG_RFKILL,
4017 "WWAN power down on resume request failed\n");
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004018}
4019
Johannes Berg19d337d2009-06-02 13:01:37 +02004020static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004021{
4022 int status;
4023
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004024#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4025 if (dbg_wwanemul)
4026 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004027 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004028#endif
4029
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004030 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4031 return -EIO;
4032
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004033 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004034 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004035}
4036
Johannes Berg19d337d2009-06-02 13:01:37 +02004037static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004038{
4039 int status;
4040
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004041 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004042 "will attempt to %s wwan\n",
4043 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004044
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004045#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4046 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004047 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004048 return 0;
4049 }
4050#endif
4051
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004052 /* We make sure to keep TP_ACPI_WANCARD_RESUMECTRL off */
Johannes Berg19d337d2009-06-02 13:01:37 +02004053 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004054 status = TP_ACPI_WANCARD_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004055 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004056 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004057
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004058 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4059 return -EIO;
4060
4061 return 0;
4062}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004063
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004064/* sysfs wan enable ---------------------------------------------------- */
4065static ssize_t wan_enable_show(struct device *dev,
4066 struct device_attribute *attr,
4067 char *buf)
4068{
Johannes Berg19d337d2009-06-02 13:01:37 +02004069 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4070 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004071}
4072
4073static ssize_t wan_enable_store(struct device *dev,
4074 struct device_attribute *attr,
4075 const char *buf, size_t count)
4076{
Johannes Berg19d337d2009-06-02 13:01:37 +02004077 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4078 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004079}
4080
4081static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004082 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004083 wan_enable_show, wan_enable_store);
4084
4085/* --------------------------------------------------------------------- */
4086
4087static struct attribute *wan_attributes[] = {
4088 &dev_attr_wan_enable.attr,
4089 NULL
4090};
4091
4092static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004093 .attrs = wan_attributes,
4094};
4095
Johannes Berg19d337d2009-06-02 13:01:37 +02004096static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4097 .get_status = wan_get_status,
4098 .set_status = wan_set_status,
4099};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004100
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004101static void wan_shutdown(void)
4102{
4103 /* Order firmware to save current state to NVRAM */
4104 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4105 TP_ACPI_WGSV_SAVE_STATE))
4106 printk(TPACPI_NOTICE
4107 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004108 else
4109 vdbg_printk(TPACPI_DBG_RFKILL,
4110 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004111}
4112
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004113static void wan_exit(void)
4114{
4115 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4116 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004117
4118 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4119
4120 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004121}
4122
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004123static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004124{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004125 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004126 int status = 0;
4127
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004128 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4129 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004130
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004131 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004132
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004133 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004134 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004135
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004136 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4137 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004138 str_supported(tp_features.wan),
4139 status);
4140
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004141#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4142 if (dbg_wwanemul) {
4143 tp_features.wan = 1;
4144 printk(TPACPI_INFO
4145 "wwan switch emulation enabled\n");
4146 } else
4147#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004148 if (tp_features.wan &&
4149 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4150 /* no wan hardware present in system */
4151 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004152 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004153 "wan hardware not installed\n");
4154 }
4155
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004156 if (!tp_features.wan)
4157 return 1;
4158
Johannes Berg19d337d2009-06-02 13:01:37 +02004159 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4160 &wan_tprfk_ops,
4161 RFKILL_TYPE_WWAN,
4162 TPACPI_RFK_WWAN_SW_NAME,
4163 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004164 if (res)
4165 return res;
4166
Johannes Berg19d337d2009-06-02 13:01:37 +02004167 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4168 &wan_attr_group);
4169
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004170 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004171 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004172 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004173 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004174
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004175 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004176}
4177
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004178/* procfs -------------------------------------------------------------- */
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004179static int wan_read(char *p)
4180{
Johannes Berg19d337d2009-06-02 13:01:37 +02004181 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, p);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004182}
4183
4184static int wan_write(char *buf)
4185{
Johannes Berg19d337d2009-06-02 13:01:37 +02004186 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004187}
4188
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004189static struct ibm_struct wan_driver_data = {
4190 .name = "wan",
4191 .read = wan_read,
4192 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004193 .exit = wan_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004194 .suspend = wan_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004195 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004196};
4197
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004198/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004199 * UWB subdriver
4200 */
4201
4202enum {
4203 /* ACPI GUWB/SUWB bits */
4204 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4205 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4206};
4207
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004208#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4209
Johannes Berg19d337d2009-06-02 13:01:37 +02004210static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004211{
4212 int status;
4213
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004214#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4215 if (dbg_uwbemul)
4216 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004217 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004218#endif
4219
4220 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4221 return -EIO;
4222
4223 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004224 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004225}
4226
Johannes Berg19d337d2009-06-02 13:01:37 +02004227static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004228{
4229 int status;
4230
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004231 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004232 "will attempt to %s UWB\n",
4233 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004234
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004235#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4236 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004237 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004238 return 0;
4239 }
4240#endif
4241
Johannes Berg19d337d2009-06-02 13:01:37 +02004242 if (state == TPACPI_RFK_RADIO_ON)
4243 status = TP_ACPI_UWB_RADIOSSW;
4244 else
4245 status = 0;
4246
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004247 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4248 return -EIO;
4249
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004250 return 0;
4251}
4252
4253/* --------------------------------------------------------------------- */
4254
Johannes Berg19d337d2009-06-02 13:01:37 +02004255static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4256 .get_status = uwb_get_status,
4257 .set_status = uwb_set_status,
4258};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004259
4260static void uwb_exit(void)
4261{
Johannes Berg19d337d2009-06-02 13:01:37 +02004262 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004263}
4264
4265static int __init uwb_init(struct ibm_init_struct *iibm)
4266{
4267 int res;
4268 int status = 0;
4269
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004270 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4271 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004272
4273 TPACPI_ACPIHANDLE_INIT(hkey);
4274
4275 tp_features.uwb = hkey_handle &&
4276 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4277
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004278 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4279 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004280 str_supported(tp_features.uwb),
4281 status);
4282
4283#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4284 if (dbg_uwbemul) {
4285 tp_features.uwb = 1;
4286 printk(TPACPI_INFO
4287 "uwb switch emulation enabled\n");
4288 } else
4289#endif
4290 if (tp_features.uwb &&
4291 !(status & TP_ACPI_UWB_HWPRESENT)) {
4292 /* no uwb hardware present in system */
4293 tp_features.uwb = 0;
4294 dbg_printk(TPACPI_DBG_INIT,
4295 "uwb hardware not installed\n");
4296 }
4297
4298 if (!tp_features.uwb)
4299 return 1;
4300
4301 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004302 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004303 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004304 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004305 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004306 return res;
4307}
4308
4309static struct ibm_struct uwb_driver_data = {
4310 .name = "uwb",
4311 .exit = uwb_exit,
4312 .flags.experimental = 1,
4313};
4314
4315/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004316 * Video subdriver
4317 */
4318
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004319#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4320
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004321enum video_access_mode {
4322 TPACPI_VIDEO_NONE = 0,
4323 TPACPI_VIDEO_570, /* 570 */
4324 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4325 TPACPI_VIDEO_NEW, /* all others */
4326};
4327
4328enum { /* video status flags, based on VIDEO_570 */
4329 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4330 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4331 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4332};
4333
4334enum { /* TPACPI_VIDEO_570 constants */
4335 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4336 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4337 * video_status_flags */
4338 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4339 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4340};
4341
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004342static enum video_access_mode video_supported;
4343static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004344
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004345static int video_autosw_get(void);
4346static int video_autosw_set(int enable);
4347
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004348TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004349
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004350static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004352 int ivga;
4353
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004354 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4355
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004356 TPACPI_ACPIHANDLE_INIT(vid);
4357 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004358
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004359 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4360 /* G41, assume IVGA doesn't change */
4361 vid_handle = vid2_handle;
4362
4363 if (!vid_handle)
4364 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004365 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004366 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
4367 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004368 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004369 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
4370 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004371 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004372 else
4373 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004374 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004376 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4377 str_supported(video_supported != TPACPI_VIDEO_NONE),
4378 video_supported);
4379
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004380 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381}
4382
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004383static void video_exit(void)
4384{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004385 dbg_printk(TPACPI_DBG_EXIT,
4386 "restoring original video autoswitch mode\n");
4387 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004388 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004389 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004390}
4391
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004392static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393{
4394 int status = 0;
4395 int i;
4396
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004397 switch (video_supported) {
4398 case TPACPI_VIDEO_570:
4399 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4400 TP_ACPI_VIDEO_570_PHSCMD))
4401 return -EIO;
4402 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4403 break;
4404 case TPACPI_VIDEO_770:
4405 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4406 return -EIO;
4407 if (i)
4408 status |= TP_ACPI_VIDEO_S_LCD;
4409 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4410 return -EIO;
4411 if (i)
4412 status |= TP_ACPI_VIDEO_S_CRT;
4413 break;
4414 case TPACPI_VIDEO_NEW:
4415 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4416 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4417 return -EIO;
4418 if (i)
4419 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004421 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4422 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4423 return -EIO;
4424 if (i)
4425 status |= TP_ACPI_VIDEO_S_LCD;
4426 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4427 return -EIO;
4428 if (i)
4429 status |= TP_ACPI_VIDEO_S_DVI;
4430 break;
4431 default:
4432 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435 return status;
4436}
4437
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004438static int video_outputsw_set(int status)
4439{
4440 int autosw;
4441 int res = 0;
4442
4443 switch (video_supported) {
4444 case TPACPI_VIDEO_570:
4445 res = acpi_evalf(NULL, NULL,
4446 "\\_SB.PHS2", "vdd",
4447 TP_ACPI_VIDEO_570_PHS2CMD,
4448 status | TP_ACPI_VIDEO_570_PHS2SET);
4449 break;
4450 case TPACPI_VIDEO_770:
4451 autosw = video_autosw_get();
4452 if (autosw < 0)
4453 return autosw;
4454
4455 res = video_autosw_set(1);
4456 if (res)
4457 return res;
4458 res = acpi_evalf(vid_handle, NULL,
4459 "ASWT", "vdd", status * 0x100, 0);
4460 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004461 printk(TPACPI_ERR
4462 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004463 return -EIO;
4464 }
4465 break;
4466 case TPACPI_VIDEO_NEW:
4467 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004468 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004469 break;
4470 default:
4471 return -ENOSYS;
4472 }
4473
4474 return (res)? 0 : -EIO;
4475}
4476
4477static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004479 int autosw = 0;
4480
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004481 switch (video_supported) {
4482 case TPACPI_VIDEO_570:
4483 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4484 return -EIO;
4485 break;
4486 case TPACPI_VIDEO_770:
4487 case TPACPI_VIDEO_NEW:
4488 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4489 return -EIO;
4490 break;
4491 default:
4492 return -ENOSYS;
4493 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004494
4495 return autosw & 1;
4496}
4497
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004498static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004499{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004500 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004501 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004502 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004503}
4504
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004505static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004506{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004507 int autosw = video_autosw_get();
4508 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004509
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004510 if (autosw < 0)
4511 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004512
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004513 switch (video_supported) {
4514 case TPACPI_VIDEO_570:
4515 res = video_autosw_set(1);
4516 if (res)
4517 return res;
4518 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4519 break;
4520 case TPACPI_VIDEO_770:
4521 case TPACPI_VIDEO_NEW:
4522 res = video_autosw_set(1);
4523 if (res)
4524 return res;
4525 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4526 break;
4527 default:
4528 return -ENOSYS;
4529 }
4530 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004531 printk(TPACPI_ERR
4532 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004533 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004534 }
4535
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004536 return (res)? 0 : -EIO;
4537}
4538
4539static int video_expand_toggle(void)
4540{
4541 switch (video_supported) {
4542 case TPACPI_VIDEO_570:
4543 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4544 0 : -EIO;
4545 case TPACPI_VIDEO_770:
4546 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4547 0 : -EIO;
4548 case TPACPI_VIDEO_NEW:
4549 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4550 0 : -EIO;
4551 default:
4552 return -ENOSYS;
4553 }
4554 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004555}
4556
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004557static int video_read(char *p)
4558{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004559 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004560 int len = 0;
4561
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004562 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004563 len += sprintf(p + len, "status:\t\tnot supported\n");
4564 return len;
4565 }
4566
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004567 status = video_outputsw_get();
4568 if (status < 0)
4569 return status;
4570
4571 autosw = video_autosw_get();
4572 if (autosw < 0)
4573 return autosw;
4574
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004575 len += sprintf(p + len, "status:\t\tsupported\n");
4576 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
4577 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004578 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004579 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
4580 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
4581 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
4582 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004583 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004584 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
4585 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
4586 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
4587
4588 return len;
4589}
4590
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004591static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592{
4593 char *cmd;
4594 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004595 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004597 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004598 return -ENODEV;
4599
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004600 enable = 0;
4601 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
4603 while ((cmd = next_cmd(&buf))) {
4604 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004605 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004607 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004609 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004611 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004612 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004613 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004614 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004615 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004616 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004617 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004619 res = video_autosw_set(1);
4620 if (res)
4621 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004623 res = video_autosw_set(0);
4624 if (res)
4625 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004627 res = video_outputsw_cycle();
4628 if (res)
4629 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004631 res = video_expand_toggle();
4632 if (res)
4633 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 } else
4635 return -EINVAL;
4636 }
4637
4638 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004639 status = video_outputsw_get();
4640 if (status < 0)
4641 return status;
4642 res = video_outputsw_set((status & ~disable) | enable);
4643 if (res)
4644 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 }
4646
4647 return 0;
4648}
4649
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004650static struct ibm_struct video_driver_data = {
4651 .name = "video",
4652 .read = video_read,
4653 .write = video_write,
4654 .exit = video_exit,
4655};
4656
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004657#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4658
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004659/*************************************************************************
4660 * Light (thinklight) subdriver
4661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004663TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4664TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004665
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004666static int light_get_status(void)
4667{
4668 int status = 0;
4669
4670 if (tp_features.light_status) {
4671 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4672 return -EIO;
4673 return (!!status);
4674 }
4675
4676 return -ENXIO;
4677}
4678
4679static int light_set_status(int status)
4680{
4681 int rc;
4682
4683 if (tp_features.light) {
4684 if (cmos_handle) {
4685 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4686 (status)?
4687 TP_CMOS_THINKLIGHT_ON :
4688 TP_CMOS_THINKLIGHT_OFF);
4689 } else {
4690 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4691 (status)? 1 : 0);
4692 }
4693 return (rc)? 0 : -EIO;
4694 }
4695
4696 return -ENXIO;
4697}
4698
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004699static void light_set_status_worker(struct work_struct *work)
4700{
4701 struct tpacpi_led_classdev *data =
4702 container_of(work, struct tpacpi_led_classdev, work);
4703
4704 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004705 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004706}
4707
4708static void light_sysfs_set(struct led_classdev *led_cdev,
4709 enum led_brightness brightness)
4710{
4711 struct tpacpi_led_classdev *data =
4712 container_of(led_cdev,
4713 struct tpacpi_led_classdev,
4714 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004715 data->new_state = (brightness != LED_OFF) ?
4716 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004717 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004718}
4719
4720static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4721{
4722 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4723}
4724
4725static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4726 .led_classdev = {
4727 .name = "tpacpi::thinklight",
4728 .brightness_set = &light_sysfs_set,
4729 .brightness_get = &light_sysfs_get,
4730 }
4731};
4732
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004733static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004735 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004736
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004737 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4738
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004739 TPACPI_ACPIHANDLE_INIT(ledb);
4740 TPACPI_ACPIHANDLE_INIT(lght);
4741 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004742 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004743
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004744 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004745 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004746
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004747 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004748 /* light status not supported on
4749 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004750 tp_features.light_status =
4751 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004753 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4754 str_supported(tp_features.light),
4755 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004756
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004757 if (!tp_features.light)
4758 return 1;
4759
4760 rc = led_classdev_register(&tpacpi_pdev->dev,
4761 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004762
4763 if (rc < 0) {
4764 tp_features.light = 0;
4765 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004766 } else {
4767 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004768 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004769
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004770 return rc;
4771}
4772
4773static void light_exit(void)
4774{
4775 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4776 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004777 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778}
4779
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004780static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781{
4782 int len = 0;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004783 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004785 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004786 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004787 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004788 len += sprintf(p + len, "status:\t\tunknown\n");
4789 len += sprintf(p + len, "commands:\ton, off\n");
4790 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004791 status = light_get_status();
4792 if (status < 0)
4793 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004795 len += sprintf(p + len, "commands:\ton, off\n");
4796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
4798 return len;
4799}
4800
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004801static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004804 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004805
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004806 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004807 return -ENODEV;
4808
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 while ((cmd = next_cmd(&buf))) {
4810 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004811 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004813 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 } else
4815 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 }
4817
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004818 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819}
4820
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004821static struct ibm_struct light_driver_data = {
4822 .name = "light",
4823 .read = light_read,
4824 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004825 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004826};
4827
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004828/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004829 * CMOS subdriver
4830 */
4831
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004832/* sysfs cmos_command -------------------------------------------------- */
4833static ssize_t cmos_command_store(struct device *dev,
4834 struct device_attribute *attr,
4835 const char *buf, size_t count)
4836{
4837 unsigned long cmos_cmd;
4838 int res;
4839
4840 if (parse_strtoul(buf, 21, &cmos_cmd))
4841 return -EINVAL;
4842
4843 res = issue_thinkpad_cmos_command(cmos_cmd);
4844 return (res)? res : count;
4845}
4846
4847static struct device_attribute dev_attr_cmos_command =
4848 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4849
4850/* --------------------------------------------------------------------- */
4851
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004852static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004853{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004854 int res;
4855
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004856 vdbg_printk(TPACPI_DBG_INIT,
4857 "initializing cmos commands subdriver\n");
4858
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004859 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004860
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004861 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4862 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004863
4864 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4865 if (res)
4866 return res;
4867
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004868 return (cmos_handle)? 0 : 1;
4869}
4870
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004871static void cmos_exit(void)
4872{
4873 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4874}
4875
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004876static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877{
4878 int len = 0;
4879
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004880 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4881 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 if (!cmos_handle)
4883 len += sprintf(p + len, "status:\t\tnot supported\n");
4884 else {
4885 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004886 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 }
4888
4889 return len;
4890}
4891
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004892static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893{
4894 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004895 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
4897 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004898 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4899 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 /* cmos_cmd set */
4901 } else
4902 return -EINVAL;
4903
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004904 res = issue_thinkpad_cmos_command(cmos_cmd);
4905 if (res)
4906 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 }
4908
4909 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004910}
4911
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004912static struct ibm_struct cmos_driver_data = {
4913 .name = "cmos",
4914 .read = cmos_read,
4915 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004916 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004917};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004918
4919/*************************************************************************
4920 * LED subdriver
4921 */
4922
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004923enum led_access_mode {
4924 TPACPI_LED_NONE = 0,
4925 TPACPI_LED_570, /* 570 */
4926 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4927 TPACPI_LED_NEW, /* all others */
4928};
4929
4930enum { /* For TPACPI_LED_OLD */
4931 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4932 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
4933 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
4934};
4935
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004936static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004937
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004938TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004939 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
4940 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004941 "LED", /* all others */
4942 ); /* R30, R31 */
4943
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004944#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004945static struct tpacpi_led_classdev *tpacpi_leds;
4946static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07004947static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004948 /* there's a limit of 19 chars + NULL before 2.6.26 */
4949 "tpacpi::power",
4950 "tpacpi:orange:batt",
4951 "tpacpi:green:batt",
4952 "tpacpi::dock_active",
4953 "tpacpi::bay_active",
4954 "tpacpi::dock_batt",
4955 "tpacpi::unknown_led",
4956 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004957 "tpacpi::dock_status1",
4958 "tpacpi::dock_status2",
4959 "tpacpi::unknown_led2",
4960 "tpacpi::unknown_led3",
4961 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004962};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004963#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004964
4965static inline bool tpacpi_is_led_restricted(const unsigned int led)
4966{
4967#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
4968 return false;
4969#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004970 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004971#endif
4972}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004973
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004974static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004975{
4976 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004977 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004978
4979 switch (led_supported) {
4980 case TPACPI_LED_570:
4981 if (!acpi_evalf(ec_handle,
4982 &status, "GLED", "dd", 1 << led))
4983 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004984 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004985 TPACPI_LED_OFF :
4986 ((status == 1)?
4987 TPACPI_LED_ON :
4988 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004989 tpacpi_led_state_cache[led] = led_s;
4990 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004991 default:
4992 return -ENXIO;
4993 }
4994
4995 /* not reached */
4996}
4997
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004998static int led_set_status(const unsigned int led,
4999 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005000{
5001 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005002 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5003 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005004
5005 int rc = 0;
5006
5007 switch (led_supported) {
5008 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005009 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005010 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005011 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005012 if (unlikely(tpacpi_is_led_restricted(led)))
5013 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005014 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5015 (1 << led), led_sled_arg1[ledstatus]))
5016 rc = -EIO;
5017 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005018 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005019 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005020 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005021 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005022 if (unlikely(tpacpi_is_led_restricted(led)))
5023 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005024 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5025 if (rc >= 0)
5026 rc = ec_write(TPACPI_LED_EC_HLBL,
5027 (ledstatus == TPACPI_LED_BLINK) << led);
5028 if (rc >= 0)
5029 rc = ec_write(TPACPI_LED_EC_HLCL,
5030 (ledstatus != TPACPI_LED_OFF) << led);
5031 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005032 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005033 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005034 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5035 return -EINVAL;
5036 if (unlikely(tpacpi_is_led_restricted(led)))
5037 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005038 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5039 led, led_led_arg1[ledstatus]))
5040 rc = -EIO;
5041 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005042 default:
5043 rc = -ENXIO;
5044 }
5045
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005046 if (!rc)
5047 tpacpi_led_state_cache[led] = ledstatus;
5048
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005049 return rc;
5050}
5051
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005052static void led_set_status_worker(struct work_struct *work)
5053{
5054 struct tpacpi_led_classdev *data =
5055 container_of(work, struct tpacpi_led_classdev, work);
5056
5057 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005058 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005059}
5060
5061static void led_sysfs_set(struct led_classdev *led_cdev,
5062 enum led_brightness brightness)
5063{
5064 struct tpacpi_led_classdev *data = container_of(led_cdev,
5065 struct tpacpi_led_classdev, led_classdev);
5066
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005067 if (brightness == LED_OFF)
5068 data->new_state = TPACPI_LED_OFF;
5069 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5070 data->new_state = TPACPI_LED_ON;
5071 else
5072 data->new_state = TPACPI_LED_BLINK;
5073
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005074 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005075}
5076
5077static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5078 unsigned long *delay_on, unsigned long *delay_off)
5079{
5080 struct tpacpi_led_classdev *data = container_of(led_cdev,
5081 struct tpacpi_led_classdev, led_classdev);
5082
5083 /* Can we choose the flash rate? */
5084 if (*delay_on == 0 && *delay_off == 0) {
5085 /* yes. set them to the hardware blink rate (1 Hz) */
5086 *delay_on = 500; /* ms */
5087 *delay_off = 500; /* ms */
5088 } else if ((*delay_on != 500) || (*delay_off != 500))
5089 return -EINVAL;
5090
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005091 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005092 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005093
5094 return 0;
5095}
5096
5097static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5098{
5099 int rc;
5100
5101 struct tpacpi_led_classdev *data = container_of(led_cdev,
5102 struct tpacpi_led_classdev, led_classdev);
5103
5104 rc = led_get_status(data->led);
5105
5106 if (rc == TPACPI_LED_OFF || rc < 0)
5107 rc = LED_OFF; /* no error handling in led class :( */
5108 else
5109 rc = LED_FULL;
5110
5111 return rc;
5112}
5113
5114static void led_exit(void)
5115{
5116 unsigned int i;
5117
5118 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5119 if (tpacpi_leds[i].led_classdev.name)
5120 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5121 }
5122
5123 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005124}
5125
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005126static int __init tpacpi_init_led(unsigned int led)
5127{
5128 int rc;
5129
5130 tpacpi_leds[led].led = led;
5131
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005132 /* LEDs with no name don't get registered */
5133 if (!tpacpi_led_names[led])
5134 return 0;
5135
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005136 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5137 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5138 if (led_supported == TPACPI_LED_570)
5139 tpacpi_leds[led].led_classdev.brightness_get =
5140 &led_sysfs_get;
5141
5142 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5143
5144 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5145
5146 rc = led_classdev_register(&tpacpi_pdev->dev,
5147 &tpacpi_leds[led].led_classdev);
5148 if (rc < 0)
5149 tpacpi_leds[led].led_classdev.name = NULL;
5150
5151 return rc;
5152}
5153
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005154static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5155 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5156 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5157 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5158
5159 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5160 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5161 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5162 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5163 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5164 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5165 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5166 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5167
5168 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5169 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5170 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5171 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5172 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5173
5174 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5175 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5176 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5177 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5178
5179 /* (1) - may have excess leds enabled on MSB */
5180
5181 /* Defaults (order matters, keep last, don't reorder!) */
5182 { /* Lenovo */
5183 .vendor = PCI_VENDOR_ID_LENOVO,
5184 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5185 .quirks = 0x1fffU,
5186 },
5187 { /* IBM ThinkPads with no EC version string */
5188 .vendor = PCI_VENDOR_ID_IBM,
5189 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5190 .quirks = 0x00ffU,
5191 },
5192 { /* IBM ThinkPads with EC version string */
5193 .vendor = PCI_VENDOR_ID_IBM,
5194 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5195 .quirks = 0x00bfU,
5196 },
5197};
5198
5199#undef TPACPI_LEDQ_IBM
5200#undef TPACPI_LEDQ_LNV
5201
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005202static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005203{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005204 unsigned int i;
5205 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005206 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005207
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005208 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5209
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005210 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005211
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005212 if (!led_handle)
5213 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005214 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005215 else if (strlencmp(led_path, "SLED") == 0)
5216 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005217 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005218 else if (strlencmp(led_path, "SYSL") == 0)
5219 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005220 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005221 else
5222 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005223 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005224
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005225 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5226 str_supported(led_supported), led_supported);
5227
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005228 if (led_supported == TPACPI_LED_NONE)
5229 return 1;
5230
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005231 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5232 GFP_KERNEL);
5233 if (!tpacpi_leds) {
5234 printk(TPACPI_ERR "Out of memory for LED data\n");
5235 return -ENOMEM;
5236 }
5237
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005238 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5239 ARRAY_SIZE(led_useful_qtable));
5240
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005241 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005242 if (!tpacpi_is_led_restricted(i) &&
5243 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005244 rc = tpacpi_init_led(i);
5245 if (rc < 0) {
5246 led_exit();
5247 return rc;
5248 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005249 }
5250 }
5251
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005252#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005253 printk(TPACPI_NOTICE
5254 "warning: userspace override of important "
5255 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005256#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005257 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005258}
5259
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005260#define str_led_status(s) \
5261 ((s) == TPACPI_LED_OFF ? "off" : \
5262 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005263
5264static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265{
5266 int len = 0;
5267
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005268 if (!led_supported) {
5269 len += sprintf(p + len, "status:\t\tnot supported\n");
5270 return len;
5271 }
5272 len += sprintf(p + len, "status:\t\tsupported\n");
5273
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005274 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005275 /* 570 */
5276 int i, status;
5277 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005278 status = led_get_status(i);
5279 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005280 return -EIO;
5281 len += sprintf(p + len, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005282 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005283 }
5284 }
5285
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 len += sprintf(p + len, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005287 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
5289 return len;
5290}
5291
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005292static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293{
5294 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005295 int led, rc;
5296 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005297
5298 if (!led_supported)
5299 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
5301 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005302 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 return -EINVAL;
5304
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005305 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005306 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005308 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005309 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005310 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005311 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005312 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005313 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005314
5315 rc = led_set_status(led, s);
5316 if (rc < 0)
5317 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 }
5319
5320 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005321}
5322
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005323static struct ibm_struct led_driver_data = {
5324 .name = "led",
5325 .read = led_read,
5326 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005327 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005328};
5329
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005330/*************************************************************************
5331 * Beep subdriver
5332 */
5333
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005334TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005335
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005336#define TPACPI_BEEP_Q1 0x0001
5337
5338static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5339 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5340 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5341};
5342
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005343static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005344{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005345 unsigned long quirks;
5346
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005347 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5348
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005349 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005350
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005351 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5352 str_supported(beep_handle != NULL));
5353
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005354 quirks = tpacpi_check_quirks(beep_quirk_table,
5355 ARRAY_SIZE(beep_quirk_table));
5356
5357 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5358
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005359 return (beep_handle)? 0 : 1;
5360}
5361
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005362static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363{
5364 int len = 0;
5365
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005366 if (!beep_handle)
5367 len += sprintf(p + len, "status:\t\tnot supported\n");
5368 else {
5369 len += sprintf(p + len, "status:\t\tsupported\n");
5370 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
5371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
5373 return len;
5374}
5375
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005376static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377{
5378 char *cmd;
5379 int beep_cmd;
5380
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005381 if (!beep_handle)
5382 return -ENODEV;
5383
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005385 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5386 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 /* beep_cmd set */
5388 } else
5389 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005390 if (tp_features.beep_needs_two_args) {
5391 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5392 beep_cmd, 0))
5393 return -EIO;
5394 } else {
5395 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5396 beep_cmd))
5397 return -EIO;
5398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 }
5400
5401 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005402}
5403
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005404static struct ibm_struct beep_driver_data = {
5405 .name = "beep",
5406 .read = beep_read,
5407 .write = beep_write,
5408};
5409
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005410/*************************************************************************
5411 * Thermal subdriver
5412 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005413
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005414enum thermal_access_mode {
5415 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5416 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5417 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5418 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5419 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5420};
5421
5422enum { /* TPACPI_THERMAL_TPEC_* */
5423 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5424 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5425 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
5426};
5427
5428#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5429struct ibm_thermal_sensors_struct {
5430 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5431};
5432
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005433static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005434
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005435/* idx is zero-based */
5436static int thermal_get_sensor(int idx, s32 *value)
5437{
5438 int t;
5439 s8 tmp;
5440 char tmpi[5];
5441
5442 t = TP_EC_THERMAL_TMP0;
5443
5444 switch (thermal_read_mode) {
5445#if TPACPI_MAX_THERMAL_SENSORS >= 16
5446 case TPACPI_THERMAL_TPEC_16:
5447 if (idx >= 8 && idx <= 15) {
5448 t = TP_EC_THERMAL_TMP8;
5449 idx -= 8;
5450 }
5451 /* fallthrough */
5452#endif
5453 case TPACPI_THERMAL_TPEC_8:
5454 if (idx <= 7) {
5455 if (!acpi_ec_read(t + idx, &tmp))
5456 return -EIO;
5457 *value = tmp * 1000;
5458 return 0;
5459 }
5460 break;
5461
5462 case TPACPI_THERMAL_ACPI_UPDT:
5463 if (idx <= 7) {
5464 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5465 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5466 return -EIO;
5467 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5468 return -EIO;
5469 *value = (t - 2732) * 100;
5470 return 0;
5471 }
5472 break;
5473
5474 case TPACPI_THERMAL_ACPI_TMP07:
5475 if (idx <= 7) {
5476 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5477 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5478 return -EIO;
5479 if (t > 127 || t < -127)
5480 t = TP_EC_THERMAL_TMP_NA;
5481 *value = t * 1000;
5482 return 0;
5483 }
5484 break;
5485
5486 case TPACPI_THERMAL_NONE:
5487 default:
5488 return -ENOSYS;
5489 }
5490
5491 return -EINVAL;
5492}
5493
5494static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5495{
5496 int res, i;
5497 int n;
5498
5499 n = 8;
5500 i = 0;
5501
5502 if (!s)
5503 return -EINVAL;
5504
5505 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5506 n = 16;
5507
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005508 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005509 res = thermal_get_sensor(i, &s->temp[i]);
5510 if (res)
5511 return res;
5512 }
5513
5514 return n;
5515}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005516
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005517/* sysfs temp##_input -------------------------------------------------- */
5518
5519static ssize_t thermal_temp_input_show(struct device *dev,
5520 struct device_attribute *attr,
5521 char *buf)
5522{
5523 struct sensor_device_attribute *sensor_attr =
5524 to_sensor_dev_attr(attr);
5525 int idx = sensor_attr->index;
5526 s32 value;
5527 int res;
5528
5529 res = thermal_get_sensor(idx, &value);
5530 if (res)
5531 return res;
5532 if (value == TP_EC_THERMAL_TMP_NA * 1000)
5533 return -ENXIO;
5534
5535 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5536}
5537
5538#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005539 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5540 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005541
5542static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5543 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5544 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5545 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5546 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5547 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5548 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5549 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5550 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5551 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5552 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5553 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5554 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5555 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5556 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5557 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5558 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5559};
5560
5561#define THERMAL_ATTRS(X) \
5562 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5563
5564static struct attribute *thermal_temp_input_attr[] = {
5565 THERMAL_ATTRS(8),
5566 THERMAL_ATTRS(9),
5567 THERMAL_ATTRS(10),
5568 THERMAL_ATTRS(11),
5569 THERMAL_ATTRS(12),
5570 THERMAL_ATTRS(13),
5571 THERMAL_ATTRS(14),
5572 THERMAL_ATTRS(15),
5573 THERMAL_ATTRS(0),
5574 THERMAL_ATTRS(1),
5575 THERMAL_ATTRS(2),
5576 THERMAL_ATTRS(3),
5577 THERMAL_ATTRS(4),
5578 THERMAL_ATTRS(5),
5579 THERMAL_ATTRS(6),
5580 THERMAL_ATTRS(7),
5581 NULL
5582};
5583
5584static const struct attribute_group thermal_temp_input16_group = {
5585 .attrs = thermal_temp_input_attr
5586};
5587
5588static const struct attribute_group thermal_temp_input8_group = {
5589 .attrs = &thermal_temp_input_attr[8]
5590};
5591
5592#undef THERMAL_SENSOR_ATTR_TEMP
5593#undef THERMAL_ATTRS
5594
5595/* --------------------------------------------------------------------- */
5596
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005597static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005598{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005599 u8 t, ta1, ta2;
5600 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005601 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005602 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005603
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005604 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5605
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005606 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005607
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005608 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005609 /*
5610 * Direct EC access mode: sensors at registers
5611 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5612 * non-implemented, thermal sensors return 0x80 when
5613 * not available
5614 */
5615
5616 ta1 = ta2 = 0;
5617 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005618 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005619 ta1 |= t;
5620 } else {
5621 ta1 = 0;
5622 break;
5623 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005624 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005625 ta2 |= t;
5626 } else {
5627 ta1 = 0;
5628 break;
5629 }
5630 }
5631 if (ta1 == 0) {
5632 /* This is sheer paranoia, but we handle it anyway */
5633 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005634 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005635 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005636 "falling back to ACPI TMPx access "
5637 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005638 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005639 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005640 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005641 "ThinkPad ACPI EC access misbehaving, "
5642 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005643 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005644 }
5645 } else {
5646 thermal_read_mode =
5647 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005648 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005649 }
5650 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005651 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
5652 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005653 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005654 } else {
5655 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005656 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005657 }
5658 } else {
5659 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005660 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005661 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005662
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005663 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5664 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5665 thermal_read_mode);
5666
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005667 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005668 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005669 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005670 &thermal_temp_input16_group);
5671 if (res)
5672 return res;
5673 break;
5674 case TPACPI_THERMAL_TPEC_8:
5675 case TPACPI_THERMAL_ACPI_TMP07:
5676 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005677 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005678 &thermal_temp_input8_group);
5679 if (res)
5680 return res;
5681 break;
5682 case TPACPI_THERMAL_NONE:
5683 default:
5684 return 1;
5685 }
5686
5687 return 0;
5688}
5689
5690static void thermal_exit(void)
5691{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005692 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005693 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005694 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005695 &thermal_temp_input16_group);
5696 break;
5697 case TPACPI_THERMAL_TPEC_8:
5698 case TPACPI_THERMAL_ACPI_TMP07:
5699 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005700 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005701 &thermal_temp_input16_group);
5702 break;
5703 case TPACPI_THERMAL_NONE:
5704 default:
5705 break;
5706 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005707}
5708
5709static int thermal_read(char *p)
5710{
5711 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005712 int n, i;
5713 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005714
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005715 n = thermal_get_sensors(&t);
5716 if (unlikely(n < 0))
5717 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005718
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005719 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005720
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005721 if (n > 0) {
5722 for (i = 0; i < (n - 1); i++)
5723 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
5724 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
5725 } else
5726 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005727
5728 return len;
5729}
5730
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005731static struct ibm_struct thermal_driver_data = {
5732 .name = "thermal",
5733 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005734 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005735};
5736
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005737/*************************************************************************
5738 * EC Dump subdriver
5739 */
5740
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005741static u8 ecdump_regs[256];
5742
5743static int ecdump_read(char *p)
5744{
5745 int len = 0;
5746 int i, j;
5747 u8 v;
5748
5749 len += sprintf(p + len, "EC "
5750 " +00 +01 +02 +03 +04 +05 +06 +07"
5751 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5752 for (i = 0; i < 256; i += 16) {
5753 len += sprintf(p + len, "EC 0x%02x:", i);
5754 for (j = 0; j < 16; j++) {
5755 if (!acpi_ec_read(i + j, &v))
5756 break;
5757 if (v != ecdump_regs[i + j])
5758 len += sprintf(p + len, " *%02x", v);
5759 else
5760 len += sprintf(p + len, " %02x", v);
5761 ecdump_regs[i + j] = v;
5762 }
5763 len += sprintf(p + len, "\n");
5764 if (j != 16)
5765 break;
5766 }
5767
5768 /* These are way too dangerous to advertise openly... */
5769#if 0
5770 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
5771 " (<offset> is 00-ff, <value> is 00-ff)\n");
5772 len += sprintf(p + len, "commands:\t0x<offset> <value> "
5773 " (<offset> is 00-ff, <value> is 0-255)\n");
5774#endif
5775 return len;
5776}
5777
5778static int ecdump_write(char *buf)
5779{
5780 char *cmd;
5781 int i, v;
5782
5783 while ((cmd = next_cmd(&buf))) {
5784 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5785 /* i and v set */
5786 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5787 /* i and v set */
5788 } else
5789 return -EINVAL;
5790 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5791 if (!acpi_ec_write(i, v))
5792 return -EIO;
5793 } else
5794 return -EINVAL;
5795 }
5796
5797 return 0;
5798}
5799
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005800static struct ibm_struct ecdump_driver_data = {
5801 .name = "ecdump",
5802 .read = ecdump_read,
5803 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005804 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005805};
5806
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005807/*************************************************************************
5808 * Backlight/brightness subdriver
5809 */
Holger Macht8acb0252006-10-20 14:30:28 -07005810
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005811#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5812
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005813/*
5814 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5815 * CMOS NVRAM byte 0x5E, bits 0-3.
5816 *
5817 * EC HBRV (0x31) has the following layout
5818 * Bit 7: unknown function
5819 * Bit 6: unknown function
5820 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5821 * Bit 4: must be set to zero to avoid problems
5822 * Bit 3-0: backlight brightness level
5823 *
5824 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005825 *
5826 * WARNING: The X61 has been verified to use HBRV for something else, so
5827 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5828 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005829 */
5830
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005831enum {
5832 TP_EC_BACKLIGHT = 0x31,
5833
5834 /* TP_EC_BACKLIGHT bitmasks */
5835 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5836 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5837 TP_EC_BACKLIGHT_MAPSW = 0x20,
5838};
5839
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005840enum tpacpi_brightness_access_mode {
5841 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5842 TPACPI_BRGHT_MODE_EC, /* EC control */
5843 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5844 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5845 TPACPI_BRGHT_MODE_MAX
5846};
5847
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005848static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005849
5850static enum tpacpi_brightness_access_mode brightness_mode =
5851 TPACPI_BRGHT_MODE_MAX;
5852
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005853static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5854
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005855static struct mutex brightness_mutex;
5856
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005857/* NVRAM brightness access,
5858 * call with brightness_mutex held! */
5859static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005860{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005861 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005862
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005863 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5864 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5865 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5866 lnvram &= (tp_features.bright_16levels) ? 0x0f : 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005867
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005868 return lnvram;
5869}
5870
5871static void tpacpi_brightness_checkpoint_nvram(void)
5872{
5873 u8 lec = 0;
5874 u8 b_nvram;
5875
5876 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5877 return;
5878
5879 vdbg_printk(TPACPI_DBG_BRGHT,
5880 "trying to checkpoint backlight level to NVRAM...\n");
5881
5882 if (mutex_lock_killable(&brightness_mutex) < 0)
5883 return;
5884
5885 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5886 goto unlock;
5887 lec &= TP_EC_BACKLIGHT_LVLMSK;
5888 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5889
5890 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5891 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
5892 /* NVRAM needs update */
5893 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
5894 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
5895 b_nvram |= lec;
5896 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
5897 dbg_printk(TPACPI_DBG_BRGHT,
5898 "updated NVRAM backlight level to %u (0x%02x)\n",
5899 (unsigned int) lec, (unsigned int) b_nvram);
5900 } else
5901 vdbg_printk(TPACPI_DBG_BRGHT,
5902 "NVRAM backlight level already is %u (0x%02x)\n",
5903 (unsigned int) lec, (unsigned int) b_nvram);
5904
5905unlock:
5906 mutex_unlock(&brightness_mutex);
5907}
5908
5909
5910/* call with brightness_mutex held! */
5911static int tpacpi_brightness_get_raw(int *status)
5912{
5913 u8 lec = 0;
5914
5915 switch (brightness_mode) {
5916 case TPACPI_BRGHT_MODE_UCMS_STEP:
5917 *status = tpacpi_brightness_nvram_get();
5918 return 0;
5919 case TPACPI_BRGHT_MODE_EC:
5920 case TPACPI_BRGHT_MODE_ECNVRAM:
5921 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005922 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005923 *status = lec;
5924 return 0;
5925 default:
5926 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005927 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005928}
5929
5930/* call with brightness_mutex held! */
5931/* do NOT call with illegal backlight level value */
5932static int tpacpi_brightness_set_ec(unsigned int value)
5933{
5934 u8 lec = 0;
5935
5936 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5937 return -EIO;
5938
5939 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
5940 (lec & TP_EC_BACKLIGHT_CMDMSK) |
5941 (value & TP_EC_BACKLIGHT_LVLMSK))))
5942 return -EIO;
5943
5944 return 0;
5945}
5946
5947/* call with brightness_mutex held! */
5948static int tpacpi_brightness_set_ucmsstep(unsigned int value)
5949{
5950 int cmos_cmd, inc;
5951 unsigned int current_value, i;
5952
5953 current_value = tpacpi_brightness_nvram_get();
5954
5955 if (value == current_value)
5956 return 0;
5957
5958 cmos_cmd = (value > current_value) ?
5959 TP_CMOS_BRIGHTNESS_UP :
5960 TP_CMOS_BRIGHTNESS_DOWN;
5961 inc = (value > current_value) ? 1 : -1;
5962
5963 for (i = current_value; i != value; i += inc)
5964 if (issue_thinkpad_cmos_command(cmos_cmd))
5965 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005966
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005967 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005968}
5969
5970/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005971static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005972{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005973 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005974
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005975 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
5976 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005977 return -EINVAL;
5978
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005979 vdbg_printk(TPACPI_DBG_BRGHT,
5980 "set backlight level to %d\n", value);
5981
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02005982 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005983 if (res < 0)
5984 return res;
5985
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005986 switch (brightness_mode) {
5987 case TPACPI_BRGHT_MODE_EC:
5988 case TPACPI_BRGHT_MODE_ECNVRAM:
5989 res = tpacpi_brightness_set_ec(value);
5990 break;
5991 case TPACPI_BRGHT_MODE_UCMS_STEP:
5992 res = tpacpi_brightness_set_ucmsstep(value);
5993 break;
5994 default:
5995 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005996 }
5997
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005998 mutex_unlock(&brightness_mutex);
5999 return res;
6000}
6001
6002/* sysfs backlight class ----------------------------------------------- */
6003
6004static int brightness_update_status(struct backlight_device *bd)
6005{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006006 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006007 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6008 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006009 bd->props.brightness : 0;
6010
6011 dbg_printk(TPACPI_DBG_BRGHT,
6012 "backlight: attempt to set level to %d\n",
6013 level);
6014
6015 /* it is the backlight class's job (caller) to handle
6016 * EINTR and other errors properly */
6017 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006018}
Holger Macht8acb0252006-10-20 14:30:28 -07006019
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006020static int brightness_get(struct backlight_device *bd)
6021{
6022 int status, res;
6023
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006024 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006025 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006026 return 0;
6027
6028 res = tpacpi_brightness_get_raw(&status);
6029
6030 mutex_unlock(&brightness_mutex);
6031
6032 if (res < 0)
6033 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006034
6035 return status & TP_EC_BACKLIGHT_LVLMSK;
6036}
6037
Richard Purdie599a52d2007-02-10 23:07:48 +00006038static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006039 .get_brightness = brightness_get,
6040 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006041};
6042
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006043/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006044
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006045/*
6046 * These are only useful for models that have only one possibility
6047 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6048 * these quirks.
6049 */
6050#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6051#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6052#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6053
6054static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6055 /* Models with ATI GPUs known to require ECNVRAM mode */
6056 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6057
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006058 /* Models with ATI GPUs that can use ECNVRAM */
6059 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006060 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6061 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6062 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6063
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006064 /* Models with Intel Extreme Graphics 2 */
6065 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006066 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_NOEC),
6067 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_NOEC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006068
6069 /* Models with Intel GMA900 */
6070 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6071 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6072 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6073};
6074
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006075static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006076{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006077 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006078 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006079
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006080 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6081
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006082 mutex_init(&brightness_mutex);
6083
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006084 quirks = tpacpi_check_quirks(brightness_quirk_table,
6085 ARRAY_SIZE(brightness_quirk_table));
6086
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006087 /*
6088 * We always attempt to detect acpi support, so as to switch
6089 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6090 * going to publish a backlight interface
6091 */
6092 b = tpacpi_check_std_acpi_brightness_support();
6093 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006094
6095 if (acpi_video_backlight_support()) {
6096 if (brightness_enable > 1) {
6097 printk(TPACPI_NOTICE
6098 "Standard ACPI backlight interface "
6099 "available, not loading native one.\n");
6100 return 1;
6101 } else if (brightness_enable == 1) {
6102 printk(TPACPI_NOTICE
6103 "Backlight control force enabled, even if standard "
6104 "ACPI backlight interface is available\n");
6105 }
6106 } else {
6107 if (brightness_enable > 1) {
6108 printk(TPACPI_NOTICE
6109 "Standard ACPI backlight interface not "
6110 "available, thinkpad_acpi native "
6111 "brightness control enabled\n");
6112 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02006113 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006114 }
6115
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006116 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006117 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006118 "brightness support disabled by "
6119 "module parameter\n");
6120 return 1;
6121 }
6122
6123 if (b > 16) {
6124 printk(TPACPI_ERR
6125 "Unsupported brightness interface, "
6126 "please contact %s\n", TPACPI_MAIL);
6127 return 1;
6128 }
6129 if (b == 16)
6130 tp_features.bright_16levels = 1;
6131
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006132 /*
6133 * Check for module parameter bogosity, note that we
6134 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6135 * able to detect "unspecified"
6136 */
6137 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006138 return -EINVAL;
6139
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006140 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6141 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6142 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006143 if (quirks & TPACPI_BRGHT_Q_EC)
6144 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6145 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006146 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6147
6148 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006149 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006150 brightness_mode);
6151 }
6152
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006153 /* Safety */
6154 if (thinkpad_id.vendor != PCI_VENDOR_ID_IBM &&
6155 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6156 brightness_mode == TPACPI_BRGHT_MODE_EC))
6157 return -EINVAL;
6158
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006159 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006160 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006161
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006162 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006163 printk(TPACPI_INFO
6164 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006165
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03006166 ibm_backlight_device = backlight_device_register(
6167 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
6168 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006169 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006170 int rc = PTR_ERR(ibm_backlight_device);
6171 ibm_backlight_device = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006172 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006173 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006174 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006175 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6176 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006177
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006178 if (quirks & TPACPI_BRGHT_Q_ASK) {
6179 printk(TPACPI_NOTICE
6180 "brightness: will use unverified default: "
6181 "brightness_mode=%d\n", brightness_mode);
6182 printk(TPACPI_NOTICE
6183 "brightness: please report to %s whether it works well "
6184 "or not on your ThinkPad\n", TPACPI_MAIL);
6185 }
6186
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006187 ibm_backlight_device->props.max_brightness =
6188 (tp_features.bright_16levels)? 15 : 7;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006189 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006190 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006191
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006192 return 0;
6193}
6194
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006195static void brightness_suspend(pm_message_t state)
6196{
6197 tpacpi_brightness_checkpoint_nvram();
6198}
6199
6200static void brightness_shutdown(void)
6201{
6202 tpacpi_brightness_checkpoint_nvram();
6203}
6204
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006205static void brightness_exit(void)
6206{
6207 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006208 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006209 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006210 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006211 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006212
6213 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006214}
6215
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006216static int brightness_read(char *p)
6217{
6218 int len = 0;
6219 int level;
6220
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006221 level = brightness_get(NULL);
6222 if (level < 0) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006223 len += sprintf(p + len, "level:\t\tunreadable\n");
6224 } else {
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006225 len += sprintf(p + len, "level:\t\t%d\n", level);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006226 len += sprintf(p + len, "commands:\tup, down\n");
6227 len += sprintf(p + len, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006228 " (<level> is 0-%d)\n",
6229 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006230 }
6231
6232 return len;
6233}
6234
6235static int brightness_write(char *buf)
6236{
6237 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006238 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006239 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006240 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006241
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006242 level = brightness_get(NULL);
6243 if (level < 0)
6244 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006245
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006246 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006247 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006248 if (level < max_level)
6249 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006250 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006251 if (level > 0)
6252 level--;
6253 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6254 level >= 0 && level <= max_level) {
6255 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006256 } else
6257 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006258 }
6259
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006260 tpacpi_disclose_usertask("procfs brightness",
6261 "set level to %d\n", level);
6262
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006263 /*
6264 * Now we know what the final level should be, so we try to set it.
6265 * Doing it this way makes the syscall restartable in case of EINTR
6266 */
6267 rc = brightness_set(level);
6268 return (rc == -EINTR)? ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006269}
6270
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006271static struct ibm_struct brightness_driver_data = {
6272 .name = "brightness",
6273 .read = brightness_read,
6274 .write = brightness_write,
6275 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006276 .suspend = brightness_suspend,
6277 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006278};
6279
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006280/*************************************************************************
6281 * Volume subdriver
6282 */
6283
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006284static int volume_offset = 0x30;
6285
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006286static int volume_read(char *p)
6287{
6288 int len = 0;
6289 u8 level;
6290
6291 if (!acpi_ec_read(volume_offset, &level)) {
6292 len += sprintf(p + len, "level:\t\tunreadable\n");
6293 } else {
6294 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
6295 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
6296 len += sprintf(p + len, "commands:\tup, down, mute\n");
6297 len += sprintf(p + len, "commands:\tlevel <level>"
6298 " (<level> is 0-15)\n");
6299 }
6300
6301 return len;
6302}
6303
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006304static int volume_write(char *buf)
6305{
6306 int cmos_cmd, inc, i;
6307 u8 level, mute;
6308 int new_level, new_mute;
6309 char *cmd;
6310
6311 while ((cmd = next_cmd(&buf))) {
6312 if (!acpi_ec_read(volume_offset, &level))
6313 return -EIO;
6314 new_mute = mute = level & 0x40;
6315 new_level = level = level & 0xf;
6316
6317 if (strlencmp(cmd, "up") == 0) {
6318 if (mute)
6319 new_mute = 0;
6320 else
6321 new_level = level == 15 ? 15 : level + 1;
6322 } else if (strlencmp(cmd, "down") == 0) {
6323 if (mute)
6324 new_mute = 0;
6325 else
6326 new_level = level == 0 ? 0 : level - 1;
6327 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
6328 new_level >= 0 && new_level <= 15) {
6329 /* new_level set */
6330 } else if (strlencmp(cmd, "mute") == 0) {
6331 new_mute = 0x40;
6332 } else
6333 return -EINVAL;
6334
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006335 if (new_level != level) {
6336 /* mute doesn't change */
6337
6338 cmos_cmd = (new_level > level) ?
6339 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006340 inc = new_level > level ? 1 : -1;
6341
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006342 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006343 !acpi_ec_write(volume_offset, level)))
6344 return -EIO;
6345
6346 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006347 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006348 !acpi_ec_write(volume_offset, i + inc))
6349 return -EIO;
6350
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006351 if (mute &&
6352 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
6353 !acpi_ec_write(volume_offset, new_level + mute))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006354 return -EIO;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006355 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006356 }
6357
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006358 if (new_mute != mute) {
6359 /* level doesn't change */
6360
6361 cmos_cmd = (new_mute) ?
6362 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006363
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006364 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006365 !acpi_ec_write(volume_offset, level + new_mute))
6366 return -EIO;
6367 }
6368 }
6369
6370 return 0;
6371}
6372
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006373static struct ibm_struct volume_driver_data = {
6374 .name = "volume",
6375 .read = volume_read,
6376 .write = volume_write,
6377};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006378
6379/*************************************************************************
6380 * Fan subdriver
6381 */
6382
6383/*
6384 * FAN ACCESS MODES
6385 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006386 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006387 * ACPI GFAN method: returns fan level
6388 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006389 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006390 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006391 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006392 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006393 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
6394 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006395 * EC 0x2f (HFSP) might be available *for reading*, but do not use
6396 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006397 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006398 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006399 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
6400 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006401 *
6402 * Fan speed changes of any sort (including those caused by the
6403 * disengaged mode) are usually done slowly by the firmware as the
6404 * maximum ammount of fan duty cycle change per second seems to be
6405 * limited.
6406 *
6407 * Reading is not available if GFAN exists.
6408 * Writing is not available if SFAN exists.
6409 *
6410 * Bits
6411 * 7 automatic mode engaged;
6412 * (default operation mode of the ThinkPad)
6413 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006414 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006415 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006416 * the tachometer while the fan controller ramps up
6417 * the speed (which can take up to a few *minutes*).
6418 * Speeds up fan to 100% duty-cycle, which is far above
6419 * the standard RPM levels. It is not impossible that
6420 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006421 * 5-3 unused in some models. Extra bits for fan level
6422 * in others, but still useless as all values above
6423 * 7 map to the same speed as level 7 in these models.
6424 * 2-0 fan level (0..7 usually)
6425 * 0x00 = stop
6426 * 0x07 = max (set when temperatures critical)
6427 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006428 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006429 *
6430 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
6431 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
6432 * does so, its initial value is meaningless (0x07).
6433 *
6434 * For firmware bugs, refer to:
6435 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6436 *
6437 * ----
6438 *
6439 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
6440 * Main fan tachometer reading (in RPM)
6441 *
6442 * This register is present on all ThinkPads with a new-style EC, and
6443 * it is known not to be present on the A21m/e, and T22, as there is
6444 * something else in offset 0x84 according to the ACPI DSDT. Other
6445 * ThinkPads from this same time period (and earlier) probably lack the
6446 * tachometer as well.
6447 *
Nick Andrew877d0312009-01-26 11:06:57 +01006448 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006449 * was never fixed by IBM to report the EC firmware version string
6450 * probably support the tachometer (like the early X models), so
6451 * detecting it is quite hard. We need more data to know for sure.
6452 *
6453 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
6454 * might result.
6455 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006456 * FIRMWARE BUG: may go stale while the EC is switching to full speed
6457 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006458 *
6459 * For firmware bugs, refer to:
6460 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6461 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006462 * ----
6463 *
6464 * ThinkPad EC register 0x31 bit 0 (only on select models)
6465 *
6466 * When bit 0 of EC register 0x31 is zero, the tachometer registers
6467 * show the speed of the main fan. When bit 0 of EC register 0x31
6468 * is one, the tachometer registers show the speed of the auxiliary
6469 * fan.
6470 *
6471 * Fan control seems to affect both fans, regardless of the state
6472 * of this bit.
6473 *
6474 * So far, only the firmware for the X60/X61 non-tablet versions
6475 * seem to support this (firmware TP-7M).
6476 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006477 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006478 * ThinkPad X31, X40, X41. Not available in the X60.
6479 *
6480 * FANS ACPI handle: takes three arguments: low speed, medium speed,
6481 * high speed. ACPI DSDT seems to map these three speeds to levels
6482 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
6483 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
6484 *
6485 * The speeds are stored on handles
6486 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
6487 *
6488 * There are three default speed sets, acessible as handles:
6489 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
6490 *
6491 * ACPI DSDT switches which set is in use depending on various
6492 * factors.
6493 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006494 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006495 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
6496 * but the ACPI tables just mention level 7.
6497 */
6498
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006499enum { /* Fan control constants */
6500 fan_status_offset = 0x2f, /* EC register 0x2f */
6501 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
6502 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006503 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
6504 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006505
6506 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
6507 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
6508
6509 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
6510};
6511
6512enum fan_status_access_mode {
6513 TPACPI_FAN_NONE = 0, /* No fan status or control */
6514 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
6515 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
6516};
6517
6518enum fan_control_access_mode {
6519 TPACPI_FAN_WR_NONE = 0, /* No fan control */
6520 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
6521 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
6522 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
6523};
6524
6525enum fan_control_commands {
6526 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
6527 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
6528 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
6529 * and also watchdog cmd */
6530};
6531
6532static int fan_control_allowed;
6533
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006534static enum fan_status_access_mode fan_status_access_mode;
6535static enum fan_control_access_mode fan_control_access_mode;
6536static enum fan_control_commands fan_control_commands;
6537
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02006538static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006539static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006540static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006541static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006542
6543static struct mutex fan_mutex;
6544
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006545static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05006546static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006547
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006548TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
6549TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006550 "\\FSPD", /* 600e/x, 770e, 770x */
6551 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006552TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006553 "JFNS", /* 770x-JL */
6554 ); /* all others */
6555
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006556/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006557 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
6558 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
6559 * be in auto mode (0x80).
6560 *
6561 * This is corrected by any write to HFSP either by the driver, or
6562 * by the firmware.
6563 *
6564 * We assume 0x07 really means auto mode while this quirk is active,
6565 * as this is far more likely than the ThinkPad being in level 7,
6566 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006567 *
6568 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
6569 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006570 */
6571
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006572static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006573{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006574 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006575 printk(TPACPI_NOTICE
6576 "fan_init: initial fan status is unknown, "
6577 "assuming it is in auto mode\n");
6578 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006579 }
6580}
6581
6582static void fan_quirk1_handle(u8 *fan_status)
6583{
6584 if (unlikely(tp_features.fan_ctrl_status_undef)) {
6585 if (*fan_status != fan_control_initial_status) {
6586 /* something changed the HFSP regisnter since
6587 * driver init time, so it is not undefined
6588 * anymore */
6589 tp_features.fan_ctrl_status_undef = 0;
6590 } else {
6591 /* Return most likely status. In fact, it
6592 * might be the only possible status */
6593 *fan_status = TP_EC_FAN_AUTO;
6594 }
6595 }
6596}
6597
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006598/* Select main fan on X60/X61, NOOP on others */
6599static bool fan_select_fan1(void)
6600{
6601 if (tp_features.second_fan) {
6602 u8 val;
6603
6604 if (ec_read(fan_select_offset, &val) < 0)
6605 return false;
6606 val &= 0xFEU;
6607 if (ec_write(fan_select_offset, val) < 0)
6608 return false;
6609 }
6610 return true;
6611}
6612
6613/* Select secondary fan on X60/X61 */
6614static bool fan_select_fan2(void)
6615{
6616 u8 val;
6617
6618 if (!tp_features.second_fan)
6619 return false;
6620
6621 if (ec_read(fan_select_offset, &val) < 0)
6622 return false;
6623 val |= 0x01U;
6624 if (ec_write(fan_select_offset, val) < 0)
6625 return false;
6626
6627 return true;
6628}
6629
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006630/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006631 * Call with fan_mutex held
6632 */
6633static void fan_update_desired_level(u8 status)
6634{
6635 if ((status &
6636 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6637 if (status > 7)
6638 fan_control_desired_level = 7;
6639 else
6640 fan_control_desired_level = status;
6641 }
6642}
6643
6644static int fan_get_status(u8 *status)
6645{
6646 u8 s;
6647
6648 /* TODO:
6649 * Add TPACPI_FAN_RD_ACPI_FANS ? */
6650
6651 switch (fan_status_access_mode) {
6652 case TPACPI_FAN_RD_ACPI_GFAN:
6653 /* 570, 600e/x, 770e, 770x */
6654
6655 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
6656 return -EIO;
6657
6658 if (likely(status))
6659 *status = s & 0x07;
6660
6661 break;
6662
6663 case TPACPI_FAN_RD_TPEC:
6664 /* all except 570, 600e/x, 770e, 770x */
6665 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
6666 return -EIO;
6667
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006668 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006669 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006670 fan_quirk1_handle(status);
6671 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006672
6673 break;
6674
6675 default:
6676 return -ENXIO;
6677 }
6678
6679 return 0;
6680}
6681
6682static int fan_get_status_safe(u8 *status)
6683{
6684 int rc;
6685 u8 s;
6686
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006687 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006688 return -ERESTARTSYS;
6689 rc = fan_get_status(&s);
6690 if (!rc)
6691 fan_update_desired_level(s);
6692 mutex_unlock(&fan_mutex);
6693
6694 if (status)
6695 *status = s;
6696
6697 return rc;
6698}
6699
6700static int fan_get_speed(unsigned int *speed)
6701{
6702 u8 hi, lo;
6703
6704 switch (fan_status_access_mode) {
6705 case TPACPI_FAN_RD_TPEC:
6706 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006707 if (unlikely(!fan_select_fan1()))
6708 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006709 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
6710 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
6711 return -EIO;
6712
6713 if (likely(speed))
6714 *speed = (hi << 8) | lo;
6715
6716 break;
6717
6718 default:
6719 return -ENXIO;
6720 }
6721
6722 return 0;
6723}
6724
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006725static int fan2_get_speed(unsigned int *speed)
6726{
6727 u8 hi, lo;
6728 bool rc;
6729
6730 switch (fan_status_access_mode) {
6731 case TPACPI_FAN_RD_TPEC:
6732 /* all except 570, 600e/x, 770e, 770x */
6733 if (unlikely(!fan_select_fan2()))
6734 return -EIO;
6735 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
6736 !acpi_ec_read(fan_rpm_offset + 1, &hi);
6737 fan_select_fan1(); /* play it safe */
6738 if (rc)
6739 return -EIO;
6740
6741 if (likely(speed))
6742 *speed = (hi << 8) | lo;
6743
6744 break;
6745
6746 default:
6747 return -ENXIO;
6748 }
6749
6750 return 0;
6751}
6752
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006753static int fan_set_level(int level)
6754{
6755 if (!fan_control_allowed)
6756 return -EPERM;
6757
6758 switch (fan_control_access_mode) {
6759 case TPACPI_FAN_WR_ACPI_SFAN:
6760 if (level >= 0 && level <= 7) {
6761 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
6762 return -EIO;
6763 } else
6764 return -EINVAL;
6765 break;
6766
6767 case TPACPI_FAN_WR_ACPI_FANS:
6768 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006769 if (!(level & TP_EC_FAN_AUTO) &&
6770 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006771 ((level < 0) || (level > 7)))
6772 return -EINVAL;
6773
6774 /* safety net should the EC not support AUTO
6775 * or FULLSPEED mode bits and just ignore them */
6776 if (level & TP_EC_FAN_FULLSPEED)
6777 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01006778 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006779 level |= 4; /* safety min speed 4 */
6780
6781 if (!acpi_ec_write(fan_status_offset, level))
6782 return -EIO;
6783 else
6784 tp_features.fan_ctrl_status_undef = 0;
6785 break;
6786
6787 default:
6788 return -ENXIO;
6789 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006790
6791 vdbg_printk(TPACPI_DBG_FAN,
6792 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006793 return 0;
6794}
6795
6796static int fan_set_level_safe(int level)
6797{
6798 int rc;
6799
6800 if (!fan_control_allowed)
6801 return -EPERM;
6802
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006803 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006804 return -ERESTARTSYS;
6805
6806 if (level == TPACPI_FAN_LAST_LEVEL)
6807 level = fan_control_desired_level;
6808
6809 rc = fan_set_level(level);
6810 if (!rc)
6811 fan_update_desired_level(level);
6812
6813 mutex_unlock(&fan_mutex);
6814 return rc;
6815}
6816
6817static int fan_set_enable(void)
6818{
6819 u8 s;
6820 int rc;
6821
6822 if (!fan_control_allowed)
6823 return -EPERM;
6824
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006825 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006826 return -ERESTARTSYS;
6827
6828 switch (fan_control_access_mode) {
6829 case TPACPI_FAN_WR_ACPI_FANS:
6830 case TPACPI_FAN_WR_TPEC:
6831 rc = fan_get_status(&s);
6832 if (rc < 0)
6833 break;
6834
6835 /* Don't go out of emergency fan mode */
6836 if (s != 7) {
6837 s &= 0x07;
6838 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
6839 }
6840
6841 if (!acpi_ec_write(fan_status_offset, s))
6842 rc = -EIO;
6843 else {
6844 tp_features.fan_ctrl_status_undef = 0;
6845 rc = 0;
6846 }
6847 break;
6848
6849 case TPACPI_FAN_WR_ACPI_SFAN:
6850 rc = fan_get_status(&s);
6851 if (rc < 0)
6852 break;
6853
6854 s &= 0x07;
6855
6856 /* Set fan to at least level 4 */
6857 s |= 4;
6858
6859 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006860 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006861 else
6862 rc = 0;
6863 break;
6864
6865 default:
6866 rc = -ENXIO;
6867 }
6868
6869 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006870
6871 if (!rc)
6872 vdbg_printk(TPACPI_DBG_FAN,
6873 "fan control: set fan control register to 0x%02x\n",
6874 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006875 return rc;
6876}
6877
6878static int fan_set_disable(void)
6879{
6880 int rc;
6881
6882 if (!fan_control_allowed)
6883 return -EPERM;
6884
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006885 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006886 return -ERESTARTSYS;
6887
6888 rc = 0;
6889 switch (fan_control_access_mode) {
6890 case TPACPI_FAN_WR_ACPI_FANS:
6891 case TPACPI_FAN_WR_TPEC:
6892 if (!acpi_ec_write(fan_status_offset, 0x00))
6893 rc = -EIO;
6894 else {
6895 fan_control_desired_level = 0;
6896 tp_features.fan_ctrl_status_undef = 0;
6897 }
6898 break;
6899
6900 case TPACPI_FAN_WR_ACPI_SFAN:
6901 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
6902 rc = -EIO;
6903 else
6904 fan_control_desired_level = 0;
6905 break;
6906
6907 default:
6908 rc = -ENXIO;
6909 }
6910
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006911 if (!rc)
6912 vdbg_printk(TPACPI_DBG_FAN,
6913 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006914
6915 mutex_unlock(&fan_mutex);
6916 return rc;
6917}
6918
6919static int fan_set_speed(int speed)
6920{
6921 int rc;
6922
6923 if (!fan_control_allowed)
6924 return -EPERM;
6925
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006926 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006927 return -ERESTARTSYS;
6928
6929 rc = 0;
6930 switch (fan_control_access_mode) {
6931 case TPACPI_FAN_WR_ACPI_FANS:
6932 if (speed >= 0 && speed <= 65535) {
6933 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
6934 speed, speed, speed))
6935 rc = -EIO;
6936 } else
6937 rc = -EINVAL;
6938 break;
6939
6940 default:
6941 rc = -ENXIO;
6942 }
6943
6944 mutex_unlock(&fan_mutex);
6945 return rc;
6946}
6947
6948static void fan_watchdog_reset(void)
6949{
6950 static int fan_watchdog_active;
6951
6952 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
6953 return;
6954
6955 if (fan_watchdog_active)
6956 cancel_delayed_work(&fan_watchdog_task);
6957
6958 if (fan_watchdog_maxinterval > 0 &&
6959 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
6960 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006961 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006962 msecs_to_jiffies(fan_watchdog_maxinterval
6963 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006964 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006965 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006966 "watchdog will not trigger\n");
6967 }
6968 } else
6969 fan_watchdog_active = 0;
6970}
6971
6972static void fan_watchdog_fire(struct work_struct *ignored)
6973{
6974 int rc;
6975
6976 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
6977 return;
6978
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006979 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006980 rc = fan_set_enable();
6981 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006982 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006983 "will try again later...\n", -rc);
6984 /* reschedule for later */
6985 fan_watchdog_reset();
6986 }
6987}
6988
6989/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006990 * SYSFS fan layout: hwmon compatible (device)
6991 *
6992 * pwm*_enable:
6993 * 0: "disengaged" mode
6994 * 1: manual mode
6995 * 2: native EC "auto" mode (recommended, hardware default)
6996 *
6997 * pwm*: set speed in manual mode, ignored otherwise.
6998 * 0 is level 0; 255 is level 7. Intermediate points done with linear
6999 * interpolation.
7000 *
7001 * fan*_input: tachometer reading, RPM
7002 *
7003 *
7004 * SYSFS fan layout: extensions
7005 *
7006 * fan_watchdog (driver):
7007 * fan watchdog interval in seconds, 0 disables (default), max 120
7008 */
7009
7010/* sysfs fan pwm1_enable ----------------------------------------------- */
7011static ssize_t fan_pwm1_enable_show(struct device *dev,
7012 struct device_attribute *attr,
7013 char *buf)
7014{
7015 int res, mode;
7016 u8 status;
7017
7018 res = fan_get_status_safe(&status);
7019 if (res)
7020 return res;
7021
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007022 if (status & TP_EC_FAN_FULLSPEED) {
7023 mode = 0;
7024 } else if (status & TP_EC_FAN_AUTO) {
7025 mode = 2;
7026 } else
7027 mode = 1;
7028
7029 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7030}
7031
7032static ssize_t fan_pwm1_enable_store(struct device *dev,
7033 struct device_attribute *attr,
7034 const char *buf, size_t count)
7035{
7036 unsigned long t;
7037 int res, level;
7038
7039 if (parse_strtoul(buf, 2, &t))
7040 return -EINVAL;
7041
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007042 tpacpi_disclose_usertask("hwmon pwm1_enable",
7043 "set fan mode to %lu\n", t);
7044
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007045 switch (t) {
7046 case 0:
7047 level = TP_EC_FAN_FULLSPEED;
7048 break;
7049 case 1:
7050 level = TPACPI_FAN_LAST_LEVEL;
7051 break;
7052 case 2:
7053 level = TP_EC_FAN_AUTO;
7054 break;
7055 case 3:
7056 /* reserved for software-controlled auto mode */
7057 return -ENOSYS;
7058 default:
7059 return -EINVAL;
7060 }
7061
7062 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007063 if (res == -ENXIO)
7064 return -EINVAL;
7065 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007066 return res;
7067
7068 fan_watchdog_reset();
7069
7070 return count;
7071}
7072
7073static struct device_attribute dev_attr_fan_pwm1_enable =
7074 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7075 fan_pwm1_enable_show, fan_pwm1_enable_store);
7076
7077/* sysfs fan pwm1 ------------------------------------------------------ */
7078static ssize_t fan_pwm1_show(struct device *dev,
7079 struct device_attribute *attr,
7080 char *buf)
7081{
7082 int res;
7083 u8 status;
7084
7085 res = fan_get_status_safe(&status);
7086 if (res)
7087 return res;
7088
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007089 if ((status &
7090 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7091 status = fan_control_desired_level;
7092
7093 if (status > 7)
7094 status = 7;
7095
7096 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7097}
7098
7099static ssize_t fan_pwm1_store(struct device *dev,
7100 struct device_attribute *attr,
7101 const char *buf, size_t count)
7102{
7103 unsigned long s;
7104 int rc;
7105 u8 status, newlevel;
7106
7107 if (parse_strtoul(buf, 255, &s))
7108 return -EINVAL;
7109
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007110 tpacpi_disclose_usertask("hwmon pwm1",
7111 "set fan speed to %lu\n", s);
7112
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007113 /* scale down from 0-255 to 0-7 */
7114 newlevel = (s >> 5) & 0x07;
7115
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007116 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007117 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007118
7119 rc = fan_get_status(&status);
7120 if (!rc && (status &
7121 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7122 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007123 if (rc == -ENXIO)
7124 rc = -EINVAL;
7125 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007126 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007127 fan_watchdog_reset();
7128 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007129 }
7130
7131 mutex_unlock(&fan_mutex);
7132 return (rc)? rc : count;
7133}
7134
7135static struct device_attribute dev_attr_fan_pwm1 =
7136 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7137 fan_pwm1_show, fan_pwm1_store);
7138
7139/* sysfs fan fan1_input ------------------------------------------------ */
7140static ssize_t fan_fan1_input_show(struct device *dev,
7141 struct device_attribute *attr,
7142 char *buf)
7143{
7144 int res;
7145 unsigned int speed;
7146
7147 res = fan_get_speed(&speed);
7148 if (res < 0)
7149 return res;
7150
7151 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7152}
7153
7154static struct device_attribute dev_attr_fan_fan1_input =
7155 __ATTR(fan1_input, S_IRUGO,
7156 fan_fan1_input_show, NULL);
7157
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007158/* sysfs fan fan2_input ------------------------------------------------ */
7159static ssize_t fan_fan2_input_show(struct device *dev,
7160 struct device_attribute *attr,
7161 char *buf)
7162{
7163 int res;
7164 unsigned int speed;
7165
7166 res = fan2_get_speed(&speed);
7167 if (res < 0)
7168 return res;
7169
7170 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7171}
7172
7173static struct device_attribute dev_attr_fan_fan2_input =
7174 __ATTR(fan2_input, S_IRUGO,
7175 fan_fan2_input_show, NULL);
7176
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007177/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007178static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7179 char *buf)
7180{
7181 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7182}
7183
7184static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7185 const char *buf, size_t count)
7186{
7187 unsigned long t;
7188
7189 if (parse_strtoul(buf, 120, &t))
7190 return -EINVAL;
7191
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007192 if (!fan_control_allowed)
7193 return -EPERM;
7194
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007195 fan_watchdog_maxinterval = t;
7196 fan_watchdog_reset();
7197
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007198 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7199
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007200 return count;
7201}
7202
7203static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7204 fan_fan_watchdog_show, fan_fan_watchdog_store);
7205
7206/* --------------------------------------------------------------------- */
7207static struct attribute *fan_attributes[] = {
7208 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7209 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007210 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007211 NULL
7212};
7213
7214static const struct attribute_group fan_attr_group = {
7215 .attrs = fan_attributes,
7216};
7217
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007218#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7219#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007220
7221#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7222 { .vendor = PCI_VENDOR_ID_IBM, \
7223 .bios = TPACPI_MATCH_ANY, \
7224 .ec = TPID(__id1, __id2), \
7225 .quirks = __quirks }
7226
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007227#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7228 { .vendor = PCI_VENDOR_ID_LENOVO, \
7229 .bios = TPACPI_MATCH_ANY, \
7230 .ec = TPID(__id1, __id2), \
7231 .quirks = __quirks }
7232
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007233static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7234 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7235 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7236 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7237 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007238 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007239};
7240
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007241#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007242#undef TPACPI_FAN_QI
7243
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007244static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007245{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007246 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007247 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007248
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007249 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7250 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007251
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007252 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007253 fan_status_access_mode = TPACPI_FAN_NONE;
7254 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007255 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007256 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007257 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007258 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007259 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007260
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007261 TPACPI_ACPIHANDLE_INIT(fans);
7262 TPACPI_ACPIHANDLE_INIT(gfan);
7263 TPACPI_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007264
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007265 quirks = tpacpi_check_quirks(fan_quirk_table,
7266 ARRAY_SIZE(fan_quirk_table));
7267
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007268 if (gfan_handle) {
7269 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007270 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007271 } else {
7272 /* all other ThinkPads: note that even old-style
7273 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007274 if (likely(acpi_ec_read(fan_status_offset,
7275 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007276 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007277 if (quirks & TPACPI_FAN_Q1)
7278 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007279 if (quirks & TPACPI_FAN_2FAN) {
7280 tp_features.second_fan = 1;
7281 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7282 "secondary fan support enabled\n");
7283 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007284 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007285 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007286 "ThinkPad ACPI EC access misbehaving, "
7287 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007288 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007289 }
7290 }
7291
7292 if (sfan_handle) {
7293 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007294 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02007295 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007296 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007297 } else {
7298 if (!gfan_handle) {
7299 /* gfan without sfan means no fan control */
7300 /* all other models implement TP EC 0x2f control */
7301
7302 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007303 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007304 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007305 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007306 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007307 TPACPI_FAN_CMD_SPEED |
7308 TPACPI_FAN_CMD_LEVEL |
7309 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007310 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007311 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007312 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007313 TPACPI_FAN_CMD_LEVEL |
7314 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007315 }
7316 }
7317 }
7318
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007319 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7320 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007321 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
7322 fan_control_access_mode != TPACPI_FAN_WR_NONE),
7323 fan_status_access_mode, fan_control_access_mode);
7324
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007325 /* fan control master switch */
7326 if (!fan_control_allowed) {
7327 fan_control_access_mode = TPACPI_FAN_WR_NONE;
7328 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007329 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007330 "fan control features disabled by parameter\n");
7331 }
7332
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007333 /* update fan_control_desired_level */
7334 if (fan_status_access_mode != TPACPI_FAN_NONE)
7335 fan_get_status_safe(NULL);
7336
7337 if (fan_status_access_mode != TPACPI_FAN_NONE ||
7338 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007339 if (tp_features.second_fan) {
7340 /* attach second fan tachometer */
7341 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
7342 &dev_attr_fan_fan2_input.attr;
7343 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007344 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007345 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007346 if (rc < 0)
7347 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03007348
7349 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
7350 &driver_attr_fan_watchdog);
7351 if (rc < 0) {
7352 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
7353 &fan_attr_group);
7354 return rc;
7355 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007356 return 0;
7357 } else
7358 return 1;
7359}
7360
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007361static void fan_exit(void)
7362{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007363 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007364 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007365
7366 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007367 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007368 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
7369 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007370
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007371 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007372 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007373}
7374
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007375static void fan_suspend(pm_message_t state)
7376{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007377 int rc;
7378
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007379 if (!fan_control_allowed)
7380 return;
7381
7382 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007383 fan_control_resume_level = 0;
7384 rc = fan_get_status_safe(&fan_control_resume_level);
7385 if (rc < 0)
7386 printk(TPACPI_NOTICE
7387 "failed to read fan level for later "
7388 "restore during resume: %d\n", rc);
7389
7390 /* if it is undefined, don't attempt to restore it.
7391 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007392 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007393 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007394}
7395
7396static void fan_resume(void)
7397{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007398 u8 current_level = 7;
7399 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007400 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007401
7402 /* DSDT *always* updates status on resume */
7403 tp_features.fan_ctrl_status_undef = 0;
7404
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007405 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007406 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007407 (fan_get_status_safe(&current_level) < 0))
7408 return;
7409
7410 switch (fan_control_access_mode) {
7411 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007412 /* never decrease fan level */
7413 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007414 break;
7415 case TPACPI_FAN_WR_ACPI_FANS:
7416 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007417 /* never decrease fan level, scale is:
7418 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
7419 *
7420 * We expect the firmware to set either 7 or AUTO, but we
7421 * handle FULLSPEED out of paranoia.
7422 *
7423 * So, we can safely only restore FULLSPEED or 7, anything
7424 * else could slow the fan. Restoring AUTO is useless, at
7425 * best that's exactly what the DSDT already set (it is the
7426 * slower it uses).
7427 *
7428 * Always keep in mind that the DSDT *will* have set the
7429 * fans to what the vendor supposes is the best level. We
7430 * muck with it only to speed the fan up.
7431 */
7432 if (fan_control_resume_level != 7 &&
7433 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
7434 return;
7435 else
7436 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
7437 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007438 break;
7439 default:
7440 return;
7441 }
7442 if (do_set) {
7443 printk(TPACPI_NOTICE
7444 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007445 fan_control_resume_level);
7446 rc = fan_set_level_safe(fan_control_resume_level);
7447 if (rc < 0)
7448 printk(TPACPI_NOTICE
7449 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007450 }
7451}
7452
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007453static int fan_read(char *p)
7454{
7455 int len = 0;
7456 int rc;
7457 u8 status;
7458 unsigned int speed = 0;
7459
7460 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007461 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007462 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007463 rc = fan_get_status_safe(&status);
7464 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007465 return rc;
7466
7467 len += sprintf(p + len, "status:\t\t%s\n"
7468 "level:\t\t%d\n",
7469 (status != 0) ? "enabled" : "disabled", status);
7470 break;
7471
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007472 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007473 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007474 rc = fan_get_status_safe(&status);
7475 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007476 return rc;
7477
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007478 len += sprintf(p + len, "status:\t\t%s\n",
7479 (status != 0) ? "enabled" : "disabled");
7480
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007481 rc = fan_get_speed(&speed);
7482 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007483 return rc;
7484
7485 len += sprintf(p + len, "speed:\t\t%d\n", speed);
7486
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007487 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007488 /* Disengaged mode takes precedence */
7489 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007490 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007491 len += sprintf(p + len, "level:\t\tauto\n");
7492 else
7493 len += sprintf(p + len, "level:\t\t%d\n", status);
7494 break;
7495
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007496 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007497 default:
7498 len += sprintf(p + len, "status:\t\tnot supported\n");
7499 }
7500
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007501 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007502 len += sprintf(p + len, "commands:\tlevel <level>");
7503
7504 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007505 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007506 len += sprintf(p + len, " (<level> is 0-7)\n");
7507 break;
7508
7509 default:
7510 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007511 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007512 break;
7513 }
7514 }
7515
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007516 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007517 len += sprintf(p + len, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007518 "commands:\twatchdog <timeout> (<timeout> "
7519 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007520
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007521 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007522 len += sprintf(p + len, "commands:\tspeed <speed>"
7523 " (<speed> is 0-65535)\n");
7524
7525 return len;
7526}
7527
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007528static int fan_write_cmd_level(const char *cmd, int *rc)
7529{
7530 int level;
7531
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007532 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007533 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007534 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007535 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007536 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007537 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007538 return 0;
7539
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007540 *rc = fan_set_level_safe(level);
7541 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007542 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007543 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007544 else if (!*rc)
7545 tpacpi_disclose_usertask("procfs fan",
7546 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007547
7548 return 1;
7549}
7550
7551static int fan_write_cmd_enable(const char *cmd, int *rc)
7552{
7553 if (strlencmp(cmd, "enable") != 0)
7554 return 0;
7555
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007556 *rc = fan_set_enable();
7557 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007558 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007559 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007560 else if (!*rc)
7561 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007562
7563 return 1;
7564}
7565
7566static int fan_write_cmd_disable(const char *cmd, int *rc)
7567{
7568 if (strlencmp(cmd, "disable") != 0)
7569 return 0;
7570
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007571 *rc = fan_set_disable();
7572 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007573 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007574 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007575 else if (!*rc)
7576 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007577
7578 return 1;
7579}
7580
7581static int fan_write_cmd_speed(const char *cmd, int *rc)
7582{
7583 int speed;
7584
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007585 /* TODO:
7586 * Support speed <low> <medium> <high> ? */
7587
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007588 if (sscanf(cmd, "speed %d", &speed) != 1)
7589 return 0;
7590
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007591 *rc = fan_set_speed(speed);
7592 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007593 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007594 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007595 else if (!*rc)
7596 tpacpi_disclose_usertask("procfs fan",
7597 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007598
7599 return 1;
7600}
7601
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007602static int fan_write_cmd_watchdog(const char *cmd, int *rc)
7603{
7604 int interval;
7605
7606 if (sscanf(cmd, "watchdog %d", &interval) != 1)
7607 return 0;
7608
7609 if (interval < 0 || interval > 120)
7610 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007611 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007612 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007613 tpacpi_disclose_usertask("procfs fan",
7614 "set watchdog timer to %d\n",
7615 interval);
7616 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007617
7618 return 1;
7619}
7620
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007621static int fan_write(char *buf)
7622{
7623 char *cmd;
7624 int rc = 0;
7625
7626 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007627 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007628 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007629 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007630 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007631 fan_write_cmd_disable(cmd, &rc) ||
7632 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007633 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007634 fan_write_cmd_speed(cmd, &rc))
7635 )
7636 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007637 else if (!rc)
7638 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007639 }
7640
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007641 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007642}
7643
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007644static struct ibm_struct fan_driver_data = {
7645 .name = "fan",
7646 .read = fan_read,
7647 .write = fan_write,
7648 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007649 .suspend = fan_suspend,
7650 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007651};
7652
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007653/****************************************************************************
7654 ****************************************************************************
7655 *
7656 * Infrastructure
7657 *
7658 ****************************************************************************
7659 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03007661/*
7662 * HKEY event callout for other subdrivers go here
7663 * (yes, it is ugly, but it is quick, safe, and gets the job done
7664 */
7665static void tpacpi_driver_event(const unsigned int hkey_event)
7666{
7667}
7668
7669
7670
7671static void hotkey_driver_event(const unsigned int scancode)
7672{
7673 tpacpi_driver_event(0x1001 + scancode);
7674}
7675
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007676/* sysfs name ---------------------------------------------------------- */
7677static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
7678 struct device_attribute *attr,
7679 char *buf)
7680{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007681 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007682}
7683
7684static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
7685 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
7686
7687/* --------------------------------------------------------------------- */
7688
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007689/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03007690static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007691
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007692/*
7693 * Module and infrastructure proble, init and exit handling
7694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007696static int force_load;
7697
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007698#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007699static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007700{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007701 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007702
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007703 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007704}
7705#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
7706
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007707static void ibm_exit(struct ibm_struct *ibm)
7708{
7709 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
7710
7711 list_del_init(&ibm->all_drivers);
7712
7713 if (ibm->flags.acpi_notify_installed) {
7714 dbg_printk(TPACPI_DBG_EXIT,
7715 "%s: acpi_remove_notify_handler\n", ibm->name);
7716 BUG_ON(!ibm->acpi);
7717 acpi_remove_notify_handler(*ibm->acpi->handle,
7718 ibm->acpi->type,
7719 dispatch_acpi_notify);
7720 ibm->flags.acpi_notify_installed = 0;
7721 ibm->flags.acpi_notify_installed = 0;
7722 }
7723
7724 if (ibm->flags.proc_created) {
7725 dbg_printk(TPACPI_DBG_EXIT,
7726 "%s: remove_proc_entry\n", ibm->name);
7727 remove_proc_entry(ibm->name, proc_dir);
7728 ibm->flags.proc_created = 0;
7729 }
7730
7731 if (ibm->flags.acpi_driver_registered) {
7732 dbg_printk(TPACPI_DBG_EXIT,
7733 "%s: acpi_bus_unregister_driver\n", ibm->name);
7734 BUG_ON(!ibm->acpi);
7735 acpi_bus_unregister_driver(ibm->acpi->driver);
7736 kfree(ibm->acpi->driver);
7737 ibm->acpi->driver = NULL;
7738 ibm->flags.acpi_driver_registered = 0;
7739 }
7740
7741 if (ibm->flags.init_called && ibm->exit) {
7742 ibm->exit();
7743 ibm->flags.init_called = 0;
7744 }
7745
7746 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
7747}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007748
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007749static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750{
7751 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007752 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753 struct proc_dir_entry *entry;
7754
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007755 BUG_ON(ibm == NULL);
7756
7757 INIT_LIST_HEAD(&ibm->all_drivers);
7758
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007759 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760 return 0;
7761
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007762 dbg_printk(TPACPI_DBG_INIT,
7763 "probing for %s\n", ibm->name);
7764
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007765 if (iibm->init) {
7766 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007767 if (ret > 0)
7768 return 0; /* probe failed */
7769 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007771
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007772 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773 }
7774
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007775 if (ibm->acpi) {
7776 if (ibm->acpi->hid) {
7777 ret = register_tpacpi_subdriver(ibm);
7778 if (ret)
7779 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007780 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007781
7782 if (ibm->acpi->notify) {
7783 ret = setup_acpi_notify(ibm);
7784 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007785 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007786 ibm->name);
7787 ret = 0;
7788 goto err_out;
7789 }
7790 if (ret < 0)
7791 goto err_out;
7792 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007793 }
7794
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007795 dbg_printk(TPACPI_DBG_INIT,
7796 "%s installed\n", ibm->name);
7797
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007798 if (ibm->read) {
7799 entry = create_proc_entry(ibm->name,
7800 S_IFREG | S_IRUGO | S_IWUSR,
7801 proc_dir);
7802 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007803 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007804 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007805 ret = -ENODEV;
7806 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007807 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007808 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007809 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007810 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007811 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007812 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007815 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
7816
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007818
7819err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007820 dbg_printk(TPACPI_DBG_INIT,
7821 "%s: at error exit path with result %d\n",
7822 ibm->name, ret);
7823
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007824 ibm_exit(ibm);
7825 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826}
7827
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007828/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007830static bool __pure __init tpacpi_is_fw_digit(const char c)
7831{
7832 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
7833}
7834
7835/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
7836static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
7837 const char t)
7838{
7839 return s && strlen(s) >= 8 &&
7840 tpacpi_is_fw_digit(s[0]) &&
7841 tpacpi_is_fw_digit(s[1]) &&
7842 s[2] == t && s[3] == 'T' &&
7843 tpacpi_is_fw_digit(s[4]) &&
7844 tpacpi_is_fw_digit(s[5]) &&
7845 s[6] == 'W' && s[7] == 'W';
7846}
7847
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007848/* returns 0 - probe ok, or < 0 - probe error.
7849 * Probe ok doesn't mean thinkpad found.
7850 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
7851static int __must_check __init get_thinkpad_model_data(
7852 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007853{
Jeff Garzik18552562007-10-03 15:15:40 -04007854 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007855 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007856 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007857
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007858 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007859 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007860
7861 memset(tp, 0, sizeof(*tp));
7862
7863 if (dmi_name_in_vendors("IBM"))
7864 tp->vendor = PCI_VENDOR_ID_IBM;
7865 else if (dmi_name_in_vendors("LENOVO"))
7866 tp->vendor = PCI_VENDOR_ID_LENOVO;
7867 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007868 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007869
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007870 s = dmi_get_system_info(DMI_BIOS_VERSION);
7871 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
7872 if (s && !tp->bios_version_str)
7873 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007874
7875 /* Really ancient ThinkPad 240X will fail this, which is fine */
7876 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007877 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007878
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007879 tp->bios_model = tp->bios_version_str[0]
7880 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007881 tp->bios_release = (tp->bios_version_str[4] << 8)
7882 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007883
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007884 /*
7885 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
7886 * X32 or newer, all Z series; Some models must have an
7887 * up-to-date BIOS or they will not be detected.
7888 *
7889 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
7890 */
7891 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007892 if (sscanf(dev->name,
7893 "IBM ThinkPad Embedded Controller -[%17c",
7894 ec_fw_string) == 1) {
7895 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
7896 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007897
7898 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007899 if (!tp->ec_version_str)
7900 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007901
7902 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
7903 tp->ec_model = ec_fw_string[0]
7904 | (ec_fw_string[1] << 8);
7905 tp->ec_release = (ec_fw_string[4] << 8)
7906 | ec_fw_string[5];
7907 } else {
7908 printk(TPACPI_NOTICE
7909 "ThinkPad firmware release %s "
7910 "doesn't match the known patterns\n",
7911 ec_fw_string);
7912 printk(TPACPI_NOTICE
7913 "please report this to %s\n",
7914 TPACPI_MAIL);
7915 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007916 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007917 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007918 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007919
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007920 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
7921 if (s && !strnicmp(s, "ThinkPad", 8)) {
7922 tp->model_str = kstrdup(s, GFP_KERNEL);
7923 if (!tp->model_str)
7924 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007925 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03007926
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007927 s = dmi_get_system_info(DMI_PRODUCT_NAME);
7928 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
7929 if (s && !tp->nummodel_str)
7930 return -ENOMEM;
7931
7932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933}
7934
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007935static int __init probe_for_thinkpad(void)
7936{
7937 int is_thinkpad;
7938
7939 if (acpi_disabled)
7940 return -ENODEV;
7941
7942 /*
7943 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03007944 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007945 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03007946 is_thinkpad = (thinkpad_id.model_str != NULL) ||
7947 (thinkpad_id.ec_model != 0) ||
7948 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007949
7950 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007951 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007952 if (!ec_handle) {
7953 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007954 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007955 "Not yet supported ThinkPad detected!\n");
7956 return -ENODEV;
7957 }
7958
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007959 if (!is_thinkpad && !force_load)
7960 return -ENODEV;
7961
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007962 return 0;
7963}
7964
7965
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007966/* Module init, exit, parameters */
7967
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007968static struct ibm_init_struct ibms_init[] __initdata = {
7969 {
7970 .init = thinkpad_acpi_driver_init,
7971 .data = &thinkpad_acpi_driver_data,
7972 },
7973 {
7974 .init = hotkey_init,
7975 .data = &hotkey_driver_data,
7976 },
7977 {
7978 .init = bluetooth_init,
7979 .data = &bluetooth_driver_data,
7980 },
7981 {
7982 .init = wan_init,
7983 .data = &wan_driver_data,
7984 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02007985 {
7986 .init = uwb_init,
7987 .data = &uwb_driver_data,
7988 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007989#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007990 {
7991 .init = video_init,
7992 .data = &video_driver_data,
7993 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007994#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007995 {
7996 .init = light_init,
7997 .data = &light_driver_data,
7998 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007999 {
8000 .init = cmos_init,
8001 .data = &cmos_driver_data,
8002 },
8003 {
8004 .init = led_init,
8005 .data = &led_driver_data,
8006 },
8007 {
8008 .init = beep_init,
8009 .data = &beep_driver_data,
8010 },
8011 {
8012 .init = thermal_init,
8013 .data = &thermal_driver_data,
8014 },
8015 {
8016 .data = &ecdump_driver_data,
8017 },
8018 {
8019 .init = brightness_init,
8020 .data = &brightness_driver_data,
8021 },
8022 {
8023 .data = &volume_driver_data,
8024 },
8025 {
8026 .init = fan_init,
8027 .data = &fan_driver_data,
8028 },
8029};
8030
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008031static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8032{
8033 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008034 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008035
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008036 if (!kp || !kp->name || !val)
8037 return -EINVAL;
8038
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008039 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8040 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008041 WARN_ON(ibm == NULL);
8042
8043 if (!ibm || !ibm->name)
8044 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008045
8046 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8047 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008048 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008049 strcpy(ibms_init[i].param, val);
8050 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008051 return 0;
8052 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008053 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008054
8055 return -EINVAL;
8056}
8057
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008058module_param(experimental, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008059MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008060 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008061
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008062module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008063MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008064
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03008065module_param(force_load, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008066MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008067 "Attempts to load the driver even on a "
8068 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008069
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03008070module_param_named(fan_control, fan_control_allowed, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008071MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008072 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008073
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008074module_param_named(brightness_mode, brightness_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008075MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008076 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008077 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008078
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008079module_param(brightness_enable, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008080MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008081 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008082
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008083module_param(hotkey_report_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008084MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008085 "used for backwards compatibility with userspace, "
8086 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008087
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008088#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008089 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008090 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008091 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008092
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008093TPACPI_PARAM(hotkey);
8094TPACPI_PARAM(bluetooth);
8095TPACPI_PARAM(video);
8096TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008097TPACPI_PARAM(cmos);
8098TPACPI_PARAM(led);
8099TPACPI_PARAM(beep);
8100TPACPI_PARAM(ecdump);
8101TPACPI_PARAM(brightness);
8102TPACPI_PARAM(volume);
8103TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008104
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008105#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
8106module_param(dbg_wlswemul, uint, 0);
8107MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8108module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8109MODULE_PARM_DESC(wlsw_state,
8110 "Initial state of the emulated WLSW switch");
8111
8112module_param(dbg_bluetoothemul, uint, 0);
8113MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8114module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8115MODULE_PARM_DESC(bluetooth_state,
8116 "Initial state of the emulated bluetooth switch");
8117
8118module_param(dbg_wwanemul, uint, 0);
8119MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8120module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8121MODULE_PARM_DESC(wwan_state,
8122 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008123
8124module_param(dbg_uwbemul, uint, 0);
8125MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8126module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8127MODULE_PARM_DESC(uwb_state,
8128 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008129#endif
8130
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008131static void thinkpad_acpi_module_exit(void)
8132{
8133 struct ibm_struct *ibm, *itmp;
8134
8135 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8136
8137 list_for_each_entry_safe_reverse(ibm, itmp,
8138 &tpacpi_all_drivers,
8139 all_drivers) {
8140 ibm_exit(ibm);
8141 }
8142
8143 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
8144
8145 if (tpacpi_inputdev) {
8146 if (tp_features.input_device_registered)
8147 input_unregister_device(tpacpi_inputdev);
8148 else
8149 input_free_device(tpacpi_inputdev);
8150 }
8151
8152 if (tpacpi_hwmon)
8153 hwmon_device_unregister(tpacpi_hwmon);
8154
8155 if (tp_features.sensors_pdev_attrs_registered)
8156 device_remove_file(&tpacpi_sensors_pdev->dev,
8157 &dev_attr_thinkpad_acpi_pdev_name);
8158 if (tpacpi_sensors_pdev)
8159 platform_device_unregister(tpacpi_sensors_pdev);
8160 if (tpacpi_pdev)
8161 platform_device_unregister(tpacpi_pdev);
8162
8163 if (tp_features.sensors_pdrv_attrs_registered)
8164 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
8165 if (tp_features.platform_drv_attrs_registered)
8166 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
8167
8168 if (tp_features.sensors_pdrv_registered)
8169 platform_driver_unregister(&tpacpi_hwmon_pdriver);
8170
8171 if (tp_features.platform_drv_registered)
8172 platform_driver_unregister(&tpacpi_pdriver);
8173
8174 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008175 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008176
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008177 if (tpacpi_wq)
8178 destroy_workqueue(tpacpi_wq);
8179
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008180 kfree(thinkpad_id.bios_version_str);
8181 kfree(thinkpad_id.ec_version_str);
8182 kfree(thinkpad_id.model_str);
8183}
8184
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008185
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008186static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187{
8188 int ret, i;
8189
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008190 tpacpi_lifecycle = TPACPI_LIFE_INIT;
8191
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008192 /* Parameter checking */
8193 if (hotkey_report_mode > 2)
8194 return -EINVAL;
8195
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008196 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008197
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008198 ret = get_thinkpad_model_data(&thinkpad_id);
8199 if (ret) {
8200 printk(TPACPI_ERR
8201 "unable to get DMI data: %d\n", ret);
8202 thinkpad_acpi_module_exit();
8203 return ret;
8204 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008205 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008206 if (ret) {
8207 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008208 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008211 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008212
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008213 TPACPI_ACPIHANDLE_INIT(ecrd);
8214 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008216 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
8217 if (!tpacpi_wq) {
8218 thinkpad_acpi_module_exit();
8219 return -ENOMEM;
8220 }
8221
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008222 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008224 printk(TPACPI_ERR
8225 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008226 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227 return -ENODEV;
8228 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008229
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008230 ret = platform_driver_register(&tpacpi_pdriver);
8231 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008232 printk(TPACPI_ERR
8233 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008234 thinkpad_acpi_module_exit();
8235 return ret;
8236 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03008237 tp_features.platform_drv_registered = 1;
8238
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008239 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
8240 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008241 printk(TPACPI_ERR
8242 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008243 thinkpad_acpi_module_exit();
8244 return ret;
8245 }
8246 tp_features.sensors_pdrv_registered = 1;
8247
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008248 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008249 if (!ret) {
8250 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008251 ret = tpacpi_create_driver_attributes(
8252 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008253 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008254 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008255 printk(TPACPI_ERR
8256 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008257 thinkpad_acpi_module_exit();
8258 return ret;
8259 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008260 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008261
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008262
8263 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008264 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008265 NULL, 0);
8266 if (IS_ERR(tpacpi_pdev)) {
8267 ret = PTR_ERR(tpacpi_pdev);
8268 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008269 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008270 thinkpad_acpi_module_exit();
8271 return ret;
8272 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008273 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008274 TPACPI_HWMON_DRVR_NAME,
8275 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008276 if (IS_ERR(tpacpi_sensors_pdev)) {
8277 ret = PTR_ERR(tpacpi_sensors_pdev);
8278 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008279 printk(TPACPI_ERR
8280 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008281 thinkpad_acpi_module_exit();
8282 return ret;
8283 }
8284 ret = device_create_file(&tpacpi_sensors_pdev->dev,
8285 &dev_attr_thinkpad_acpi_pdev_name);
8286 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008287 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008288 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008289 thinkpad_acpi_module_exit();
8290 return ret;
8291 }
8292 tp_features.sensors_pdev_attrs_registered = 1;
8293 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008294 if (IS_ERR(tpacpi_hwmon)) {
8295 ret = PTR_ERR(tpacpi_hwmon);
8296 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008297 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008298 thinkpad_acpi_module_exit();
8299 return ret;
8300 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03008301 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008302 tpacpi_inputdev = input_allocate_device();
8303 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008304 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008305 thinkpad_acpi_module_exit();
8306 return -ENOMEM;
8307 } else {
8308 /* Prepare input device, but don't register */
8309 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008310 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008311 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03008312 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
8313 thinkpad_id.vendor :
8314 PCI_VENDOR_ID_IBM;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008315 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
8316 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
8317 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008318 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8319 ret = ibm_init(&ibms_init[i]);
8320 if (ret >= 0 && *ibms_init[i].param)
8321 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008323 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 return ret;
8325 }
8326 }
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008327 ret = input_register_device(tpacpi_inputdev);
8328 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008329 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008330 thinkpad_acpi_module_exit();
8331 return ret;
8332 } else {
8333 tp_features.input_device_registered = 1;
8334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008336 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337 return 0;
8338}
8339
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03008340MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
8341
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008342/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008343 * This will autoload the driver in almost every ThinkPad
8344 * in widespread use.
8345 *
8346 * Only _VERY_ old models, like the 240, 240x and 570 lack
8347 * the HKEY event interface.
8348 */
8349MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
8350
8351/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008352 * DMI matching for module autoloading
8353 *
8354 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8355 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
8356 *
8357 * Only models listed in thinkwiki will be supported, so add yours
8358 * if it is not there yet.
8359 */
8360#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01008361 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008362
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008363/* Ancient thinkpad BIOSes have to be identified by
8364 * BIOS type or model number, and there are far less
8365 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008366IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008367
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00008368MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
8369MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008370MODULE_DESCRIPTION(TPACPI_DESC);
8371MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008372MODULE_LICENSE("GPL");
8373
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008374module_init(thinkpad_acpi_module_init);
8375module_exit(thinkpad_acpi_module_exit);