blob: dd779e54894f48881b26bab2919a3217ae956263 [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 Holschuhf21179a2009-05-30 13:25:08 -030025#define TPACPI_SYSFS_VERSION 0x020400
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 Holschuh94954cc2007-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 Holschuh94954cc2007-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);
1281 tpacpi_rfkill_switches[id] = NULL;
1282 kfree(tp_rfk);
1283 }
1284}
1285
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001286static void printk_deprecated_rfkill_attribute(const char * const what)
1287{
1288 printk_deprecated_attribute(what,
1289 "Please switch to generic rfkill before year 2010");
1290}
1291
Johannes Berg19d337d2009-06-02 13:01:37 +02001292/* sysfs <radio> enable ------------------------------------------------ */
1293static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1294 struct device_attribute *attr,
1295 char *buf)
1296{
1297 int status;
1298
1299 printk_deprecated_rfkill_attribute(attr->attr.name);
1300
1301 /* This is in the ABI... */
1302 if (tpacpi_rfk_check_hwblock_state()) {
1303 status = TPACPI_RFK_RADIO_OFF;
1304 } else {
1305 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1306 if (status < 0)
1307 return status;
1308 }
1309
1310 return snprintf(buf, PAGE_SIZE, "%d\n",
1311 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1312}
1313
1314static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1315 struct device_attribute *attr,
1316 const char *buf, size_t count)
1317{
1318 unsigned long t;
1319 int res;
1320
1321 printk_deprecated_rfkill_attribute(attr->attr.name);
1322
1323 if (parse_strtoul(buf, 1, &t))
1324 return -EINVAL;
1325
1326 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1327
1328 /* This is in the ABI... */
1329 if (tpacpi_rfk_check_hwblock_state() && !!t)
1330 return -EPERM;
1331
1332 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1333 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1334 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1335
1336 return (res < 0) ? res : count;
1337}
1338
1339/* procfs -------------------------------------------------------------- */
1340static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, char *p)
1341{
1342 int len = 0;
1343
1344 if (id >= TPACPI_RFK_SW_MAX)
1345 len += sprintf(p + len, "status:\t\tnot supported\n");
1346 else {
1347 int status;
1348
1349 /* This is in the ABI... */
1350 if (tpacpi_rfk_check_hwblock_state()) {
1351 status = TPACPI_RFK_RADIO_OFF;
1352 } else {
1353 status = tpacpi_rfk_update_swstate(
1354 tpacpi_rfkill_switches[id]);
1355 if (status < 0)
1356 return status;
1357 }
1358
1359 len += sprintf(p + len, "status:\t\t%s\n",
1360 (status == TPACPI_RFK_RADIO_ON) ?
1361 "enabled" : "disabled");
1362 len += sprintf(p + len, "commands:\tenable, disable\n");
1363 }
1364
1365 return len;
1366}
1367
1368static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1369{
1370 char *cmd;
1371 int status = -1;
1372 int res = 0;
1373
1374 if (id >= TPACPI_RFK_SW_MAX)
1375 return -ENODEV;
1376
1377 while ((cmd = next_cmd(&buf))) {
1378 if (strlencmp(cmd, "enable") == 0)
1379 status = TPACPI_RFK_RADIO_ON;
1380 else if (strlencmp(cmd, "disable") == 0)
1381 status = TPACPI_RFK_RADIO_OFF;
1382 else
1383 return -EINVAL;
1384 }
1385
1386 if (status != -1) {
1387 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1388 (status == TPACPI_RFK_RADIO_ON) ?
1389 "enable" : "disable",
1390 tpacpi_rfkill_names[id]);
1391 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1392 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1393 }
1394
1395 return res;
1396}
1397
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001398/*************************************************************************
1399 * thinkpad-acpi driver attributes
1400 */
1401
1402/* interface_version --------------------------------------------------- */
1403static ssize_t tpacpi_driver_interface_version_show(
1404 struct device_driver *drv,
1405 char *buf)
1406{
1407 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1408}
1409
1410static DRIVER_ATTR(interface_version, S_IRUGO,
1411 tpacpi_driver_interface_version_show, NULL);
1412
1413/* debug_level --------------------------------------------------------- */
1414static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1415 char *buf)
1416{
1417 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1418}
1419
1420static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1421 const char *buf, size_t count)
1422{
1423 unsigned long t;
1424
1425 if (parse_strtoul(buf, 0xffff, &t))
1426 return -EINVAL;
1427
1428 dbg_level = t;
1429
1430 return count;
1431}
1432
1433static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1434 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1435
1436/* version ------------------------------------------------------------- */
1437static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1438 char *buf)
1439{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001440 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1441 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001442}
1443
1444static DRIVER_ATTR(version, S_IRUGO,
1445 tpacpi_driver_version_show, NULL);
1446
1447/* --------------------------------------------------------------------- */
1448
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001449#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1450
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001451/* wlsw_emulstate ------------------------------------------------------ */
1452static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1453 char *buf)
1454{
1455 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1456}
1457
1458static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1459 const char *buf, size_t count)
1460{
1461 unsigned long t;
1462
1463 if (parse_strtoul(buf, 1, &t))
1464 return -EINVAL;
1465
Johannes Berg19d337d2009-06-02 13:01:37 +02001466 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001467 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001468 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1469 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001470
1471 return count;
1472}
1473
1474static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1475 tpacpi_driver_wlsw_emulstate_show,
1476 tpacpi_driver_wlsw_emulstate_store);
1477
1478/* bluetooth_emulstate ------------------------------------------------- */
1479static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1480 struct device_driver *drv,
1481 char *buf)
1482{
1483 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1484}
1485
1486static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1487 struct device_driver *drv,
1488 const char *buf, size_t count)
1489{
1490 unsigned long t;
1491
1492 if (parse_strtoul(buf, 1, &t))
1493 return -EINVAL;
1494
1495 tpacpi_bluetooth_emulstate = !!t;
1496
1497 return count;
1498}
1499
1500static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1501 tpacpi_driver_bluetooth_emulstate_show,
1502 tpacpi_driver_bluetooth_emulstate_store);
1503
1504/* wwan_emulstate ------------------------------------------------- */
1505static ssize_t tpacpi_driver_wwan_emulstate_show(
1506 struct device_driver *drv,
1507 char *buf)
1508{
1509 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1510}
1511
1512static ssize_t tpacpi_driver_wwan_emulstate_store(
1513 struct device_driver *drv,
1514 const char *buf, size_t count)
1515{
1516 unsigned long t;
1517
1518 if (parse_strtoul(buf, 1, &t))
1519 return -EINVAL;
1520
1521 tpacpi_wwan_emulstate = !!t;
1522
1523 return count;
1524}
1525
1526static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1527 tpacpi_driver_wwan_emulstate_show,
1528 tpacpi_driver_wwan_emulstate_store);
1529
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001530/* uwb_emulstate ------------------------------------------------- */
1531static ssize_t tpacpi_driver_uwb_emulstate_show(
1532 struct device_driver *drv,
1533 char *buf)
1534{
1535 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1536}
1537
1538static ssize_t tpacpi_driver_uwb_emulstate_store(
1539 struct device_driver *drv,
1540 const char *buf, size_t count)
1541{
1542 unsigned long t;
1543
1544 if (parse_strtoul(buf, 1, &t))
1545 return -EINVAL;
1546
1547 tpacpi_uwb_emulstate = !!t;
1548
1549 return count;
1550}
1551
1552static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1553 tpacpi_driver_uwb_emulstate_show,
1554 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001555#endif
1556
1557/* --------------------------------------------------------------------- */
1558
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001559static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001560 &driver_attr_debug_level, &driver_attr_version,
1561 &driver_attr_interface_version,
1562};
1563
1564static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1565{
1566 int i, res;
1567
1568 i = 0;
1569 res = 0;
1570 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1571 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1572 i++;
1573 }
1574
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001575#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1576 if (!res && dbg_wlswemul)
1577 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1578 if (!res && dbg_bluetoothemul)
1579 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1580 if (!res && dbg_wwanemul)
1581 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001582 if (!res && dbg_uwbemul)
1583 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001584#endif
1585
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001586 return res;
1587}
1588
1589static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1590{
1591 int i;
1592
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001593 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001594 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001595
1596#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1597 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1598 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1599 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001600 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001601#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001602}
1603
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001604/*************************************************************************
1605 * Firmware Data
1606 */
1607
1608/*
1609 * Table of recommended minimum BIOS versions
1610 *
1611 * Reasons for listing:
1612 * 1. Stable BIOS, listed because the unknown ammount of
1613 * bugs and bad ACPI behaviour on older versions
1614 *
1615 * 2. BIOS or EC fw with known bugs that trigger on Linux
1616 *
1617 * 3. BIOS with known reduced functionality in older versions
1618 *
1619 * We recommend the latest BIOS and EC version.
1620 * We only support the latest BIOS and EC fw version as a rule.
1621 *
1622 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1623 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001624 *
1625 * WARNING: we use this table also to detect that the machine is
1626 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001627 */
1628
1629#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1630 { .vendor = (__v), \
1631 .bios = TPID(__id1, __id2), \
1632 .ec = TPACPI_MATCH_ANY, \
1633 .quirks = TPACPI_MATCH_ANY << 16 \
1634 | (__bv1) << 8 | (__bv2) }
1635
1636#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
1637 __eid1, __eid2, __ev1, __ev2) \
1638 { .vendor = (__v), \
1639 .bios = TPID(__bid1, __bid2), \
1640 .ec = TPID(__eid1, __eid2), \
1641 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1642 | (__bv1) << 8 | (__bv2) }
1643
1644#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1645 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1646
1647#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1648 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1649 __bv1, __bv2, __id1, __id2, __ev1, __ev2)
1650
1651#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1652 __eid1, __eid2, __ev1, __ev2) \
1653 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1654 __bv1, __bv2, __eid1, __eid2, __ev1, __ev2)
1655
1656#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1657 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1658
1659#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1660 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
1661 __bv1, __bv2, __id1, __id2, __ev1, __ev2)
1662
1663#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1664 __eid1, __eid2, __ev1, __ev2) \
1665 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
1666 __bv1, __bv2, __eid1, __eid2, __ev1, __ev2)
1667
1668static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1669 /* Numeric models ------------------ */
1670 /* FW MODEL BIOS VERS */
1671 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1672 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1673 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1674 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1675 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1676 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1677 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1678 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1679 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1680
1681 /* A-series ------------------------- */
1682 /* FW MODEL BIOS VERS EC VERS */
1683 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1684 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1685 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1686 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1687 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1688 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1689 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1690 TPV_QI0('1', '3', '2', '0'), /* A22m */
1691 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1692 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1693 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1694
1695 /* G-series ------------------------- */
1696 /* FW MODEL BIOS VERS */
1697 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1698 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1699
1700 /* R-series, T-series --------------- */
1701 /* FW MODEL BIOS VERS EC VERS */
1702 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1703 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1704 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1705 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1706 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1707 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1708 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1709 T40/p, T41/p, T42/p (1) */
1710 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1711 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1712 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1713 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1714
1715 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1716 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1717 TPV_QI0('1', '6', '3', '2'), /* T22 */
1718 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1719 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1720 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1721
1722 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1723 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
1724 TPV_QL0('7', 'E', 'D', '0'), /* R60e, R60i */
1725
1726 /* BIOS FW BIOS VERS EC FW EC VERS */
1727 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1728 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1729
1730 /* X-series ------------------------- */
1731 /* FW MODEL BIOS VERS EC VERS */
1732 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1733 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1734 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1735 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1736 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1737 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1738 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1739
1740 TPV_QL0('7', 'B', 'D', '7'), /* X60/s */
1741 TPV_QL0('7', 'J', '3', '0'), /* X60t */
1742
1743 /* (0) - older versions lack DMI EC fw string and functionality */
1744 /* (1) - older versions known to lack functionality */
1745};
1746
1747#undef TPV_QL1
1748#undef TPV_QL0
1749#undef TPV_QI2
1750#undef TPV_QI1
1751#undef TPV_QI0
1752#undef TPV_Q_X
1753#undef TPV_Q
1754
1755static void __init tpacpi_check_outdated_fw(void)
1756{
1757 unsigned long fwvers;
1758 u16 ec_version, bios_version;
1759
1760 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1761 ARRAY_SIZE(tpacpi_bios_version_qtable));
1762
1763 if (!fwvers)
1764 return;
1765
1766 bios_version = fwvers & 0xffffU;
1767 ec_version = (fwvers >> 16) & 0xffffU;
1768
1769 /* note that unknown versions are set to 0x0000 and we use that */
1770 if ((bios_version > thinkpad_id.bios_release) ||
1771 (ec_version > thinkpad_id.ec_release &&
1772 ec_version != TPACPI_MATCH_ANY)) {
1773 /*
1774 * The changelogs would let us track down the exact
1775 * reason, but it is just too much of a pain to track
1776 * it. We only list BIOSes that are either really
1777 * broken, or really stable to begin with, so it is
1778 * best if the user upgrades the firmware anyway.
1779 */
1780 printk(TPACPI_WARN
1781 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1782 printk(TPACPI_WARN
1783 "WARNING: This firmware may be missing critical bug "
1784 "fixes and/or important features\n");
1785 }
1786}
1787
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001788static bool __init tpacpi_is_fw_known(void)
1789{
1790 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1791 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1792}
1793
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001794/****************************************************************************
1795 ****************************************************************************
1796 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001797 * Subdrivers
1798 *
1799 ****************************************************************************
1800 ****************************************************************************/
1801
1802/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001803 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001804 */
1805
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001806static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001808 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1809 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001811 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001812 (thinkpad_id.bios_version_str) ?
1813 thinkpad_id.bios_version_str : "unknown",
1814 (thinkpad_id.ec_version_str) ?
1815 thinkpad_id.ec_version_str : "unknown");
1816
1817 if (thinkpad_id.vendor && thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001818 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001819 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1820 "IBM" : ((thinkpad_id.vendor ==
1821 PCI_VENDOR_ID_LENOVO) ?
1822 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001823 thinkpad_id.model_str,
1824 (thinkpad_id.nummodel_str) ?
1825 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001826
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001827 tpacpi_check_outdated_fw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return 0;
1829}
1830
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03001831static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
1833 int len = 0;
1834
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001835 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1836 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838 return len;
1839}
1840
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001841static struct ibm_struct thinkpad_acpi_driver_data = {
1842 .name = "driver",
1843 .read = thinkpad_acpi_driver_read,
1844};
1845
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001846/*************************************************************************
1847 * Hotkey subdriver
1848 */
1849
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001850enum { /* hot key scan codes (derived from ACPI DSDT) */
1851 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1852 TP_ACPI_HOTKEYSCAN_FNF2,
1853 TP_ACPI_HOTKEYSCAN_FNF3,
1854 TP_ACPI_HOTKEYSCAN_FNF4,
1855 TP_ACPI_HOTKEYSCAN_FNF5,
1856 TP_ACPI_HOTKEYSCAN_FNF6,
1857 TP_ACPI_HOTKEYSCAN_FNF7,
1858 TP_ACPI_HOTKEYSCAN_FNF8,
1859 TP_ACPI_HOTKEYSCAN_FNF9,
1860 TP_ACPI_HOTKEYSCAN_FNF10,
1861 TP_ACPI_HOTKEYSCAN_FNF11,
1862 TP_ACPI_HOTKEYSCAN_FNF12,
1863 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1864 TP_ACPI_HOTKEYSCAN_FNINSERT,
1865 TP_ACPI_HOTKEYSCAN_FNDELETE,
1866 TP_ACPI_HOTKEYSCAN_FNHOME,
1867 TP_ACPI_HOTKEYSCAN_FNEND,
1868 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1869 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1870 TP_ACPI_HOTKEYSCAN_FNSPACE,
1871 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1872 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1873 TP_ACPI_HOTKEYSCAN_MUTE,
1874 TP_ACPI_HOTKEYSCAN_THINKPAD,
1875};
1876
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001877enum { /* Keys available through NVRAM polling */
1878 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1879 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1880};
1881
1882enum { /* Positions of some of the keys in hotkey masks */
1883 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1884 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1885 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1886 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1887 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1888 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1889 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1890 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1891 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1892 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1893 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1894};
1895
1896enum { /* NVRAM to ACPI HKEY group map */
1897 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1898 TP_ACPI_HKEY_ZOOM_MASK |
1899 TP_ACPI_HKEY_DISPSWTCH_MASK |
1900 TP_ACPI_HKEY_HIBERNATE_MASK,
1901 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1902 TP_ACPI_HKEY_BRGHTDWN_MASK,
1903 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1904 TP_ACPI_HKEY_VOLDWN_MASK |
1905 TP_ACPI_HKEY_MUTE_MASK,
1906};
1907
1908#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1909struct tp_nvram_state {
1910 u16 thinkpad_toggle:1;
1911 u16 zoom_toggle:1;
1912 u16 display_toggle:1;
1913 u16 thinklight_toggle:1;
1914 u16 hibernate_toggle:1;
1915 u16 displayexp_toggle:1;
1916 u16 display_state:1;
1917 u16 brightness_toggle:1;
1918 u16 volume_toggle:1;
1919 u16 mute:1;
1920
1921 u8 brightness_level;
1922 u8 volume_level;
1923};
1924
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001925/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001926static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001927
1928/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001929static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001930
1931/*
1932 * Acquire mutex to write poller control variables.
1933 * Increment hotkey_config_change when changing them.
1934 *
1935 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1936 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001937static struct mutex hotkey_thread_data_mutex;
1938static unsigned int hotkey_config_change;
1939
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001940/*
1941 * hotkey poller control variables
1942 *
1943 * Must be atomic or readers will also need to acquire mutex
1944 */
1945static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1946static unsigned int hotkey_poll_freq = 10; /* Hz */
1947
1948#define HOTKEY_CONFIG_CRITICAL_START \
1949 do { \
1950 mutex_lock(&hotkey_thread_data_mutex); \
1951 hotkey_config_change++; \
1952 } while (0);
1953#define HOTKEY_CONFIG_CRITICAL_END \
1954 mutex_unlock(&hotkey_thread_data_mutex);
1955
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001956#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1957
1958#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001959#define HOTKEY_CONFIG_CRITICAL_START
1960#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001961
1962#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1963
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001964static struct mutex hotkey_mutex;
1965
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001966static enum { /* Reasons for waking up */
1967 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1968 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1969 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1970} hotkey_wakeup_reason;
1971
1972static int hotkey_autosleep_ack;
1973
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001974static u32 hotkey_orig_mask;
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001975static u32 hotkey_all_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001976static u32 hotkey_reserved_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001977static u32 hotkey_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001978
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001979static unsigned int hotkey_report_mode;
1980
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001981static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001982
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03001983static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001984
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001985/* HKEY.MHKG() return bits */
1986#define TP_HOTKEY_TABLET_MASK (1 << 3)
1987
Johannes Berg19d337d2009-06-02 13:01:37 +02001988static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03001989{
Johannes Berg19d337d2009-06-02 13:01:37 +02001990 int status;
1991
1992 if (!tp_features.hotkey_wlsw)
1993 return -ENODEV;
1994
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001995#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02001996 if (dbg_wlswemul)
1997 return (tpacpi_wlsw_emulstate) ?
1998 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001999#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002000
2001 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002002 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002003
2004 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002005}
2006
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002007static int hotkey_get_tablet_mode(int *status)
2008{
2009 int s;
2010
2011 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2012 return -EIO;
2013
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002014 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2015 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002016}
2017
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002018/*
2019 * Call with hotkey_mutex held
2020 */
2021static int hotkey_mask_get(void)
2022{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002023 u32 m = 0;
2024
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002025 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002026 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002027 return -EIO;
2028 }
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002029 HOTKEY_CONFIG_CRITICAL_START
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002030 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002031 HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002032
2033 return 0;
2034}
2035
2036/*
2037 * Call with hotkey_mutex held
2038 */
2039static int hotkey_mask_set(u32 mask)
2040{
2041 int i;
2042 int rc = 0;
2043
2044 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002045 if (!tp_warned.hotkey_mask_ff &&
2046 (mask == 0xffff || mask == 0xffffff ||
2047 mask == 0xffffffff)) {
2048 tp_warned.hotkey_mask_ff = 1;
2049 printk(TPACPI_NOTICE
2050 "setting the hotkey mask to 0x%08x is likely "
2051 "not the best way to go about it\n", mask);
2052 printk(TPACPI_NOTICE
2053 "please consider using the driver defaults, "
2054 "and refer to up-to-date thinkpad-acpi "
2055 "documentation\n");
2056 }
2057
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002058 HOTKEY_CONFIG_CRITICAL_START
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002059 for (i = 0; i < 32; i++) {
2060 u32 m = 1 << i;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002061 /* enable in firmware mask only keys not in NVRAM
2062 * mode, but enable the key in the cached hotkey_mask
2063 * regardless of mode, or the key will end up
2064 * disabled by hotkey_mask_get() */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002065 if (!acpi_evalf(hkey_handle,
2066 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002067 !!((mask & ~hotkey_source_mask) & m))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002068 rc = -EIO;
2069 break;
2070 } else {
2071 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
2072 }
2073 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002074 HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002075
2076 /* hotkey_mask_get must be called unconditionally below */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002077 if (!hotkey_mask_get() && !rc &&
2078 (hotkey_mask & ~hotkey_source_mask) !=
2079 (mask & ~hotkey_source_mask)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002080 printk(TPACPI_NOTICE
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002081 "requested hot key mask 0x%08x, but "
2082 "firmware forced it to 0x%08x\n",
2083 mask, hotkey_mask);
2084 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002085 } else {
2086#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2087 HOTKEY_CONFIG_CRITICAL_START
2088 hotkey_mask = mask & hotkey_source_mask;
2089 HOTKEY_CONFIG_CRITICAL_END
2090 hotkey_mask_get();
2091 if (hotkey_mask != mask) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002092 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002093 "requested hot key mask 0x%08x, "
2094 "forced to 0x%08x (NVRAM poll mask is "
2095 "0x%08x): no firmware mask support\n",
2096 mask, hotkey_mask, hotkey_source_mask);
2097 }
2098#else
2099 hotkey_mask_get();
2100 rc = -ENXIO;
2101#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002102 }
2103
2104 return rc;
2105}
2106
2107static int hotkey_status_get(int *status)
2108{
2109 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2110 return -EIO;
2111
2112 return 0;
2113}
2114
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002115static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002116{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002117 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002118 return -EIO;
2119
2120 return 0;
2121}
2122
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002123static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002124{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002125 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002126
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002127 if (tp_features.hotkey_tablet &&
2128 !hotkey_get_tablet_mode(&state)) {
2129 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002130
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002131 input_report_switch(tpacpi_inputdev,
2132 SW_TABLET_MODE, !!state);
2133 input_sync(tpacpi_inputdev);
2134
2135 mutex_unlock(&tpacpi_inputdev_send_mutex);
2136 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002137}
2138
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002139static void tpacpi_input_send_key(unsigned int scancode)
2140{
2141 unsigned int keycode;
2142
2143 keycode = hotkey_keycode_map[scancode];
2144
2145 if (keycode != KEY_RESERVED) {
2146 mutex_lock(&tpacpi_inputdev_send_mutex);
2147
2148 input_report_key(tpacpi_inputdev, keycode, 1);
2149 if (keycode == KEY_UNKNOWN)
2150 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2151 scancode);
2152 input_sync(tpacpi_inputdev);
2153
2154 input_report_key(tpacpi_inputdev, keycode, 0);
2155 if (keycode == KEY_UNKNOWN)
2156 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2157 scancode);
2158 input_sync(tpacpi_inputdev);
2159
2160 mutex_unlock(&tpacpi_inputdev_send_mutex);
2161 }
2162}
2163
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002164#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2165static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2166
2167static void tpacpi_hotkey_send_key(unsigned int scancode)
2168{
2169 tpacpi_input_send_key(scancode);
2170 if (hotkey_report_mode < 2) {
2171 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
2172 0x80, 0x1001 + scancode);
2173 }
2174}
2175
2176static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
2177{
2178 u8 d;
2179
2180 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2181 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2182 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2183 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2184 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2185 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2186 }
2187 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2188 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2189 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2190 }
2191 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2192 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2193 n->displayexp_toggle =
2194 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2195 }
2196 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2197 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2198 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2199 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2200 n->brightness_toggle =
2201 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2202 }
2203 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2204 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2205 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2206 >> TP_NVRAM_POS_LEVEL_VOLUME;
2207 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2208 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2209 }
2210}
2211
2212#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002213 do { \
2214 if ((mask & (1 << __scancode)) && \
2215 oldn->__member != newn->__member) \
2216 tpacpi_hotkey_send_key(__scancode); \
2217 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002218
2219#define TPACPI_MAY_SEND_KEY(__scancode) \
2220 do { if (mask & (1 << __scancode)) \
2221 tpacpi_hotkey_send_key(__scancode); } while (0)
2222
2223static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002224 struct tp_nvram_state *newn,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002225 u32 mask)
2226{
2227 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2228 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2229 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2230 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2231
2232 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2233
2234 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2235
2236 /* handle volume */
2237 if (oldn->volume_toggle != newn->volume_toggle) {
2238 if (oldn->mute != newn->mute) {
2239 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2240 }
2241 if (oldn->volume_level > newn->volume_level) {
2242 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2243 } else if (oldn->volume_level < newn->volume_level) {
2244 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2245 } else if (oldn->mute == newn->mute) {
2246 /* repeated key presses that didn't change state */
2247 if (newn->mute) {
2248 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2249 } else if (newn->volume_level != 0) {
2250 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2251 } else {
2252 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2253 }
2254 }
2255 }
2256
2257 /* handle brightness */
2258 if (oldn->brightness_toggle != newn->brightness_toggle) {
2259 if (oldn->brightness_level < newn->brightness_level) {
2260 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2261 } else if (oldn->brightness_level > newn->brightness_level) {
2262 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2263 } else {
2264 /* repeated key presses that didn't change state */
2265 if (newn->brightness_level != 0) {
2266 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2267 } else {
2268 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2269 }
2270 }
2271 }
2272}
2273
2274#undef TPACPI_COMPARE_KEY
2275#undef TPACPI_MAY_SEND_KEY
2276
2277static int hotkey_kthread(void *data)
2278{
2279 struct tp_nvram_state s[2];
2280 u32 mask;
2281 unsigned int si, so;
2282 unsigned long t;
2283 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002284 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002285
2286 mutex_lock(&hotkey_thread_mutex);
2287
2288 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2289 goto exit;
2290
2291 set_freezable();
2292
2293 so = 0;
2294 si = 1;
2295 t = 0;
2296
2297 /* Initial state for compares */
2298 mutex_lock(&hotkey_thread_data_mutex);
2299 change_detector = hotkey_config_change;
2300 mask = hotkey_source_mask & hotkey_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002301 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002302 mutex_unlock(&hotkey_thread_data_mutex);
2303 hotkey_read_nvram(&s[so], mask);
2304
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002305 while (!kthread_should_stop()) {
2306 if (t == 0) {
2307 if (likely(poll_freq))
2308 t = 1000/poll_freq;
2309 else
2310 t = 100; /* should never happen... */
2311 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002312 t = msleep_interruptible(t);
2313 if (unlikely(kthread_should_stop()))
2314 break;
2315 must_reset = try_to_freeze();
2316 if (t > 0 && !must_reset)
2317 continue;
2318
2319 mutex_lock(&hotkey_thread_data_mutex);
2320 if (must_reset || hotkey_config_change != change_detector) {
2321 /* forget old state on thaw or config change */
2322 si = so;
2323 t = 0;
2324 change_detector = hotkey_config_change;
2325 }
2326 mask = hotkey_source_mask & hotkey_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002327 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002328 mutex_unlock(&hotkey_thread_data_mutex);
2329
2330 if (likely(mask)) {
2331 hotkey_read_nvram(&s[si], mask);
2332 if (likely(si != so)) {
2333 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002334 mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002335 }
2336 }
2337
2338 so = si;
2339 si ^= 1;
2340 }
2341
2342exit:
2343 mutex_unlock(&hotkey_thread_mutex);
2344 return 0;
2345}
2346
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002347/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002348static void hotkey_poll_stop_sync(void)
2349{
2350 if (tpacpi_hotkey_task) {
2351 if (frozen(tpacpi_hotkey_task) ||
2352 freezing(tpacpi_hotkey_task))
2353 thaw_process(tpacpi_hotkey_task);
2354
2355 kthread_stop(tpacpi_hotkey_task);
2356 tpacpi_hotkey_task = NULL;
2357 mutex_lock(&hotkey_thread_mutex);
2358 /* at this point, the thread did exit */
2359 mutex_unlock(&hotkey_thread_mutex);
2360 }
2361}
2362
2363/* call with hotkey_mutex held */
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002364static void hotkey_poll_setup(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002365{
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002366 u32 hotkeys_to_poll = hotkey_source_mask & hotkey_mask;
2367
2368 if (hotkeys_to_poll != 0 && hotkey_poll_freq > 0 &&
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002369 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
2370 if (!tpacpi_hotkey_task) {
2371 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002372 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002373 if (IS_ERR(tpacpi_hotkey_task)) {
2374 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002375 printk(TPACPI_ERR
2376 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002377 "for hotkey polling\n");
2378 }
2379 }
2380 } else {
2381 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002382 if (may_warn && hotkeys_to_poll != 0 &&
2383 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002384 printk(TPACPI_NOTICE
2385 "hot keys 0x%08x require polling, "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002386 "which is currently disabled\n",
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002387 hotkeys_to_poll);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002388 }
2389 }
2390}
2391
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002392static void hotkey_poll_setup_safe(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002393{
2394 mutex_lock(&hotkey_mutex);
2395 hotkey_poll_setup(may_warn);
2396 mutex_unlock(&hotkey_mutex);
2397}
2398
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002399/* call with hotkey_mutex held */
2400static void hotkey_poll_set_freq(unsigned int freq)
2401{
2402 if (!freq)
2403 hotkey_poll_stop_sync();
2404
2405 HOTKEY_CONFIG_CRITICAL_START
2406 hotkey_poll_freq = freq;
2407 HOTKEY_CONFIG_CRITICAL_END
2408}
2409
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002410#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2411
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002412static void hotkey_poll_setup_safe(bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002413{
2414}
2415
2416#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2417
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002418static int hotkey_inputdev_open(struct input_dev *dev)
2419{
2420 switch (tpacpi_lifecycle) {
2421 case TPACPI_LIFE_INIT:
2422 /*
2423 * hotkey_init will call hotkey_poll_setup_safe
2424 * at the appropriate moment
2425 */
2426 return 0;
2427 case TPACPI_LIFE_EXITING:
2428 return -EBUSY;
2429 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002430 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002431 return 0;
2432 }
2433
2434 /* Should only happen if tpacpi_lifecycle is corrupt */
2435 BUG();
2436 return -EBUSY;
2437}
2438
2439static void hotkey_inputdev_close(struct input_dev *dev)
2440{
2441 /* disable hotkey polling when possible */
2442 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002443 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002444}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002445
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002446/* sysfs hotkey enable ------------------------------------------------- */
2447static ssize_t hotkey_enable_show(struct device *dev,
2448 struct device_attribute *attr,
2449 char *buf)
2450{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002451 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002452
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002453 printk_deprecated_attribute("hotkey_enable",
2454 "Hotkey reporting is always enabled");
2455
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002456 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002457 if (res)
2458 return res;
2459
2460 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2461}
2462
2463static ssize_t hotkey_enable_store(struct device *dev,
2464 struct device_attribute *attr,
2465 const char *buf, size_t count)
2466{
2467 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002468
2469 printk_deprecated_attribute("hotkey_enable",
2470 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002471
2472 if (parse_strtoul(buf, 1, &t))
2473 return -EINVAL;
2474
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002475 if (t == 0)
2476 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002477
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002478 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002479}
2480
2481static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002482 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002483 hotkey_enable_show, hotkey_enable_store);
2484
2485/* sysfs hotkey mask --------------------------------------------------- */
2486static ssize_t hotkey_mask_show(struct device *dev,
2487 struct device_attribute *attr,
2488 char *buf)
2489{
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002490 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002491
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002492 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002493 return -ERESTARTSYS;
2494 res = hotkey_mask_get();
2495 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002496
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002497 return (res)?
2498 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002499}
2500
2501static ssize_t hotkey_mask_store(struct device *dev,
2502 struct device_attribute *attr,
2503 const char *buf, size_t count)
2504{
2505 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002506 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002507
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002508 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002509 return -EINVAL;
2510
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002511 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002512 return -ERESTARTSYS;
2513
2514 res = hotkey_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002515
2516#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002517 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002518#endif
2519
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002520 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002521
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002522 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2523
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002524 return (res) ? res : count;
2525}
2526
2527static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002528 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002529 hotkey_mask_show, hotkey_mask_store);
2530
2531/* sysfs hotkey bios_enabled ------------------------------------------- */
2532static ssize_t hotkey_bios_enabled_show(struct device *dev,
2533 struct device_attribute *attr,
2534 char *buf)
2535{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002536 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002537}
2538
2539static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002540 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002541
2542/* sysfs hotkey bios_mask ---------------------------------------------- */
2543static ssize_t hotkey_bios_mask_show(struct device *dev,
2544 struct device_attribute *attr,
2545 char *buf)
2546{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002547 printk_deprecated_attribute("hotkey_bios_mask",
2548 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002549 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002550}
2551
2552static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002553 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002554
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002555/* sysfs hotkey all_mask ----------------------------------------------- */
2556static ssize_t hotkey_all_mask_show(struct device *dev,
2557 struct device_attribute *attr,
2558 char *buf)
2559{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002560 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2561 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002562}
2563
2564static struct device_attribute dev_attr_hotkey_all_mask =
2565 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2566
2567/* sysfs hotkey recommended_mask --------------------------------------- */
2568static ssize_t hotkey_recommended_mask_show(struct device *dev,
2569 struct device_attribute *attr,
2570 char *buf)
2571{
2572 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002573 (hotkey_all_mask | hotkey_source_mask)
2574 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002575}
2576
2577static struct device_attribute dev_attr_hotkey_recommended_mask =
2578 __ATTR(hotkey_recommended_mask, S_IRUGO,
2579 hotkey_recommended_mask_show, NULL);
2580
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002581#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2582
2583/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2584static ssize_t hotkey_source_mask_show(struct device *dev,
2585 struct device_attribute *attr,
2586 char *buf)
2587{
2588 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2589}
2590
2591static ssize_t hotkey_source_mask_store(struct device *dev,
2592 struct device_attribute *attr,
2593 const char *buf, size_t count)
2594{
2595 unsigned long t;
2596
2597 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2598 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2599 return -EINVAL;
2600
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002601 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002602 return -ERESTARTSYS;
2603
2604 HOTKEY_CONFIG_CRITICAL_START
2605 hotkey_source_mask = t;
2606 HOTKEY_CONFIG_CRITICAL_END
2607
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002608 hotkey_poll_setup(true);
2609 hotkey_mask_set(hotkey_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002610
2611 mutex_unlock(&hotkey_mutex);
2612
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002613 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2614
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002615 return count;
2616}
2617
2618static struct device_attribute dev_attr_hotkey_source_mask =
2619 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2620 hotkey_source_mask_show, hotkey_source_mask_store);
2621
2622/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2623static ssize_t hotkey_poll_freq_show(struct device *dev,
2624 struct device_attribute *attr,
2625 char *buf)
2626{
2627 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2628}
2629
2630static ssize_t hotkey_poll_freq_store(struct device *dev,
2631 struct device_attribute *attr,
2632 const char *buf, size_t count)
2633{
2634 unsigned long t;
2635
2636 if (parse_strtoul(buf, 25, &t))
2637 return -EINVAL;
2638
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002639 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002640 return -ERESTARTSYS;
2641
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002642 hotkey_poll_set_freq(t);
2643 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002644
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002645 mutex_unlock(&hotkey_mutex);
2646
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002647 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2648
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002649 return count;
2650}
2651
2652static struct device_attribute dev_attr_hotkey_poll_freq =
2653 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2654 hotkey_poll_freq_show, hotkey_poll_freq_store);
2655
2656#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2657
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002658/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002659static ssize_t hotkey_radio_sw_show(struct device *dev,
2660 struct device_attribute *attr,
2661 char *buf)
2662{
Johannes Berg19d337d2009-06-02 13:01:37 +02002663 int res;
2664 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002665 if (res < 0)
2666 return res;
2667
Johannes Berg19d337d2009-06-02 13:01:37 +02002668 /* Opportunistic update */
2669 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2670
2671 return snprintf(buf, PAGE_SIZE, "%d\n",
2672 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002673}
2674
2675static struct device_attribute dev_attr_hotkey_radio_sw =
2676 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2677
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002678static void hotkey_radio_sw_notify_change(void)
2679{
2680 if (tp_features.hotkey_wlsw)
2681 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2682 "hotkey_radio_sw");
2683}
2684
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002685/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2686static ssize_t hotkey_tablet_mode_show(struct device *dev,
2687 struct device_attribute *attr,
2688 char *buf)
2689{
2690 int res, s;
2691 res = hotkey_get_tablet_mode(&s);
2692 if (res < 0)
2693 return res;
2694
2695 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2696}
2697
2698static struct device_attribute dev_attr_hotkey_tablet_mode =
2699 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2700
2701static void hotkey_tablet_mode_notify_change(void)
2702{
2703 if (tp_features.hotkey_tablet)
2704 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2705 "hotkey_tablet_mode");
2706}
2707
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002708/* sysfs hotkey report_mode -------------------------------------------- */
2709static ssize_t hotkey_report_mode_show(struct device *dev,
2710 struct device_attribute *attr,
2711 char *buf)
2712{
2713 return snprintf(buf, PAGE_SIZE, "%d\n",
2714 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2715}
2716
2717static struct device_attribute dev_attr_hotkey_report_mode =
2718 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2719
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002720/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002721static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2722 struct device_attribute *attr,
2723 char *buf)
2724{
2725 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2726}
2727
2728static struct device_attribute dev_attr_hotkey_wakeup_reason =
2729 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2730
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002731static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002732{
2733 if (tp_features.hotkey_mask)
2734 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2735 "wakeup_reason");
2736}
2737
2738/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002739static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2740 struct device_attribute *attr,
2741 char *buf)
2742{
2743 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2744}
2745
2746static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2747 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2748 hotkey_wakeup_hotunplug_complete_show, NULL);
2749
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002750static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002751{
2752 if (tp_features.hotkey_mask)
2753 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2754 "wakeup_hotunplug_complete");
2755}
2756
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002757/* --------------------------------------------------------------------- */
2758
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002759static struct attribute *hotkey_attributes[] __initdata = {
2760 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002761 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002762 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002763#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2764 &dev_attr_hotkey_mask.attr,
2765 &dev_attr_hotkey_all_mask.attr,
2766 &dev_attr_hotkey_recommended_mask.attr,
2767 &dev_attr_hotkey_source_mask.attr,
2768 &dev_attr_hotkey_poll_freq.attr,
2769#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002770};
2771
2772static struct attribute *hotkey_mask_attributes[] __initdata = {
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002773 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002774#ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2775 &dev_attr_hotkey_mask.attr,
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002776 &dev_attr_hotkey_all_mask.attr,
2777 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002778#endif
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002779 &dev_attr_hotkey_wakeup_reason.attr,
2780 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002781};
2782
Johannes Berg19d337d2009-06-02 13:01:37 +02002783/*
2784 * Sync both the hw and sw blocking state of all switches
2785 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002786static void tpacpi_send_radiosw_update(void)
2787{
2788 int wlsw;
2789
Johannes Berg19d337d2009-06-02 13:01:37 +02002790 /*
2791 * We must sync all rfkill controllers *before* issuing any
2792 * rfkill input events, or we will race the rfkill core input
2793 * handler.
2794 *
2795 * tpacpi_inputdev_send_mutex works as a syncronization point
2796 * for the above.
2797 *
2798 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2799 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002800
Johannes Berg19d337d2009-06-02 13:01:37 +02002801 wlsw = hotkey_get_wlsw();
2802
2803 /* Sync hw blocking state first if it is hw-blocked */
2804 if (wlsw == TPACPI_RFK_RADIO_OFF)
2805 tpacpi_rfk_update_hwblock_state(true);
2806
2807 /* Sync sw blocking state */
2808 tpacpi_rfk_update_swstate_all();
2809
2810 /* Sync hw blocking state last if it is hw-unblocked */
2811 if (wlsw == TPACPI_RFK_RADIO_ON)
2812 tpacpi_rfk_update_hwblock_state(false);
2813
2814 /* Issue rfkill input event for WLSW switch */
2815 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002816 mutex_lock(&tpacpi_inputdev_send_mutex);
2817
2818 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02002819 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002820 input_sync(tpacpi_inputdev);
2821
2822 mutex_unlock(&tpacpi_inputdev_send_mutex);
2823 }
Johannes Berg19d337d2009-06-02 13:01:37 +02002824
2825 /*
2826 * this can be unconditional, as we will poll state again
2827 * if userspace uses the notify to read data
2828 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002829 hotkey_radio_sw_notify_change();
2830}
2831
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002832static void hotkey_exit(void)
2833{
2834#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002835 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002836 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002837 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002838#endif
2839
2840 if (hotkey_dev_attributes)
2841 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2842
2843 kfree(hotkey_keycode_map);
2844
2845 if (tp_features.hotkey) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002846 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002847 "restoring original hot key mask\n");
2848 /* no short-circuit boolean operator below! */
2849 if ((hotkey_mask_set(hotkey_orig_mask) |
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002850 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002851 printk(TPACPI_ERR
2852 "failed to restore hot key mask "
2853 "to BIOS defaults\n");
2854 }
2855}
2856
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002857static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002858{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002859 /* Requirements for changing the default keymaps:
2860 *
2861 * 1. Many of the keys are mapped to KEY_RESERVED for very
2862 * good reasons. Do not change them unless you have deep
2863 * knowledge on the IBM and Lenovo ThinkPad firmware for
2864 * the various ThinkPad models. The driver behaves
2865 * differently for KEY_RESERVED: such keys have their
2866 * hot key mask *unset* in mask_recommended, and also
2867 * in the initial hot key mask programmed into the
2868 * firmware at driver load time, which means the firm-
2869 * ware may react very differently if you change them to
2870 * something else;
2871 *
2872 * 2. You must be subscribed to the linux-thinkpad and
2873 * ibm-acpi-devel mailing lists, and you should read the
2874 * list archives since 2007 if you want to change the
2875 * keymaps. This requirement exists so that you will
2876 * know the past history of problems with the thinkpad-
2877 * acpi driver keymaps, and also that you will be
2878 * listening to any bug reports;
2879 *
2880 * 3. Do not send thinkpad-acpi specific patches directly to
2881 * for merging, *ever*. Send them to the linux-acpi
2882 * mailinglist for comments. Merging is to be done only
2883 * through acpi-test and the ACPI maintainer.
2884 *
2885 * If the above is too much to ask, don't change the keymap.
2886 * Ask the thinkpad-acpi maintainer to do it, instead.
2887 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002888 static u16 ibm_keycode_map[] __initdata = {
2889 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
2890 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
2891 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
2892 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002893
2894 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002895 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
2896 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2897 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002898
2899 /* brightness: firmware always reacts to them, unless
2900 * X.org did some tricks in the radeon BIOS scratch
2901 * registers of *some* models */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002902 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002903 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002904
2905 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002906 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002907
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002908 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2909 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002910
2911 /* Volume: firmware always react to it and reprograms
2912 * the built-in *extra* mixer. Never map it to control
2913 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002914 KEY_RESERVED, /* 0x14: VOLUME UP */
2915 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2916 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002917
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002918 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002919
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002920 /* (assignments unknown, please report if found) */
2921 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2922 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2923 };
2924 static u16 lenovo_keycode_map[] __initdata = {
2925 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
2926 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
2927 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
2928 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002929
2930 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002931 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
2932 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2933 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002934
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03002935 /* These either have to go through ACPI video, or
2936 * act like in the IBM ThinkPads, so don't ever
2937 * enable them by default */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002938 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002939 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002940
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002941 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002942
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002943 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2944 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002945
2946 /* Volume: z60/z61, T60 (BIOS version?): firmware always
2947 * react to it and reprograms the built-in *extra* mixer.
2948 * Never map it to control another mixer by default.
2949 *
2950 * T60?, T61, R60?, R61: firmware and EC tries to send
2951 * these over the regular keyboard, so these are no-ops,
2952 * but there are still weird bugs re. MUTE, so do not
2953 * change unless you get test reports from all Lenovo
2954 * models. May cause the BIOS to interfere with the
2955 * HDA mixer.
2956 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002957 KEY_RESERVED, /* 0x14: VOLUME UP */
2958 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2959 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002960
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002961 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002962
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002963 /* (assignments unknown, please report if found) */
2964 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2965 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2966 };
2967
2968#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
2969#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
2970#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
2971
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002972 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002973 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03002974 int hkeyv;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03002975
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002976 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
2977 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002978
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002979 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002980 BUG_ON(tpacpi_inputdev->open != NULL ||
2981 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002982
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002983 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002984 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002985
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002986#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2987 mutex_init(&hotkey_thread_mutex);
2988 mutex_init(&hotkey_thread_data_mutex);
2989#endif
2990
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002991 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002992 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002993
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002994 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
2995 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002996 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002997
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002998 if (!tp_features.hotkey)
2999 return 1;
3000
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003001 tpacpi_disable_brightness_delay();
3002
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003003 hotkey_dev_attributes = create_attr_set(13, NULL);
3004 if (!hotkey_dev_attributes)
3005 return -ENOMEM;
3006 res = add_many_to_attr_set(hotkey_dev_attributes,
3007 hotkey_attributes,
3008 ARRAY_SIZE(hotkey_attributes));
3009 if (res)
3010 goto err_exit;
3011
3012 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3013 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3014 for HKEY interface version 0x100 */
3015 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3016 if ((hkeyv >> 8) != 1) {
3017 printk(TPACPI_ERR "unknown version of the "
3018 "HKEY interface: 0x%x\n", hkeyv);
3019 printk(TPACPI_ERR "please report this to %s\n",
3020 TPACPI_MAIL);
3021 } else {
3022 /*
3023 * MHKV 0x100 in A31, R40, R40e,
3024 * T4x, X31, and later
3025 */
3026 tp_features.hotkey_mask = 1;
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003027 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3028 "firmware HKEY interface version: 0x%x\n",
3029 hkeyv);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003030 }
3031 }
3032
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003033 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3034 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003035 str_supported(tp_features.hotkey_mask));
3036
3037 if (tp_features.hotkey_mask) {
3038 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3039 "MHKA", "qd")) {
3040 printk(TPACPI_ERR
3041 "missing MHKA handler, "
3042 "please report this to %s\n",
3043 TPACPI_MAIL);
3044 /* FN+F12, FN+F4, FN+F3 */
3045 hotkey_all_mask = 0x080cU;
3046 }
3047 }
3048
3049 /* hotkey_source_mask *must* be zero for
3050 * the first hotkey_mask_get */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003051 if (tp_features.hotkey_mask) {
3052 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003053 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003054 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003055
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003056 hotkey_orig_mask = hotkey_mask;
3057 res = add_many_to_attr_set(
3058 hotkey_dev_attributes,
3059 hotkey_mask_attributes,
3060 ARRAY_SIZE(hotkey_mask_attributes));
3061 if (res)
3062 goto err_exit;
3063 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003064
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003065#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003066 if (tp_features.hotkey_mask) {
3067 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3068 & ~hotkey_all_mask;
3069 } else {
3070 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
3071 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003072
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003073 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003074 "hotkey source mask 0x%08x, polling freq %u\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003075 hotkey_source_mask, hotkey_poll_freq);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003076#endif
3077
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003078#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3079 if (dbg_wlswemul) {
3080 tp_features.hotkey_wlsw = 1;
3081 printk(TPACPI_INFO
3082 "radio switch emulation enabled\n");
3083 } else
3084#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003085 /* Not all thinkpads have a hardware radio switch */
3086 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3087 tp_features.hotkey_wlsw = 1;
3088 printk(TPACPI_INFO
3089 "radio switch found; radios are %s\n",
3090 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003091 }
3092 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003093 res = add_to_attr_set(hotkey_dev_attributes,
3094 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003095
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003096 /* For X41t, X60t, X61t Tablets... */
3097 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3098 tp_features.hotkey_tablet = 1;
3099 printk(TPACPI_INFO
3100 "possible tablet mode switch found; "
3101 "ThinkPad in %s mode\n",
3102 (status & TP_HOTKEY_TABLET_MASK)?
3103 "tablet" : "laptop");
3104 res = add_to_attr_set(hotkey_dev_attributes,
3105 &dev_attr_hotkey_tablet_mode.attr);
3106 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003107
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003108 if (!res)
3109 res = register_attr_set_with_sysfs(
3110 hotkey_dev_attributes,
3111 &tpacpi_pdev->dev.kobj);
3112 if (res)
3113 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003114
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003115 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003116
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003117 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3118 GFP_KERNEL);
3119 if (!hotkey_keycode_map) {
3120 printk(TPACPI_ERR
3121 "failed to allocate memory for key map\n");
3122 res = -ENOMEM;
3123 goto err_exit;
3124 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003125
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003126 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003127 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003128 "using Lenovo default hot key map\n");
3129 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3130 TPACPI_HOTKEY_MAP_SIZE);
3131 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003132 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003133 "using IBM default hot key map\n");
3134 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3135 TPACPI_HOTKEY_MAP_SIZE);
3136 }
3137
3138 set_bit(EV_KEY, tpacpi_inputdev->evbit);
3139 set_bit(EV_MSC, tpacpi_inputdev->evbit);
3140 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
3141 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3142 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3143 tpacpi_inputdev->keycode = hotkey_keycode_map;
3144 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3145 if (hotkey_keycode_map[i] != KEY_RESERVED) {
3146 set_bit(hotkey_keycode_map[i],
3147 tpacpi_inputdev->keybit);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003148 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003149 if (i < sizeof(hotkey_reserved_mask)*8)
3150 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003151 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003152 }
3153
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003154 if (tp_features.hotkey_wlsw) {
3155 set_bit(EV_SW, tpacpi_inputdev->evbit);
3156 set_bit(SW_RFKILL_ALL, tpacpi_inputdev->swbit);
3157 }
3158 if (tp_features.hotkey_tablet) {
3159 set_bit(EV_SW, tpacpi_inputdev->evbit);
3160 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003161 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003162
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003163 /* Do not issue duplicate brightness change events to
3164 * userspace */
3165 if (!tp_features.bright_acpimode)
3166 /* update bright_acpimode... */
3167 tpacpi_check_std_acpi_brightness_support();
3168
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003169 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003170 printk(TPACPI_INFO
3171 "This ThinkPad has standard ACPI backlight "
3172 "brightness control, supported by the ACPI "
3173 "video driver\n");
3174 printk(TPACPI_NOTICE
3175 "Disabling thinkpad-acpi brightness events "
3176 "by default...\n");
3177
3178 /* The hotkey_reserved_mask change below is not
3179 * necessary while the keys are at KEY_RESERVED in the
3180 * default map, but better safe than sorry, leave it
3181 * here as a marker of what we have to do, especially
3182 * when we finally become able to set this at runtime
3183 * on response to X.org requests */
3184 hotkey_reserved_mask |=
3185 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3186 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003187 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003188
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003189 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3190 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003191 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003192 if (res) {
3193 hotkey_exit();
3194 return res;
3195 }
3196 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
3197 & ~hotkey_reserved_mask)
3198 | hotkey_orig_mask);
3199 if (res < 0 && res != -ENXIO) {
3200 hotkey_exit();
3201 return res;
3202 }
3203
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003204 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3205 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003206 (hotkey_report_mode < 2) ?
3207 "enabled" : "disabled");
3208
3209 tpacpi_inputdev->open = &hotkey_inputdev_open;
3210 tpacpi_inputdev->close = &hotkey_inputdev_close;
3211
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003212 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003213 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003214 tpacpi_input_send_tabletsw();
3215
3216 return 0;
3217
3218err_exit:
3219 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3220 hotkey_dev_attributes = NULL;
3221
3222 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003223}
3224
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003225static bool hotkey_notify_hotkey(const u32 hkey,
3226 bool *send_acpi_ev,
3227 bool *ignore_acpi_ev)
3228{
3229 /* 0x1000-0x1FFF: key presses */
3230 unsigned int scancode = hkey & 0xfff;
3231 *send_acpi_ev = true;
3232 *ignore_acpi_ev = false;
3233
3234 if (scancode > 0 && scancode < 0x21) {
3235 scancode--;
3236 if (!(hotkey_source_mask & (1 << scancode))) {
3237 tpacpi_input_send_key(scancode);
3238 *send_acpi_ev = false;
3239 } else {
3240 *ignore_acpi_ev = true;
3241 }
3242 return true;
3243 }
3244 return false;
3245}
3246
3247static bool hotkey_notify_wakeup(const u32 hkey,
3248 bool *send_acpi_ev,
3249 bool *ignore_acpi_ev)
3250{
3251 /* 0x2000-0x2FFF: Wakeup reason */
3252 *send_acpi_ev = true;
3253 *ignore_acpi_ev = false;
3254
3255 switch (hkey) {
3256 case 0x2304: /* suspend, undock */
3257 case 0x2404: /* hibernation, undock */
3258 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3259 *ignore_acpi_ev = true;
3260 break;
3261
3262 case 0x2305: /* suspend, bay eject */
3263 case 0x2405: /* hibernation, bay eject */
3264 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3265 *ignore_acpi_ev = true;
3266 break;
3267
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003268 case 0x2313: /* Battery on critical low level (S3) */
3269 case 0x2413: /* Battery on critical low level (S4) */
3270 printk(TPACPI_ALERT
3271 "EMERGENCY WAKEUP: battery almost empty\n");
3272 /* how to auto-heal: */
3273 /* 2313: woke up from S3, go to S4/S5 */
3274 /* 2413: woke up from S4, go to S5 */
3275 break;
3276
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003277 default:
3278 return false;
3279 }
3280
3281 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3282 printk(TPACPI_INFO
3283 "woke up due to a hot-unplug "
3284 "request...\n");
3285 hotkey_wakeup_reason_notify_change();
3286 }
3287 return true;
3288}
3289
3290static bool hotkey_notify_usrevent(const u32 hkey,
3291 bool *send_acpi_ev,
3292 bool *ignore_acpi_ev)
3293{
3294 /* 0x5000-0x5FFF: human interface helpers */
3295 *send_acpi_ev = true;
3296 *ignore_acpi_ev = false;
3297
3298 switch (hkey) {
3299 case 0x5010: /* Lenovo new BIOS: brightness changed */
3300 case 0x500b: /* X61t: tablet pen inserted into bay */
3301 case 0x500c: /* X61t: tablet pen removed from bay */
3302 return true;
3303
3304 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
3305 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
3306 tpacpi_input_send_tabletsw();
3307 hotkey_tablet_mode_notify_change();
3308 *send_acpi_ev = false;
3309 return true;
3310
3311 case 0x5001:
3312 case 0x5002:
3313 /* LID switch events. Do not propagate */
3314 *ignore_acpi_ev = true;
3315 return true;
3316
3317 default:
3318 return false;
3319 }
3320}
3321
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003322static bool hotkey_notify_thermal(const u32 hkey,
3323 bool *send_acpi_ev,
3324 bool *ignore_acpi_ev)
3325{
3326 /* 0x6000-0x6FFF: thermal alarms */
3327 *send_acpi_ev = true;
3328 *ignore_acpi_ev = false;
3329
3330 switch (hkey) {
3331 case 0x6011:
3332 printk(TPACPI_CRIT
3333 "THERMAL ALARM: battery is too hot!\n");
3334 /* recommended action: warn user through gui */
3335 return true;
3336 case 0x6012:
3337 printk(TPACPI_ALERT
3338 "THERMAL EMERGENCY: battery is extremely hot!\n");
3339 /* recommended action: immediate sleep/hibernate */
3340 return true;
3341 case 0x6021:
3342 printk(TPACPI_CRIT
3343 "THERMAL ALARM: "
3344 "a sensor reports something is too hot!\n");
3345 /* recommended action: warn user through gui, that */
3346 /* some internal component is too hot */
3347 return true;
3348 case 0x6022:
3349 printk(TPACPI_ALERT
3350 "THERMAL EMERGENCY: "
3351 "a sensor reports something is extremely hot!\n");
3352 /* recommended action: immediate sleep/hibernate */
3353 return true;
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003354 case 0x6030:
3355 printk(TPACPI_INFO
3356 "EC reports that Thermal Table has changed\n");
3357 /* recommended action: do nothing, we don't have
3358 * Lenovo ATM information */
3359 return true;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003360 default:
3361 printk(TPACPI_ALERT
3362 "THERMAL ALERT: unknown thermal alarm received\n");
3363 return false;
3364 }
3365}
3366
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003367static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3368{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003369 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003370 bool send_acpi_ev;
3371 bool ignore_acpi_ev;
3372 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003373
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003374 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003375 printk(TPACPI_ERR
3376 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003377 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003378 acpi_bus_generate_netlink_event(
3379 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003380 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003381 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003382 return;
3383 }
3384
3385 while (1) {
3386 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003387 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003388 return;
3389 }
3390
3391 if (hkey == 0) {
3392 /* queue empty */
3393 return;
3394 }
3395
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003396 send_acpi_ev = true;
3397 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003398
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003399 switch (hkey >> 12) {
3400 case 1:
3401 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003402 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3403 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003404 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003405 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003406 /* 0x2000-0x2FFF: Wakeup reason */
3407 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3408 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003409 break;
3410 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003411 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003412 if (hkey == 0x3003) {
3413 hotkey_autosleep_ack = 1;
3414 printk(TPACPI_INFO
3415 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003416 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003417 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003418 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003419 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003420 }
3421 break;
3422 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003423 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003424 if (hkey == 0x4003) {
3425 hotkey_autosleep_ack = 1;
3426 printk(TPACPI_INFO
3427 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003428 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003429 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003430 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003431 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003432 }
3433 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003434 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003435 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003436 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3437 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003438 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003439 case 6:
3440 /* 0x6000-0x6FFF: thermal alarms */
3441 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3442 &ignore_acpi_ev);
3443 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003444 case 7:
3445 /* 0x7000-0x7FFF: misc */
3446 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003447 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003448 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003449 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003450 break;
3451 }
3452 /* fallthrough to default */
3453 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003454 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003455 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003456 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003457 printk(TPACPI_NOTICE
3458 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003459 printk(TPACPI_NOTICE
3460 "please report the conditions when this "
3461 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003462 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003463
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003464 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003465 if (!ignore_acpi_ev &&
3466 (send_acpi_ev || hotkey_report_mode < 2)) {
3467 acpi_bus_generate_proc_event(ibm->acpi->device,
3468 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003469 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003470
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003471 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003472 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003473 acpi_bus_generate_netlink_event(
3474 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003475 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003476 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003477 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003478 }
3479}
3480
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003481static void hotkey_suspend(pm_message_t state)
3482{
3483 /* Do these on suspend, we get the events on early resume! */
3484 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3485 hotkey_autosleep_ack = 0;
3486}
3487
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003488static void hotkey_resume(void)
3489{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003490 tpacpi_disable_brightness_delay();
3491
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003492 if (hotkey_mask_get())
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003493 printk(TPACPI_ERR
3494 "error while trying to read hot key mask "
3495 "from firmware\n");
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003496 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003497 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003498 hotkey_wakeup_reason_notify_change();
3499 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003500 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003501}
3502
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003503/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003504static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003506 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 int len = 0;
3508
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003509 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003510 len += sprintf(p + len, "status:\t\tnot supported\n");
3511 return len;
3512 }
3513
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003514 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003515 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003516 res = hotkey_status_get(&status);
3517 if (!res)
3518 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003519 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003520 if (res)
3521 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003524 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003525 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 len += sprintf(p + len,
3527 "commands:\tenable, disable, reset, <mask>\n");
3528 } else {
3529 len += sprintf(p + len, "mask:\t\tnot supported\n");
3530 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
3531 }
3532
3533 return len;
3534}
3535
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003536static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003537{
3538 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003539 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3540 TPACPI_WARN
3541 "hotkey enable/disable functionality has been "
3542 "removed from the driver. Hotkeys are always "
3543 "enabled\n"))
3544 printk(TPACPI_ERR
3545 "Please remove the hotkey=enable module "
3546 "parameter, it is deprecated. Hotkeys are always "
3547 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003548}
3549
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003550static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003552 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003553 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003556 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 return -ENODEV;
3558
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003559 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003560 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003561
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003562 mask = hotkey_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003563
3564 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 while ((cmd = next_cmd(&buf))) {
3566 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003567 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003569 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003570 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003572 mask = (hotkey_all_mask | hotkey_source_mask)
3573 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3575 /* mask set */
3576 } else if (sscanf(cmd, "%x", &mask) == 1) {
3577 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003578 } else {
3579 res = -EINVAL;
3580 goto errexit;
3581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003583
3584 if (!res)
3585 tpacpi_disclose_usertask("procfs hotkey",
3586 "set mask to 0x%08x\n", mask);
3587
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003588 if (!res && mask != hotkey_mask)
3589 res = hotkey_mask_set(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003591errexit:
3592 mutex_unlock(&hotkey_mutex);
3593 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003594}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003596static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003597 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003598 {"", 0},
3599};
3600
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003601static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003602 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003603 .notify = hotkey_notify,
3604 .handle = &hkey_handle,
3605 .type = ACPI_DEVICE_NOTIFY,
3606};
3607
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003608static struct ibm_struct hotkey_driver_data = {
3609 .name = "hotkey",
3610 .read = hotkey_read,
3611 .write = hotkey_write,
3612 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003613 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003614 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003615 .acpi = &ibm_hotkey_acpidriver,
3616};
3617
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003618/*************************************************************************
3619 * Bluetooth subdriver
3620 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003622enum {
3623 /* ACPI GBDC/SBDC bits */
3624 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3625 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003626 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
3627 off / last state */
3628};
3629
3630enum {
3631 /* ACPI \BLTH commands */
3632 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3633 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3634 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3635 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3636 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003637};
3638
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003639#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3640
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003641static void bluetooth_suspend(pm_message_t state)
3642{
3643 /* Try to make sure radio will resume powered off */
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003644 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3645 TP_ACPI_BLTH_PWR_OFF_ON_RESUME))
3646 vdbg_printk(TPACPI_DBG_RFKILL,
3647 "bluetooth power down on resume request failed\n");
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003648}
3649
Johannes Berg19d337d2009-06-02 13:01:37 +02003650static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003651{
3652 int status;
3653
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003654#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3655 if (dbg_bluetoothemul)
3656 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003657 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003658#endif
3659
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003660 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3661 return -EIO;
3662
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003663 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003664 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003665}
3666
Johannes Berg19d337d2009-06-02 13:01:37 +02003667static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003668{
3669 int status;
3670
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003671 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003672 "will attempt to %s bluetooth\n",
3673 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003674
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003675#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3676 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003677 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003678 return 0;
3679 }
3680#endif
3681
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003682 /* We make sure to keep TP_ACPI_BLUETOOTH_RESUMECTRL off */
Johannes Berg19d337d2009-06-02 13:01:37 +02003683 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003684 status = TP_ACPI_BLUETOOTH_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003685 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003686 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003687
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003688 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3689 return -EIO;
3690
3691 return 0;
3692}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003693
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003694/* sysfs bluetooth enable ---------------------------------------------- */
3695static ssize_t bluetooth_enable_show(struct device *dev,
3696 struct device_attribute *attr,
3697 char *buf)
3698{
Johannes Berg19d337d2009-06-02 13:01:37 +02003699 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3700 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003701}
3702
3703static ssize_t bluetooth_enable_store(struct device *dev,
3704 struct device_attribute *attr,
3705 const char *buf, size_t count)
3706{
Johannes Berg19d337d2009-06-02 13:01:37 +02003707 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3708 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003709}
3710
3711static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003712 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003713 bluetooth_enable_show, bluetooth_enable_store);
3714
3715/* --------------------------------------------------------------------- */
3716
3717static struct attribute *bluetooth_attributes[] = {
3718 &dev_attr_bluetooth_enable.attr,
3719 NULL
3720};
3721
3722static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003723 .attrs = bluetooth_attributes,
3724};
3725
Johannes Berg19d337d2009-06-02 13:01:37 +02003726static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3727 .get_status = bluetooth_get_status,
3728 .set_status = bluetooth_set_status,
3729};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003730
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003731static void bluetooth_shutdown(void)
3732{
3733 /* Order firmware to save current state to NVRAM */
3734 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3735 TP_ACPI_BLTH_SAVE_STATE))
3736 printk(TPACPI_NOTICE
3737 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003738 else
3739 vdbg_printk(TPACPI_DBG_RFKILL,
3740 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003741}
3742
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003743static void bluetooth_exit(void)
3744{
3745 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3746 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003747
3748 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
3749
3750 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003751}
3752
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003753static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003755 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003756 int status = 0;
3757
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003758 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3759 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003760
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003761 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003762
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003763 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3764 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003765 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003766 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003768 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3769 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003770 str_supported(tp_features.bluetooth),
3771 status);
3772
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003773#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3774 if (dbg_bluetoothemul) {
3775 tp_features.bluetooth = 1;
3776 printk(TPACPI_INFO
3777 "bluetooth switch emulation enabled\n");
3778 } else
3779#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003780 if (tp_features.bluetooth &&
3781 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
3782 /* no bluetooth hardware present in system */
3783 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003784 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003785 "bluetooth hardware not installed\n");
3786 }
3787
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003788 if (!tp_features.bluetooth)
3789 return 1;
3790
Johannes Berg19d337d2009-06-02 13:01:37 +02003791 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
3792 &bluetooth_tprfk_ops,
3793 RFKILL_TYPE_BLUETOOTH,
3794 TPACPI_RFK_BLUETOOTH_SW_NAME,
3795 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003796 if (res)
3797 return res;
3798
Johannes Berg19d337d2009-06-02 13:01:37 +02003799 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
3800 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003801 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003802 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003803 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003804 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003805
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807}
3808
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003809/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003810static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
Johannes Berg19d337d2009-06-02 13:01:37 +02003812 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813}
3814
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003815static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Johannes Berg19d337d2009-06-02 13:01:37 +02003817 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818}
3819
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003820static struct ibm_struct bluetooth_driver_data = {
3821 .name = "bluetooth",
3822 .read = bluetooth_read,
3823 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003824 .exit = bluetooth_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003825 .suspend = bluetooth_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003826 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003827};
3828
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003829/*************************************************************************
3830 * Wan subdriver
3831 */
3832
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003833enum {
3834 /* ACPI GWAN/SWAN bits */
3835 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
3836 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003837 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
3838 off / last state */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003839};
3840
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003841#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
3842
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003843static void wan_suspend(pm_message_t state)
3844{
3845 /* Try to make sure radio will resume powered off */
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003846 if (!acpi_evalf(NULL, NULL, "\\WGSV", "qvd",
3847 TP_ACPI_WGSV_PWR_OFF_ON_RESUME))
3848 vdbg_printk(TPACPI_DBG_RFKILL,
3849 "WWAN power down on resume request failed\n");
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003850}
3851
Johannes Berg19d337d2009-06-02 13:01:37 +02003852static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003853{
3854 int status;
3855
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003856#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3857 if (dbg_wwanemul)
3858 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003859 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003860#endif
3861
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003862 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
3863 return -EIO;
3864
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003865 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003866 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003867}
3868
Johannes Berg19d337d2009-06-02 13:01:37 +02003869static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003870{
3871 int status;
3872
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003873 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003874 "will attempt to %s wwan\n",
3875 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003876
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003877#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3878 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003879 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003880 return 0;
3881 }
3882#endif
3883
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003884 /* We make sure to keep TP_ACPI_WANCARD_RESUMECTRL off */
Johannes Berg19d337d2009-06-02 13:01:37 +02003885 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003886 status = TP_ACPI_WANCARD_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003887 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003888 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003889
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003890 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
3891 return -EIO;
3892
3893 return 0;
3894}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003895
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003896/* sysfs wan enable ---------------------------------------------------- */
3897static ssize_t wan_enable_show(struct device *dev,
3898 struct device_attribute *attr,
3899 char *buf)
3900{
Johannes Berg19d337d2009-06-02 13:01:37 +02003901 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
3902 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003903}
3904
3905static ssize_t wan_enable_store(struct device *dev,
3906 struct device_attribute *attr,
3907 const char *buf, size_t count)
3908{
Johannes Berg19d337d2009-06-02 13:01:37 +02003909 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
3910 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003911}
3912
3913static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003914 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003915 wan_enable_show, wan_enable_store);
3916
3917/* --------------------------------------------------------------------- */
3918
3919static struct attribute *wan_attributes[] = {
3920 &dev_attr_wan_enable.attr,
3921 NULL
3922};
3923
3924static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003925 .attrs = wan_attributes,
3926};
3927
Johannes Berg19d337d2009-06-02 13:01:37 +02003928static const struct tpacpi_rfk_ops wan_tprfk_ops = {
3929 .get_status = wan_get_status,
3930 .set_status = wan_set_status,
3931};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003932
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003933static void wan_shutdown(void)
3934{
3935 /* Order firmware to save current state to NVRAM */
3936 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
3937 TP_ACPI_WGSV_SAVE_STATE))
3938 printk(TPACPI_NOTICE
3939 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003940 else
3941 vdbg_printk(TPACPI_DBG_RFKILL,
3942 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003943}
3944
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003945static void wan_exit(void)
3946{
3947 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3948 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003949
3950 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
3951
3952 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003953}
3954
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003955static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003956{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003957 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003958 int status = 0;
3959
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003960 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3961 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003962
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003963 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003964
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003965 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003966 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003967
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003968 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3969 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003970 str_supported(tp_features.wan),
3971 status);
3972
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003973#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3974 if (dbg_wwanemul) {
3975 tp_features.wan = 1;
3976 printk(TPACPI_INFO
3977 "wwan switch emulation enabled\n");
3978 } else
3979#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003980 if (tp_features.wan &&
3981 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
3982 /* no wan hardware present in system */
3983 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003984 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003985 "wan hardware not installed\n");
3986 }
3987
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003988 if (!tp_features.wan)
3989 return 1;
3990
Johannes Berg19d337d2009-06-02 13:01:37 +02003991 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
3992 &wan_tprfk_ops,
3993 RFKILL_TYPE_WWAN,
3994 TPACPI_RFK_WWAN_SW_NAME,
3995 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003996 if (res)
3997 return res;
3998
Johannes Berg19d337d2009-06-02 13:01:37 +02003999 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4000 &wan_attr_group);
4001
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004002 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004003 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004004 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004005 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004006
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004007 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004008}
4009
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004010/* procfs -------------------------------------------------------------- */
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004011static int wan_read(char *p)
4012{
Johannes Berg19d337d2009-06-02 13:01:37 +02004013 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, p);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004014}
4015
4016static int wan_write(char *buf)
4017{
Johannes Berg19d337d2009-06-02 13:01:37 +02004018 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004019}
4020
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004021static struct ibm_struct wan_driver_data = {
4022 .name = "wan",
4023 .read = wan_read,
4024 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004025 .exit = wan_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004026 .suspend = wan_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004027 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004028};
4029
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004030/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004031 * UWB subdriver
4032 */
4033
4034enum {
4035 /* ACPI GUWB/SUWB bits */
4036 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4037 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4038};
4039
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004040#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4041
Johannes Berg19d337d2009-06-02 13:01:37 +02004042static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004043{
4044 int status;
4045
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004046#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4047 if (dbg_uwbemul)
4048 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004049 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004050#endif
4051
4052 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4053 return -EIO;
4054
4055 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004056 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004057}
4058
Johannes Berg19d337d2009-06-02 13:01:37 +02004059static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004060{
4061 int status;
4062
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004063 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004064 "will attempt to %s UWB\n",
4065 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004066
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004067#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4068 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004069 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004070 return 0;
4071 }
4072#endif
4073
Johannes Berg19d337d2009-06-02 13:01:37 +02004074 if (state == TPACPI_RFK_RADIO_ON)
4075 status = TP_ACPI_UWB_RADIOSSW;
4076 else
4077 status = 0;
4078
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004079 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4080 return -EIO;
4081
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004082 return 0;
4083}
4084
4085/* --------------------------------------------------------------------- */
4086
Johannes Berg19d337d2009-06-02 13:01:37 +02004087static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4088 .get_status = uwb_get_status,
4089 .set_status = uwb_set_status,
4090};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004091
4092static void uwb_exit(void)
4093{
Johannes Berg19d337d2009-06-02 13:01:37 +02004094 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004095}
4096
4097static int __init uwb_init(struct ibm_init_struct *iibm)
4098{
4099 int res;
4100 int status = 0;
4101
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004102 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4103 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004104
4105 TPACPI_ACPIHANDLE_INIT(hkey);
4106
4107 tp_features.uwb = hkey_handle &&
4108 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4109
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004110 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4111 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004112 str_supported(tp_features.uwb),
4113 status);
4114
4115#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4116 if (dbg_uwbemul) {
4117 tp_features.uwb = 1;
4118 printk(TPACPI_INFO
4119 "uwb switch emulation enabled\n");
4120 } else
4121#endif
4122 if (tp_features.uwb &&
4123 !(status & TP_ACPI_UWB_HWPRESENT)) {
4124 /* no uwb hardware present in system */
4125 tp_features.uwb = 0;
4126 dbg_printk(TPACPI_DBG_INIT,
4127 "uwb hardware not installed\n");
4128 }
4129
4130 if (!tp_features.uwb)
4131 return 1;
4132
4133 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004134 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004135 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004136 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004137 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004138 return res;
4139}
4140
4141static struct ibm_struct uwb_driver_data = {
4142 .name = "uwb",
4143 .exit = uwb_exit,
4144 .flags.experimental = 1,
4145};
4146
4147/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004148 * Video subdriver
4149 */
4150
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004151#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4152
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004153enum video_access_mode {
4154 TPACPI_VIDEO_NONE = 0,
4155 TPACPI_VIDEO_570, /* 570 */
4156 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4157 TPACPI_VIDEO_NEW, /* all others */
4158};
4159
4160enum { /* video status flags, based on VIDEO_570 */
4161 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4162 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4163 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4164};
4165
4166enum { /* TPACPI_VIDEO_570 constants */
4167 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4168 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4169 * video_status_flags */
4170 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4171 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4172};
4173
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004174static enum video_access_mode video_supported;
4175static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004176
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004177static int video_autosw_get(void);
4178static int video_autosw_set(int enable);
4179
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004180TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004181
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004182static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004184 int ivga;
4185
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004186 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4187
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004188 TPACPI_ACPIHANDLE_INIT(vid);
4189 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004190
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004191 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4192 /* G41, assume IVGA doesn't change */
4193 vid_handle = vid2_handle;
4194
4195 if (!vid_handle)
4196 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004197 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004198 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
4199 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004200 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004201 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
4202 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004203 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004204 else
4205 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004206 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004208 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4209 str_supported(video_supported != TPACPI_VIDEO_NONE),
4210 video_supported);
4211
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004212 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213}
4214
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004215static void video_exit(void)
4216{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004217 dbg_printk(TPACPI_DBG_EXIT,
4218 "restoring original video autoswitch mode\n");
4219 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004220 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004221 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004222}
4223
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004224static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225{
4226 int status = 0;
4227 int i;
4228
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004229 switch (video_supported) {
4230 case TPACPI_VIDEO_570:
4231 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4232 TP_ACPI_VIDEO_570_PHSCMD))
4233 return -EIO;
4234 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4235 break;
4236 case TPACPI_VIDEO_770:
4237 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4238 return -EIO;
4239 if (i)
4240 status |= TP_ACPI_VIDEO_S_LCD;
4241 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4242 return -EIO;
4243 if (i)
4244 status |= TP_ACPI_VIDEO_S_CRT;
4245 break;
4246 case TPACPI_VIDEO_NEW:
4247 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4248 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4249 return -EIO;
4250 if (i)
4251 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004253 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4254 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4255 return -EIO;
4256 if (i)
4257 status |= TP_ACPI_VIDEO_S_LCD;
4258 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4259 return -EIO;
4260 if (i)
4261 status |= TP_ACPI_VIDEO_S_DVI;
4262 break;
4263 default:
4264 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
4267 return status;
4268}
4269
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004270static int video_outputsw_set(int status)
4271{
4272 int autosw;
4273 int res = 0;
4274
4275 switch (video_supported) {
4276 case TPACPI_VIDEO_570:
4277 res = acpi_evalf(NULL, NULL,
4278 "\\_SB.PHS2", "vdd",
4279 TP_ACPI_VIDEO_570_PHS2CMD,
4280 status | TP_ACPI_VIDEO_570_PHS2SET);
4281 break;
4282 case TPACPI_VIDEO_770:
4283 autosw = video_autosw_get();
4284 if (autosw < 0)
4285 return autosw;
4286
4287 res = video_autosw_set(1);
4288 if (res)
4289 return res;
4290 res = acpi_evalf(vid_handle, NULL,
4291 "ASWT", "vdd", status * 0x100, 0);
4292 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004293 printk(TPACPI_ERR
4294 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004295 return -EIO;
4296 }
4297 break;
4298 case TPACPI_VIDEO_NEW:
4299 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004300 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004301 break;
4302 default:
4303 return -ENOSYS;
4304 }
4305
4306 return (res)? 0 : -EIO;
4307}
4308
4309static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004311 int autosw = 0;
4312
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004313 switch (video_supported) {
4314 case TPACPI_VIDEO_570:
4315 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4316 return -EIO;
4317 break;
4318 case TPACPI_VIDEO_770:
4319 case TPACPI_VIDEO_NEW:
4320 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4321 return -EIO;
4322 break;
4323 default:
4324 return -ENOSYS;
4325 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004326
4327 return autosw & 1;
4328}
4329
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004330static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004331{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004332 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004333 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004334 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004335}
4336
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004337static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004338{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004339 int autosw = video_autosw_get();
4340 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004341
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004342 if (autosw < 0)
4343 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004344
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004345 switch (video_supported) {
4346 case TPACPI_VIDEO_570:
4347 res = video_autosw_set(1);
4348 if (res)
4349 return res;
4350 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4351 break;
4352 case TPACPI_VIDEO_770:
4353 case TPACPI_VIDEO_NEW:
4354 res = video_autosw_set(1);
4355 if (res)
4356 return res;
4357 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4358 break;
4359 default:
4360 return -ENOSYS;
4361 }
4362 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004363 printk(TPACPI_ERR
4364 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004365 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004366 }
4367
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004368 return (res)? 0 : -EIO;
4369}
4370
4371static int video_expand_toggle(void)
4372{
4373 switch (video_supported) {
4374 case TPACPI_VIDEO_570:
4375 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4376 0 : -EIO;
4377 case TPACPI_VIDEO_770:
4378 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4379 0 : -EIO;
4380 case TPACPI_VIDEO_NEW:
4381 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4382 0 : -EIO;
4383 default:
4384 return -ENOSYS;
4385 }
4386 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004387}
4388
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004389static int video_read(char *p)
4390{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004391 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004392 int len = 0;
4393
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004394 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004395 len += sprintf(p + len, "status:\t\tnot supported\n");
4396 return len;
4397 }
4398
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004399 status = video_outputsw_get();
4400 if (status < 0)
4401 return status;
4402
4403 autosw = video_autosw_get();
4404 if (autosw < 0)
4405 return autosw;
4406
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004407 len += sprintf(p + len, "status:\t\tsupported\n");
4408 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
4409 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004410 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004411 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
4412 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
4413 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
4414 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004415 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004416 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
4417 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
4418 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
4419
4420 return len;
4421}
4422
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004423static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424{
4425 char *cmd;
4426 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004427 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004429 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004430 return -ENODEV;
4431
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004432 enable = 0;
4433 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435 while ((cmd = next_cmd(&buf))) {
4436 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004437 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004439 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004441 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004443 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004444 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004445 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004446 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004447 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004448 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004449 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004451 res = video_autosw_set(1);
4452 if (res)
4453 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004455 res = video_autosw_set(0);
4456 if (res)
4457 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004459 res = video_outputsw_cycle();
4460 if (res)
4461 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004463 res = video_expand_toggle();
4464 if (res)
4465 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 } else
4467 return -EINVAL;
4468 }
4469
4470 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004471 status = video_outputsw_get();
4472 if (status < 0)
4473 return status;
4474 res = video_outputsw_set((status & ~disable) | enable);
4475 if (res)
4476 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 }
4478
4479 return 0;
4480}
4481
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004482static struct ibm_struct video_driver_data = {
4483 .name = "video",
4484 .read = video_read,
4485 .write = video_write,
4486 .exit = video_exit,
4487};
4488
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004489#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4490
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004491/*************************************************************************
4492 * Light (thinklight) subdriver
4493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004495TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4496TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004497
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004498static int light_get_status(void)
4499{
4500 int status = 0;
4501
4502 if (tp_features.light_status) {
4503 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4504 return -EIO;
4505 return (!!status);
4506 }
4507
4508 return -ENXIO;
4509}
4510
4511static int light_set_status(int status)
4512{
4513 int rc;
4514
4515 if (tp_features.light) {
4516 if (cmos_handle) {
4517 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4518 (status)?
4519 TP_CMOS_THINKLIGHT_ON :
4520 TP_CMOS_THINKLIGHT_OFF);
4521 } else {
4522 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4523 (status)? 1 : 0);
4524 }
4525 return (rc)? 0 : -EIO;
4526 }
4527
4528 return -ENXIO;
4529}
4530
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004531static void light_set_status_worker(struct work_struct *work)
4532{
4533 struct tpacpi_led_classdev *data =
4534 container_of(work, struct tpacpi_led_classdev, work);
4535
4536 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004537 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004538}
4539
4540static void light_sysfs_set(struct led_classdev *led_cdev,
4541 enum led_brightness brightness)
4542{
4543 struct tpacpi_led_classdev *data =
4544 container_of(led_cdev,
4545 struct tpacpi_led_classdev,
4546 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004547 data->new_state = (brightness != LED_OFF) ?
4548 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004549 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004550}
4551
4552static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4553{
4554 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4555}
4556
4557static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4558 .led_classdev = {
4559 .name = "tpacpi::thinklight",
4560 .brightness_set = &light_sysfs_set,
4561 .brightness_get = &light_sysfs_get,
4562 }
4563};
4564
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004565static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004567 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004568
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004569 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4570
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004571 TPACPI_ACPIHANDLE_INIT(ledb);
4572 TPACPI_ACPIHANDLE_INIT(lght);
4573 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004574 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004575
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004576 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004577 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004578
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004579 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004580 /* light status not supported on
4581 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004582 tp_features.light_status =
4583 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004585 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4586 str_supported(tp_features.light),
4587 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004588
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004589 if (!tp_features.light)
4590 return 1;
4591
4592 rc = led_classdev_register(&tpacpi_pdev->dev,
4593 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004594
4595 if (rc < 0) {
4596 tp_features.light = 0;
4597 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004598 } else {
4599 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004600 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004601
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004602 return rc;
4603}
4604
4605static void light_exit(void)
4606{
4607 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4608 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004609 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610}
4611
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004612static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613{
4614 int len = 0;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004615 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004617 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004618 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004619 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004620 len += sprintf(p + len, "status:\t\tunknown\n");
4621 len += sprintf(p + len, "commands:\ton, off\n");
4622 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004623 status = light_get_status();
4624 if (status < 0)
4625 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004627 len += sprintf(p + len, "commands:\ton, off\n");
4628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
4630 return len;
4631}
4632
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004633static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004636 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004637
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004638 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004639 return -ENODEV;
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 while ((cmd = next_cmd(&buf))) {
4642 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004643 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004645 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 } else
4647 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 }
4649
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004650 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651}
4652
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004653static struct ibm_struct light_driver_data = {
4654 .name = "light",
4655 .read = light_read,
4656 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004657 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004658};
4659
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004660/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004661 * CMOS subdriver
4662 */
4663
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004664/* sysfs cmos_command -------------------------------------------------- */
4665static ssize_t cmos_command_store(struct device *dev,
4666 struct device_attribute *attr,
4667 const char *buf, size_t count)
4668{
4669 unsigned long cmos_cmd;
4670 int res;
4671
4672 if (parse_strtoul(buf, 21, &cmos_cmd))
4673 return -EINVAL;
4674
4675 res = issue_thinkpad_cmos_command(cmos_cmd);
4676 return (res)? res : count;
4677}
4678
4679static struct device_attribute dev_attr_cmos_command =
4680 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4681
4682/* --------------------------------------------------------------------- */
4683
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004684static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004685{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004686 int res;
4687
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004688 vdbg_printk(TPACPI_DBG_INIT,
4689 "initializing cmos commands subdriver\n");
4690
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004691 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004692
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004693 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4694 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004695
4696 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4697 if (res)
4698 return res;
4699
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004700 return (cmos_handle)? 0 : 1;
4701}
4702
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004703static void cmos_exit(void)
4704{
4705 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4706}
4707
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004708static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709{
4710 int len = 0;
4711
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004712 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4713 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 if (!cmos_handle)
4715 len += sprintf(p + len, "status:\t\tnot supported\n");
4716 else {
4717 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004718 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 }
4720
4721 return len;
4722}
4723
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004724static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725{
4726 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004727 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
4729 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004730 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4731 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 /* cmos_cmd set */
4733 } else
4734 return -EINVAL;
4735
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004736 res = issue_thinkpad_cmos_command(cmos_cmd);
4737 if (res)
4738 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 }
4740
4741 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004742}
4743
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004744static struct ibm_struct cmos_driver_data = {
4745 .name = "cmos",
4746 .read = cmos_read,
4747 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004748 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004749};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004750
4751/*************************************************************************
4752 * LED subdriver
4753 */
4754
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004755enum led_access_mode {
4756 TPACPI_LED_NONE = 0,
4757 TPACPI_LED_570, /* 570 */
4758 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4759 TPACPI_LED_NEW, /* all others */
4760};
4761
4762enum { /* For TPACPI_LED_OLD */
4763 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4764 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
4765 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
4766};
4767
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004768static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004769
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004770TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004771 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
4772 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004773 "LED", /* all others */
4774 ); /* R30, R31 */
4775
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004776#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004777static struct tpacpi_led_classdev *tpacpi_leds;
4778static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07004779static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004780 /* there's a limit of 19 chars + NULL before 2.6.26 */
4781 "tpacpi::power",
4782 "tpacpi:orange:batt",
4783 "tpacpi:green:batt",
4784 "tpacpi::dock_active",
4785 "tpacpi::bay_active",
4786 "tpacpi::dock_batt",
4787 "tpacpi::unknown_led",
4788 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004789 "tpacpi::dock_status1",
4790 "tpacpi::dock_status2",
4791 "tpacpi::unknown_led2",
4792 "tpacpi::unknown_led3",
4793 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004794};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004795#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004796
4797static inline bool tpacpi_is_led_restricted(const unsigned int led)
4798{
4799#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
4800 return false;
4801#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004802 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004803#endif
4804}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004805
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004806static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004807{
4808 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004809 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004810
4811 switch (led_supported) {
4812 case TPACPI_LED_570:
4813 if (!acpi_evalf(ec_handle,
4814 &status, "GLED", "dd", 1 << led))
4815 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004816 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004817 TPACPI_LED_OFF :
4818 ((status == 1)?
4819 TPACPI_LED_ON :
4820 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004821 tpacpi_led_state_cache[led] = led_s;
4822 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004823 default:
4824 return -ENXIO;
4825 }
4826
4827 /* not reached */
4828}
4829
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004830static int led_set_status(const unsigned int led,
4831 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004832{
4833 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004834 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
4835 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004836
4837 int rc = 0;
4838
4839 switch (led_supported) {
4840 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004841 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004842 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004843 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004844 if (unlikely(tpacpi_is_led_restricted(led)))
4845 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004846 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
4847 (1 << led), led_sled_arg1[ledstatus]))
4848 rc = -EIO;
4849 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004850 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004851 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004852 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004853 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004854 if (unlikely(tpacpi_is_led_restricted(led)))
4855 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004856 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
4857 if (rc >= 0)
4858 rc = ec_write(TPACPI_LED_EC_HLBL,
4859 (ledstatus == TPACPI_LED_BLINK) << led);
4860 if (rc >= 0)
4861 rc = ec_write(TPACPI_LED_EC_HLCL,
4862 (ledstatus != TPACPI_LED_OFF) << led);
4863 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004864 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004865 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004866 if (unlikely(led >= TPACPI_LED_NUMLEDS))
4867 return -EINVAL;
4868 if (unlikely(tpacpi_is_led_restricted(led)))
4869 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004870 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
4871 led, led_led_arg1[ledstatus]))
4872 rc = -EIO;
4873 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004874 default:
4875 rc = -ENXIO;
4876 }
4877
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004878 if (!rc)
4879 tpacpi_led_state_cache[led] = ledstatus;
4880
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004881 return rc;
4882}
4883
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004884static void led_set_status_worker(struct work_struct *work)
4885{
4886 struct tpacpi_led_classdev *data =
4887 container_of(work, struct tpacpi_led_classdev, work);
4888
4889 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004890 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004891}
4892
4893static void led_sysfs_set(struct led_classdev *led_cdev,
4894 enum led_brightness brightness)
4895{
4896 struct tpacpi_led_classdev *data = container_of(led_cdev,
4897 struct tpacpi_led_classdev, led_classdev);
4898
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004899 if (brightness == LED_OFF)
4900 data->new_state = TPACPI_LED_OFF;
4901 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
4902 data->new_state = TPACPI_LED_ON;
4903 else
4904 data->new_state = TPACPI_LED_BLINK;
4905
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004906 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004907}
4908
4909static int led_sysfs_blink_set(struct led_classdev *led_cdev,
4910 unsigned long *delay_on, unsigned long *delay_off)
4911{
4912 struct tpacpi_led_classdev *data = container_of(led_cdev,
4913 struct tpacpi_led_classdev, led_classdev);
4914
4915 /* Can we choose the flash rate? */
4916 if (*delay_on == 0 && *delay_off == 0) {
4917 /* yes. set them to the hardware blink rate (1 Hz) */
4918 *delay_on = 500; /* ms */
4919 *delay_off = 500; /* ms */
4920 } else if ((*delay_on != 500) || (*delay_off != 500))
4921 return -EINVAL;
4922
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004923 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004924 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004925
4926 return 0;
4927}
4928
4929static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
4930{
4931 int rc;
4932
4933 struct tpacpi_led_classdev *data = container_of(led_cdev,
4934 struct tpacpi_led_classdev, led_classdev);
4935
4936 rc = led_get_status(data->led);
4937
4938 if (rc == TPACPI_LED_OFF || rc < 0)
4939 rc = LED_OFF; /* no error handling in led class :( */
4940 else
4941 rc = LED_FULL;
4942
4943 return rc;
4944}
4945
4946static void led_exit(void)
4947{
4948 unsigned int i;
4949
4950 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
4951 if (tpacpi_leds[i].led_classdev.name)
4952 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
4953 }
4954
4955 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004956}
4957
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004958static int __init tpacpi_init_led(unsigned int led)
4959{
4960 int rc;
4961
4962 tpacpi_leds[led].led = led;
4963
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004964 /* LEDs with no name don't get registered */
4965 if (!tpacpi_led_names[led])
4966 return 0;
4967
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00004968 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
4969 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
4970 if (led_supported == TPACPI_LED_570)
4971 tpacpi_leds[led].led_classdev.brightness_get =
4972 &led_sysfs_get;
4973
4974 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
4975
4976 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
4977
4978 rc = led_classdev_register(&tpacpi_pdev->dev,
4979 &tpacpi_leds[led].led_classdev);
4980 if (rc < 0)
4981 tpacpi_leds[led].led_classdev.name = NULL;
4982
4983 return rc;
4984}
4985
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004986static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
4987 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
4988 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
4989 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
4990
4991 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
4992 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
4993 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
4994 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
4995 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
4996 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
4997 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
4998 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
4999
5000 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5001 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5002 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5003 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5004 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5005
5006 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5007 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5008 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5009 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5010
5011 /* (1) - may have excess leds enabled on MSB */
5012
5013 /* Defaults (order matters, keep last, don't reorder!) */
5014 { /* Lenovo */
5015 .vendor = PCI_VENDOR_ID_LENOVO,
5016 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5017 .quirks = 0x1fffU,
5018 },
5019 { /* IBM ThinkPads with no EC version string */
5020 .vendor = PCI_VENDOR_ID_IBM,
5021 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5022 .quirks = 0x00ffU,
5023 },
5024 { /* IBM ThinkPads with EC version string */
5025 .vendor = PCI_VENDOR_ID_IBM,
5026 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5027 .quirks = 0x00bfU,
5028 },
5029};
5030
5031#undef TPACPI_LEDQ_IBM
5032#undef TPACPI_LEDQ_LNV
5033
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005034static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005035{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005036 unsigned int i;
5037 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005038 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005039
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005040 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5041
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005042 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005043
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005044 if (!led_handle)
5045 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005046 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005047 else if (strlencmp(led_path, "SLED") == 0)
5048 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005049 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005050 else if (strlencmp(led_path, "SYSL") == 0)
5051 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005052 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005053 else
5054 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005055 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005056
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005057 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5058 str_supported(led_supported), led_supported);
5059
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005060 if (led_supported == TPACPI_LED_NONE)
5061 return 1;
5062
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005063 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5064 GFP_KERNEL);
5065 if (!tpacpi_leds) {
5066 printk(TPACPI_ERR "Out of memory for LED data\n");
5067 return -ENOMEM;
5068 }
5069
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005070 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5071 ARRAY_SIZE(led_useful_qtable));
5072
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005073 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005074 if (!tpacpi_is_led_restricted(i) &&
5075 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005076 rc = tpacpi_init_led(i);
5077 if (rc < 0) {
5078 led_exit();
5079 return rc;
5080 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005081 }
5082 }
5083
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005084#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005085 printk(TPACPI_NOTICE
5086 "warning: userspace override of important "
5087 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005088#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005089 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005090}
5091
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005092#define str_led_status(s) \
5093 ((s) == TPACPI_LED_OFF ? "off" : \
5094 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005095
5096static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097{
5098 int len = 0;
5099
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005100 if (!led_supported) {
5101 len += sprintf(p + len, "status:\t\tnot supported\n");
5102 return len;
5103 }
5104 len += sprintf(p + len, "status:\t\tsupported\n");
5105
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005106 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005107 /* 570 */
5108 int i, status;
5109 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005110 status = led_get_status(i);
5111 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005112 return -EIO;
5113 len += sprintf(p + len, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005114 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005115 }
5116 }
5117
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 len += sprintf(p + len, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005119 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
5121 return len;
5122}
5123
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005124static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125{
5126 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005127 int led, rc;
5128 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005129
5130 if (!led_supported)
5131 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
5133 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005134 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 return -EINVAL;
5136
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005137 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005138 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005140 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005141 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005142 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005143 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005144 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005145 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005146
5147 rc = led_set_status(led, s);
5148 if (rc < 0)
5149 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 }
5151
5152 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005153}
5154
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005155static struct ibm_struct led_driver_data = {
5156 .name = "led",
5157 .read = led_read,
5158 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005159 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005160};
5161
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005162/*************************************************************************
5163 * Beep subdriver
5164 */
5165
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005166TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005167
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005168#define TPACPI_BEEP_Q1 0x0001
5169
5170static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5171 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5172 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5173};
5174
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005175static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005176{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005177 unsigned long quirks;
5178
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005179 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5180
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005181 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005182
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005183 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5184 str_supported(beep_handle != NULL));
5185
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005186 quirks = tpacpi_check_quirks(beep_quirk_table,
5187 ARRAY_SIZE(beep_quirk_table));
5188
5189 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5190
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005191 return (beep_handle)? 0 : 1;
5192}
5193
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005194static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195{
5196 int len = 0;
5197
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005198 if (!beep_handle)
5199 len += sprintf(p + len, "status:\t\tnot supported\n");
5200 else {
5201 len += sprintf(p + len, "status:\t\tsupported\n");
5202 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
5203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
5205 return len;
5206}
5207
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005208static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209{
5210 char *cmd;
5211 int beep_cmd;
5212
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005213 if (!beep_handle)
5214 return -ENODEV;
5215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005217 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5218 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 /* beep_cmd set */
5220 } else
5221 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005222 if (tp_features.beep_needs_two_args) {
5223 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5224 beep_cmd, 0))
5225 return -EIO;
5226 } else {
5227 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5228 beep_cmd))
5229 return -EIO;
5230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 }
5232
5233 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005234}
5235
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005236static struct ibm_struct beep_driver_data = {
5237 .name = "beep",
5238 .read = beep_read,
5239 .write = beep_write,
5240};
5241
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005242/*************************************************************************
5243 * Thermal subdriver
5244 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005245
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005246enum thermal_access_mode {
5247 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5248 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5249 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5250 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5251 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5252};
5253
5254enum { /* TPACPI_THERMAL_TPEC_* */
5255 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5256 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5257 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
5258};
5259
5260#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5261struct ibm_thermal_sensors_struct {
5262 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5263};
5264
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005265static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005266
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005267/* idx is zero-based */
5268static int thermal_get_sensor(int idx, s32 *value)
5269{
5270 int t;
5271 s8 tmp;
5272 char tmpi[5];
5273
5274 t = TP_EC_THERMAL_TMP0;
5275
5276 switch (thermal_read_mode) {
5277#if TPACPI_MAX_THERMAL_SENSORS >= 16
5278 case TPACPI_THERMAL_TPEC_16:
5279 if (idx >= 8 && idx <= 15) {
5280 t = TP_EC_THERMAL_TMP8;
5281 idx -= 8;
5282 }
5283 /* fallthrough */
5284#endif
5285 case TPACPI_THERMAL_TPEC_8:
5286 if (idx <= 7) {
5287 if (!acpi_ec_read(t + idx, &tmp))
5288 return -EIO;
5289 *value = tmp * 1000;
5290 return 0;
5291 }
5292 break;
5293
5294 case TPACPI_THERMAL_ACPI_UPDT:
5295 if (idx <= 7) {
5296 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5297 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5298 return -EIO;
5299 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5300 return -EIO;
5301 *value = (t - 2732) * 100;
5302 return 0;
5303 }
5304 break;
5305
5306 case TPACPI_THERMAL_ACPI_TMP07:
5307 if (idx <= 7) {
5308 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5309 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5310 return -EIO;
5311 if (t > 127 || t < -127)
5312 t = TP_EC_THERMAL_TMP_NA;
5313 *value = t * 1000;
5314 return 0;
5315 }
5316 break;
5317
5318 case TPACPI_THERMAL_NONE:
5319 default:
5320 return -ENOSYS;
5321 }
5322
5323 return -EINVAL;
5324}
5325
5326static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5327{
5328 int res, i;
5329 int n;
5330
5331 n = 8;
5332 i = 0;
5333
5334 if (!s)
5335 return -EINVAL;
5336
5337 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5338 n = 16;
5339
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005340 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005341 res = thermal_get_sensor(i, &s->temp[i]);
5342 if (res)
5343 return res;
5344 }
5345
5346 return n;
5347}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005348
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005349/* sysfs temp##_input -------------------------------------------------- */
5350
5351static ssize_t thermal_temp_input_show(struct device *dev,
5352 struct device_attribute *attr,
5353 char *buf)
5354{
5355 struct sensor_device_attribute *sensor_attr =
5356 to_sensor_dev_attr(attr);
5357 int idx = sensor_attr->index;
5358 s32 value;
5359 int res;
5360
5361 res = thermal_get_sensor(idx, &value);
5362 if (res)
5363 return res;
5364 if (value == TP_EC_THERMAL_TMP_NA * 1000)
5365 return -ENXIO;
5366
5367 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5368}
5369
5370#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005371 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5372 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005373
5374static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5375 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5376 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5377 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5378 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5379 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5380 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5381 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5382 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5383 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5384 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5385 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5386 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5387 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5388 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5389 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5390 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5391};
5392
5393#define THERMAL_ATTRS(X) \
5394 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5395
5396static struct attribute *thermal_temp_input_attr[] = {
5397 THERMAL_ATTRS(8),
5398 THERMAL_ATTRS(9),
5399 THERMAL_ATTRS(10),
5400 THERMAL_ATTRS(11),
5401 THERMAL_ATTRS(12),
5402 THERMAL_ATTRS(13),
5403 THERMAL_ATTRS(14),
5404 THERMAL_ATTRS(15),
5405 THERMAL_ATTRS(0),
5406 THERMAL_ATTRS(1),
5407 THERMAL_ATTRS(2),
5408 THERMAL_ATTRS(3),
5409 THERMAL_ATTRS(4),
5410 THERMAL_ATTRS(5),
5411 THERMAL_ATTRS(6),
5412 THERMAL_ATTRS(7),
5413 NULL
5414};
5415
5416static const struct attribute_group thermal_temp_input16_group = {
5417 .attrs = thermal_temp_input_attr
5418};
5419
5420static const struct attribute_group thermal_temp_input8_group = {
5421 .attrs = &thermal_temp_input_attr[8]
5422};
5423
5424#undef THERMAL_SENSOR_ATTR_TEMP
5425#undef THERMAL_ATTRS
5426
5427/* --------------------------------------------------------------------- */
5428
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005429static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005430{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005431 u8 t, ta1, ta2;
5432 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005433 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005434 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005435
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005436 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5437
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005438 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005439
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005440 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005441 /*
5442 * Direct EC access mode: sensors at registers
5443 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5444 * non-implemented, thermal sensors return 0x80 when
5445 * not available
5446 */
5447
5448 ta1 = ta2 = 0;
5449 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005450 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005451 ta1 |= t;
5452 } else {
5453 ta1 = 0;
5454 break;
5455 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005456 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005457 ta2 |= t;
5458 } else {
5459 ta1 = 0;
5460 break;
5461 }
5462 }
5463 if (ta1 == 0) {
5464 /* This is sheer paranoia, but we handle it anyway */
5465 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005466 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005467 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005468 "falling back to ACPI TMPx access "
5469 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005470 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005471 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005472 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005473 "ThinkPad ACPI EC access misbehaving, "
5474 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005475 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005476 }
5477 } else {
5478 thermal_read_mode =
5479 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005480 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005481 }
5482 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005483 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
5484 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005485 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005486 } else {
5487 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005488 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005489 }
5490 } else {
5491 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005492 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005493 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005494
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005495 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5496 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5497 thermal_read_mode);
5498
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005499 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005500 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005501 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005502 &thermal_temp_input16_group);
5503 if (res)
5504 return res;
5505 break;
5506 case TPACPI_THERMAL_TPEC_8:
5507 case TPACPI_THERMAL_ACPI_TMP07:
5508 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005509 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005510 &thermal_temp_input8_group);
5511 if (res)
5512 return res;
5513 break;
5514 case TPACPI_THERMAL_NONE:
5515 default:
5516 return 1;
5517 }
5518
5519 return 0;
5520}
5521
5522static void thermal_exit(void)
5523{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005524 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005525 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005526 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005527 &thermal_temp_input16_group);
5528 break;
5529 case TPACPI_THERMAL_TPEC_8:
5530 case TPACPI_THERMAL_ACPI_TMP07:
5531 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005532 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005533 &thermal_temp_input16_group);
5534 break;
5535 case TPACPI_THERMAL_NONE:
5536 default:
5537 break;
5538 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005539}
5540
5541static int thermal_read(char *p)
5542{
5543 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005544 int n, i;
5545 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005546
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005547 n = thermal_get_sensors(&t);
5548 if (unlikely(n < 0))
5549 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005550
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005551 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005552
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005553 if (n > 0) {
5554 for (i = 0; i < (n - 1); i++)
5555 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
5556 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
5557 } else
5558 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005559
5560 return len;
5561}
5562
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005563static struct ibm_struct thermal_driver_data = {
5564 .name = "thermal",
5565 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005566 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005567};
5568
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005569/*************************************************************************
5570 * EC Dump subdriver
5571 */
5572
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005573static u8 ecdump_regs[256];
5574
5575static int ecdump_read(char *p)
5576{
5577 int len = 0;
5578 int i, j;
5579 u8 v;
5580
5581 len += sprintf(p + len, "EC "
5582 " +00 +01 +02 +03 +04 +05 +06 +07"
5583 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5584 for (i = 0; i < 256; i += 16) {
5585 len += sprintf(p + len, "EC 0x%02x:", i);
5586 for (j = 0; j < 16; j++) {
5587 if (!acpi_ec_read(i + j, &v))
5588 break;
5589 if (v != ecdump_regs[i + j])
5590 len += sprintf(p + len, " *%02x", v);
5591 else
5592 len += sprintf(p + len, " %02x", v);
5593 ecdump_regs[i + j] = v;
5594 }
5595 len += sprintf(p + len, "\n");
5596 if (j != 16)
5597 break;
5598 }
5599
5600 /* These are way too dangerous to advertise openly... */
5601#if 0
5602 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
5603 " (<offset> is 00-ff, <value> is 00-ff)\n");
5604 len += sprintf(p + len, "commands:\t0x<offset> <value> "
5605 " (<offset> is 00-ff, <value> is 0-255)\n");
5606#endif
5607 return len;
5608}
5609
5610static int ecdump_write(char *buf)
5611{
5612 char *cmd;
5613 int i, v;
5614
5615 while ((cmd = next_cmd(&buf))) {
5616 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5617 /* i and v set */
5618 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5619 /* i and v set */
5620 } else
5621 return -EINVAL;
5622 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5623 if (!acpi_ec_write(i, v))
5624 return -EIO;
5625 } else
5626 return -EINVAL;
5627 }
5628
5629 return 0;
5630}
5631
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005632static struct ibm_struct ecdump_driver_data = {
5633 .name = "ecdump",
5634 .read = ecdump_read,
5635 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005636 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005637};
5638
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005639/*************************************************************************
5640 * Backlight/brightness subdriver
5641 */
Holger Macht8acb0252006-10-20 14:30:28 -07005642
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005643#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5644
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005645/*
5646 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5647 * CMOS NVRAM byte 0x5E, bits 0-3.
5648 *
5649 * EC HBRV (0x31) has the following layout
5650 * Bit 7: unknown function
5651 * Bit 6: unknown function
5652 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5653 * Bit 4: must be set to zero to avoid problems
5654 * Bit 3-0: backlight brightness level
5655 *
5656 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005657 *
5658 * WARNING: The X61 has been verified to use HBRV for something else, so
5659 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5660 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005661 */
5662
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005663enum {
5664 TP_EC_BACKLIGHT = 0x31,
5665
5666 /* TP_EC_BACKLIGHT bitmasks */
5667 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5668 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5669 TP_EC_BACKLIGHT_MAPSW = 0x20,
5670};
5671
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005672enum tpacpi_brightness_access_mode {
5673 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5674 TPACPI_BRGHT_MODE_EC, /* EC control */
5675 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5676 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5677 TPACPI_BRGHT_MODE_MAX
5678};
5679
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03005680static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005681
5682static enum tpacpi_brightness_access_mode brightness_mode =
5683 TPACPI_BRGHT_MODE_MAX;
5684
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005685static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5686
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005687static struct mutex brightness_mutex;
5688
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005689/* NVRAM brightness access,
5690 * call with brightness_mutex held! */
5691static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005692{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005693 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005694
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005695 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5696 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5697 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5698 lnvram &= (tp_features.bright_16levels) ? 0x0f : 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005699
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005700 return lnvram;
5701}
5702
5703static void tpacpi_brightness_checkpoint_nvram(void)
5704{
5705 u8 lec = 0;
5706 u8 b_nvram;
5707
5708 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5709 return;
5710
5711 vdbg_printk(TPACPI_DBG_BRGHT,
5712 "trying to checkpoint backlight level to NVRAM...\n");
5713
5714 if (mutex_lock_killable(&brightness_mutex) < 0)
5715 return;
5716
5717 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5718 goto unlock;
5719 lec &= TP_EC_BACKLIGHT_LVLMSK;
5720 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5721
5722 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5723 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
5724 /* NVRAM needs update */
5725 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
5726 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
5727 b_nvram |= lec;
5728 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
5729 dbg_printk(TPACPI_DBG_BRGHT,
5730 "updated NVRAM backlight level to %u (0x%02x)\n",
5731 (unsigned int) lec, (unsigned int) b_nvram);
5732 } else
5733 vdbg_printk(TPACPI_DBG_BRGHT,
5734 "NVRAM backlight level already is %u (0x%02x)\n",
5735 (unsigned int) lec, (unsigned int) b_nvram);
5736
5737unlock:
5738 mutex_unlock(&brightness_mutex);
5739}
5740
5741
5742/* call with brightness_mutex held! */
5743static int tpacpi_brightness_get_raw(int *status)
5744{
5745 u8 lec = 0;
5746
5747 switch (brightness_mode) {
5748 case TPACPI_BRGHT_MODE_UCMS_STEP:
5749 *status = tpacpi_brightness_nvram_get();
5750 return 0;
5751 case TPACPI_BRGHT_MODE_EC:
5752 case TPACPI_BRGHT_MODE_ECNVRAM:
5753 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005754 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005755 *status = lec;
5756 return 0;
5757 default:
5758 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005759 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005760}
5761
5762/* call with brightness_mutex held! */
5763/* do NOT call with illegal backlight level value */
5764static int tpacpi_brightness_set_ec(unsigned int value)
5765{
5766 u8 lec = 0;
5767
5768 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5769 return -EIO;
5770
5771 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
5772 (lec & TP_EC_BACKLIGHT_CMDMSK) |
5773 (value & TP_EC_BACKLIGHT_LVLMSK))))
5774 return -EIO;
5775
5776 return 0;
5777}
5778
5779/* call with brightness_mutex held! */
5780static int tpacpi_brightness_set_ucmsstep(unsigned int value)
5781{
5782 int cmos_cmd, inc;
5783 unsigned int current_value, i;
5784
5785 current_value = tpacpi_brightness_nvram_get();
5786
5787 if (value == current_value)
5788 return 0;
5789
5790 cmos_cmd = (value > current_value) ?
5791 TP_CMOS_BRIGHTNESS_UP :
5792 TP_CMOS_BRIGHTNESS_DOWN;
5793 inc = (value > current_value) ? 1 : -1;
5794
5795 for (i = current_value; i != value; i += inc)
5796 if (issue_thinkpad_cmos_command(cmos_cmd))
5797 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005798
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005799 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005800}
5801
5802/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005803static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005804{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005805 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005806
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005807 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
5808 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005809 return -EINVAL;
5810
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005811 vdbg_printk(TPACPI_DBG_BRGHT,
5812 "set backlight level to %d\n", value);
5813
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02005814 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005815 if (res < 0)
5816 return res;
5817
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005818 switch (brightness_mode) {
5819 case TPACPI_BRGHT_MODE_EC:
5820 case TPACPI_BRGHT_MODE_ECNVRAM:
5821 res = tpacpi_brightness_set_ec(value);
5822 break;
5823 case TPACPI_BRGHT_MODE_UCMS_STEP:
5824 res = tpacpi_brightness_set_ucmsstep(value);
5825 break;
5826 default:
5827 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005828 }
5829
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005830 mutex_unlock(&brightness_mutex);
5831 return res;
5832}
5833
5834/* sysfs backlight class ----------------------------------------------- */
5835
5836static int brightness_update_status(struct backlight_device *bd)
5837{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005838 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005839 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
5840 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005841 bd->props.brightness : 0;
5842
5843 dbg_printk(TPACPI_DBG_BRGHT,
5844 "backlight: attempt to set level to %d\n",
5845 level);
5846
5847 /* it is the backlight class's job (caller) to handle
5848 * EINTR and other errors properly */
5849 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005850}
Holger Macht8acb0252006-10-20 14:30:28 -07005851
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005852static int brightness_get(struct backlight_device *bd)
5853{
5854 int status, res;
5855
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005856 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005857 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005858 return 0;
5859
5860 res = tpacpi_brightness_get_raw(&status);
5861
5862 mutex_unlock(&brightness_mutex);
5863
5864 if (res < 0)
5865 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005866
5867 return status & TP_EC_BACKLIGHT_LVLMSK;
5868}
5869
Richard Purdie599a52d2007-02-10 23:07:48 +00005870static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005871 .get_brightness = brightness_get,
5872 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005873};
5874
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005875/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03005876
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005877/*
5878 * These are only useful for models that have only one possibility
5879 * of GPU. If the BIOS model handles both ATI and Intel, don't use
5880 * these quirks.
5881 */
5882#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
5883#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
5884#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
5885
5886static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
5887 /* Models with ATI GPUs known to require ECNVRAM mode */
5888 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
5889
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03005890 /* Models with ATI GPUs that can use ECNVRAM */
5891 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005892 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
5893 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
5894 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
5895
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03005896 /* Models with Intel Extreme Graphics 2 */
5897 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005898 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_NOEC),
5899 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_NOEC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005900
5901 /* Models with Intel GMA900 */
5902 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
5903 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
5904 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
5905};
5906
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005907static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005908{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005909 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005910 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005911
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005912 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
5913
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03005914 mutex_init(&brightness_mutex);
5915
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005916 quirks = tpacpi_check_quirks(brightness_quirk_table,
5917 ARRAY_SIZE(brightness_quirk_table));
5918
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03005919 /*
5920 * We always attempt to detect acpi support, so as to switch
5921 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
5922 * going to publish a backlight interface
5923 */
5924 b = tpacpi_check_std_acpi_brightness_support();
5925 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02005926
5927 if (acpi_video_backlight_support()) {
5928 if (brightness_enable > 1) {
5929 printk(TPACPI_NOTICE
5930 "Standard ACPI backlight interface "
5931 "available, not loading native one.\n");
5932 return 1;
5933 } else if (brightness_enable == 1) {
5934 printk(TPACPI_NOTICE
5935 "Backlight control force enabled, even if standard "
5936 "ACPI backlight interface is available\n");
5937 }
5938 } else {
5939 if (brightness_enable > 1) {
5940 printk(TPACPI_NOTICE
5941 "Standard ACPI backlight interface not "
5942 "available, thinkpad_acpi native "
5943 "brightness control enabled\n");
5944 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02005945 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02005946 }
5947
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03005948 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005949 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03005950 "brightness support disabled by "
5951 "module parameter\n");
5952 return 1;
5953 }
5954
5955 if (b > 16) {
5956 printk(TPACPI_ERR
5957 "Unsupported brightness interface, "
5958 "please contact %s\n", TPACPI_MAIL);
5959 return 1;
5960 }
5961 if (b == 16)
5962 tp_features.bright_16levels = 1;
5963
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005964 /*
5965 * Check for module parameter bogosity, note that we
5966 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
5967 * able to detect "unspecified"
5968 */
5969 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03005970 return -EINVAL;
5971
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005972 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
5973 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
5974 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005975 if (quirks & TPACPI_BRGHT_Q_EC)
5976 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
5977 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005978 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
5979
5980 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03005981 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005982 brightness_mode);
5983 }
5984
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005985 /* Safety */
5986 if (thinkpad_id.vendor != PCI_VENDOR_ID_IBM &&
5987 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
5988 brightness_mode == TPACPI_BRGHT_MODE_EC))
5989 return -EINVAL;
5990
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005991 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03005992 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005993
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005994 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005995 printk(TPACPI_INFO
5996 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005997
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03005998 ibm_backlight_device = backlight_device_register(
5999 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
6000 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006001 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006002 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006003 return PTR_ERR(ibm_backlight_device);
6004 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006005 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6006 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006007
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006008 if (quirks & TPACPI_BRGHT_Q_ASK) {
6009 printk(TPACPI_NOTICE
6010 "brightness: will use unverified default: "
6011 "brightness_mode=%d\n", brightness_mode);
6012 printk(TPACPI_NOTICE
6013 "brightness: please report to %s whether it works well "
6014 "or not on your ThinkPad\n", TPACPI_MAIL);
6015 }
6016
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006017 ibm_backlight_device->props.max_brightness =
6018 (tp_features.bright_16levels)? 15 : 7;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006019 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006020 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006021
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006022 return 0;
6023}
6024
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006025static void brightness_suspend(pm_message_t state)
6026{
6027 tpacpi_brightness_checkpoint_nvram();
6028}
6029
6030static void brightness_shutdown(void)
6031{
6032 tpacpi_brightness_checkpoint_nvram();
6033}
6034
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006035static void brightness_exit(void)
6036{
6037 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006038 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006039 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006040 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006041 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006042
6043 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006044}
6045
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006046static int brightness_read(char *p)
6047{
6048 int len = 0;
6049 int level;
6050
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006051 level = brightness_get(NULL);
6052 if (level < 0) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006053 len += sprintf(p + len, "level:\t\tunreadable\n");
6054 } else {
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006055 len += sprintf(p + len, "level:\t\t%d\n", level);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006056 len += sprintf(p + len, "commands:\tup, down\n");
6057 len += sprintf(p + len, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006058 " (<level> is 0-%d)\n",
6059 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006060 }
6061
6062 return len;
6063}
6064
6065static int brightness_write(char *buf)
6066{
6067 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006068 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006069 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006070 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006071
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006072 level = brightness_get(NULL);
6073 if (level < 0)
6074 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006075
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006076 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006077 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006078 if (level < max_level)
6079 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006080 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006081 if (level > 0)
6082 level--;
6083 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6084 level >= 0 && level <= max_level) {
6085 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006086 } else
6087 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006088 }
6089
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006090 tpacpi_disclose_usertask("procfs brightness",
6091 "set level to %d\n", level);
6092
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006093 /*
6094 * Now we know what the final level should be, so we try to set it.
6095 * Doing it this way makes the syscall restartable in case of EINTR
6096 */
6097 rc = brightness_set(level);
6098 return (rc == -EINTR)? ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006099}
6100
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006101static struct ibm_struct brightness_driver_data = {
6102 .name = "brightness",
6103 .read = brightness_read,
6104 .write = brightness_write,
6105 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006106 .suspend = brightness_suspend,
6107 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006108};
6109
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006110/*************************************************************************
6111 * Volume subdriver
6112 */
6113
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006114static int volume_offset = 0x30;
6115
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006116static int volume_read(char *p)
6117{
6118 int len = 0;
6119 u8 level;
6120
6121 if (!acpi_ec_read(volume_offset, &level)) {
6122 len += sprintf(p + len, "level:\t\tunreadable\n");
6123 } else {
6124 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
6125 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
6126 len += sprintf(p + len, "commands:\tup, down, mute\n");
6127 len += sprintf(p + len, "commands:\tlevel <level>"
6128 " (<level> is 0-15)\n");
6129 }
6130
6131 return len;
6132}
6133
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006134static int volume_write(char *buf)
6135{
6136 int cmos_cmd, inc, i;
6137 u8 level, mute;
6138 int new_level, new_mute;
6139 char *cmd;
6140
6141 while ((cmd = next_cmd(&buf))) {
6142 if (!acpi_ec_read(volume_offset, &level))
6143 return -EIO;
6144 new_mute = mute = level & 0x40;
6145 new_level = level = level & 0xf;
6146
6147 if (strlencmp(cmd, "up") == 0) {
6148 if (mute)
6149 new_mute = 0;
6150 else
6151 new_level = level == 15 ? 15 : level + 1;
6152 } else if (strlencmp(cmd, "down") == 0) {
6153 if (mute)
6154 new_mute = 0;
6155 else
6156 new_level = level == 0 ? 0 : level - 1;
6157 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
6158 new_level >= 0 && new_level <= 15) {
6159 /* new_level set */
6160 } else if (strlencmp(cmd, "mute") == 0) {
6161 new_mute = 0x40;
6162 } else
6163 return -EINVAL;
6164
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006165 if (new_level != level) {
6166 /* mute doesn't change */
6167
6168 cmos_cmd = (new_level > level) ?
6169 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006170 inc = new_level > level ? 1 : -1;
6171
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006172 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006173 !acpi_ec_write(volume_offset, level)))
6174 return -EIO;
6175
6176 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006177 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006178 !acpi_ec_write(volume_offset, i + inc))
6179 return -EIO;
6180
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006181 if (mute &&
6182 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
6183 !acpi_ec_write(volume_offset, new_level + mute))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006184 return -EIO;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006185 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006186 }
6187
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006188 if (new_mute != mute) {
6189 /* level doesn't change */
6190
6191 cmos_cmd = (new_mute) ?
6192 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006193
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006194 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006195 !acpi_ec_write(volume_offset, level + new_mute))
6196 return -EIO;
6197 }
6198 }
6199
6200 return 0;
6201}
6202
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006203static struct ibm_struct volume_driver_data = {
6204 .name = "volume",
6205 .read = volume_read,
6206 .write = volume_write,
6207};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006208
6209/*************************************************************************
6210 * Fan subdriver
6211 */
6212
6213/*
6214 * FAN ACCESS MODES
6215 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006216 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006217 * ACPI GFAN method: returns fan level
6218 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006219 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006220 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006221 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006222 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006223 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
6224 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006225 * EC 0x2f (HFSP) might be available *for reading*, but do not use
6226 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006227 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006228 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006229 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
6230 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006231 *
6232 * Fan speed changes of any sort (including those caused by the
6233 * disengaged mode) are usually done slowly by the firmware as the
6234 * maximum ammount of fan duty cycle change per second seems to be
6235 * limited.
6236 *
6237 * Reading is not available if GFAN exists.
6238 * Writing is not available if SFAN exists.
6239 *
6240 * Bits
6241 * 7 automatic mode engaged;
6242 * (default operation mode of the ThinkPad)
6243 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006244 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006245 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006246 * the tachometer while the fan controller ramps up
6247 * the speed (which can take up to a few *minutes*).
6248 * Speeds up fan to 100% duty-cycle, which is far above
6249 * the standard RPM levels. It is not impossible that
6250 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006251 * 5-3 unused in some models. Extra bits for fan level
6252 * in others, but still useless as all values above
6253 * 7 map to the same speed as level 7 in these models.
6254 * 2-0 fan level (0..7 usually)
6255 * 0x00 = stop
6256 * 0x07 = max (set when temperatures critical)
6257 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006258 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006259 *
6260 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
6261 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
6262 * does so, its initial value is meaningless (0x07).
6263 *
6264 * For firmware bugs, refer to:
6265 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6266 *
6267 * ----
6268 *
6269 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
6270 * Main fan tachometer reading (in RPM)
6271 *
6272 * This register is present on all ThinkPads with a new-style EC, and
6273 * it is known not to be present on the A21m/e, and T22, as there is
6274 * something else in offset 0x84 according to the ACPI DSDT. Other
6275 * ThinkPads from this same time period (and earlier) probably lack the
6276 * tachometer as well.
6277 *
Nick Andrew877d0312009-01-26 11:06:57 +01006278 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006279 * was never fixed by IBM to report the EC firmware version string
6280 * probably support the tachometer (like the early X models), so
6281 * detecting it is quite hard. We need more data to know for sure.
6282 *
6283 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
6284 * might result.
6285 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006286 * FIRMWARE BUG: may go stale while the EC is switching to full speed
6287 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006288 *
6289 * For firmware bugs, refer to:
6290 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6291 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006292 * ----
6293 *
6294 * ThinkPad EC register 0x31 bit 0 (only on select models)
6295 *
6296 * When bit 0 of EC register 0x31 is zero, the tachometer registers
6297 * show the speed of the main fan. When bit 0 of EC register 0x31
6298 * is one, the tachometer registers show the speed of the auxiliary
6299 * fan.
6300 *
6301 * Fan control seems to affect both fans, regardless of the state
6302 * of this bit.
6303 *
6304 * So far, only the firmware for the X60/X61 non-tablet versions
6305 * seem to support this (firmware TP-7M).
6306 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006307 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006308 * ThinkPad X31, X40, X41. Not available in the X60.
6309 *
6310 * FANS ACPI handle: takes three arguments: low speed, medium speed,
6311 * high speed. ACPI DSDT seems to map these three speeds to levels
6312 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
6313 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
6314 *
6315 * The speeds are stored on handles
6316 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
6317 *
6318 * There are three default speed sets, acessible as handles:
6319 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
6320 *
6321 * ACPI DSDT switches which set is in use depending on various
6322 * factors.
6323 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006324 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006325 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
6326 * but the ACPI tables just mention level 7.
6327 */
6328
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006329enum { /* Fan control constants */
6330 fan_status_offset = 0x2f, /* EC register 0x2f */
6331 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
6332 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006333 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
6334 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006335
6336 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
6337 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
6338
6339 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
6340};
6341
6342enum fan_status_access_mode {
6343 TPACPI_FAN_NONE = 0, /* No fan status or control */
6344 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
6345 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
6346};
6347
6348enum fan_control_access_mode {
6349 TPACPI_FAN_WR_NONE = 0, /* No fan control */
6350 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
6351 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
6352 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
6353};
6354
6355enum fan_control_commands {
6356 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
6357 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
6358 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
6359 * and also watchdog cmd */
6360};
6361
6362static int fan_control_allowed;
6363
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006364static enum fan_status_access_mode fan_status_access_mode;
6365static enum fan_control_access_mode fan_control_access_mode;
6366static enum fan_control_commands fan_control_commands;
6367
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02006368static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006369static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006370static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006371static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006372
6373static struct mutex fan_mutex;
6374
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006375static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05006376static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006377
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006378TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
6379TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006380 "\\FSPD", /* 600e/x, 770e, 770x */
6381 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006382TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006383 "JFNS", /* 770x-JL */
6384 ); /* all others */
6385
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006386/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006387 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
6388 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
6389 * be in auto mode (0x80).
6390 *
6391 * This is corrected by any write to HFSP either by the driver, or
6392 * by the firmware.
6393 *
6394 * We assume 0x07 really means auto mode while this quirk is active,
6395 * as this is far more likely than the ThinkPad being in level 7,
6396 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006397 *
6398 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
6399 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006400 */
6401
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006402static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006403{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006404 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006405 printk(TPACPI_NOTICE
6406 "fan_init: initial fan status is unknown, "
6407 "assuming it is in auto mode\n");
6408 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006409 }
6410}
6411
6412static void fan_quirk1_handle(u8 *fan_status)
6413{
6414 if (unlikely(tp_features.fan_ctrl_status_undef)) {
6415 if (*fan_status != fan_control_initial_status) {
6416 /* something changed the HFSP regisnter since
6417 * driver init time, so it is not undefined
6418 * anymore */
6419 tp_features.fan_ctrl_status_undef = 0;
6420 } else {
6421 /* Return most likely status. In fact, it
6422 * might be the only possible status */
6423 *fan_status = TP_EC_FAN_AUTO;
6424 }
6425 }
6426}
6427
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006428/* Select main fan on X60/X61, NOOP on others */
6429static bool fan_select_fan1(void)
6430{
6431 if (tp_features.second_fan) {
6432 u8 val;
6433
6434 if (ec_read(fan_select_offset, &val) < 0)
6435 return false;
6436 val &= 0xFEU;
6437 if (ec_write(fan_select_offset, val) < 0)
6438 return false;
6439 }
6440 return true;
6441}
6442
6443/* Select secondary fan on X60/X61 */
6444static bool fan_select_fan2(void)
6445{
6446 u8 val;
6447
6448 if (!tp_features.second_fan)
6449 return false;
6450
6451 if (ec_read(fan_select_offset, &val) < 0)
6452 return false;
6453 val |= 0x01U;
6454 if (ec_write(fan_select_offset, val) < 0)
6455 return false;
6456
6457 return true;
6458}
6459
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006460/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006461 * Call with fan_mutex held
6462 */
6463static void fan_update_desired_level(u8 status)
6464{
6465 if ((status &
6466 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6467 if (status > 7)
6468 fan_control_desired_level = 7;
6469 else
6470 fan_control_desired_level = status;
6471 }
6472}
6473
6474static int fan_get_status(u8 *status)
6475{
6476 u8 s;
6477
6478 /* TODO:
6479 * Add TPACPI_FAN_RD_ACPI_FANS ? */
6480
6481 switch (fan_status_access_mode) {
6482 case TPACPI_FAN_RD_ACPI_GFAN:
6483 /* 570, 600e/x, 770e, 770x */
6484
6485 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
6486 return -EIO;
6487
6488 if (likely(status))
6489 *status = s & 0x07;
6490
6491 break;
6492
6493 case TPACPI_FAN_RD_TPEC:
6494 /* all except 570, 600e/x, 770e, 770x */
6495 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
6496 return -EIO;
6497
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006498 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006499 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006500 fan_quirk1_handle(status);
6501 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006502
6503 break;
6504
6505 default:
6506 return -ENXIO;
6507 }
6508
6509 return 0;
6510}
6511
6512static int fan_get_status_safe(u8 *status)
6513{
6514 int rc;
6515 u8 s;
6516
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006517 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006518 return -ERESTARTSYS;
6519 rc = fan_get_status(&s);
6520 if (!rc)
6521 fan_update_desired_level(s);
6522 mutex_unlock(&fan_mutex);
6523
6524 if (status)
6525 *status = s;
6526
6527 return rc;
6528}
6529
6530static int fan_get_speed(unsigned int *speed)
6531{
6532 u8 hi, lo;
6533
6534 switch (fan_status_access_mode) {
6535 case TPACPI_FAN_RD_TPEC:
6536 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006537 if (unlikely(!fan_select_fan1()))
6538 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006539 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
6540 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
6541 return -EIO;
6542
6543 if (likely(speed))
6544 *speed = (hi << 8) | lo;
6545
6546 break;
6547
6548 default:
6549 return -ENXIO;
6550 }
6551
6552 return 0;
6553}
6554
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006555static int fan2_get_speed(unsigned int *speed)
6556{
6557 u8 hi, lo;
6558 bool rc;
6559
6560 switch (fan_status_access_mode) {
6561 case TPACPI_FAN_RD_TPEC:
6562 /* all except 570, 600e/x, 770e, 770x */
6563 if (unlikely(!fan_select_fan2()))
6564 return -EIO;
6565 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
6566 !acpi_ec_read(fan_rpm_offset + 1, &hi);
6567 fan_select_fan1(); /* play it safe */
6568 if (rc)
6569 return -EIO;
6570
6571 if (likely(speed))
6572 *speed = (hi << 8) | lo;
6573
6574 break;
6575
6576 default:
6577 return -ENXIO;
6578 }
6579
6580 return 0;
6581}
6582
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006583static int fan_set_level(int level)
6584{
6585 if (!fan_control_allowed)
6586 return -EPERM;
6587
6588 switch (fan_control_access_mode) {
6589 case TPACPI_FAN_WR_ACPI_SFAN:
6590 if (level >= 0 && level <= 7) {
6591 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
6592 return -EIO;
6593 } else
6594 return -EINVAL;
6595 break;
6596
6597 case TPACPI_FAN_WR_ACPI_FANS:
6598 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006599 if (!(level & TP_EC_FAN_AUTO) &&
6600 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006601 ((level < 0) || (level > 7)))
6602 return -EINVAL;
6603
6604 /* safety net should the EC not support AUTO
6605 * or FULLSPEED mode bits and just ignore them */
6606 if (level & TP_EC_FAN_FULLSPEED)
6607 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01006608 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006609 level |= 4; /* safety min speed 4 */
6610
6611 if (!acpi_ec_write(fan_status_offset, level))
6612 return -EIO;
6613 else
6614 tp_features.fan_ctrl_status_undef = 0;
6615 break;
6616
6617 default:
6618 return -ENXIO;
6619 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006620
6621 vdbg_printk(TPACPI_DBG_FAN,
6622 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006623 return 0;
6624}
6625
6626static int fan_set_level_safe(int level)
6627{
6628 int rc;
6629
6630 if (!fan_control_allowed)
6631 return -EPERM;
6632
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006633 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006634 return -ERESTARTSYS;
6635
6636 if (level == TPACPI_FAN_LAST_LEVEL)
6637 level = fan_control_desired_level;
6638
6639 rc = fan_set_level(level);
6640 if (!rc)
6641 fan_update_desired_level(level);
6642
6643 mutex_unlock(&fan_mutex);
6644 return rc;
6645}
6646
6647static int fan_set_enable(void)
6648{
6649 u8 s;
6650 int rc;
6651
6652 if (!fan_control_allowed)
6653 return -EPERM;
6654
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006655 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006656 return -ERESTARTSYS;
6657
6658 switch (fan_control_access_mode) {
6659 case TPACPI_FAN_WR_ACPI_FANS:
6660 case TPACPI_FAN_WR_TPEC:
6661 rc = fan_get_status(&s);
6662 if (rc < 0)
6663 break;
6664
6665 /* Don't go out of emergency fan mode */
6666 if (s != 7) {
6667 s &= 0x07;
6668 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
6669 }
6670
6671 if (!acpi_ec_write(fan_status_offset, s))
6672 rc = -EIO;
6673 else {
6674 tp_features.fan_ctrl_status_undef = 0;
6675 rc = 0;
6676 }
6677 break;
6678
6679 case TPACPI_FAN_WR_ACPI_SFAN:
6680 rc = fan_get_status(&s);
6681 if (rc < 0)
6682 break;
6683
6684 s &= 0x07;
6685
6686 /* Set fan to at least level 4 */
6687 s |= 4;
6688
6689 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006690 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006691 else
6692 rc = 0;
6693 break;
6694
6695 default:
6696 rc = -ENXIO;
6697 }
6698
6699 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006700
6701 if (!rc)
6702 vdbg_printk(TPACPI_DBG_FAN,
6703 "fan control: set fan control register to 0x%02x\n",
6704 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006705 return rc;
6706}
6707
6708static int fan_set_disable(void)
6709{
6710 int rc;
6711
6712 if (!fan_control_allowed)
6713 return -EPERM;
6714
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006715 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006716 return -ERESTARTSYS;
6717
6718 rc = 0;
6719 switch (fan_control_access_mode) {
6720 case TPACPI_FAN_WR_ACPI_FANS:
6721 case TPACPI_FAN_WR_TPEC:
6722 if (!acpi_ec_write(fan_status_offset, 0x00))
6723 rc = -EIO;
6724 else {
6725 fan_control_desired_level = 0;
6726 tp_features.fan_ctrl_status_undef = 0;
6727 }
6728 break;
6729
6730 case TPACPI_FAN_WR_ACPI_SFAN:
6731 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
6732 rc = -EIO;
6733 else
6734 fan_control_desired_level = 0;
6735 break;
6736
6737 default:
6738 rc = -ENXIO;
6739 }
6740
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006741 if (!rc)
6742 vdbg_printk(TPACPI_DBG_FAN,
6743 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006744
6745 mutex_unlock(&fan_mutex);
6746 return rc;
6747}
6748
6749static int fan_set_speed(int speed)
6750{
6751 int rc;
6752
6753 if (!fan_control_allowed)
6754 return -EPERM;
6755
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006756 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006757 return -ERESTARTSYS;
6758
6759 rc = 0;
6760 switch (fan_control_access_mode) {
6761 case TPACPI_FAN_WR_ACPI_FANS:
6762 if (speed >= 0 && speed <= 65535) {
6763 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
6764 speed, speed, speed))
6765 rc = -EIO;
6766 } else
6767 rc = -EINVAL;
6768 break;
6769
6770 default:
6771 rc = -ENXIO;
6772 }
6773
6774 mutex_unlock(&fan_mutex);
6775 return rc;
6776}
6777
6778static void fan_watchdog_reset(void)
6779{
6780 static int fan_watchdog_active;
6781
6782 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
6783 return;
6784
6785 if (fan_watchdog_active)
6786 cancel_delayed_work(&fan_watchdog_task);
6787
6788 if (fan_watchdog_maxinterval > 0 &&
6789 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
6790 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006791 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006792 msecs_to_jiffies(fan_watchdog_maxinterval
6793 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006794 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006795 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006796 "watchdog will not trigger\n");
6797 }
6798 } else
6799 fan_watchdog_active = 0;
6800}
6801
6802static void fan_watchdog_fire(struct work_struct *ignored)
6803{
6804 int rc;
6805
6806 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
6807 return;
6808
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006809 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006810 rc = fan_set_enable();
6811 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006812 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006813 "will try again later...\n", -rc);
6814 /* reschedule for later */
6815 fan_watchdog_reset();
6816 }
6817}
6818
6819/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006820 * SYSFS fan layout: hwmon compatible (device)
6821 *
6822 * pwm*_enable:
6823 * 0: "disengaged" mode
6824 * 1: manual mode
6825 * 2: native EC "auto" mode (recommended, hardware default)
6826 *
6827 * pwm*: set speed in manual mode, ignored otherwise.
6828 * 0 is level 0; 255 is level 7. Intermediate points done with linear
6829 * interpolation.
6830 *
6831 * fan*_input: tachometer reading, RPM
6832 *
6833 *
6834 * SYSFS fan layout: extensions
6835 *
6836 * fan_watchdog (driver):
6837 * fan watchdog interval in seconds, 0 disables (default), max 120
6838 */
6839
6840/* sysfs fan pwm1_enable ----------------------------------------------- */
6841static ssize_t fan_pwm1_enable_show(struct device *dev,
6842 struct device_attribute *attr,
6843 char *buf)
6844{
6845 int res, mode;
6846 u8 status;
6847
6848 res = fan_get_status_safe(&status);
6849 if (res)
6850 return res;
6851
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006852 if (status & TP_EC_FAN_FULLSPEED) {
6853 mode = 0;
6854 } else if (status & TP_EC_FAN_AUTO) {
6855 mode = 2;
6856 } else
6857 mode = 1;
6858
6859 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
6860}
6861
6862static ssize_t fan_pwm1_enable_store(struct device *dev,
6863 struct device_attribute *attr,
6864 const char *buf, size_t count)
6865{
6866 unsigned long t;
6867 int res, level;
6868
6869 if (parse_strtoul(buf, 2, &t))
6870 return -EINVAL;
6871
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006872 tpacpi_disclose_usertask("hwmon pwm1_enable",
6873 "set fan mode to %lu\n", t);
6874
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006875 switch (t) {
6876 case 0:
6877 level = TP_EC_FAN_FULLSPEED;
6878 break;
6879 case 1:
6880 level = TPACPI_FAN_LAST_LEVEL;
6881 break;
6882 case 2:
6883 level = TP_EC_FAN_AUTO;
6884 break;
6885 case 3:
6886 /* reserved for software-controlled auto mode */
6887 return -ENOSYS;
6888 default:
6889 return -EINVAL;
6890 }
6891
6892 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03006893 if (res == -ENXIO)
6894 return -EINVAL;
6895 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006896 return res;
6897
6898 fan_watchdog_reset();
6899
6900 return count;
6901}
6902
6903static struct device_attribute dev_attr_fan_pwm1_enable =
6904 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
6905 fan_pwm1_enable_show, fan_pwm1_enable_store);
6906
6907/* sysfs fan pwm1 ------------------------------------------------------ */
6908static ssize_t fan_pwm1_show(struct device *dev,
6909 struct device_attribute *attr,
6910 char *buf)
6911{
6912 int res;
6913 u8 status;
6914
6915 res = fan_get_status_safe(&status);
6916 if (res)
6917 return res;
6918
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006919 if ((status &
6920 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
6921 status = fan_control_desired_level;
6922
6923 if (status > 7)
6924 status = 7;
6925
6926 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
6927}
6928
6929static ssize_t fan_pwm1_store(struct device *dev,
6930 struct device_attribute *attr,
6931 const char *buf, size_t count)
6932{
6933 unsigned long s;
6934 int rc;
6935 u8 status, newlevel;
6936
6937 if (parse_strtoul(buf, 255, &s))
6938 return -EINVAL;
6939
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006940 tpacpi_disclose_usertask("hwmon pwm1",
6941 "set fan speed to %lu\n", s);
6942
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006943 /* scale down from 0-255 to 0-7 */
6944 newlevel = (s >> 5) & 0x07;
6945
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006946 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02006947 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006948
6949 rc = fan_get_status(&status);
6950 if (!rc && (status &
6951 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6952 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03006953 if (rc == -ENXIO)
6954 rc = -EINVAL;
6955 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006956 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03006957 fan_watchdog_reset();
6958 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006959 }
6960
6961 mutex_unlock(&fan_mutex);
6962 return (rc)? rc : count;
6963}
6964
6965static struct device_attribute dev_attr_fan_pwm1 =
6966 __ATTR(pwm1, S_IWUSR | S_IRUGO,
6967 fan_pwm1_show, fan_pwm1_store);
6968
6969/* sysfs fan fan1_input ------------------------------------------------ */
6970static ssize_t fan_fan1_input_show(struct device *dev,
6971 struct device_attribute *attr,
6972 char *buf)
6973{
6974 int res;
6975 unsigned int speed;
6976
6977 res = fan_get_speed(&speed);
6978 if (res < 0)
6979 return res;
6980
6981 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
6982}
6983
6984static struct device_attribute dev_attr_fan_fan1_input =
6985 __ATTR(fan1_input, S_IRUGO,
6986 fan_fan1_input_show, NULL);
6987
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006988/* sysfs fan fan2_input ------------------------------------------------ */
6989static ssize_t fan_fan2_input_show(struct device *dev,
6990 struct device_attribute *attr,
6991 char *buf)
6992{
6993 int res;
6994 unsigned int speed;
6995
6996 res = fan2_get_speed(&speed);
6997 if (res < 0)
6998 return res;
6999
7000 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7001}
7002
7003static struct device_attribute dev_attr_fan_fan2_input =
7004 __ATTR(fan2_input, S_IRUGO,
7005 fan_fan2_input_show, NULL);
7006
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007007/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007008static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7009 char *buf)
7010{
7011 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7012}
7013
7014static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7015 const char *buf, size_t count)
7016{
7017 unsigned long t;
7018
7019 if (parse_strtoul(buf, 120, &t))
7020 return -EINVAL;
7021
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007022 if (!fan_control_allowed)
7023 return -EPERM;
7024
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007025 fan_watchdog_maxinterval = t;
7026 fan_watchdog_reset();
7027
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007028 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7029
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007030 return count;
7031}
7032
7033static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7034 fan_fan_watchdog_show, fan_fan_watchdog_store);
7035
7036/* --------------------------------------------------------------------- */
7037static struct attribute *fan_attributes[] = {
7038 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7039 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007040 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007041 NULL
7042};
7043
7044static const struct attribute_group fan_attr_group = {
7045 .attrs = fan_attributes,
7046};
7047
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007048#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7049#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007050
7051#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7052 { .vendor = PCI_VENDOR_ID_IBM, \
7053 .bios = TPACPI_MATCH_ANY, \
7054 .ec = TPID(__id1, __id2), \
7055 .quirks = __quirks }
7056
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007057#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7058 { .vendor = PCI_VENDOR_ID_LENOVO, \
7059 .bios = TPACPI_MATCH_ANY, \
7060 .ec = TPID(__id1, __id2), \
7061 .quirks = __quirks }
7062
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007063static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7064 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7065 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7066 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7067 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007068 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007069};
7070
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007071#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007072#undef TPACPI_FAN_QI
7073
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007074static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007075{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007076 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007077 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007078
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007079 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7080 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007081
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007082 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007083 fan_status_access_mode = TPACPI_FAN_NONE;
7084 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007085 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007086 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007087 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007088 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007089 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007090
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007091 TPACPI_ACPIHANDLE_INIT(fans);
7092 TPACPI_ACPIHANDLE_INIT(gfan);
7093 TPACPI_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007094
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007095 quirks = tpacpi_check_quirks(fan_quirk_table,
7096 ARRAY_SIZE(fan_quirk_table));
7097
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007098 if (gfan_handle) {
7099 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007100 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007101 } else {
7102 /* all other ThinkPads: note that even old-style
7103 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007104 if (likely(acpi_ec_read(fan_status_offset,
7105 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007106 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007107 if (quirks & TPACPI_FAN_Q1)
7108 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007109 if (quirks & TPACPI_FAN_2FAN) {
7110 tp_features.second_fan = 1;
7111 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7112 "secondary fan support enabled\n");
7113 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007114 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007115 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007116 "ThinkPad ACPI EC access misbehaving, "
7117 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007118 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007119 }
7120 }
7121
7122 if (sfan_handle) {
7123 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007124 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02007125 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007126 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007127 } else {
7128 if (!gfan_handle) {
7129 /* gfan without sfan means no fan control */
7130 /* all other models implement TP EC 0x2f control */
7131
7132 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007133 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007134 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007135 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007136 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007137 TPACPI_FAN_CMD_SPEED |
7138 TPACPI_FAN_CMD_LEVEL |
7139 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007140 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007141 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007142 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007143 TPACPI_FAN_CMD_LEVEL |
7144 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007145 }
7146 }
7147 }
7148
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007149 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7150 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007151 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
7152 fan_control_access_mode != TPACPI_FAN_WR_NONE),
7153 fan_status_access_mode, fan_control_access_mode);
7154
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007155 /* fan control master switch */
7156 if (!fan_control_allowed) {
7157 fan_control_access_mode = TPACPI_FAN_WR_NONE;
7158 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007159 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007160 "fan control features disabled by parameter\n");
7161 }
7162
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007163 /* update fan_control_desired_level */
7164 if (fan_status_access_mode != TPACPI_FAN_NONE)
7165 fan_get_status_safe(NULL);
7166
7167 if (fan_status_access_mode != TPACPI_FAN_NONE ||
7168 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007169 if (tp_features.second_fan) {
7170 /* attach second fan tachometer */
7171 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
7172 &dev_attr_fan_fan2_input.attr;
7173 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007174 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007175 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007176 if (rc < 0)
7177 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03007178
7179 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
7180 &driver_attr_fan_watchdog);
7181 if (rc < 0) {
7182 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
7183 &fan_attr_group);
7184 return rc;
7185 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007186 return 0;
7187 } else
7188 return 1;
7189}
7190
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007191static void fan_exit(void)
7192{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007193 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007194 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007195
7196 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007197 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007198 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
7199 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007200
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007201 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007202 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007203}
7204
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007205static void fan_suspend(pm_message_t state)
7206{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007207 int rc;
7208
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007209 if (!fan_control_allowed)
7210 return;
7211
7212 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007213 fan_control_resume_level = 0;
7214 rc = fan_get_status_safe(&fan_control_resume_level);
7215 if (rc < 0)
7216 printk(TPACPI_NOTICE
7217 "failed to read fan level for later "
7218 "restore during resume: %d\n", rc);
7219
7220 /* if it is undefined, don't attempt to restore it.
7221 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007222 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007223 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007224}
7225
7226static void fan_resume(void)
7227{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007228 u8 current_level = 7;
7229 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007230 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007231
7232 /* DSDT *always* updates status on resume */
7233 tp_features.fan_ctrl_status_undef = 0;
7234
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007235 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007236 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007237 (fan_get_status_safe(&current_level) < 0))
7238 return;
7239
7240 switch (fan_control_access_mode) {
7241 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007242 /* never decrease fan level */
7243 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007244 break;
7245 case TPACPI_FAN_WR_ACPI_FANS:
7246 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007247 /* never decrease fan level, scale is:
7248 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
7249 *
7250 * We expect the firmware to set either 7 or AUTO, but we
7251 * handle FULLSPEED out of paranoia.
7252 *
7253 * So, we can safely only restore FULLSPEED or 7, anything
7254 * else could slow the fan. Restoring AUTO is useless, at
7255 * best that's exactly what the DSDT already set (it is the
7256 * slower it uses).
7257 *
7258 * Always keep in mind that the DSDT *will* have set the
7259 * fans to what the vendor supposes is the best level. We
7260 * muck with it only to speed the fan up.
7261 */
7262 if (fan_control_resume_level != 7 &&
7263 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
7264 return;
7265 else
7266 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
7267 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007268 break;
7269 default:
7270 return;
7271 }
7272 if (do_set) {
7273 printk(TPACPI_NOTICE
7274 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007275 fan_control_resume_level);
7276 rc = fan_set_level_safe(fan_control_resume_level);
7277 if (rc < 0)
7278 printk(TPACPI_NOTICE
7279 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007280 }
7281}
7282
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007283static int fan_read(char *p)
7284{
7285 int len = 0;
7286 int rc;
7287 u8 status;
7288 unsigned int speed = 0;
7289
7290 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007291 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007292 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007293 rc = fan_get_status_safe(&status);
7294 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007295 return rc;
7296
7297 len += sprintf(p + len, "status:\t\t%s\n"
7298 "level:\t\t%d\n",
7299 (status != 0) ? "enabled" : "disabled", status);
7300 break;
7301
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007302 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007303 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007304 rc = fan_get_status_safe(&status);
7305 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007306 return rc;
7307
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007308 len += sprintf(p + len, "status:\t\t%s\n",
7309 (status != 0) ? "enabled" : "disabled");
7310
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007311 rc = fan_get_speed(&speed);
7312 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007313 return rc;
7314
7315 len += sprintf(p + len, "speed:\t\t%d\n", speed);
7316
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007317 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007318 /* Disengaged mode takes precedence */
7319 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007320 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007321 len += sprintf(p + len, "level:\t\tauto\n");
7322 else
7323 len += sprintf(p + len, "level:\t\t%d\n", status);
7324 break;
7325
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007326 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007327 default:
7328 len += sprintf(p + len, "status:\t\tnot supported\n");
7329 }
7330
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007331 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007332 len += sprintf(p + len, "commands:\tlevel <level>");
7333
7334 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007335 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007336 len += sprintf(p + len, " (<level> is 0-7)\n");
7337 break;
7338
7339 default:
7340 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007341 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007342 break;
7343 }
7344 }
7345
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007346 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007347 len += sprintf(p + len, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007348 "commands:\twatchdog <timeout> (<timeout> "
7349 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007350
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007351 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007352 len += sprintf(p + len, "commands:\tspeed <speed>"
7353 " (<speed> is 0-65535)\n");
7354
7355 return len;
7356}
7357
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007358static int fan_write_cmd_level(const char *cmd, int *rc)
7359{
7360 int level;
7361
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007362 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007363 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007364 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007365 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007366 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007367 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007368 return 0;
7369
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007370 *rc = fan_set_level_safe(level);
7371 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007372 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007373 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007374 else if (!*rc)
7375 tpacpi_disclose_usertask("procfs fan",
7376 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007377
7378 return 1;
7379}
7380
7381static int fan_write_cmd_enable(const char *cmd, int *rc)
7382{
7383 if (strlencmp(cmd, "enable") != 0)
7384 return 0;
7385
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007386 *rc = fan_set_enable();
7387 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007388 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007389 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007390 else if (!*rc)
7391 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007392
7393 return 1;
7394}
7395
7396static int fan_write_cmd_disable(const char *cmd, int *rc)
7397{
7398 if (strlencmp(cmd, "disable") != 0)
7399 return 0;
7400
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007401 *rc = fan_set_disable();
7402 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007403 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007404 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007405 else if (!*rc)
7406 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007407
7408 return 1;
7409}
7410
7411static int fan_write_cmd_speed(const char *cmd, int *rc)
7412{
7413 int speed;
7414
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007415 /* TODO:
7416 * Support speed <low> <medium> <high> ? */
7417
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007418 if (sscanf(cmd, "speed %d", &speed) != 1)
7419 return 0;
7420
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007421 *rc = fan_set_speed(speed);
7422 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007423 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007424 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007425 else if (!*rc)
7426 tpacpi_disclose_usertask("procfs fan",
7427 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007428
7429 return 1;
7430}
7431
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007432static int fan_write_cmd_watchdog(const char *cmd, int *rc)
7433{
7434 int interval;
7435
7436 if (sscanf(cmd, "watchdog %d", &interval) != 1)
7437 return 0;
7438
7439 if (interval < 0 || interval > 120)
7440 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007441 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007442 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007443 tpacpi_disclose_usertask("procfs fan",
7444 "set watchdog timer to %d\n",
7445 interval);
7446 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007447
7448 return 1;
7449}
7450
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007451static int fan_write(char *buf)
7452{
7453 char *cmd;
7454 int rc = 0;
7455
7456 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007457 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007458 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007459 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007460 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007461 fan_write_cmd_disable(cmd, &rc) ||
7462 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007463 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007464 fan_write_cmd_speed(cmd, &rc))
7465 )
7466 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007467 else if (!rc)
7468 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007469 }
7470
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007471 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007472}
7473
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007474static struct ibm_struct fan_driver_data = {
7475 .name = "fan",
7476 .read = fan_read,
7477 .write = fan_write,
7478 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007479 .suspend = fan_suspend,
7480 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007481};
7482
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007483/****************************************************************************
7484 ****************************************************************************
7485 *
7486 * Infrastructure
7487 *
7488 ****************************************************************************
7489 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007491/* sysfs name ---------------------------------------------------------- */
7492static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
7493 struct device_attribute *attr,
7494 char *buf)
7495{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007496 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007497}
7498
7499static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
7500 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
7501
7502/* --------------------------------------------------------------------- */
7503
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007504/* /proc support */
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03007505static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007506
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007507/*
7508 * Module and infrastructure proble, init and exit handling
7509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007511static int force_load;
7512
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007513#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007514static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007515{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007516 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007517
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007518 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007519}
7520#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
7521
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007522static void ibm_exit(struct ibm_struct *ibm)
7523{
7524 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
7525
7526 list_del_init(&ibm->all_drivers);
7527
7528 if (ibm->flags.acpi_notify_installed) {
7529 dbg_printk(TPACPI_DBG_EXIT,
7530 "%s: acpi_remove_notify_handler\n", ibm->name);
7531 BUG_ON(!ibm->acpi);
7532 acpi_remove_notify_handler(*ibm->acpi->handle,
7533 ibm->acpi->type,
7534 dispatch_acpi_notify);
7535 ibm->flags.acpi_notify_installed = 0;
7536 ibm->flags.acpi_notify_installed = 0;
7537 }
7538
7539 if (ibm->flags.proc_created) {
7540 dbg_printk(TPACPI_DBG_EXIT,
7541 "%s: remove_proc_entry\n", ibm->name);
7542 remove_proc_entry(ibm->name, proc_dir);
7543 ibm->flags.proc_created = 0;
7544 }
7545
7546 if (ibm->flags.acpi_driver_registered) {
7547 dbg_printk(TPACPI_DBG_EXIT,
7548 "%s: acpi_bus_unregister_driver\n", ibm->name);
7549 BUG_ON(!ibm->acpi);
7550 acpi_bus_unregister_driver(ibm->acpi->driver);
7551 kfree(ibm->acpi->driver);
7552 ibm->acpi->driver = NULL;
7553 ibm->flags.acpi_driver_registered = 0;
7554 }
7555
7556 if (ibm->flags.init_called && ibm->exit) {
7557 ibm->exit();
7558 ibm->flags.init_called = 0;
7559 }
7560
7561 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
7562}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007563
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007564static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565{
7566 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007567 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 struct proc_dir_entry *entry;
7569
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007570 BUG_ON(ibm == NULL);
7571
7572 INIT_LIST_HEAD(&ibm->all_drivers);
7573
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007574 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575 return 0;
7576
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007577 dbg_printk(TPACPI_DBG_INIT,
7578 "probing for %s\n", ibm->name);
7579
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007580 if (iibm->init) {
7581 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007582 if (ret > 0)
7583 return 0; /* probe failed */
7584 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007586
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007587 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588 }
7589
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007590 if (ibm->acpi) {
7591 if (ibm->acpi->hid) {
7592 ret = register_tpacpi_subdriver(ibm);
7593 if (ret)
7594 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007595 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007596
7597 if (ibm->acpi->notify) {
7598 ret = setup_acpi_notify(ibm);
7599 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007600 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007601 ibm->name);
7602 ret = 0;
7603 goto err_out;
7604 }
7605 if (ret < 0)
7606 goto err_out;
7607 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007608 }
7609
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007610 dbg_printk(TPACPI_DBG_INIT,
7611 "%s installed\n", ibm->name);
7612
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007613 if (ibm->read) {
7614 entry = create_proc_entry(ibm->name,
7615 S_IFREG | S_IRUGO | S_IWUSR,
7616 proc_dir);
7617 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007618 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007619 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007620 ret = -ENODEV;
7621 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007622 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007623 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007624 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007625 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007626 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007627 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007630 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
7631
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007633
7634err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007635 dbg_printk(TPACPI_DBG_INIT,
7636 "%s: at error exit path with result %d\n",
7637 ibm->name, ret);
7638
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007639 ibm_exit(ibm);
7640 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641}
7642
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007643/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007645static bool __pure __init tpacpi_is_fw_digit(const char c)
7646{
7647 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
7648}
7649
7650/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
7651static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
7652 const char t)
7653{
7654 return s && strlen(s) >= 8 &&
7655 tpacpi_is_fw_digit(s[0]) &&
7656 tpacpi_is_fw_digit(s[1]) &&
7657 s[2] == t && s[3] == 'T' &&
7658 tpacpi_is_fw_digit(s[4]) &&
7659 tpacpi_is_fw_digit(s[5]) &&
7660 s[6] == 'W' && s[7] == 'W';
7661}
7662
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007663/* returns 0 - probe ok, or < 0 - probe error.
7664 * Probe ok doesn't mean thinkpad found.
7665 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
7666static int __must_check __init get_thinkpad_model_data(
7667 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007668{
Jeff Garzik18552562007-10-03 15:15:40 -04007669 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007670 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007671 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007672
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007673 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007674 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007675
7676 memset(tp, 0, sizeof(*tp));
7677
7678 if (dmi_name_in_vendors("IBM"))
7679 tp->vendor = PCI_VENDOR_ID_IBM;
7680 else if (dmi_name_in_vendors("LENOVO"))
7681 tp->vendor = PCI_VENDOR_ID_LENOVO;
7682 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007683 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007684
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007685 s = dmi_get_system_info(DMI_BIOS_VERSION);
7686 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
7687 if (s && !tp->bios_version_str)
7688 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007689
7690 /* Really ancient ThinkPad 240X will fail this, which is fine */
7691 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007692 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007693
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007694 tp->bios_model = tp->bios_version_str[0]
7695 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007696 tp->bios_release = (tp->bios_version_str[4] << 8)
7697 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007698
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007699 /*
7700 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
7701 * X32 or newer, all Z series; Some models must have an
7702 * up-to-date BIOS or they will not be detected.
7703 *
7704 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
7705 */
7706 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007707 if (sscanf(dev->name,
7708 "IBM ThinkPad Embedded Controller -[%17c",
7709 ec_fw_string) == 1) {
7710 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
7711 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007712
7713 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007714 if (!tp->ec_version_str)
7715 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007716
7717 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
7718 tp->ec_model = ec_fw_string[0]
7719 | (ec_fw_string[1] << 8);
7720 tp->ec_release = (ec_fw_string[4] << 8)
7721 | ec_fw_string[5];
7722 } else {
7723 printk(TPACPI_NOTICE
7724 "ThinkPad firmware release %s "
7725 "doesn't match the known patterns\n",
7726 ec_fw_string);
7727 printk(TPACPI_NOTICE
7728 "please report this to %s\n",
7729 TPACPI_MAIL);
7730 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007731 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007732 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007733 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007734
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007735 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
7736 if (s && !strnicmp(s, "ThinkPad", 8)) {
7737 tp->model_str = kstrdup(s, GFP_KERNEL);
7738 if (!tp->model_str)
7739 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007740 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03007741
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007742 s = dmi_get_system_info(DMI_PRODUCT_NAME);
7743 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
7744 if (s && !tp->nummodel_str)
7745 return -ENOMEM;
7746
7747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748}
7749
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007750static int __init probe_for_thinkpad(void)
7751{
7752 int is_thinkpad;
7753
7754 if (acpi_disabled)
7755 return -ENODEV;
7756
7757 /*
7758 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03007759 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007760 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03007761 is_thinkpad = (thinkpad_id.model_str != NULL) ||
7762 (thinkpad_id.ec_model != 0) ||
7763 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007764
7765 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007766 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007767 if (!ec_handle) {
7768 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007769 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007770 "Not yet supported ThinkPad detected!\n");
7771 return -ENODEV;
7772 }
7773
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007774 if (!is_thinkpad && !force_load)
7775 return -ENODEV;
7776
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007777 return 0;
7778}
7779
7780
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007781/* Module init, exit, parameters */
7782
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007783static struct ibm_init_struct ibms_init[] __initdata = {
7784 {
7785 .init = thinkpad_acpi_driver_init,
7786 .data = &thinkpad_acpi_driver_data,
7787 },
7788 {
7789 .init = hotkey_init,
7790 .data = &hotkey_driver_data,
7791 },
7792 {
7793 .init = bluetooth_init,
7794 .data = &bluetooth_driver_data,
7795 },
7796 {
7797 .init = wan_init,
7798 .data = &wan_driver_data,
7799 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02007800 {
7801 .init = uwb_init,
7802 .data = &uwb_driver_data,
7803 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007804#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007805 {
7806 .init = video_init,
7807 .data = &video_driver_data,
7808 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007809#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007810 {
7811 .init = light_init,
7812 .data = &light_driver_data,
7813 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007814 {
7815 .init = cmos_init,
7816 .data = &cmos_driver_data,
7817 },
7818 {
7819 .init = led_init,
7820 .data = &led_driver_data,
7821 },
7822 {
7823 .init = beep_init,
7824 .data = &beep_driver_data,
7825 },
7826 {
7827 .init = thermal_init,
7828 .data = &thermal_driver_data,
7829 },
7830 {
7831 .data = &ecdump_driver_data,
7832 },
7833 {
7834 .init = brightness_init,
7835 .data = &brightness_driver_data,
7836 },
7837 {
7838 .data = &volume_driver_data,
7839 },
7840 {
7841 .init = fan_init,
7842 .data = &fan_driver_data,
7843 },
7844};
7845
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007846static int __init set_ibm_param(const char *val, struct kernel_param *kp)
7847{
7848 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007849 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007850
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02007851 if (!kp || !kp->name || !val)
7852 return -EINVAL;
7853
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007854 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
7855 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02007856 WARN_ON(ibm == NULL);
7857
7858 if (!ibm || !ibm->name)
7859 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007860
7861 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
7862 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007863 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007864 strcpy(ibms_init[i].param, val);
7865 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007866 return 0;
7867 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007868 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007869
7870 return -EINVAL;
7871}
7872
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007873module_param(experimental, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007874MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007875 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007876
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03007877module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007878MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03007879
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03007880module_param(force_load, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007881MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007882 "Attempts to load the driver even on a "
7883 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007884
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03007885module_param_named(fan_control, fan_control_allowed, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007886MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007887 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007888
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007889module_param_named(brightness_mode, brightness_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007890MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007891 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007892 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03007893
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02007894module_param(brightness_enable, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007895MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007896 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02007897
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03007898module_param(hotkey_report_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007899MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007900 "used for backwards compatibility with userspace, "
7901 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03007902
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007903#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007904 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02007905 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007906 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007907
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007908TPACPI_PARAM(hotkey);
7909TPACPI_PARAM(bluetooth);
7910TPACPI_PARAM(video);
7911TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007912TPACPI_PARAM(cmos);
7913TPACPI_PARAM(led);
7914TPACPI_PARAM(beep);
7915TPACPI_PARAM(ecdump);
7916TPACPI_PARAM(brightness);
7917TPACPI_PARAM(volume);
7918TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007919
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02007920#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
7921module_param(dbg_wlswemul, uint, 0);
7922MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
7923module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
7924MODULE_PARM_DESC(wlsw_state,
7925 "Initial state of the emulated WLSW switch");
7926
7927module_param(dbg_bluetoothemul, uint, 0);
7928MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
7929module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
7930MODULE_PARM_DESC(bluetooth_state,
7931 "Initial state of the emulated bluetooth switch");
7932
7933module_param(dbg_wwanemul, uint, 0);
7934MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
7935module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
7936MODULE_PARM_DESC(wwan_state,
7937 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02007938
7939module_param(dbg_uwbemul, uint, 0);
7940MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
7941module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
7942MODULE_PARM_DESC(uwb_state,
7943 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02007944#endif
7945
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007946static void thinkpad_acpi_module_exit(void)
7947{
7948 struct ibm_struct *ibm, *itmp;
7949
7950 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
7951
7952 list_for_each_entry_safe_reverse(ibm, itmp,
7953 &tpacpi_all_drivers,
7954 all_drivers) {
7955 ibm_exit(ibm);
7956 }
7957
7958 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
7959
7960 if (tpacpi_inputdev) {
7961 if (tp_features.input_device_registered)
7962 input_unregister_device(tpacpi_inputdev);
7963 else
7964 input_free_device(tpacpi_inputdev);
7965 }
7966
7967 if (tpacpi_hwmon)
7968 hwmon_device_unregister(tpacpi_hwmon);
7969
7970 if (tp_features.sensors_pdev_attrs_registered)
7971 device_remove_file(&tpacpi_sensors_pdev->dev,
7972 &dev_attr_thinkpad_acpi_pdev_name);
7973 if (tpacpi_sensors_pdev)
7974 platform_device_unregister(tpacpi_sensors_pdev);
7975 if (tpacpi_pdev)
7976 platform_device_unregister(tpacpi_pdev);
7977
7978 if (tp_features.sensors_pdrv_attrs_registered)
7979 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
7980 if (tp_features.platform_drv_attrs_registered)
7981 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
7982
7983 if (tp_features.sensors_pdrv_registered)
7984 platform_driver_unregister(&tpacpi_hwmon_pdriver);
7985
7986 if (tp_features.platform_drv_registered)
7987 platform_driver_unregister(&tpacpi_pdriver);
7988
7989 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007990 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007991
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007992 if (tpacpi_wq)
7993 destroy_workqueue(tpacpi_wq);
7994
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007995 kfree(thinkpad_id.bios_version_str);
7996 kfree(thinkpad_id.ec_version_str);
7997 kfree(thinkpad_id.model_str);
7998}
7999
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008000
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008001static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002{
8003 int ret, i;
8004
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008005 tpacpi_lifecycle = TPACPI_LIFE_INIT;
8006
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008007 /* Parameter checking */
8008 if (hotkey_report_mode > 2)
8009 return -EINVAL;
8010
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008011 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008012
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008013 ret = get_thinkpad_model_data(&thinkpad_id);
8014 if (ret) {
8015 printk(TPACPI_ERR
8016 "unable to get DMI data: %d\n", ret);
8017 thinkpad_acpi_module_exit();
8018 return ret;
8019 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008020 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008021 if (ret) {
8022 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008023 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008026 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008027
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008028 TPACPI_ACPIHANDLE_INIT(ecrd);
8029 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008031 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
8032 if (!tpacpi_wq) {
8033 thinkpad_acpi_module_exit();
8034 return -ENOMEM;
8035 }
8036
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008037 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008039 printk(TPACPI_ERR
8040 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008041 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042 return -ENODEV;
8043 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008044
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008045 ret = platform_driver_register(&tpacpi_pdriver);
8046 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008047 printk(TPACPI_ERR
8048 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008049 thinkpad_acpi_module_exit();
8050 return ret;
8051 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03008052 tp_features.platform_drv_registered = 1;
8053
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008054 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
8055 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008056 printk(TPACPI_ERR
8057 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008058 thinkpad_acpi_module_exit();
8059 return ret;
8060 }
8061 tp_features.sensors_pdrv_registered = 1;
8062
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008063 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008064 if (!ret) {
8065 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008066 ret = tpacpi_create_driver_attributes(
8067 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008068 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008069 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008070 printk(TPACPI_ERR
8071 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008072 thinkpad_acpi_module_exit();
8073 return ret;
8074 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008075 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008076
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008077
8078 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008079 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008080 NULL, 0);
8081 if (IS_ERR(tpacpi_pdev)) {
8082 ret = PTR_ERR(tpacpi_pdev);
8083 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008084 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008085 thinkpad_acpi_module_exit();
8086 return ret;
8087 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008088 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008089 TPACPI_HWMON_DRVR_NAME,
8090 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008091 if (IS_ERR(tpacpi_sensors_pdev)) {
8092 ret = PTR_ERR(tpacpi_sensors_pdev);
8093 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008094 printk(TPACPI_ERR
8095 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008096 thinkpad_acpi_module_exit();
8097 return ret;
8098 }
8099 ret = device_create_file(&tpacpi_sensors_pdev->dev,
8100 &dev_attr_thinkpad_acpi_pdev_name);
8101 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008102 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008103 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008104 thinkpad_acpi_module_exit();
8105 return ret;
8106 }
8107 tp_features.sensors_pdev_attrs_registered = 1;
8108 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008109 if (IS_ERR(tpacpi_hwmon)) {
8110 ret = PTR_ERR(tpacpi_hwmon);
8111 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008112 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008113 thinkpad_acpi_module_exit();
8114 return ret;
8115 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03008116 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008117 tpacpi_inputdev = input_allocate_device();
8118 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008119 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008120 thinkpad_acpi_module_exit();
8121 return -ENOMEM;
8122 } else {
8123 /* Prepare input device, but don't register */
8124 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008125 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008126 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03008127 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
8128 thinkpad_id.vendor :
8129 PCI_VENDOR_ID_IBM;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008130 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
8131 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
8132 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008133 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8134 ret = ibm_init(&ibms_init[i]);
8135 if (ret >= 0 && *ibms_init[i].param)
8136 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008138 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139 return ret;
8140 }
8141 }
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008142 ret = input_register_device(tpacpi_inputdev);
8143 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008144 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008145 thinkpad_acpi_module_exit();
8146 return ret;
8147 } else {
8148 tp_features.input_device_registered = 1;
8149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008151 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152 return 0;
8153}
8154
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03008155MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
8156
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008157/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008158 * This will autoload the driver in almost every ThinkPad
8159 * in widespread use.
8160 *
8161 * Only _VERY_ old models, like the 240, 240x and 570 lack
8162 * the HKEY event interface.
8163 */
8164MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
8165
8166/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008167 * DMI matching for module autoloading
8168 *
8169 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8170 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
8171 *
8172 * Only models listed in thinkwiki will be supported, so add yours
8173 * if it is not there yet.
8174 */
8175#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01008176 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008177
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008178/* Ancient thinkpad BIOSes have to be identified by
8179 * BIOS type or model number, and there are far less
8180 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008181IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008182
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00008183MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
8184MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008185MODULE_DESCRIPTION(TPACPI_DESC);
8186MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008187MODULE_LICENSE("GPL");
8188
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008189module_init(thinkpad_acpi_module_init);
8190module_exit(thinkpad_acpi_module_exit);