blob: f003fb7c79ca9d64a2b8f902b8e1f76048852c91 [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 Holschuhaa2fbce2009-01-11 03:01:10 -020024#define TPACPI_VERSION "0.22"
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +000025#define TPACPI_SYSFS_VERSION 0x020300
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 Holschuh0e74dc22008-07-21 09:15:51 -0300169/* rfkill switches */
170enum {
171 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
172 TPACPI_RFK_WWAN_SW_ID,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200173 TPACPI_RFK_UWB_SW_ID,
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -0300174};
175
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000176/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200177#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000178#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
179#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
180#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
181#define TPACPI_ERR KERN_ERR TPACPI_LOG
182#define TPACPI_WARN KERN_WARNING TPACPI_LOG
183#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
184#define TPACPI_INFO KERN_INFO TPACPI_LOG
185#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200186
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000187/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200188#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000189#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200190#define TPACPI_DBG_INIT 0x0001
191#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200192
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200193#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
194#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
195#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200196
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200197
198/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200199 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200200 */
201
202struct ibm_struct;
203
204struct tp_acpi_drv_struct {
205 const struct acpi_device_id *hid;
206 struct acpi_driver *driver;
207
208 void (*notify) (struct ibm_struct *, u32);
209 acpi_handle *handle;
210 u32 type;
211 struct acpi_device *device;
212};
213
214struct ibm_struct {
215 char *name;
216
217 int (*read) (char *);
218 int (*write) (char *);
219 void (*exit) (void);
220 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200221 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200222 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200223
224 struct list_head all_drivers;
225
226 struct tp_acpi_drv_struct *acpi;
227
228 struct {
229 u8 acpi_driver_registered:1;
230 u8 acpi_notify_installed:1;
231 u8 proc_created:1;
232 u8 init_called:1;
233 u8 experimental:1;
234 } flags;
235};
236
237struct ibm_init_struct {
238 char param[32];
239
240 int (*init) (struct ibm_init_struct *);
241 struct ibm_struct *data;
242};
243
244static struct {
245#ifdef CONFIG_THINKPAD_ACPI_BAY
246 u32 bay_status:1;
247 u32 bay_eject:1;
248 u32 bay_status2:1;
249 u32 bay_eject2:1;
250#endif
251 u32 bluetooth:1;
252 u32 hotkey:1;
253 u32 hotkey_mask:1;
254 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200255 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200256 u32 light:1;
257 u32 light_status:1;
258 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300259 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200260 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200261 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200262 u32 fan_ctrl_status_undef:1;
263 u32 input_device_registered:1;
264 u32 platform_drv_registered:1;
265 u32 platform_drv_attrs_registered:1;
266 u32 sensors_pdrv_registered:1;
267 u32 sensors_pdrv_attrs_registered:1;
268 u32 sensors_pdev_attrs_registered:1;
269 u32 hotkey_poll_active:1;
270} tp_features;
271
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300272static struct {
273 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -0300274 u16 bright_cmos_ec_unsync:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300275} tp_warned;
276
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200277struct thinkpad_id_data {
278 unsigned int vendor; /* ThinkPad vendor:
279 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
280
281 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
282 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
283
284 u16 bios_model; /* Big Endian, TP-1Y = 0x5931, 0 = unknown */
285 u16 ec_model;
286
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300287 char *model_str; /* ThinkPad T43 */
288 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200289};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200290static struct thinkpad_id_data thinkpad_id;
291
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300292static enum {
293 TPACPI_LIFE_INIT = 0,
294 TPACPI_LIFE_RUNNING,
295 TPACPI_LIFE_EXITING,
296} tpacpi_lifecycle;
297
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200298static int experimental;
299static u32 dbg_level;
300
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300301static struct workqueue_struct *tpacpi_wq;
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;
307 enum led_brightness new_brightness;
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 Holschuh56b6aeb2007-03-23 17:33:57 -0300356/****************************************************************************
357 ****************************************************************************
358 *
359 * ACPI Helpers and device model
360 *
361 ****************************************************************************
362 ****************************************************************************/
363
364/*************************************************************************
365 * ACPI basic handles
366 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300368static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200370#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 static acpi_handle object##_handle; \
372 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400373 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 static char *object##_paths[] = { paths }
375
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200376TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400377 "\\_SB.PCI.ISA.EC", /* 570 */
378 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
379 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
380 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
381 "\\_SB.PCI0.ICH3.EC0", /* R31 */
382 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300383 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200385TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
386TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200388TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
389 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400390 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
391 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300392 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400393
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200394TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400395 "^HKEY", /* R30, R31 */
396 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300397 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400398
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200399TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
400 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
401 "\\_SB.PCI0.VID0", /* 770e */
402 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
403 "\\_SB.PCI0.AGP.VID", /* all others */
404 ); /* R30, R31 */
405
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400406
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300407/*************************************************************************
408 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200409 */
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411static int acpi_evalf(acpi_handle handle,
412 void *res, char *method, char *fmt, ...)
413{
414 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400415 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200416 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400417 struct acpi_buffer result, *resultp;
418 union acpi_object out_obj;
419 acpi_status status;
420 va_list ap;
421 char res_type;
422 int success;
423 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200426 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428 }
429
430 if (*fmt == 'q') {
431 quiet = 1;
432 fmt++;
433 } else
434 quiet = 0;
435
436 res_type = *(fmt++);
437
438 params.count = 0;
439 params.pointer = &in_objs[0];
440
441 va_start(ap, fmt);
442 while (*fmt) {
443 char c = *(fmt++);
444 switch (c) {
445 case 'd': /* int */
446 in_objs[params.count].integer.value = va_arg(ap, int);
447 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
448 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400449 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200451 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 "with invalid format character '%c'\n", c);
453 return 0;
454 }
455 }
456 va_end(ap);
457
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400458 if (res_type != 'v') {
459 result.length = sizeof(out_obj);
460 result.pointer = &out_obj;
461 resultp = &result;
462 } else
463 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400465 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400468 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (res)
470 *(int *)res = out_obj.integer.value;
471 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
472 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400473 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 success = status == AE_OK;
475 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400476 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200478 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 "with invalid format character '%c'\n", res_type);
480 return 0;
481 }
482
483 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200484 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 method, fmt0, status);
486
487 return success;
488}
489
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200490static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300491{
492 int v;
493
494 if (ecrd_handle) {
495 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
496 return 0;
497 *p = v;
498 } else {
499 if (ec_read(i, p) < 0)
500 return 0;
501 }
502
503 return 1;
504}
505
506static int acpi_ec_write(int i, u8 v)
507{
508 if (ecwr_handle) {
509 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
510 return 0;
511 } else {
512 if (ec_write(i, v) < 0)
513 return 0;
514 }
515
516 return 1;
517}
518
Henrique de Moraes Holschuh013c40e2008-01-08 13:02:54 -0200519#if defined(CONFIG_THINKPAD_ACPI_DOCK) || defined(CONFIG_THINKPAD_ACPI_BAY)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300520static int _sta(acpi_handle handle)
521{
522 int status;
523
524 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
525 status = 0;
526
527 return status;
528}
Henrique de Moraes Holschuh013c40e2008-01-08 13:02:54 -0200529#endif
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300530
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300531static int issue_thinkpad_cmos_command(int cmos_cmd)
532{
533 if (!cmos_handle)
534 return -ENXIO;
535
536 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
537 return -EIO;
538
539 return 0;
540}
541
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300542/*************************************************************************
543 * ACPI device model
544 */
545
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200546#define TPACPI_ACPIHANDLE_INIT(object) \
547 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200548 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
549
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300550static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300551 acpi_handle *handle, acpi_handle parent,
552 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300553{
554 int i;
555 acpi_status status;
556
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300557 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
558 name);
559
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300560 for (i = 0; i < num_paths; i++) {
561 status = acpi_get_handle(parent, paths[i], handle);
562 if (ACPI_SUCCESS(status)) {
563 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300564 dbg_printk(TPACPI_DBG_INIT,
565 "Found ACPI handle %s for %s\n",
566 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300567 return;
568 }
569 }
570
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300571 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
572 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300573 *handle = NULL;
574}
575
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300576static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300577{
578 struct ibm_struct *ibm = data;
579
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300580 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
581 return;
582
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300583 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300584 return;
585
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300586 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300587}
588
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300589static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300590{
591 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300592 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300593
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300594 BUG_ON(!ibm->acpi);
595
596 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300597 return 0;
598
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300599 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300600 "setting up ACPI notify for %s\n", ibm->name);
601
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300602 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
603 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200604 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300605 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300606 return -ENODEV;
607 }
608
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700609 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300610 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200611 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300612 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300613
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300614 status = acpi_install_notify_handler(*ibm->acpi->handle,
615 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300616 if (ACPI_FAILURE(status)) {
617 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200618 printk(TPACPI_NOTICE
619 "another device driver is already "
620 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300621 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200622 printk(TPACPI_ERR
623 "acpi_install_notify_handler(%s) failed: %d\n",
624 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300625 }
626 return -ENODEV;
627 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300628 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300629 return 0;
630}
631
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300632static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300633{
634 return 0;
635}
636
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300637static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300638{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300639 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300640
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300641 dbg_printk(TPACPI_DBG_INIT,
642 "registering %s as an ACPI driver\n", ibm->name);
643
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300644 BUG_ON(!ibm->acpi);
645
646 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
647 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300648 printk(TPACPI_ERR
649 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300650 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300651 }
652
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200653 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300654 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200655
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300656 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300657
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300658 rc = acpi_bus_register_driver(ibm->acpi->driver);
659 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200660 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200661 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300662 kfree(ibm->acpi->driver);
663 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300664 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300665 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300666
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300667 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300668}
669
670
671/****************************************************************************
672 ****************************************************************************
673 *
674 * Procfs Helpers
675 *
676 ****************************************************************************
677 ****************************************************************************/
678
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300679static int dispatch_procfs_read(char *page, char **start, off_t off,
680 int count, int *eof, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300681{
682 struct ibm_struct *ibm = data;
683 int len;
684
685 if (!ibm || !ibm->read)
686 return -EINVAL;
687
688 len = ibm->read(page);
689 if (len < 0)
690 return len;
691
692 if (len <= off + count)
693 *eof = 1;
694 *start = page + off;
695 len -= off;
696 if (len > count)
697 len = count;
698 if (len < 0)
699 len = 0;
700
701 return len;
702}
703
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300704static int dispatch_procfs_write(struct file *file,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200705 const char __user *userbuf,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300706 unsigned long count, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300707{
708 struct ibm_struct *ibm = data;
709 char *kernbuf;
710 int ret;
711
712 if (!ibm || !ibm->write)
713 return -EINVAL;
714
715 kernbuf = kmalloc(count + 2, GFP_KERNEL);
716 if (!kernbuf)
717 return -ENOMEM;
718
719 if (copy_from_user(kernbuf, userbuf, count)) {
720 kfree(kernbuf);
721 return -EFAULT;
722 }
723
724 kernbuf[count] = 0;
725 strcat(kernbuf, ",");
726 ret = ibm->write(kernbuf);
727 if (ret == 0)
728 ret = count;
729
730 kfree(kernbuf);
731
732 return ret;
733}
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735static char *next_cmd(char **cmds)
736{
737 char *start = *cmds;
738 char *end;
739
740 while ((end = strchr(start, ',')) && end == start)
741 start = end + 1;
742
743 if (!end)
744 return NULL;
745
746 *end = 0;
747 *cmds = end + 1;
748 return start;
749}
750
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300751
752/****************************************************************************
753 ****************************************************************************
754 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300755 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300756 *
757 ****************************************************************************
758 ****************************************************************************/
759
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300760static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300761static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700762static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300763static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300764static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200765static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300766
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200767static int tpacpi_suspend_handler(struct platform_device *pdev,
768 pm_message_t state)
769{
770 struct ibm_struct *ibm, *itmp;
771
772 list_for_each_entry_safe(ibm, itmp,
773 &tpacpi_all_drivers,
774 all_drivers) {
775 if (ibm->suspend)
776 (ibm->suspend)(state);
777 }
778
779 return 0;
780}
781
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300782static int tpacpi_resume_handler(struct platform_device *pdev)
783{
784 struct ibm_struct *ibm, *itmp;
785
786 list_for_each_entry_safe(ibm, itmp,
787 &tpacpi_all_drivers,
788 all_drivers) {
789 if (ibm->resume)
790 (ibm->resume)();
791 }
792
793 return 0;
794}
795
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200796static void tpacpi_shutdown_handler(struct platform_device *pdev)
797{
798 struct ibm_struct *ibm, *itmp;
799
800 list_for_each_entry_safe(ibm, itmp,
801 &tpacpi_all_drivers,
802 all_drivers) {
803 if (ibm->shutdown)
804 (ibm->shutdown)();
805 }
806}
807
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300808static struct platform_driver tpacpi_pdriver = {
809 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200810 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300811 .owner = THIS_MODULE,
812 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200813 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300814 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200815 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300816};
817
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300818static struct platform_driver tpacpi_hwmon_pdriver = {
819 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200820 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300821 .owner = THIS_MODULE,
822 },
823};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300824
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300825/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300826 * sysfs support helpers
827 */
828
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200829struct attribute_set {
830 unsigned int members, max_members;
831 struct attribute_group group;
832};
833
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300834struct attribute_set_obj {
835 struct attribute_set s;
836 struct attribute *a;
837} __attribute__((packed));
838
839static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200840 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300841{
842 struct attribute_set_obj *sobj;
843
844 if (max_members == 0)
845 return NULL;
846
847 /* Allocates space for implicit NULL at the end too */
848 sobj = kzalloc(sizeof(struct attribute_set_obj) +
849 max_members * sizeof(struct attribute *),
850 GFP_KERNEL);
851 if (!sobj)
852 return NULL;
853 sobj->s.max_members = max_members;
854 sobj->s.group.attrs = &sobj->a;
855 sobj->s.group.name = name;
856
857 return &sobj->s;
858}
859
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200860#define destroy_attr_set(_set) \
861 kfree(_set);
862
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300863/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200864static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300865{
866 if (!s || !attr)
867 return -EINVAL;
868
869 if (s->members >= s->max_members)
870 return -ENOMEM;
871
872 s->group.attrs[s->members] = attr;
873 s->members++;
874
875 return 0;
876}
877
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200878static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300879 struct attribute **attr,
880 unsigned int count)
881{
882 int i, res;
883
884 for (i = 0; i < count; i++) {
885 res = add_to_attr_set(s, attr[i]);
886 if (res)
887 return res;
888 }
889
890 return 0;
891}
892
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200893static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300894{
895 sysfs_remove_group(kobj, &s->group);
896 destroy_attr_set(s);
897}
898
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200899#define register_attr_set_with_sysfs(_attr_set, _kobj) \
900 sysfs_create_group(_kobj, &_attr_set->group)
901
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300902static int parse_strtoul(const char *buf,
903 unsigned long max, unsigned long *value)
904{
905 char *endp;
906
Henrique de Moraes Holschuh32afbf02007-10-08 10:12:56 -0300907 while (*buf && isspace(*buf))
908 buf++;
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300909 *value = simple_strtoul(buf, &endp, 0);
910 while (*endp && isspace(*endp))
911 endp++;
912 if (*endp || *value > max)
913 return -EINVAL;
914
915 return 0;
916}
917
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -0300918static void tpacpi_disable_brightness_delay(void)
919{
920 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
921 printk(TPACPI_NOTICE
922 "ACPI backlight control delay disabled\n");
923}
924
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300925static int __init tpacpi_query_bcl_levels(acpi_handle handle)
926{
927 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
928 union acpi_object *obj;
929 int rc;
930
931 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
932 obj = (union acpi_object *)buffer.pointer;
933 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
934 printk(TPACPI_ERR "Unknown _BCL data, "
935 "please report this to %s\n", TPACPI_MAIL);
936 rc = 0;
937 } else {
938 rc = obj->package.count;
939 }
940 } else {
941 return 0;
942 }
943
944 kfree(buffer.pointer);
945 return rc;
946}
947
948static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
949 u32 lvl, void *context, void **rv)
950{
951 char name[ACPI_PATH_SEGMENT_LENGTH];
952 struct acpi_buffer buffer = { sizeof(name), &name };
953
954 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
955 !strncmp("_BCL", name, sizeof(name) - 1)) {
956 BUG_ON(!rv || !*rv);
957 **(int **)rv = tpacpi_query_bcl_levels(handle);
958 return AE_CTRL_TERMINATE;
959 } else {
960 return AE_OK;
961 }
962}
963
964/*
965 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
966 */
967static int __init tpacpi_check_std_acpi_brightness_support(void)
968{
969 int status;
970 int bcl_levels = 0;
971 void *bcl_ptr = &bcl_levels;
972
973 if (!vid_handle) {
974 TPACPI_ACPIHANDLE_INIT(vid);
975 }
976 if (!vid_handle)
977 return 0;
978
979 /*
980 * Search for a _BCL method, and execute it. This is safe on all
981 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
982 * BIOS in ACPI backlight control mode. We do NOT have to care
983 * about calling the _BCL method in an enabled video device, any
984 * will do for our purposes.
985 */
986
987 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
988 tpacpi_acpi_walk_find_bcl, NULL,
989 &bcl_ptr);
990
991 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
992 tp_features.bright_acpimode = 1;
993 return (bcl_levels - 2);
994 }
995
996 return 0;
997}
998
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -0300999static int __init tpacpi_new_rfkill(const unsigned int id,
1000 struct rfkill **rfk,
1001 const enum rfkill_type rfktype,
1002 const char *name,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001003 const bool set_default,
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03001004 int (*toggle_radio)(void *, enum rfkill_state),
1005 int (*get_state)(void *, enum rfkill_state *))
1006{
1007 int res;
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02001008 enum rfkill_state initial_state = RFKILL_STATE_SOFT_BLOCKED;
1009
1010 res = get_state(NULL, &initial_state);
1011 if (res < 0) {
1012 printk(TPACPI_ERR
1013 "failed to read initial state for %s, error %d; "
1014 "will turn radio off\n", name, res);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001015 } else if (set_default) {
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02001016 /* try to set the initial state as the default for the rfkill
1017 * type, since we ask the firmware to preserve it across S5 in
1018 * NVRAM */
1019 rfkill_set_default(rfktype,
1020 (initial_state == RFKILL_STATE_UNBLOCKED) ?
1021 RFKILL_STATE_UNBLOCKED :
1022 RFKILL_STATE_SOFT_BLOCKED);
1023 }
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03001024
1025 *rfk = rfkill_allocate(&tpacpi_pdev->dev, rfktype);
1026 if (!*rfk) {
1027 printk(TPACPI_ERR
1028 "failed to allocate memory for rfkill class\n");
1029 return -ENOMEM;
1030 }
1031
1032 (*rfk)->name = name;
1033 (*rfk)->get_state = get_state;
1034 (*rfk)->toggle_radio = toggle_radio;
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02001035 (*rfk)->state = initial_state;
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03001036
1037 res = rfkill_register(*rfk);
1038 if (res < 0) {
1039 printk(TPACPI_ERR
1040 "failed to register %s rfkill switch: %d\n",
1041 name, res);
1042 rfkill_free(*rfk);
1043 *rfk = NULL;
1044 return res;
1045 }
1046
1047 return 0;
1048}
1049
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001050static void printk_deprecated_attribute(const char * const what,
1051 const char * const details)
1052{
1053 tpacpi_log_usertask("deprecated sysfs attribute");
1054 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1055 "will be removed. %s\n",
1056 what, details);
1057}
1058
1059static void printk_deprecated_rfkill_attribute(const char * const what)
1060{
1061 printk_deprecated_attribute(what,
1062 "Please switch to generic rfkill before year 2010");
1063}
1064
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001065/*************************************************************************
1066 * thinkpad-acpi driver attributes
1067 */
1068
1069/* interface_version --------------------------------------------------- */
1070static ssize_t tpacpi_driver_interface_version_show(
1071 struct device_driver *drv,
1072 char *buf)
1073{
1074 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1075}
1076
1077static DRIVER_ATTR(interface_version, S_IRUGO,
1078 tpacpi_driver_interface_version_show, NULL);
1079
1080/* debug_level --------------------------------------------------------- */
1081static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1082 char *buf)
1083{
1084 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1085}
1086
1087static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1088 const char *buf, size_t count)
1089{
1090 unsigned long t;
1091
1092 if (parse_strtoul(buf, 0xffff, &t))
1093 return -EINVAL;
1094
1095 dbg_level = t;
1096
1097 return count;
1098}
1099
1100static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1101 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1102
1103/* version ------------------------------------------------------------- */
1104static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1105 char *buf)
1106{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001107 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1108 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001109}
1110
1111static DRIVER_ATTR(version, S_IRUGO,
1112 tpacpi_driver_version_show, NULL);
1113
1114/* --------------------------------------------------------------------- */
1115
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001116#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1117
1118static void tpacpi_send_radiosw_update(void);
1119
1120/* wlsw_emulstate ------------------------------------------------------ */
1121static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1122 char *buf)
1123{
1124 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1125}
1126
1127static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1128 const char *buf, size_t count)
1129{
1130 unsigned long t;
1131
1132 if (parse_strtoul(buf, 1, &t))
1133 return -EINVAL;
1134
1135 if (tpacpi_wlsw_emulstate != t) {
1136 tpacpi_wlsw_emulstate = !!t;
1137 tpacpi_send_radiosw_update();
1138 } else
1139 tpacpi_wlsw_emulstate = !!t;
1140
1141 return count;
1142}
1143
1144static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1145 tpacpi_driver_wlsw_emulstate_show,
1146 tpacpi_driver_wlsw_emulstate_store);
1147
1148/* bluetooth_emulstate ------------------------------------------------- */
1149static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1150 struct device_driver *drv,
1151 char *buf)
1152{
1153 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1154}
1155
1156static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1157 struct device_driver *drv,
1158 const char *buf, size_t count)
1159{
1160 unsigned long t;
1161
1162 if (parse_strtoul(buf, 1, &t))
1163 return -EINVAL;
1164
1165 tpacpi_bluetooth_emulstate = !!t;
1166
1167 return count;
1168}
1169
1170static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1171 tpacpi_driver_bluetooth_emulstate_show,
1172 tpacpi_driver_bluetooth_emulstate_store);
1173
1174/* wwan_emulstate ------------------------------------------------- */
1175static ssize_t tpacpi_driver_wwan_emulstate_show(
1176 struct device_driver *drv,
1177 char *buf)
1178{
1179 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1180}
1181
1182static ssize_t tpacpi_driver_wwan_emulstate_store(
1183 struct device_driver *drv,
1184 const char *buf, size_t count)
1185{
1186 unsigned long t;
1187
1188 if (parse_strtoul(buf, 1, &t))
1189 return -EINVAL;
1190
1191 tpacpi_wwan_emulstate = !!t;
1192
1193 return count;
1194}
1195
1196static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1197 tpacpi_driver_wwan_emulstate_show,
1198 tpacpi_driver_wwan_emulstate_store);
1199
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001200/* uwb_emulstate ------------------------------------------------- */
1201static ssize_t tpacpi_driver_uwb_emulstate_show(
1202 struct device_driver *drv,
1203 char *buf)
1204{
1205 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1206}
1207
1208static ssize_t tpacpi_driver_uwb_emulstate_store(
1209 struct device_driver *drv,
1210 const char *buf, size_t count)
1211{
1212 unsigned long t;
1213
1214 if (parse_strtoul(buf, 1, &t))
1215 return -EINVAL;
1216
1217 tpacpi_uwb_emulstate = !!t;
1218
1219 return count;
1220}
1221
1222static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1223 tpacpi_driver_uwb_emulstate_show,
1224 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001225#endif
1226
1227/* --------------------------------------------------------------------- */
1228
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001229static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001230 &driver_attr_debug_level, &driver_attr_version,
1231 &driver_attr_interface_version,
1232};
1233
1234static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1235{
1236 int i, res;
1237
1238 i = 0;
1239 res = 0;
1240 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1241 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1242 i++;
1243 }
1244
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001245#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1246 if (!res && dbg_wlswemul)
1247 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1248 if (!res && dbg_bluetoothemul)
1249 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1250 if (!res && dbg_wwanemul)
1251 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001252 if (!res && dbg_uwbemul)
1253 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001254#endif
1255
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001256 return res;
1257}
1258
1259static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1260{
1261 int i;
1262
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001263 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001264 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001265
1266#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1267 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1268 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1269 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001270 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001271#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001272}
1273
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001274/****************************************************************************
1275 ****************************************************************************
1276 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001277 * Subdrivers
1278 *
1279 ****************************************************************************
1280 ****************************************************************************/
1281
1282/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001283 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001284 */
1285
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001286static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001288 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1289 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001291 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001292 (thinkpad_id.bios_version_str) ?
1293 thinkpad_id.bios_version_str : "unknown",
1294 (thinkpad_id.ec_version_str) ?
1295 thinkpad_id.ec_version_str : "unknown");
1296
1297 if (thinkpad_id.vendor && thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001298 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001299 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1300 "IBM" : ((thinkpad_id.vendor ==
1301 PCI_VENDOR_ID_LENOVO) ?
1302 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001303 thinkpad_id.model_str,
1304 (thinkpad_id.nummodel_str) ?
1305 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return 0;
1308}
1309
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03001310static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 int len = 0;
1313
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001314 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1315 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 return len;
1318}
1319
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001320static struct ibm_struct thinkpad_acpi_driver_data = {
1321 .name = "driver",
1322 .read = thinkpad_acpi_driver_read,
1323};
1324
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001325/*************************************************************************
1326 * Hotkey subdriver
1327 */
1328
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001329enum { /* hot key scan codes (derived from ACPI DSDT) */
1330 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1331 TP_ACPI_HOTKEYSCAN_FNF2,
1332 TP_ACPI_HOTKEYSCAN_FNF3,
1333 TP_ACPI_HOTKEYSCAN_FNF4,
1334 TP_ACPI_HOTKEYSCAN_FNF5,
1335 TP_ACPI_HOTKEYSCAN_FNF6,
1336 TP_ACPI_HOTKEYSCAN_FNF7,
1337 TP_ACPI_HOTKEYSCAN_FNF8,
1338 TP_ACPI_HOTKEYSCAN_FNF9,
1339 TP_ACPI_HOTKEYSCAN_FNF10,
1340 TP_ACPI_HOTKEYSCAN_FNF11,
1341 TP_ACPI_HOTKEYSCAN_FNF12,
1342 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1343 TP_ACPI_HOTKEYSCAN_FNINSERT,
1344 TP_ACPI_HOTKEYSCAN_FNDELETE,
1345 TP_ACPI_HOTKEYSCAN_FNHOME,
1346 TP_ACPI_HOTKEYSCAN_FNEND,
1347 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1348 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1349 TP_ACPI_HOTKEYSCAN_FNSPACE,
1350 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1351 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1352 TP_ACPI_HOTKEYSCAN_MUTE,
1353 TP_ACPI_HOTKEYSCAN_THINKPAD,
1354};
1355
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001356enum { /* Keys available through NVRAM polling */
1357 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1358 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1359};
1360
1361enum { /* Positions of some of the keys in hotkey masks */
1362 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1363 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1364 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1365 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1366 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1367 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1368 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1369 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1370 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1371 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1372 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1373};
1374
1375enum { /* NVRAM to ACPI HKEY group map */
1376 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1377 TP_ACPI_HKEY_ZOOM_MASK |
1378 TP_ACPI_HKEY_DISPSWTCH_MASK |
1379 TP_ACPI_HKEY_HIBERNATE_MASK,
1380 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1381 TP_ACPI_HKEY_BRGHTDWN_MASK,
1382 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1383 TP_ACPI_HKEY_VOLDWN_MASK |
1384 TP_ACPI_HKEY_MUTE_MASK,
1385};
1386
1387#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1388struct tp_nvram_state {
1389 u16 thinkpad_toggle:1;
1390 u16 zoom_toggle:1;
1391 u16 display_toggle:1;
1392 u16 thinklight_toggle:1;
1393 u16 hibernate_toggle:1;
1394 u16 displayexp_toggle:1;
1395 u16 display_state:1;
1396 u16 brightness_toggle:1;
1397 u16 volume_toggle:1;
1398 u16 mute:1;
1399
1400 u8 brightness_level;
1401 u8 volume_level;
1402};
1403
1404static struct task_struct *tpacpi_hotkey_task;
1405static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1406static int hotkey_poll_freq = 10; /* Hz */
1407static struct mutex hotkey_thread_mutex;
1408static struct mutex hotkey_thread_data_mutex;
1409static unsigned int hotkey_config_change;
1410
1411#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1412
1413#define hotkey_source_mask 0U
1414
1415#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1416
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001417static struct mutex hotkey_mutex;
1418
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001419static enum { /* Reasons for waking up */
1420 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1421 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1422 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1423} hotkey_wakeup_reason;
1424
1425static int hotkey_autosleep_ack;
1426
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001427static u32 hotkey_orig_mask;
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001428static u32 hotkey_all_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001429static u32 hotkey_reserved_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001430static u32 hotkey_mask;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001431
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001432static unsigned int hotkey_report_mode;
1433
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03001434static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04001435
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03001436static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001437
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001438#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1439#define HOTKEY_CONFIG_CRITICAL_START \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001440 do { \
1441 mutex_lock(&hotkey_thread_data_mutex); \
1442 hotkey_config_change++; \
1443 } while (0);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001444#define HOTKEY_CONFIG_CRITICAL_END \
1445 mutex_unlock(&hotkey_thread_data_mutex);
1446#else
1447#define HOTKEY_CONFIG_CRITICAL_START
1448#define HOTKEY_CONFIG_CRITICAL_END
1449#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1450
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001451/* HKEY.MHKG() return bits */
1452#define TP_HOTKEY_TABLET_MASK (1 << 3)
1453
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03001454static int hotkey_get_wlsw(int *status)
1455{
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001456#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1457 if (dbg_wlswemul) {
1458 *status = !!tpacpi_wlsw_emulstate;
1459 return 0;
1460 }
1461#endif
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03001462 if (!acpi_evalf(hkey_handle, status, "WLSW", "d"))
1463 return -EIO;
1464 return 0;
1465}
1466
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001467static int hotkey_get_tablet_mode(int *status)
1468{
1469 int s;
1470
1471 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
1472 return -EIO;
1473
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08001474 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
1475 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001476}
1477
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001478/*
1479 * Call with hotkey_mutex held
1480 */
1481static int hotkey_mask_get(void)
1482{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001483 u32 m = 0;
1484
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001485 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001486 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001487 return -EIO;
1488 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001489 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001490
1491 return 0;
1492}
1493
1494/*
1495 * Call with hotkey_mutex held
1496 */
1497static int hotkey_mask_set(u32 mask)
1498{
1499 int i;
1500 int rc = 0;
1501
1502 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03001503 if (!tp_warned.hotkey_mask_ff &&
1504 (mask == 0xffff || mask == 0xffffff ||
1505 mask == 0xffffffff)) {
1506 tp_warned.hotkey_mask_ff = 1;
1507 printk(TPACPI_NOTICE
1508 "setting the hotkey mask to 0x%08x is likely "
1509 "not the best way to go about it\n", mask);
1510 printk(TPACPI_NOTICE
1511 "please consider using the driver defaults, "
1512 "and refer to up-to-date thinkpad-acpi "
1513 "documentation\n");
1514 }
1515
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001516 HOTKEY_CONFIG_CRITICAL_START
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001517 for (i = 0; i < 32; i++) {
1518 u32 m = 1 << i;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001519 /* enable in firmware mask only keys not in NVRAM
1520 * mode, but enable the key in the cached hotkey_mask
1521 * regardless of mode, or the key will end up
1522 * disabled by hotkey_mask_get() */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001523 if (!acpi_evalf(hkey_handle,
1524 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001525 !!((mask & ~hotkey_source_mask) & m))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001526 rc = -EIO;
1527 break;
1528 } else {
1529 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
1530 }
1531 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001532 HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001533
1534 /* hotkey_mask_get must be called unconditionally below */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001535 if (!hotkey_mask_get() && !rc &&
1536 (hotkey_mask & ~hotkey_source_mask) !=
1537 (mask & ~hotkey_source_mask)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001538 printk(TPACPI_NOTICE
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001539 "requested hot key mask 0x%08x, but "
1540 "firmware forced it to 0x%08x\n",
1541 mask, hotkey_mask);
1542 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001543 } else {
1544#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1545 HOTKEY_CONFIG_CRITICAL_START
1546 hotkey_mask = mask & hotkey_source_mask;
1547 HOTKEY_CONFIG_CRITICAL_END
1548 hotkey_mask_get();
1549 if (hotkey_mask != mask) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001550 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001551 "requested hot key mask 0x%08x, "
1552 "forced to 0x%08x (NVRAM poll mask is "
1553 "0x%08x): no firmware mask support\n",
1554 mask, hotkey_mask, hotkey_source_mask);
1555 }
1556#else
1557 hotkey_mask_get();
1558 rc = -ENXIO;
1559#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001560 }
1561
1562 return rc;
1563}
1564
1565static int hotkey_status_get(int *status)
1566{
1567 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
1568 return -EIO;
1569
1570 return 0;
1571}
1572
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001573static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001574{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001575 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001576 return -EIO;
1577
1578 return 0;
1579}
1580
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001581static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001582{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001583 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001584
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001585 if (tp_features.hotkey_tablet &&
1586 !hotkey_get_tablet_mode(&state)) {
1587 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001588
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02001589 input_report_switch(tpacpi_inputdev,
1590 SW_TABLET_MODE, !!state);
1591 input_sync(tpacpi_inputdev);
1592
1593 mutex_unlock(&tpacpi_inputdev_send_mutex);
1594 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02001595}
1596
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02001597static void tpacpi_input_send_key(unsigned int scancode)
1598{
1599 unsigned int keycode;
1600
1601 keycode = hotkey_keycode_map[scancode];
1602
1603 if (keycode != KEY_RESERVED) {
1604 mutex_lock(&tpacpi_inputdev_send_mutex);
1605
1606 input_report_key(tpacpi_inputdev, keycode, 1);
1607 if (keycode == KEY_UNKNOWN)
1608 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1609 scancode);
1610 input_sync(tpacpi_inputdev);
1611
1612 input_report_key(tpacpi_inputdev, keycode, 0);
1613 if (keycode == KEY_UNKNOWN)
1614 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1615 scancode);
1616 input_sync(tpacpi_inputdev);
1617
1618 mutex_unlock(&tpacpi_inputdev_send_mutex);
1619 }
1620}
1621
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001622#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1623static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
1624
1625static void tpacpi_hotkey_send_key(unsigned int scancode)
1626{
1627 tpacpi_input_send_key(scancode);
1628 if (hotkey_report_mode < 2) {
1629 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
1630 0x80, 0x1001 + scancode);
1631 }
1632}
1633
1634static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
1635{
1636 u8 d;
1637
1638 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
1639 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
1640 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
1641 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
1642 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
1643 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
1644 }
1645 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
1646 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
1647 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
1648 }
1649 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
1650 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
1651 n->displayexp_toggle =
1652 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
1653 }
1654 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
1655 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
1656 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
1657 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
1658 n->brightness_toggle =
1659 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
1660 }
1661 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
1662 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
1663 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
1664 >> TP_NVRAM_POS_LEVEL_VOLUME;
1665 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
1666 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
1667 }
1668}
1669
1670#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001671 do { \
1672 if ((mask & (1 << __scancode)) && \
1673 oldn->__member != newn->__member) \
1674 tpacpi_hotkey_send_key(__scancode); \
1675 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001676
1677#define TPACPI_MAY_SEND_KEY(__scancode) \
1678 do { if (mask & (1 << __scancode)) \
1679 tpacpi_hotkey_send_key(__scancode); } while (0)
1680
1681static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001682 struct tp_nvram_state *newn,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001683 u32 mask)
1684{
1685 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
1686 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
1687 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
1688 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
1689
1690 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
1691
1692 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
1693
1694 /* handle volume */
1695 if (oldn->volume_toggle != newn->volume_toggle) {
1696 if (oldn->mute != newn->mute) {
1697 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1698 }
1699 if (oldn->volume_level > newn->volume_level) {
1700 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1701 } else if (oldn->volume_level < newn->volume_level) {
1702 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1703 } else if (oldn->mute == newn->mute) {
1704 /* repeated key presses that didn't change state */
1705 if (newn->mute) {
1706 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1707 } else if (newn->volume_level != 0) {
1708 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1709 } else {
1710 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1711 }
1712 }
1713 }
1714
1715 /* handle brightness */
1716 if (oldn->brightness_toggle != newn->brightness_toggle) {
1717 if (oldn->brightness_level < newn->brightness_level) {
1718 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1719 } else if (oldn->brightness_level > newn->brightness_level) {
1720 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1721 } else {
1722 /* repeated key presses that didn't change state */
1723 if (newn->brightness_level != 0) {
1724 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1725 } else {
1726 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1727 }
1728 }
1729 }
1730}
1731
1732#undef TPACPI_COMPARE_KEY
1733#undef TPACPI_MAY_SEND_KEY
1734
1735static int hotkey_kthread(void *data)
1736{
1737 struct tp_nvram_state s[2];
1738 u32 mask;
1739 unsigned int si, so;
1740 unsigned long t;
1741 unsigned int change_detector, must_reset;
1742
1743 mutex_lock(&hotkey_thread_mutex);
1744
1745 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
1746 goto exit;
1747
1748 set_freezable();
1749
1750 so = 0;
1751 si = 1;
1752 t = 0;
1753
1754 /* Initial state for compares */
1755 mutex_lock(&hotkey_thread_data_mutex);
1756 change_detector = hotkey_config_change;
1757 mask = hotkey_source_mask & hotkey_mask;
1758 mutex_unlock(&hotkey_thread_data_mutex);
1759 hotkey_read_nvram(&s[so], mask);
1760
1761 while (!kthread_should_stop() && hotkey_poll_freq) {
1762 if (t == 0)
1763 t = 1000/hotkey_poll_freq;
1764 t = msleep_interruptible(t);
1765 if (unlikely(kthread_should_stop()))
1766 break;
1767 must_reset = try_to_freeze();
1768 if (t > 0 && !must_reset)
1769 continue;
1770
1771 mutex_lock(&hotkey_thread_data_mutex);
1772 if (must_reset || hotkey_config_change != change_detector) {
1773 /* forget old state on thaw or config change */
1774 si = so;
1775 t = 0;
1776 change_detector = hotkey_config_change;
1777 }
1778 mask = hotkey_source_mask & hotkey_mask;
1779 mutex_unlock(&hotkey_thread_data_mutex);
1780
1781 if (likely(mask)) {
1782 hotkey_read_nvram(&s[si], mask);
1783 if (likely(si != so)) {
1784 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001785 mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001786 }
1787 }
1788
1789 so = si;
1790 si ^= 1;
1791 }
1792
1793exit:
1794 mutex_unlock(&hotkey_thread_mutex);
1795 return 0;
1796}
1797
1798static void hotkey_poll_stop_sync(void)
1799{
1800 if (tpacpi_hotkey_task) {
1801 if (frozen(tpacpi_hotkey_task) ||
1802 freezing(tpacpi_hotkey_task))
1803 thaw_process(tpacpi_hotkey_task);
1804
1805 kthread_stop(tpacpi_hotkey_task);
1806 tpacpi_hotkey_task = NULL;
1807 mutex_lock(&hotkey_thread_mutex);
1808 /* at this point, the thread did exit */
1809 mutex_unlock(&hotkey_thread_mutex);
1810 }
1811}
1812
1813/* call with hotkey_mutex held */
1814static void hotkey_poll_setup(int may_warn)
1815{
1816 if ((hotkey_source_mask & hotkey_mask) != 0 &&
1817 hotkey_poll_freq > 0 &&
1818 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
1819 if (!tpacpi_hotkey_task) {
1820 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03001821 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001822 if (IS_ERR(tpacpi_hotkey_task)) {
1823 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001824 printk(TPACPI_ERR
1825 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001826 "for hotkey polling\n");
1827 }
1828 }
1829 } else {
1830 hotkey_poll_stop_sync();
1831 if (may_warn &&
1832 hotkey_source_mask != 0 && hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001833 printk(TPACPI_NOTICE
1834 "hot keys 0x%08x require polling, "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001835 "which is currently disabled\n",
1836 hotkey_source_mask);
1837 }
1838 }
1839}
1840
1841static void hotkey_poll_setup_safe(int may_warn)
1842{
1843 mutex_lock(&hotkey_mutex);
1844 hotkey_poll_setup(may_warn);
1845 mutex_unlock(&hotkey_mutex);
1846}
1847
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02001848#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1849
1850static void hotkey_poll_setup_safe(int __unused)
1851{
1852}
1853
1854#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1855
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001856static int hotkey_inputdev_open(struct input_dev *dev)
1857{
1858 switch (tpacpi_lifecycle) {
1859 case TPACPI_LIFE_INIT:
1860 /*
1861 * hotkey_init will call hotkey_poll_setup_safe
1862 * at the appropriate moment
1863 */
1864 return 0;
1865 case TPACPI_LIFE_EXITING:
1866 return -EBUSY;
1867 case TPACPI_LIFE_RUNNING:
1868 hotkey_poll_setup_safe(0);
1869 return 0;
1870 }
1871
1872 /* Should only happen if tpacpi_lifecycle is corrupt */
1873 BUG();
1874 return -EBUSY;
1875}
1876
1877static void hotkey_inputdev_close(struct input_dev *dev)
1878{
1879 /* disable hotkey polling when possible */
1880 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
1881 hotkey_poll_setup_safe(0);
1882}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001883
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001884/* sysfs hotkey enable ------------------------------------------------- */
1885static ssize_t hotkey_enable_show(struct device *dev,
1886 struct device_attribute *attr,
1887 char *buf)
1888{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001889 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001890
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001891 printk_deprecated_attribute("hotkey_enable",
1892 "Hotkey reporting is always enabled");
1893
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001894 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001895 if (res)
1896 return res;
1897
1898 return snprintf(buf, PAGE_SIZE, "%d\n", status);
1899}
1900
1901static ssize_t hotkey_enable_store(struct device *dev,
1902 struct device_attribute *attr,
1903 const char *buf, size_t count)
1904{
1905 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001906
1907 printk_deprecated_attribute("hotkey_enable",
1908 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001909
1910 if (parse_strtoul(buf, 1, &t))
1911 return -EINVAL;
1912
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001913 if (t == 0)
1914 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001915
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001916 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001917}
1918
1919static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001920 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001921 hotkey_enable_show, hotkey_enable_store);
1922
1923/* sysfs hotkey mask --------------------------------------------------- */
1924static ssize_t hotkey_mask_show(struct device *dev,
1925 struct device_attribute *attr,
1926 char *buf)
1927{
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001928 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001929
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02001930 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001931 return -ERESTARTSYS;
1932 res = hotkey_mask_get();
1933 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001934
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001935 return (res)?
1936 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001937}
1938
1939static ssize_t hotkey_mask_store(struct device *dev,
1940 struct device_attribute *attr,
1941 const char *buf, size_t count)
1942{
1943 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001944 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001945
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001946 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001947 return -EINVAL;
1948
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02001949 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001950 return -ERESTARTSYS;
1951
1952 res = hotkey_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001953
1954#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1955 hotkey_poll_setup(1);
1956#endif
1957
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02001958 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001959
1960 return (res) ? res : count;
1961}
1962
1963static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001964 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001965 hotkey_mask_show, hotkey_mask_store);
1966
1967/* sysfs hotkey bios_enabled ------------------------------------------- */
1968static ssize_t hotkey_bios_enabled_show(struct device *dev,
1969 struct device_attribute *attr,
1970 char *buf)
1971{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00001972 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001973}
1974
1975static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001976 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001977
1978/* sysfs hotkey bios_mask ---------------------------------------------- */
1979static ssize_t hotkey_bios_mask_show(struct device *dev,
1980 struct device_attribute *attr,
1981 char *buf)
1982{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03001983 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001984}
1985
1986static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03001987 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03001988
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001989/* sysfs hotkey all_mask ----------------------------------------------- */
1990static ssize_t hotkey_all_mask_show(struct device *dev,
1991 struct device_attribute *attr,
1992 char *buf)
1993{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001994 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1995 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03001996}
1997
1998static struct device_attribute dev_attr_hotkey_all_mask =
1999 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2000
2001/* sysfs hotkey recommended_mask --------------------------------------- */
2002static ssize_t hotkey_recommended_mask_show(struct device *dev,
2003 struct device_attribute *attr,
2004 char *buf)
2005{
2006 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002007 (hotkey_all_mask | hotkey_source_mask)
2008 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002009}
2010
2011static struct device_attribute dev_attr_hotkey_recommended_mask =
2012 __ATTR(hotkey_recommended_mask, S_IRUGO,
2013 hotkey_recommended_mask_show, NULL);
2014
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002015#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2016
2017/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2018static ssize_t hotkey_source_mask_show(struct device *dev,
2019 struct device_attribute *attr,
2020 char *buf)
2021{
2022 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2023}
2024
2025static ssize_t hotkey_source_mask_store(struct device *dev,
2026 struct device_attribute *attr,
2027 const char *buf, size_t count)
2028{
2029 unsigned long t;
2030
2031 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2032 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2033 return -EINVAL;
2034
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002035 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002036 return -ERESTARTSYS;
2037
2038 HOTKEY_CONFIG_CRITICAL_START
2039 hotkey_source_mask = t;
2040 HOTKEY_CONFIG_CRITICAL_END
2041
2042 hotkey_poll_setup(1);
2043
2044 mutex_unlock(&hotkey_mutex);
2045
2046 return count;
2047}
2048
2049static struct device_attribute dev_attr_hotkey_source_mask =
2050 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2051 hotkey_source_mask_show, hotkey_source_mask_store);
2052
2053/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2054static ssize_t hotkey_poll_freq_show(struct device *dev,
2055 struct device_attribute *attr,
2056 char *buf)
2057{
2058 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2059}
2060
2061static ssize_t hotkey_poll_freq_store(struct device *dev,
2062 struct device_attribute *attr,
2063 const char *buf, size_t count)
2064{
2065 unsigned long t;
2066
2067 if (parse_strtoul(buf, 25, &t))
2068 return -EINVAL;
2069
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002070 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002071 return -ERESTARTSYS;
2072
2073 hotkey_poll_freq = t;
2074
2075 hotkey_poll_setup(1);
2076 mutex_unlock(&hotkey_mutex);
2077
2078 return count;
2079}
2080
2081static struct device_attribute dev_attr_hotkey_poll_freq =
2082 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2083 hotkey_poll_freq_show, hotkey_poll_freq_store);
2084
2085#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2086
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002087/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002088static ssize_t hotkey_radio_sw_show(struct device *dev,
2089 struct device_attribute *attr,
2090 char *buf)
2091{
2092 int res, s;
2093 res = hotkey_get_wlsw(&s);
2094 if (res < 0)
2095 return res;
2096
2097 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2098}
2099
2100static struct device_attribute dev_attr_hotkey_radio_sw =
2101 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2102
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002103static void hotkey_radio_sw_notify_change(void)
2104{
2105 if (tp_features.hotkey_wlsw)
2106 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2107 "hotkey_radio_sw");
2108}
2109
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002110/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2111static ssize_t hotkey_tablet_mode_show(struct device *dev,
2112 struct device_attribute *attr,
2113 char *buf)
2114{
2115 int res, s;
2116 res = hotkey_get_tablet_mode(&s);
2117 if (res < 0)
2118 return res;
2119
2120 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2121}
2122
2123static struct device_attribute dev_attr_hotkey_tablet_mode =
2124 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2125
2126static void hotkey_tablet_mode_notify_change(void)
2127{
2128 if (tp_features.hotkey_tablet)
2129 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2130 "hotkey_tablet_mode");
2131}
2132
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002133/* sysfs hotkey report_mode -------------------------------------------- */
2134static ssize_t hotkey_report_mode_show(struct device *dev,
2135 struct device_attribute *attr,
2136 char *buf)
2137{
2138 return snprintf(buf, PAGE_SIZE, "%d\n",
2139 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2140}
2141
2142static struct device_attribute dev_attr_hotkey_report_mode =
2143 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2144
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002145/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002146static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2147 struct device_attribute *attr,
2148 char *buf)
2149{
2150 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2151}
2152
2153static struct device_attribute dev_attr_hotkey_wakeup_reason =
2154 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2155
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002156static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002157{
2158 if (tp_features.hotkey_mask)
2159 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2160 "wakeup_reason");
2161}
2162
2163/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002164static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2165 struct device_attribute *attr,
2166 char *buf)
2167{
2168 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2169}
2170
2171static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2172 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2173 hotkey_wakeup_hotunplug_complete_show, NULL);
2174
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002175static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002176{
2177 if (tp_features.hotkey_mask)
2178 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2179 "wakeup_hotunplug_complete");
2180}
2181
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002182/* --------------------------------------------------------------------- */
2183
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002184static struct attribute *hotkey_attributes[] __initdata = {
2185 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002186 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002187 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002188#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2189 &dev_attr_hotkey_mask.attr,
2190 &dev_attr_hotkey_all_mask.attr,
2191 &dev_attr_hotkey_recommended_mask.attr,
2192 &dev_attr_hotkey_source_mask.attr,
2193 &dev_attr_hotkey_poll_freq.attr,
2194#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002195};
2196
2197static struct attribute *hotkey_mask_attributes[] __initdata = {
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002198 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002199#ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2200 &dev_attr_hotkey_mask.attr,
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002201 &dev_attr_hotkey_all_mask.attr,
2202 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002203#endif
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002204 &dev_attr_hotkey_wakeup_reason.attr,
2205 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002206};
2207
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002208static void bluetooth_update_rfk(void);
2209static void wan_update_rfk(void);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02002210static void uwb_update_rfk(void);
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002211static void tpacpi_send_radiosw_update(void)
2212{
2213 int wlsw;
2214
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002215 /* Sync these BEFORE sending any rfkill events */
2216 if (tp_features.bluetooth)
2217 bluetooth_update_rfk();
2218 if (tp_features.wan)
2219 wan_update_rfk();
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02002220 if (tp_features.uwb)
2221 uwb_update_rfk();
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002222
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002223 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
2224 mutex_lock(&tpacpi_inputdev_send_mutex);
2225
2226 input_report_switch(tpacpi_inputdev,
2227 SW_RFKILL_ALL, !!wlsw);
2228 input_sync(tpacpi_inputdev);
2229
2230 mutex_unlock(&tpacpi_inputdev_send_mutex);
2231 }
2232 hotkey_radio_sw_notify_change();
2233}
2234
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002235static void hotkey_exit(void)
2236{
2237#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2238 hotkey_poll_stop_sync();
2239#endif
2240
2241 if (hotkey_dev_attributes)
2242 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2243
2244 kfree(hotkey_keycode_map);
2245
2246 if (tp_features.hotkey) {
2247 dbg_printk(TPACPI_DBG_EXIT,
2248 "restoring original hot key mask\n");
2249 /* no short-circuit boolean operator below! */
2250 if ((hotkey_mask_set(hotkey_orig_mask) |
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002251 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002252 printk(TPACPI_ERR
2253 "failed to restore hot key mask "
2254 "to BIOS defaults\n");
2255 }
2256}
2257
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002258static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002259{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002260 /* Requirements for changing the default keymaps:
2261 *
2262 * 1. Many of the keys are mapped to KEY_RESERVED for very
2263 * good reasons. Do not change them unless you have deep
2264 * knowledge on the IBM and Lenovo ThinkPad firmware for
2265 * the various ThinkPad models. The driver behaves
2266 * differently for KEY_RESERVED: such keys have their
2267 * hot key mask *unset* in mask_recommended, and also
2268 * in the initial hot key mask programmed into the
2269 * firmware at driver load time, which means the firm-
2270 * ware may react very differently if you change them to
2271 * something else;
2272 *
2273 * 2. You must be subscribed to the linux-thinkpad and
2274 * ibm-acpi-devel mailing lists, and you should read the
2275 * list archives since 2007 if you want to change the
2276 * keymaps. This requirement exists so that you will
2277 * know the past history of problems with the thinkpad-
2278 * acpi driver keymaps, and also that you will be
2279 * listening to any bug reports;
2280 *
2281 * 3. Do not send thinkpad-acpi specific patches directly to
2282 * for merging, *ever*. Send them to the linux-acpi
2283 * mailinglist for comments. Merging is to be done only
2284 * through acpi-test and the ACPI maintainer.
2285 *
2286 * If the above is too much to ask, don't change the keymap.
2287 * Ask the thinkpad-acpi maintainer to do it, instead.
2288 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002289 static u16 ibm_keycode_map[] __initdata = {
2290 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
2291 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
2292 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
2293 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002294
2295 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002296 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
2297 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2298 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002299
2300 /* brightness: firmware always reacts to them, unless
2301 * X.org did some tricks in the radeon BIOS scratch
2302 * registers of *some* models */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002303 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002304 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002305
2306 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002307 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002308
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002309 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2310 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002311
2312 /* Volume: firmware always react to it and reprograms
2313 * the built-in *extra* mixer. Never map it to control
2314 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002315 KEY_RESERVED, /* 0x14: VOLUME UP */
2316 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2317 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002318
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002319 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002320
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002321 /* (assignments unknown, please report if found) */
2322 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2323 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2324 };
2325 static u16 lenovo_keycode_map[] __initdata = {
2326 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
2327 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
2328 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
2329 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002330
2331 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002332 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
2333 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2334 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002335
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03002336 /* These either have to go through ACPI video, or
2337 * act like in the IBM ThinkPads, so don't ever
2338 * enable them by default */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002339 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuh56a185b2007-12-13 12:14:09 -02002340 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002341
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002342 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002343
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002344 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2345 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002346
2347 /* Volume: z60/z61, T60 (BIOS version?): firmware always
2348 * react to it and reprograms the built-in *extra* mixer.
2349 * Never map it to control another mixer by default.
2350 *
2351 * T60?, T61, R60?, R61: firmware and EC tries to send
2352 * these over the regular keyboard, so these are no-ops,
2353 * but there are still weird bugs re. MUTE, so do not
2354 * change unless you get test reports from all Lenovo
2355 * models. May cause the BIOS to interfere with the
2356 * HDA mixer.
2357 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02002358 KEY_RESERVED, /* 0x14: VOLUME UP */
2359 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2360 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002361
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002362 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02002363
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002364 /* (assignments unknown, please report if found) */
2365 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2366 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2367 };
2368
2369#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
2370#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
2371#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
2372
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002373 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002374 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03002375 int hkeyv;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03002376
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002377 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
2378
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002379 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002380 BUG_ON(tpacpi_inputdev->open != NULL ||
2381 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002382
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002383 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002384 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002385
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002386#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2387 mutex_init(&hotkey_thread_mutex);
2388 mutex_init(&hotkey_thread_data_mutex);
2389#endif
2390
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002391 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002392 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002393
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002394 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002395 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03002396
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002397 if (!tp_features.hotkey)
2398 return 1;
2399
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03002400 tpacpi_disable_brightness_delay();
2401
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002402 hotkey_dev_attributes = create_attr_set(13, NULL);
2403 if (!hotkey_dev_attributes)
2404 return -ENOMEM;
2405 res = add_many_to_attr_set(hotkey_dev_attributes,
2406 hotkey_attributes,
2407 ARRAY_SIZE(hotkey_attributes));
2408 if (res)
2409 goto err_exit;
2410
2411 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2412 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
2413 for HKEY interface version 0x100 */
2414 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
2415 if ((hkeyv >> 8) != 1) {
2416 printk(TPACPI_ERR "unknown version of the "
2417 "HKEY interface: 0x%x\n", hkeyv);
2418 printk(TPACPI_ERR "please report this to %s\n",
2419 TPACPI_MAIL);
2420 } else {
2421 /*
2422 * MHKV 0x100 in A31, R40, R40e,
2423 * T4x, X31, and later
2424 */
2425 tp_features.hotkey_mask = 1;
2426 }
2427 }
2428
2429 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
2430 str_supported(tp_features.hotkey_mask));
2431
2432 if (tp_features.hotkey_mask) {
2433 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
2434 "MHKA", "qd")) {
2435 printk(TPACPI_ERR
2436 "missing MHKA handler, "
2437 "please report this to %s\n",
2438 TPACPI_MAIL);
2439 /* FN+F12, FN+F4, FN+F3 */
2440 hotkey_all_mask = 0x080cU;
2441 }
2442 }
2443
2444 /* hotkey_source_mask *must* be zero for
2445 * the first hotkey_mask_get */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002446 if (tp_features.hotkey_mask) {
2447 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002448 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002449 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002450
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002451 hotkey_orig_mask = hotkey_mask;
2452 res = add_many_to_attr_set(
2453 hotkey_dev_attributes,
2454 hotkey_mask_attributes,
2455 ARRAY_SIZE(hotkey_mask_attributes));
2456 if (res)
2457 goto err_exit;
2458 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002459
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002460#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002461 if (tp_features.hotkey_mask) {
2462 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
2463 & ~hotkey_all_mask;
2464 } else {
2465 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
2466 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002467
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002468 vdbg_printk(TPACPI_DBG_INIT,
2469 "hotkey source mask 0x%08x, polling freq %d\n",
2470 hotkey_source_mask, hotkey_poll_freq);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002471#endif
2472
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002473#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
2474 if (dbg_wlswemul) {
2475 tp_features.hotkey_wlsw = 1;
2476 printk(TPACPI_INFO
2477 "radio switch emulation enabled\n");
2478 } else
2479#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002480 /* Not all thinkpads have a hardware radio switch */
2481 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
2482 tp_features.hotkey_wlsw = 1;
2483 printk(TPACPI_INFO
2484 "radio switch found; radios are %s\n",
2485 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03002486 }
2487 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002488 res = add_to_attr_set(hotkey_dev_attributes,
2489 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002490
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002491 /* For X41t, X60t, X61t Tablets... */
2492 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
2493 tp_features.hotkey_tablet = 1;
2494 printk(TPACPI_INFO
2495 "possible tablet mode switch found; "
2496 "ThinkPad in %s mode\n",
2497 (status & TP_HOTKEY_TABLET_MASK)?
2498 "tablet" : "laptop");
2499 res = add_to_attr_set(hotkey_dev_attributes,
2500 &dev_attr_hotkey_tablet_mode.attr);
2501 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002502
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002503 if (!res)
2504 res = register_attr_set_with_sysfs(
2505 hotkey_dev_attributes,
2506 &tpacpi_pdev->dev.kobj);
2507 if (res)
2508 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002509
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002510 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002511
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002512 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
2513 GFP_KERNEL);
2514 if (!hotkey_keycode_map) {
2515 printk(TPACPI_ERR
2516 "failed to allocate memory for key map\n");
2517 res = -ENOMEM;
2518 goto err_exit;
2519 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002520
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002521 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
2522 dbg_printk(TPACPI_DBG_INIT,
2523 "using Lenovo default hot key map\n");
2524 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
2525 TPACPI_HOTKEY_MAP_SIZE);
2526 } else {
2527 dbg_printk(TPACPI_DBG_INIT,
2528 "using IBM default hot key map\n");
2529 memcpy(hotkey_keycode_map, &ibm_keycode_map,
2530 TPACPI_HOTKEY_MAP_SIZE);
2531 }
2532
2533 set_bit(EV_KEY, tpacpi_inputdev->evbit);
2534 set_bit(EV_MSC, tpacpi_inputdev->evbit);
2535 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
2536 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
2537 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
2538 tpacpi_inputdev->keycode = hotkey_keycode_map;
2539 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
2540 if (hotkey_keycode_map[i] != KEY_RESERVED) {
2541 set_bit(hotkey_keycode_map[i],
2542 tpacpi_inputdev->keybit);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002543 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002544 if (i < sizeof(hotkey_reserved_mask)*8)
2545 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002546 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002547 }
2548
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002549 if (tp_features.hotkey_wlsw) {
2550 set_bit(EV_SW, tpacpi_inputdev->evbit);
2551 set_bit(SW_RFKILL_ALL, tpacpi_inputdev->swbit);
2552 }
2553 if (tp_features.hotkey_tablet) {
2554 set_bit(EV_SW, tpacpi_inputdev->evbit);
2555 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03002556 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002557
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002558 /* Do not issue duplicate brightness change events to
2559 * userspace */
2560 if (!tp_features.bright_acpimode)
2561 /* update bright_acpimode... */
2562 tpacpi_check_std_acpi_brightness_support();
2563
2564 if (tp_features.bright_acpimode) {
2565 printk(TPACPI_INFO
2566 "This ThinkPad has standard ACPI backlight "
2567 "brightness control, supported by the ACPI "
2568 "video driver\n");
2569 printk(TPACPI_NOTICE
2570 "Disabling thinkpad-acpi brightness events "
2571 "by default...\n");
2572
2573 /* The hotkey_reserved_mask change below is not
2574 * necessary while the keys are at KEY_RESERVED in the
2575 * default map, but better safe than sorry, leave it
2576 * here as a marker of what we have to do, especially
2577 * when we finally become able to set this at runtime
2578 * on response to X.org requests */
2579 hotkey_reserved_mask |=
2580 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
2581 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002582 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002583
2584 dbg_printk(TPACPI_DBG_INIT, "enabling hot key handling\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002585 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002586 if (res) {
2587 hotkey_exit();
2588 return res;
2589 }
2590 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
2591 & ~hotkey_reserved_mask)
2592 | hotkey_orig_mask);
2593 if (res < 0 && res != -ENXIO) {
2594 hotkey_exit();
2595 return res;
2596 }
2597
2598 dbg_printk(TPACPI_DBG_INIT,
2599 "legacy hot key reporting over procfs %s\n",
2600 (hotkey_report_mode < 2) ?
2601 "enabled" : "disabled");
2602
2603 tpacpi_inputdev->open = &hotkey_inputdev_open;
2604 tpacpi_inputdev->close = &hotkey_inputdev_close;
2605
2606 hotkey_poll_setup_safe(1);
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002607 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002608 tpacpi_input_send_tabletsw();
2609
2610 return 0;
2611
2612err_exit:
2613 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2614 hotkey_dev_attributes = NULL;
2615
2616 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002617}
2618
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002619static bool hotkey_notify_hotkey(const u32 hkey,
2620 bool *send_acpi_ev,
2621 bool *ignore_acpi_ev)
2622{
2623 /* 0x1000-0x1FFF: key presses */
2624 unsigned int scancode = hkey & 0xfff;
2625 *send_acpi_ev = true;
2626 *ignore_acpi_ev = false;
2627
2628 if (scancode > 0 && scancode < 0x21) {
2629 scancode--;
2630 if (!(hotkey_source_mask & (1 << scancode))) {
2631 tpacpi_input_send_key(scancode);
2632 *send_acpi_ev = false;
2633 } else {
2634 *ignore_acpi_ev = true;
2635 }
2636 return true;
2637 }
2638 return false;
2639}
2640
2641static bool hotkey_notify_wakeup(const u32 hkey,
2642 bool *send_acpi_ev,
2643 bool *ignore_acpi_ev)
2644{
2645 /* 0x2000-0x2FFF: Wakeup reason */
2646 *send_acpi_ev = true;
2647 *ignore_acpi_ev = false;
2648
2649 switch (hkey) {
2650 case 0x2304: /* suspend, undock */
2651 case 0x2404: /* hibernation, undock */
2652 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
2653 *ignore_acpi_ev = true;
2654 break;
2655
2656 case 0x2305: /* suspend, bay eject */
2657 case 0x2405: /* hibernation, bay eject */
2658 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
2659 *ignore_acpi_ev = true;
2660 break;
2661
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02002662 case 0x2313: /* Battery on critical low level (S3) */
2663 case 0x2413: /* Battery on critical low level (S4) */
2664 printk(TPACPI_ALERT
2665 "EMERGENCY WAKEUP: battery almost empty\n");
2666 /* how to auto-heal: */
2667 /* 2313: woke up from S3, go to S4/S5 */
2668 /* 2413: woke up from S4, go to S5 */
2669 break;
2670
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002671 default:
2672 return false;
2673 }
2674
2675 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
2676 printk(TPACPI_INFO
2677 "woke up due to a hot-unplug "
2678 "request...\n");
2679 hotkey_wakeup_reason_notify_change();
2680 }
2681 return true;
2682}
2683
2684static bool hotkey_notify_usrevent(const u32 hkey,
2685 bool *send_acpi_ev,
2686 bool *ignore_acpi_ev)
2687{
2688 /* 0x5000-0x5FFF: human interface helpers */
2689 *send_acpi_ev = true;
2690 *ignore_acpi_ev = false;
2691
2692 switch (hkey) {
2693 case 0x5010: /* Lenovo new BIOS: brightness changed */
2694 case 0x500b: /* X61t: tablet pen inserted into bay */
2695 case 0x500c: /* X61t: tablet pen removed from bay */
2696 return true;
2697
2698 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
2699 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
2700 tpacpi_input_send_tabletsw();
2701 hotkey_tablet_mode_notify_change();
2702 *send_acpi_ev = false;
2703 return true;
2704
2705 case 0x5001:
2706 case 0x5002:
2707 /* LID switch events. Do not propagate */
2708 *ignore_acpi_ev = true;
2709 return true;
2710
2711 default:
2712 return false;
2713 }
2714}
2715
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02002716static bool hotkey_notify_thermal(const u32 hkey,
2717 bool *send_acpi_ev,
2718 bool *ignore_acpi_ev)
2719{
2720 /* 0x6000-0x6FFF: thermal alarms */
2721 *send_acpi_ev = true;
2722 *ignore_acpi_ev = false;
2723
2724 switch (hkey) {
2725 case 0x6011:
2726 printk(TPACPI_CRIT
2727 "THERMAL ALARM: battery is too hot!\n");
2728 /* recommended action: warn user through gui */
2729 return true;
2730 case 0x6012:
2731 printk(TPACPI_ALERT
2732 "THERMAL EMERGENCY: battery is extremely hot!\n");
2733 /* recommended action: immediate sleep/hibernate */
2734 return true;
2735 case 0x6021:
2736 printk(TPACPI_CRIT
2737 "THERMAL ALARM: "
2738 "a sensor reports something is too hot!\n");
2739 /* recommended action: warn user through gui, that */
2740 /* some internal component is too hot */
2741 return true;
2742 case 0x6022:
2743 printk(TPACPI_ALERT
2744 "THERMAL EMERGENCY: "
2745 "a sensor reports something is extremely hot!\n");
2746 /* recommended action: immediate sleep/hibernate */
2747 return true;
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02002748 case 0x6030:
2749 printk(TPACPI_INFO
2750 "EC reports that Thermal Table has changed\n");
2751 /* recommended action: do nothing, we don't have
2752 * Lenovo ATM information */
2753 return true;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02002754 default:
2755 printk(TPACPI_ALERT
2756 "THERMAL ALERT: unknown thermal alarm received\n");
2757 return false;
2758 }
2759}
2760
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002761static void hotkey_notify(struct ibm_struct *ibm, u32 event)
2762{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002763 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002764 bool send_acpi_ev;
2765 bool ignore_acpi_ev;
2766 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002767
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002768 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002769 printk(TPACPI_ERR
2770 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002771 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002772 acpi_bus_generate_netlink_event(
2773 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02002774 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002775 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002776 return;
2777 }
2778
2779 while (1) {
2780 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002781 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002782 return;
2783 }
2784
2785 if (hkey == 0) {
2786 /* queue empty */
2787 return;
2788 }
2789
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002790 send_acpi_ev = true;
2791 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002792
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002793 switch (hkey >> 12) {
2794 case 1:
2795 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002796 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
2797 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002798 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002799 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002800 /* 0x2000-0x2FFF: Wakeup reason */
2801 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
2802 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002803 break;
2804 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002805 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002806 if (hkey == 0x3003) {
2807 hotkey_autosleep_ack = 1;
2808 printk(TPACPI_INFO
2809 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002810 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002811 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002812 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002813 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002814 }
2815 break;
2816 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002817 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002818 if (hkey == 0x4003) {
2819 hotkey_autosleep_ack = 1;
2820 printk(TPACPI_INFO
2821 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002822 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002823 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002824 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002825 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002826 }
2827 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002828 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02002829 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002830 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
2831 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002832 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02002833 case 6:
2834 /* 0x6000-0x6FFF: thermal alarms */
2835 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
2836 &ignore_acpi_ev);
2837 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002838 case 7:
2839 /* 0x7000-0x7FFF: misc */
2840 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002841 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002842 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002843 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002844 break;
2845 }
2846 /* fallthrough to default */
2847 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002848 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02002849 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02002850 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002851 printk(TPACPI_NOTICE
2852 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02002853 printk(TPACPI_NOTICE
2854 "please report the conditions when this "
2855 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002856 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002857
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002858 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002859 if (!ignore_acpi_ev &&
2860 (send_acpi_ev || hotkey_report_mode < 2)) {
2861 acpi_bus_generate_proc_event(ibm->acpi->device,
2862 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002863 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002864
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002865 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03002866 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002867 acpi_bus_generate_netlink_event(
2868 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02002869 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002870 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03002871 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03002872 }
2873}
2874
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002875static void hotkey_suspend(pm_message_t state)
2876{
2877 /* Do these on suspend, we get the events on early resume! */
2878 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
2879 hotkey_autosleep_ack = 0;
2880}
2881
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002882static void hotkey_resume(void)
2883{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03002884 tpacpi_disable_brightness_delay();
2885
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002886 if (hotkey_mask_get())
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002887 printk(TPACPI_ERR
2888 "error while trying to read hot key mask "
2889 "from firmware\n");
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002890 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002891 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002892 hotkey_wakeup_reason_notify_change();
2893 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002894 hotkey_poll_setup_safe(0);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002895}
2896
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002897/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002898static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002900 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 int len = 0;
2902
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002903 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002904 len += sprintf(p + len, "status:\t\tnot supported\n");
2905 return len;
2906 }
2907
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002908 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02002909 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002910 res = hotkey_status_get(&status);
2911 if (!res)
2912 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002913 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03002914 if (res)
2915 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
2917 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002918 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002919 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 len += sprintf(p + len,
2921 "commands:\tenable, disable, reset, <mask>\n");
2922 } else {
2923 len += sprintf(p + len, "mask:\t\tnot supported\n");
2924 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
2925 }
2926
2927 return len;
2928}
2929
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002930static void hotkey_enabledisable_warn(void)
2931{
2932 tpacpi_log_usertask("procfs hotkey enable/disable");
2933 WARN(1, TPACPI_WARN
2934 "hotkey enable/disable functionality has been "
2935 "removed from the driver. Hotkeys are always enabled.\n");
2936}
2937
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002938static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002940 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002941 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03002944 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 return -ENODEV;
2946
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002947 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02002948 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002949
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002950 mask = hotkey_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002951
2952 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 while ((cmd = next_cmd(&buf))) {
2954 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002955 hotkey_enabledisable_warn();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002957 hotkey_enabledisable_warn();
2958 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 } else if (strlencmp(cmd, "reset") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002960 mask = hotkey_orig_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
2962 /* mask set */
2963 } else if (sscanf(cmd, "%x", &mask) == 1) {
2964 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002965 } else {
2966 res = -EINVAL;
2967 goto errexit;
2968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002970 if (!res && mask != hotkey_mask)
2971 res = hotkey_mask_set(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03002973errexit:
2974 mutex_unlock(&hotkey_mutex);
2975 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002976}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002978static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02002979 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002980 {"", 0},
2981};
2982
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002983static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002984 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03002985 .notify = hotkey_notify,
2986 .handle = &hkey_handle,
2987 .type = ACPI_DEVICE_NOTIFY,
2988};
2989
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002990static struct ibm_struct hotkey_driver_data = {
2991 .name = "hotkey",
2992 .read = hotkey_read,
2993 .write = hotkey_write,
2994 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03002995 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002996 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03002997 .acpi = &ibm_hotkey_acpidriver,
2998};
2999
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003000/*************************************************************************
3001 * Bluetooth subdriver
3002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003004enum {
3005 /* ACPI GBDC/SBDC bits */
3006 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3007 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003008 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
3009 off / last state */
3010};
3011
3012enum {
3013 /* ACPI \BLTH commands */
3014 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3015 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3016 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3017 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3018 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003019};
3020
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003021static struct rfkill *tpacpi_bluetooth_rfkill;
3022
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003023static void bluetooth_suspend(pm_message_t state)
3024{
3025 /* Try to make sure radio will resume powered off */
3026 acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3027 TP_ACPI_BLTH_PWR_OFF_ON_RESUME);
3028}
3029
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003030static int bluetooth_get_radiosw(void)
3031{
3032 int status;
3033
3034 if (!tp_features.bluetooth)
3035 return -ENODEV;
3036
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003037 /* WLSW overrides bluetooth in firmware/hardware, reflect that */
3038 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003039 return RFKILL_STATE_HARD_BLOCKED;
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003040
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003041#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3042 if (dbg_bluetoothemul)
3043 return (tpacpi_bluetooth_emulstate) ?
3044 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
3045#endif
3046
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003047 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3048 return -EIO;
3049
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003050 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
3051 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003052}
3053
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003054static void bluetooth_update_rfk(void)
3055{
3056 int status;
3057
3058 if (!tpacpi_bluetooth_rfkill)
3059 return;
3060
3061 status = bluetooth_get_radiosw();
3062 if (status < 0)
3063 return;
3064 rfkill_force_state(tpacpi_bluetooth_rfkill, status);
3065}
3066
3067static int bluetooth_set_radiosw(int radio_on, int update_rfk)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003068{
3069 int status;
3070
3071 if (!tp_features.bluetooth)
3072 return -ENODEV;
3073
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003074 /* WLSW overrides bluetooth in firmware/hardware, but there is no
3075 * reason to risk weird behaviour. */
3076 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status
3077 && radio_on)
3078 return -EPERM;
3079
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003080#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3081 if (dbg_bluetoothemul) {
3082 tpacpi_bluetooth_emulstate = !!radio_on;
3083 if (update_rfk)
3084 bluetooth_update_rfk();
3085 return 0;
3086 }
3087#endif
3088
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003089 /* We make sure to keep TP_ACPI_BLUETOOTH_RESUMECTRL off */
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003090 if (radio_on)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003091 status = TP_ACPI_BLUETOOTH_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003092 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003093 status = 0;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003094 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3095 return -EIO;
3096
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003097 if (update_rfk)
3098 bluetooth_update_rfk();
3099
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003100 return 0;
3101}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003102
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003103/* sysfs bluetooth enable ---------------------------------------------- */
3104static ssize_t bluetooth_enable_show(struct device *dev,
3105 struct device_attribute *attr,
3106 char *buf)
3107{
3108 int status;
3109
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00003110 printk_deprecated_rfkill_attribute("bluetooth_enable");
3111
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003112 status = bluetooth_get_radiosw();
3113 if (status < 0)
3114 return status;
3115
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003116 return snprintf(buf, PAGE_SIZE, "%d\n",
3117 (status == RFKILL_STATE_UNBLOCKED) ? 1 : 0);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003118}
3119
3120static ssize_t bluetooth_enable_store(struct device *dev,
3121 struct device_attribute *attr,
3122 const char *buf, size_t count)
3123{
3124 unsigned long t;
3125 int res;
3126
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00003127 printk_deprecated_rfkill_attribute("bluetooth_enable");
3128
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003129 if (parse_strtoul(buf, 1, &t))
3130 return -EINVAL;
3131
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003132 res = bluetooth_set_radiosw(t, 1);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003133
3134 return (res) ? res : count;
3135}
3136
3137static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003138 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003139 bluetooth_enable_show, bluetooth_enable_store);
3140
3141/* --------------------------------------------------------------------- */
3142
3143static struct attribute *bluetooth_attributes[] = {
3144 &dev_attr_bluetooth_enable.attr,
3145 NULL
3146};
3147
3148static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003149 .attrs = bluetooth_attributes,
3150};
3151
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003152static int tpacpi_bluetooth_rfk_get(void *data, enum rfkill_state *state)
3153{
3154 int bts = bluetooth_get_radiosw();
3155
3156 if (bts < 0)
3157 return bts;
3158
3159 *state = bts;
3160 return 0;
3161}
3162
3163static int tpacpi_bluetooth_rfk_set(void *data, enum rfkill_state state)
3164{
3165 return bluetooth_set_radiosw((state == RFKILL_STATE_UNBLOCKED), 0);
3166}
3167
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003168static void bluetooth_shutdown(void)
3169{
3170 /* Order firmware to save current state to NVRAM */
3171 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3172 TP_ACPI_BLTH_SAVE_STATE))
3173 printk(TPACPI_NOTICE
3174 "failed to save bluetooth state to NVRAM\n");
3175}
3176
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003177static void bluetooth_exit(void)
3178{
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003179 bluetooth_shutdown();
3180
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003181 if (tpacpi_bluetooth_rfkill)
3182 rfkill_unregister(tpacpi_bluetooth_rfkill);
3183
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003184 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3185 &bluetooth_attr_group);
3186}
3187
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003188static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003190 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003191 int status = 0;
3192
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003193 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
3194
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003195 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003196
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003197 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3198 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003199 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003200 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003202 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
3203 str_supported(tp_features.bluetooth),
3204 status);
3205
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003206#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3207 if (dbg_bluetoothemul) {
3208 tp_features.bluetooth = 1;
3209 printk(TPACPI_INFO
3210 "bluetooth switch emulation enabled\n");
3211 } else
3212#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003213 if (tp_features.bluetooth &&
3214 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
3215 /* no bluetooth hardware present in system */
3216 tp_features.bluetooth = 0;
3217 dbg_printk(TPACPI_DBG_INIT,
3218 "bluetooth hardware not installed\n");
3219 }
3220
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003221 if (!tp_features.bluetooth)
3222 return 1;
3223
3224 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003225 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003226 if (res)
3227 return res;
3228
3229 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
3230 &tpacpi_bluetooth_rfkill,
3231 RFKILL_TYPE_BLUETOOTH,
3232 "tpacpi_bluetooth_sw",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02003233 true,
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003234 tpacpi_bluetooth_rfk_set,
3235 tpacpi_bluetooth_rfk_get);
3236 if (res) {
3237 bluetooth_exit();
3238 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003239 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003240
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242}
3243
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003244/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003245static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
3247 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003248 int status = bluetooth_get_radiosw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003250 if (!tp_features.bluetooth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 len += sprintf(p + len, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003253 len += sprintf(p + len, "status:\t\t%s\n",
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003254 (status == RFKILL_STATE_UNBLOCKED) ?
3255 "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 len += sprintf(p + len, "commands:\tenable, disable\n");
3257 }
3258
3259 return len;
3260}
3261
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003262static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003266 if (!tp_features.bluetooth)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003267 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 while ((cmd = next_cmd(&buf))) {
3270 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003271 bluetooth_set_radiosw(1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003273 bluetooth_set_radiosw(0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 } else
3275 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 }
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 return 0;
3279}
3280
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003281static struct ibm_struct bluetooth_driver_data = {
3282 .name = "bluetooth",
3283 .read = bluetooth_read,
3284 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003285 .exit = bluetooth_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003286 .suspend = bluetooth_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003287 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003288};
3289
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003290/*************************************************************************
3291 * Wan subdriver
3292 */
3293
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003294enum {
3295 /* ACPI GWAN/SWAN bits */
3296 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
3297 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003298 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
3299 off / last state */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003300};
3301
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003302static struct rfkill *tpacpi_wan_rfkill;
3303
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003304static void wan_suspend(pm_message_t state)
3305{
3306 /* Try to make sure radio will resume powered off */
3307 acpi_evalf(NULL, NULL, "\\WGSV", "qvd",
3308 TP_ACPI_WGSV_PWR_OFF_ON_RESUME);
3309}
3310
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003311static int wan_get_radiosw(void)
3312{
3313 int status;
3314
3315 if (!tp_features.wan)
3316 return -ENODEV;
3317
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003318 /* WLSW overrides WWAN in firmware/hardware, reflect that */
3319 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003320 return RFKILL_STATE_HARD_BLOCKED;
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003321
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003322#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3323 if (dbg_wwanemul)
3324 return (tpacpi_wwan_emulstate) ?
3325 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
3326#endif
3327
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003328 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
3329 return -EIO;
3330
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003331 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
3332 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003333}
3334
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003335static void wan_update_rfk(void)
3336{
3337 int status;
3338
3339 if (!tpacpi_wan_rfkill)
3340 return;
3341
3342 status = wan_get_radiosw();
3343 if (status < 0)
3344 return;
3345 rfkill_force_state(tpacpi_wan_rfkill, status);
3346}
3347
3348static int wan_set_radiosw(int radio_on, int update_rfk)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003349{
3350 int status;
3351
3352 if (!tp_features.wan)
3353 return -ENODEV;
3354
Henrique de Moraes Holschuh133ec3b2008-07-21 09:15:50 -03003355 /* WLSW overrides bluetooth in firmware/hardware, but there is no
3356 * reason to risk weird behaviour. */
3357 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status
3358 && radio_on)
3359 return -EPERM;
3360
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003361#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3362 if (dbg_wwanemul) {
3363 tpacpi_wwan_emulstate = !!radio_on;
3364 if (update_rfk)
3365 wan_update_rfk();
3366 return 0;
3367 }
3368#endif
3369
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003370 /* We make sure to keep TP_ACPI_WANCARD_RESUMECTRL off */
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003371 if (radio_on)
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003372 status = TP_ACPI_WANCARD_RADIOSSW;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003373 else
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003374 status = 0;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003375 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
3376 return -EIO;
3377
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003378 if (update_rfk)
3379 wan_update_rfk();
3380
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003381 return 0;
3382}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003383
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003384/* sysfs wan enable ---------------------------------------------------- */
3385static ssize_t wan_enable_show(struct device *dev,
3386 struct device_attribute *attr,
3387 char *buf)
3388{
3389 int status;
3390
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00003391 printk_deprecated_rfkill_attribute("wwan_enable");
3392
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003393 status = wan_get_radiosw();
3394 if (status < 0)
3395 return status;
3396
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003397 return snprintf(buf, PAGE_SIZE, "%d\n",
3398 (status == RFKILL_STATE_UNBLOCKED) ? 1 : 0);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003399}
3400
3401static ssize_t wan_enable_store(struct device *dev,
3402 struct device_attribute *attr,
3403 const char *buf, size_t count)
3404{
3405 unsigned long t;
3406 int res;
3407
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00003408 printk_deprecated_rfkill_attribute("wwan_enable");
3409
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003410 if (parse_strtoul(buf, 1, &t))
3411 return -EINVAL;
3412
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003413 res = wan_set_radiosw(t, 1);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003414
3415 return (res) ? res : count;
3416}
3417
3418static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003419 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003420 wan_enable_show, wan_enable_store);
3421
3422/* --------------------------------------------------------------------- */
3423
3424static struct attribute *wan_attributes[] = {
3425 &dev_attr_wan_enable.attr,
3426 NULL
3427};
3428
3429static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003430 .attrs = wan_attributes,
3431};
3432
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003433static int tpacpi_wan_rfk_get(void *data, enum rfkill_state *state)
3434{
3435 int wans = wan_get_radiosw();
3436
3437 if (wans < 0)
3438 return wans;
3439
3440 *state = wans;
3441 return 0;
3442}
3443
3444static int tpacpi_wan_rfk_set(void *data, enum rfkill_state state)
3445{
3446 return wan_set_radiosw((state == RFKILL_STATE_UNBLOCKED), 0);
3447}
3448
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003449static void wan_shutdown(void)
3450{
3451 /* Order firmware to save current state to NVRAM */
3452 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
3453 TP_ACPI_WGSV_SAVE_STATE))
3454 printk(TPACPI_NOTICE
3455 "failed to save WWAN state to NVRAM\n");
3456}
3457
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003458static void wan_exit(void)
3459{
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003460 wan_shutdown();
3461
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003462 if (tpacpi_wan_rfkill)
3463 rfkill_unregister(tpacpi_wan_rfkill);
3464
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003465 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3466 &wan_attr_group);
3467}
3468
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003469static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003470{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003471 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003472 int status = 0;
3473
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003474 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
3475
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003476 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003477
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003478 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003479 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003480
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003481 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
3482 str_supported(tp_features.wan),
3483 status);
3484
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003485#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3486 if (dbg_wwanemul) {
3487 tp_features.wan = 1;
3488 printk(TPACPI_INFO
3489 "wwan switch emulation enabled\n");
3490 } else
3491#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003492 if (tp_features.wan &&
3493 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
3494 /* no wan hardware present in system */
3495 tp_features.wan = 0;
3496 dbg_printk(TPACPI_DBG_INIT,
3497 "wan hardware not installed\n");
3498 }
3499
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003500 if (!tp_features.wan)
3501 return 1;
3502
3503 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003504 &wan_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003505 if (res)
3506 return res;
3507
3508 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
3509 &tpacpi_wan_rfkill,
3510 RFKILL_TYPE_WWAN,
3511 "tpacpi_wwan_sw",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02003512 true,
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003513 tpacpi_wan_rfk_set,
3514 tpacpi_wan_rfk_get);
3515 if (res) {
3516 wan_exit();
3517 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003518 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003519
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003520 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003521}
3522
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003523/* procfs -------------------------------------------------------------- */
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003524static int wan_read(char *p)
3525{
3526 int len = 0;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003527 int status = wan_get_radiosw();
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003528
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003529 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003530 len += sprintf(p + len, "status:\t\tnot supported\n");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003531 else {
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003532 len += sprintf(p + len, "status:\t\t%s\n",
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003533 (status == RFKILL_STATE_UNBLOCKED) ?
3534 "enabled" : "disabled");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003535 len += sprintf(p + len, "commands:\tenable, disable\n");
3536 }
3537
3538 return len;
3539}
3540
3541static int wan_write(char *buf)
3542{
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003543 char *cmd;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003544
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003545 if (!tp_features.wan)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003546 return -ENODEV;
3547
3548 while ((cmd = next_cmd(&buf))) {
3549 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003550 wan_set_radiosw(1, 1);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003551 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003552 wan_set_radiosw(0, 1);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003553 } else
3554 return -EINVAL;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003555 }
3556
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04003557 return 0;
3558}
3559
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003560static struct ibm_struct wan_driver_data = {
3561 .name = "wan",
3562 .read = wan_read,
3563 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003564 .exit = wan_exit,
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003565 .suspend = wan_suspend,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003566 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003567};
3568
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003569/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02003570 * UWB subdriver
3571 */
3572
3573enum {
3574 /* ACPI GUWB/SUWB bits */
3575 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
3576 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
3577};
3578
3579static struct rfkill *tpacpi_uwb_rfkill;
3580
3581static int uwb_get_radiosw(void)
3582{
3583 int status;
3584
3585 if (!tp_features.uwb)
3586 return -ENODEV;
3587
3588 /* WLSW overrides UWB in firmware/hardware, reflect that */
3589 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status)
3590 return RFKILL_STATE_HARD_BLOCKED;
3591
3592#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3593 if (dbg_uwbemul)
3594 return (tpacpi_uwb_emulstate) ?
3595 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
3596#endif
3597
3598 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
3599 return -EIO;
3600
3601 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
3602 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
3603}
3604
3605static void uwb_update_rfk(void)
3606{
3607 int status;
3608
3609 if (!tpacpi_uwb_rfkill)
3610 return;
3611
3612 status = uwb_get_radiosw();
3613 if (status < 0)
3614 return;
3615 rfkill_force_state(tpacpi_uwb_rfkill, status);
3616}
3617
3618static int uwb_set_radiosw(int radio_on, int update_rfk)
3619{
3620 int status;
3621
3622 if (!tp_features.uwb)
3623 return -ENODEV;
3624
3625 /* WLSW overrides UWB in firmware/hardware, but there is no
3626 * reason to risk weird behaviour. */
3627 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&status) && !status
3628 && radio_on)
3629 return -EPERM;
3630
3631#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3632 if (dbg_uwbemul) {
3633 tpacpi_uwb_emulstate = !!radio_on;
3634 if (update_rfk)
3635 uwb_update_rfk();
3636 return 0;
3637 }
3638#endif
3639
3640 status = (radio_on) ? TP_ACPI_UWB_RADIOSSW : 0;
3641 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
3642 return -EIO;
3643
3644 if (update_rfk)
3645 uwb_update_rfk();
3646
3647 return 0;
3648}
3649
3650/* --------------------------------------------------------------------- */
3651
3652static int tpacpi_uwb_rfk_get(void *data, enum rfkill_state *state)
3653{
3654 int uwbs = uwb_get_radiosw();
3655
3656 if (uwbs < 0)
3657 return uwbs;
3658
3659 *state = uwbs;
3660 return 0;
3661}
3662
3663static int tpacpi_uwb_rfk_set(void *data, enum rfkill_state state)
3664{
3665 return uwb_set_radiosw((state == RFKILL_STATE_UNBLOCKED), 0);
3666}
3667
3668static void uwb_exit(void)
3669{
3670 if (tpacpi_uwb_rfkill)
3671 rfkill_unregister(tpacpi_uwb_rfkill);
3672}
3673
3674static int __init uwb_init(struct ibm_init_struct *iibm)
3675{
3676 int res;
3677 int status = 0;
3678
3679 vdbg_printk(TPACPI_DBG_INIT, "initializing uwb subdriver\n");
3680
3681 TPACPI_ACPIHANDLE_INIT(hkey);
3682
3683 tp_features.uwb = hkey_handle &&
3684 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
3685
3686 vdbg_printk(TPACPI_DBG_INIT, "uwb is %s, status 0x%02x\n",
3687 str_supported(tp_features.uwb),
3688 status);
3689
3690#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3691 if (dbg_uwbemul) {
3692 tp_features.uwb = 1;
3693 printk(TPACPI_INFO
3694 "uwb switch emulation enabled\n");
3695 } else
3696#endif
3697 if (tp_features.uwb &&
3698 !(status & TP_ACPI_UWB_HWPRESENT)) {
3699 /* no uwb hardware present in system */
3700 tp_features.uwb = 0;
3701 dbg_printk(TPACPI_DBG_INIT,
3702 "uwb hardware not installed\n");
3703 }
3704
3705 if (!tp_features.uwb)
3706 return 1;
3707
3708 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
3709 &tpacpi_uwb_rfkill,
3710 RFKILL_TYPE_UWB,
3711 "tpacpi_uwb_sw",
3712 false,
3713 tpacpi_uwb_rfk_set,
3714 tpacpi_uwb_rfk_get);
3715
3716 return res;
3717}
3718
3719static struct ibm_struct uwb_driver_data = {
3720 .name = "uwb",
3721 .exit = uwb_exit,
3722 .flags.experimental = 1,
3723};
3724
3725/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003726 * Video subdriver
3727 */
3728
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02003729#ifdef CONFIG_THINKPAD_ACPI_VIDEO
3730
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003731enum video_access_mode {
3732 TPACPI_VIDEO_NONE = 0,
3733 TPACPI_VIDEO_570, /* 570 */
3734 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
3735 TPACPI_VIDEO_NEW, /* all others */
3736};
3737
3738enum { /* video status flags, based on VIDEO_570 */
3739 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
3740 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
3741 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
3742};
3743
3744enum { /* TPACPI_VIDEO_570 constants */
3745 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
3746 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
3747 * video_status_flags */
3748 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
3749 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
3750};
3751
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02003752static enum video_access_mode video_supported;
3753static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003754
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003755static int video_autosw_get(void);
3756static int video_autosw_set(int enable);
3757
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003758TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003759
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003760static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003762 int ivga;
3763
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003764 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
3765
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003766 TPACPI_ACPIHANDLE_INIT(vid);
3767 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003768
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003769 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
3770 /* G41, assume IVGA doesn't change */
3771 vid_handle = vid2_handle;
3772
3773 if (!vid_handle)
3774 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003775 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003776 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
3777 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003778 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003779 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
3780 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003781 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003782 else
3783 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003784 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003786 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
3787 str_supported(video_supported != TPACPI_VIDEO_NONE),
3788 video_supported);
3789
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003790 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791}
3792
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003793static void video_exit(void)
3794{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003795 dbg_printk(TPACPI_DBG_EXIT,
3796 "restoring original video autoswitch mode\n");
3797 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003798 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003799 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003800}
3801
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003802static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
3804 int status = 0;
3805 int i;
3806
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003807 switch (video_supported) {
3808 case TPACPI_VIDEO_570:
3809 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
3810 TP_ACPI_VIDEO_570_PHSCMD))
3811 return -EIO;
3812 status = i & TP_ACPI_VIDEO_570_PHSMASK;
3813 break;
3814 case TPACPI_VIDEO_770:
3815 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
3816 return -EIO;
3817 if (i)
3818 status |= TP_ACPI_VIDEO_S_LCD;
3819 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
3820 return -EIO;
3821 if (i)
3822 status |= TP_ACPI_VIDEO_S_CRT;
3823 break;
3824 case TPACPI_VIDEO_NEW:
3825 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
3826 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
3827 return -EIO;
3828 if (i)
3829 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003831 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
3832 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
3833 return -EIO;
3834 if (i)
3835 status |= TP_ACPI_VIDEO_S_LCD;
3836 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
3837 return -EIO;
3838 if (i)
3839 status |= TP_ACPI_VIDEO_S_DVI;
3840 break;
3841 default:
3842 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 return status;
3846}
3847
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003848static int video_outputsw_set(int status)
3849{
3850 int autosw;
3851 int res = 0;
3852
3853 switch (video_supported) {
3854 case TPACPI_VIDEO_570:
3855 res = acpi_evalf(NULL, NULL,
3856 "\\_SB.PHS2", "vdd",
3857 TP_ACPI_VIDEO_570_PHS2CMD,
3858 status | TP_ACPI_VIDEO_570_PHS2SET);
3859 break;
3860 case TPACPI_VIDEO_770:
3861 autosw = video_autosw_get();
3862 if (autosw < 0)
3863 return autosw;
3864
3865 res = video_autosw_set(1);
3866 if (res)
3867 return res;
3868 res = acpi_evalf(vid_handle, NULL,
3869 "ASWT", "vdd", status * 0x100, 0);
3870 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003871 printk(TPACPI_ERR
3872 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003873 return -EIO;
3874 }
3875 break;
3876 case TPACPI_VIDEO_NEW:
3877 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003878 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003879 break;
3880 default:
3881 return -ENOSYS;
3882 }
3883
3884 return (res)? 0 : -EIO;
3885}
3886
3887static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003889 int autosw = 0;
3890
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003891 switch (video_supported) {
3892 case TPACPI_VIDEO_570:
3893 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
3894 return -EIO;
3895 break;
3896 case TPACPI_VIDEO_770:
3897 case TPACPI_VIDEO_NEW:
3898 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
3899 return -EIO;
3900 break;
3901 default:
3902 return -ENOSYS;
3903 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003904
3905 return autosw & 1;
3906}
3907
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003908static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003909{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003910 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003911 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003912 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003913}
3914
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003915static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003916{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003917 int autosw = video_autosw_get();
3918 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003919
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003920 if (autosw < 0)
3921 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003922
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003923 switch (video_supported) {
3924 case TPACPI_VIDEO_570:
3925 res = video_autosw_set(1);
3926 if (res)
3927 return res;
3928 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
3929 break;
3930 case TPACPI_VIDEO_770:
3931 case TPACPI_VIDEO_NEW:
3932 res = video_autosw_set(1);
3933 if (res)
3934 return res;
3935 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
3936 break;
3937 default:
3938 return -ENOSYS;
3939 }
3940 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003941 printk(TPACPI_ERR
3942 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003943 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003944 }
3945
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003946 return (res)? 0 : -EIO;
3947}
3948
3949static int video_expand_toggle(void)
3950{
3951 switch (video_supported) {
3952 case TPACPI_VIDEO_570:
3953 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
3954 0 : -EIO;
3955 case TPACPI_VIDEO_770:
3956 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
3957 0 : -EIO;
3958 case TPACPI_VIDEO_NEW:
3959 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
3960 0 : -EIO;
3961 default:
3962 return -ENOSYS;
3963 }
3964 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003965}
3966
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003967static int video_read(char *p)
3968{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003969 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003970 int len = 0;
3971
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003972 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003973 len += sprintf(p + len, "status:\t\tnot supported\n");
3974 return len;
3975 }
3976
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03003977 status = video_outputsw_get();
3978 if (status < 0)
3979 return status;
3980
3981 autosw = video_autosw_get();
3982 if (autosw < 0)
3983 return autosw;
3984
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003985 len += sprintf(p + len, "status:\t\tsupported\n");
3986 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
3987 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003988 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003989 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
3990 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
3991 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
3992 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03003993 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003994 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
3995 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
3996 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
3997
3998 return len;
3999}
4000
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004001static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002{
4003 char *cmd;
4004 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004005 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004007 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004008 return -ENODEV;
4009
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004010 enable = 0;
4011 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
4013 while ((cmd = next_cmd(&buf))) {
4014 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004015 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004017 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004019 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004021 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004022 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004023 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004024 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004025 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004026 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004027 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004029 res = video_autosw_set(1);
4030 if (res)
4031 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004033 res = video_autosw_set(0);
4034 if (res)
4035 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004037 res = video_outputsw_cycle();
4038 if (res)
4039 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004041 res = video_expand_toggle();
4042 if (res)
4043 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 } else
4045 return -EINVAL;
4046 }
4047
4048 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004049 status = video_outputsw_get();
4050 if (status < 0)
4051 return status;
4052 res = video_outputsw_set((status & ~disable) | enable);
4053 if (res)
4054 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 }
4056
4057 return 0;
4058}
4059
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004060static struct ibm_struct video_driver_data = {
4061 .name = "video",
4062 .read = video_read,
4063 .write = video_write,
4064 .exit = video_exit,
4065};
4066
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004067#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4068
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004069/*************************************************************************
4070 * Light (thinklight) subdriver
4071 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004073TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4074TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004075
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004076static int light_get_status(void)
4077{
4078 int status = 0;
4079
4080 if (tp_features.light_status) {
4081 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4082 return -EIO;
4083 return (!!status);
4084 }
4085
4086 return -ENXIO;
4087}
4088
4089static int light_set_status(int status)
4090{
4091 int rc;
4092
4093 if (tp_features.light) {
4094 if (cmos_handle) {
4095 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4096 (status)?
4097 TP_CMOS_THINKLIGHT_ON :
4098 TP_CMOS_THINKLIGHT_OFF);
4099 } else {
4100 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4101 (status)? 1 : 0);
4102 }
4103 return (rc)? 0 : -EIO;
4104 }
4105
4106 return -ENXIO;
4107}
4108
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004109static void light_set_status_worker(struct work_struct *work)
4110{
4111 struct tpacpi_led_classdev *data =
4112 container_of(work, struct tpacpi_led_classdev, work);
4113
4114 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
4115 light_set_status((data->new_brightness != LED_OFF));
4116}
4117
4118static void light_sysfs_set(struct led_classdev *led_cdev,
4119 enum led_brightness brightness)
4120{
4121 struct tpacpi_led_classdev *data =
4122 container_of(led_cdev,
4123 struct tpacpi_led_classdev,
4124 led_classdev);
4125 data->new_brightness = brightness;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004126 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004127}
4128
4129static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4130{
4131 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4132}
4133
4134static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4135 .led_classdev = {
4136 .name = "tpacpi::thinklight",
4137 .brightness_set = &light_sysfs_set,
4138 .brightness_get = &light_sysfs_get,
4139 }
4140};
4141
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004142static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004144 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004145
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004146 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4147
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004148 TPACPI_ACPIHANDLE_INIT(ledb);
4149 TPACPI_ACPIHANDLE_INIT(lght);
4150 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004151 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004152
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004153 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004154 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004155
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004156 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004157 /* light status not supported on
4158 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004159 tp_features.light_status =
4160 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004162 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4163 str_supported(tp_features.light),
4164 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004165
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004166 if (!tp_features.light)
4167 return 1;
4168
4169 rc = led_classdev_register(&tpacpi_pdev->dev,
4170 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004171
4172 if (rc < 0) {
4173 tp_features.light = 0;
4174 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004175 } else {
4176 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004177 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004178
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004179 return rc;
4180}
4181
4182static void light_exit(void)
4183{
4184 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4185 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004186 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187}
4188
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004189static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190{
4191 int len = 0;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004192 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004194 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004195 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004196 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004197 len += sprintf(p + len, "status:\t\tunknown\n");
4198 len += sprintf(p + len, "commands:\ton, off\n");
4199 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004200 status = light_get_status();
4201 if (status < 0)
4202 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004204 len += sprintf(p + len, "commands:\ton, off\n");
4205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207 return len;
4208}
4209
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004210static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004213 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004214
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004215 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004216 return -ENODEV;
4217
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 while ((cmd = next_cmd(&buf))) {
4219 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004220 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004222 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 } else
4224 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 }
4226
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004227 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004230static struct ibm_struct light_driver_data = {
4231 .name = "light",
4232 .read = light_read,
4233 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004234 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004235};
4236
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004237/*************************************************************************
4238 * Dock subdriver
4239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03004241#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004242
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004243static void dock_notify(struct ibm_struct *ibm, u32 event);
4244static int dock_read(char *p);
4245static int dock_write(char *buf);
4246
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004247TPACPI_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004248 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
4249 "\\_SB.PCI0.PCI1.DOCK", /* all others */
4250 "\\_SB.PCI.ISA.SLCE", /* 570 */
4251 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
4252
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004253/* don't list other alternatives as we install a notify handler on the 570 */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004254TPACPI_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004255
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004256static const struct acpi_device_id ibm_pci_device_ids[] = {
4257 {PCI_ROOT_HID_STRING, 0},
4258 {"", 0},
4259};
4260
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03004261static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
4262 {
4263 .notify = dock_notify,
4264 .handle = &dock_handle,
4265 .type = ACPI_SYSTEM_NOTIFY,
4266 },
4267 {
Henrique de Moraes Holschuh996fba02007-07-18 23:45:40 -03004268 /* THIS ONE MUST NEVER BE USED FOR DRIVER AUTOLOADING.
4269 * We just use it to get notifications of dock hotplug
4270 * in very old thinkpads */
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004271 .hid = ibm_pci_device_ids,
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03004272 .notify = dock_notify,
4273 .handle = &pci_handle,
4274 .type = ACPI_SYSTEM_NOTIFY,
4275 },
4276};
4277
4278static struct ibm_struct dock_driver_data[2] = {
4279 {
4280 .name = "dock",
4281 .read = dock_read,
4282 .write = dock_write,
4283 .acpi = &ibm_dock_acpidriver[0],
4284 },
4285 {
4286 .name = "dock",
4287 .acpi = &ibm_dock_acpidriver[1],
4288 },
4289};
4290
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291#define dock_docked() (_sta(dock_handle) & 1)
4292
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004293static int __init dock_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004294{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004295 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
4296
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004297 TPACPI_ACPIHANDLE_INIT(dock);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004298
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004299 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
4300 str_supported(dock_handle != NULL));
4301
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004302 return (dock_handle)? 0 : 1;
4303}
4304
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03004305static int __init dock_init2(struct ibm_init_struct *iibm)
4306{
4307 int dock2_needed;
4308
4309 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver part 2\n");
4310
4311 if (dock_driver_data[0].flags.acpi_driver_registered &&
4312 dock_driver_data[0].flags.acpi_notify_installed) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004313 TPACPI_ACPIHANDLE_INIT(pci);
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03004314 dock2_needed = (pci_handle != NULL);
4315 vdbg_printk(TPACPI_DBG_INIT,
4316 "dock PCI handler for the TP 570 is %s\n",
4317 str_supported(dock2_needed));
4318 } else {
4319 vdbg_printk(TPACPI_DBG_INIT,
4320 "dock subdriver part 2 not required\n");
4321 dock2_needed = 0;
4322 }
4323
4324 return (dock2_needed)? 0 : 1;
4325}
4326
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004327static void dock_notify(struct ibm_struct *ibm, u32 event)
4328{
4329 int docked = dock_docked();
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004330 int pci = ibm->acpi->hid && ibm->acpi->device &&
4331 acpi_match_device_ids(ibm->acpi->device, ibm_pci_device_ids);
Zhang Rui962ce8c2007-08-23 01:24:31 +08004332 int data;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004333
4334 if (event == 1 && !pci) /* 570 */
Zhang Rui962ce8c2007-08-23 01:24:31 +08004335 data = 1; /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004336 else if (event == 1 && pci) /* 570 */
Zhang Rui962ce8c2007-08-23 01:24:31 +08004337 data = 3; /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004338 else if (event == 3 && docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08004339 data = 1; /* button */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004340 else if (event == 3 && !docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08004341 data = 2; /* undock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004342 else if (event == 0 && docked)
Zhang Rui962ce8c2007-08-23 01:24:31 +08004343 data = 3; /* dock */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004344 else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004345 printk(TPACPI_ERR "unknown dock event %d, status %d\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004346 event, _sta(dock_handle));
Zhang Rui962ce8c2007-08-23 01:24:31 +08004347 data = 0; /* unknown */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004348 }
Len Brown14e04fb32007-08-23 15:20:26 -04004349 acpi_bus_generate_proc_event(ibm->acpi->device, event, data);
Zhang Rui962ce8c2007-08-23 01:24:31 +08004350 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02004351 dev_name(&ibm->acpi->device->dev),
Zhang Rui962ce8c2007-08-23 01:24:31 +08004352 event, data);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004353}
4354
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004355static int dock_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356{
4357 int len = 0;
4358 int docked = dock_docked();
4359
4360 if (!dock_handle)
4361 len += sprintf(p + len, "status:\t\tnot supported\n");
4362 else if (!docked)
4363 len += sprintf(p + len, "status:\t\tundocked\n");
4364 else {
4365 len += sprintf(p + len, "status:\t\tdocked\n");
4366 len += sprintf(p + len, "commands:\tdock, undock\n");
4367 }
4368
4369 return len;
4370}
4371
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004372static int dock_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373{
4374 char *cmd;
4375
4376 if (!dock_docked())
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004377 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 while ((cmd = next_cmd(&buf))) {
4380 if (strlencmp(cmd, "undock") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004381 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
4382 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 return -EIO;
4384 } else if (strlencmp(cmd, "dock") == 0) {
4385 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
4386 return -EIO;
4387 } else
4388 return -EINVAL;
4389 }
4390
4391 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004392}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03004394#endif /* CONFIG_THINKPAD_ACPI_DOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004396/*************************************************************************
4397 * Bay subdriver
4398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03004400#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004401
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004402TPACPI_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004403 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
4404 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
4405 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
4406 ); /* A21e, R30, R31 */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004407TPACPI_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004408 "_EJ0", /* all others */
4409 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004410TPACPI_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004411 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
4412 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004413TPACPI_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004414 "_EJ0", /* 770x */
4415 ); /* all others */
4416
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004417static int __init bay_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004419 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
4420
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004421 TPACPI_ACPIHANDLE_INIT(bay);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004422 if (bay_handle)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004423 TPACPI_ACPIHANDLE_INIT(bay_ej);
4424 TPACPI_ACPIHANDLE_INIT(bay2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004425 if (bay2_handle)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004426 TPACPI_ACPIHANDLE_INIT(bay2_ej);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004427
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004428 tp_features.bay_status = bay_handle &&
4429 acpi_evalf(bay_handle, NULL, "_STA", "qv");
4430 tp_features.bay_status2 = bay2_handle &&
4431 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004432
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004433 tp_features.bay_eject = bay_handle && bay_ej_handle &&
4434 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
4435 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
4436 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004438 vdbg_printk(TPACPI_DBG_INIT,
4439 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004440 str_supported(tp_features.bay_status),
4441 str_supported(tp_features.bay_eject),
4442 str_supported(tp_features.bay_status2),
4443 str_supported(tp_features.bay_eject2));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004444
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004445 return (tp_features.bay_status || tp_features.bay_eject ||
4446 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447}
4448
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004449static void bay_notify(struct ibm_struct *ibm, u32 event)
4450{
Len Brown14e04fb32007-08-23 15:20:26 -04004451 acpi_bus_generate_proc_event(ibm->acpi->device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +08004452 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02004453 dev_name(&ibm->acpi->device->dev),
Zhang Rui962ce8c2007-08-23 01:24:31 +08004454 event, 0);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004455}
4456
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004457#define bay_occupied(b) (_sta(b##_handle) & 1)
4458
4459static int bay_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460{
4461 int len = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004462 int occupied = bay_occupied(bay);
4463 int occupied2 = bay_occupied(bay2);
4464 int eject, eject2;
4465
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004466 len += sprintf(p + len, "status:\t\t%s\n",
4467 tp_features.bay_status ?
4468 (occupied ? "occupied" : "unoccupied") :
4469 "not supported");
4470 if (tp_features.bay_status2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004471 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
4472 "occupied" : "unoccupied");
4473
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004474 eject = tp_features.bay_eject && occupied;
4475 eject2 = tp_features.bay_eject2 && occupied2;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004476
4477 if (eject && eject2)
4478 len += sprintf(p + len, "commands:\teject, eject2\n");
4479 else if (eject)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 len += sprintf(p + len, "commands:\teject\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004481 else if (eject2)
4482 len += sprintf(p + len, "commands:\teject2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
4484 return len;
4485}
4486
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004487static int bay_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488{
4489 char *cmd;
4490
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004491 if (!tp_features.bay_eject && !tp_features.bay_eject2)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004492 return -ENODEV;
4493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004495 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004496 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
4497 return -EIO;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004498 } else if (tp_features.bay_eject2 &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004499 strlencmp(cmd, "eject2") == 0) {
4500 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 return -EIO;
4502 } else
4503 return -EINVAL;
4504 }
4505
4506 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004507}
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004508
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004509static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
4510 .notify = bay_notify,
4511 .handle = &bay_handle,
4512 .type = ACPI_SYSTEM_NOTIFY,
4513};
4514
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004515static struct ibm_struct bay_driver_data = {
4516 .name = "bay",
4517 .read = bay_read,
4518 .write = bay_write,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004519 .acpi = &ibm_bay_acpidriver,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004520};
4521
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03004522#endif /* CONFIG_THINKPAD_ACPI_BAY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004524/*************************************************************************
4525 * CMOS subdriver
4526 */
4527
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004528/* sysfs cmos_command -------------------------------------------------- */
4529static ssize_t cmos_command_store(struct device *dev,
4530 struct device_attribute *attr,
4531 const char *buf, size_t count)
4532{
4533 unsigned long cmos_cmd;
4534 int res;
4535
4536 if (parse_strtoul(buf, 21, &cmos_cmd))
4537 return -EINVAL;
4538
4539 res = issue_thinkpad_cmos_command(cmos_cmd);
4540 return (res)? res : count;
4541}
4542
4543static struct device_attribute dev_attr_cmos_command =
4544 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4545
4546/* --------------------------------------------------------------------- */
4547
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004548static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004549{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004550 int res;
4551
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004552 vdbg_printk(TPACPI_DBG_INIT,
4553 "initializing cmos commands subdriver\n");
4554
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004555 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004556
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004557 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4558 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004559
4560 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4561 if (res)
4562 return res;
4563
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004564 return (cmos_handle)? 0 : 1;
4565}
4566
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004567static void cmos_exit(void)
4568{
4569 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4570}
4571
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004572static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573{
4574 int len = 0;
4575
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004576 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4577 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 if (!cmos_handle)
4579 len += sprintf(p + len, "status:\t\tnot supported\n");
4580 else {
4581 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004582 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 }
4584
4585 return len;
4586}
4587
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004588static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
4590 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004591 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
4593 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004594 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4595 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 /* cmos_cmd set */
4597 } else
4598 return -EINVAL;
4599
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004600 res = issue_thinkpad_cmos_command(cmos_cmd);
4601 if (res)
4602 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 }
4604
4605 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004606}
4607
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004608static struct ibm_struct cmos_driver_data = {
4609 .name = "cmos",
4610 .read = cmos_read,
4611 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004612 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004613};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004614
4615/*************************************************************************
4616 * LED subdriver
4617 */
4618
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004619enum led_access_mode {
4620 TPACPI_LED_NONE = 0,
4621 TPACPI_LED_570, /* 570 */
4622 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4623 TPACPI_LED_NEW, /* all others */
4624};
4625
4626enum { /* For TPACPI_LED_OLD */
4627 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4628 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
4629 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
4630};
4631
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004632enum led_status_t {
4633 TPACPI_LED_OFF = 0,
4634 TPACPI_LED_ON,
4635 TPACPI_LED_BLINK,
4636};
4637
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004638static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004639
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004640TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004641 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
4642 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004643 "LED", /* all others */
4644 ); /* R30, R31 */
4645
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004646#define TPACPI_LED_NUMLEDS 8
4647static struct tpacpi_led_classdev *tpacpi_leds;
4648static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07004649static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004650 /* there's a limit of 19 chars + NULL before 2.6.26 */
4651 "tpacpi::power",
4652 "tpacpi:orange:batt",
4653 "tpacpi:green:batt",
4654 "tpacpi::dock_active",
4655 "tpacpi::bay_active",
4656 "tpacpi::dock_batt",
4657 "tpacpi::unknown_led",
4658 "tpacpi::standby",
4659};
4660
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004661static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004662{
4663 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004664 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004665
4666 switch (led_supported) {
4667 case TPACPI_LED_570:
4668 if (!acpi_evalf(ec_handle,
4669 &status, "GLED", "dd", 1 << led))
4670 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004671 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004672 TPACPI_LED_OFF :
4673 ((status == 1)?
4674 TPACPI_LED_ON :
4675 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004676 tpacpi_led_state_cache[led] = led_s;
4677 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004678 default:
4679 return -ENXIO;
4680 }
4681
4682 /* not reached */
4683}
4684
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004685static int led_set_status(const unsigned int led,
4686 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004687{
4688 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004689 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
4690 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004691
4692 int rc = 0;
4693
4694 switch (led_supported) {
4695 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004696 /* 570 */
4697 if (led > 7)
4698 return -EINVAL;
4699 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
4700 (1 << led), led_sled_arg1[ledstatus]))
4701 rc = -EIO;
4702 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004703 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004704 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
4705 if (led > 7)
4706 return -EINVAL;
4707 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
4708 if (rc >= 0)
4709 rc = ec_write(TPACPI_LED_EC_HLBL,
4710 (ledstatus == TPACPI_LED_BLINK) << led);
4711 if (rc >= 0)
4712 rc = ec_write(TPACPI_LED_EC_HLCL,
4713 (ledstatus != TPACPI_LED_OFF) << led);
4714 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004715 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03004716 /* all others */
4717 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
4718 led, led_led_arg1[ledstatus]))
4719 rc = -EIO;
4720 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004721 default:
4722 rc = -ENXIO;
4723 }
4724
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004725 if (!rc)
4726 tpacpi_led_state_cache[led] = ledstatus;
4727
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004728 return rc;
4729}
4730
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004731static void led_sysfs_set_status(unsigned int led,
4732 enum led_brightness brightness)
4733{
4734 led_set_status(led,
4735 (brightness == LED_OFF) ?
4736 TPACPI_LED_OFF :
4737 (tpacpi_led_state_cache[led] == TPACPI_LED_BLINK) ?
4738 TPACPI_LED_BLINK : TPACPI_LED_ON);
4739}
4740
4741static void led_set_status_worker(struct work_struct *work)
4742{
4743 struct tpacpi_led_classdev *data =
4744 container_of(work, struct tpacpi_led_classdev, work);
4745
4746 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
4747 led_sysfs_set_status(data->led, data->new_brightness);
4748}
4749
4750static void led_sysfs_set(struct led_classdev *led_cdev,
4751 enum led_brightness brightness)
4752{
4753 struct tpacpi_led_classdev *data = container_of(led_cdev,
4754 struct tpacpi_led_classdev, led_classdev);
4755
4756 data->new_brightness = brightness;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004757 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004758}
4759
4760static int led_sysfs_blink_set(struct led_classdev *led_cdev,
4761 unsigned long *delay_on, unsigned long *delay_off)
4762{
4763 struct tpacpi_led_classdev *data = container_of(led_cdev,
4764 struct tpacpi_led_classdev, led_classdev);
4765
4766 /* Can we choose the flash rate? */
4767 if (*delay_on == 0 && *delay_off == 0) {
4768 /* yes. set them to the hardware blink rate (1 Hz) */
4769 *delay_on = 500; /* ms */
4770 *delay_off = 500; /* ms */
4771 } else if ((*delay_on != 500) || (*delay_off != 500))
4772 return -EINVAL;
4773
4774 data->new_brightness = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004775 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004776
4777 return 0;
4778}
4779
4780static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
4781{
4782 int rc;
4783
4784 struct tpacpi_led_classdev *data = container_of(led_cdev,
4785 struct tpacpi_led_classdev, led_classdev);
4786
4787 rc = led_get_status(data->led);
4788
4789 if (rc == TPACPI_LED_OFF || rc < 0)
4790 rc = LED_OFF; /* no error handling in led class :( */
4791 else
4792 rc = LED_FULL;
4793
4794 return rc;
4795}
4796
4797static void led_exit(void)
4798{
4799 unsigned int i;
4800
4801 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
4802 if (tpacpi_leds[i].led_classdev.name)
4803 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
4804 }
4805
4806 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004807}
4808
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004809static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004810{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004811 unsigned int i;
4812 int rc;
4813
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004814 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
4815
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004816 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004817
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004818 if (!led_handle)
4819 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004820 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004821 else if (strlencmp(led_path, "SLED") == 0)
4822 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004823 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004824 else if (strlencmp(led_path, "SYSL") == 0)
4825 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004826 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004827 else
4828 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004829 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004830
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004831 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
4832 str_supported(led_supported), led_supported);
4833
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004834 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
4835 GFP_KERNEL);
4836 if (!tpacpi_leds) {
4837 printk(TPACPI_ERR "Out of memory for LED data\n");
4838 return -ENOMEM;
4839 }
4840
4841 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
4842 tpacpi_leds[i].led = i;
4843
4844 tpacpi_leds[i].led_classdev.brightness_set = &led_sysfs_set;
4845 tpacpi_leds[i].led_classdev.blink_set = &led_sysfs_blink_set;
4846 if (led_supported == TPACPI_LED_570)
4847 tpacpi_leds[i].led_classdev.brightness_get =
4848 &led_sysfs_get;
4849
4850 tpacpi_leds[i].led_classdev.name = tpacpi_led_names[i];
4851
4852 INIT_WORK(&tpacpi_leds[i].work, led_set_status_worker);
4853
4854 rc = led_classdev_register(&tpacpi_pdev->dev,
4855 &tpacpi_leds[i].led_classdev);
4856 if (rc < 0) {
4857 tpacpi_leds[i].led_classdev.name = NULL;
4858 led_exit();
4859 return rc;
4860 }
4861 }
4862
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004863 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004864}
4865
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004866#define str_led_status(s) \
4867 ((s) == TPACPI_LED_OFF ? "off" : \
4868 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004869
4870static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871{
4872 int len = 0;
4873
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004874 if (!led_supported) {
4875 len += sprintf(p + len, "status:\t\tnot supported\n");
4876 return len;
4877 }
4878 len += sprintf(p + len, "status:\t\tsupported\n");
4879
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004880 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004881 /* 570 */
4882 int i, status;
4883 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004884 status = led_get_status(i);
4885 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004886 return -EIO;
4887 len += sprintf(p + len, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004888 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004889 }
4890 }
4891
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 len += sprintf(p + len, "commands:\t"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004893 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
4895 return len;
4896}
4897
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004898static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899{
4900 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004901 int led, rc;
4902 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004903
4904 if (!led_supported)
4905 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
4907 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004908 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 return -EINVAL;
4910
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004911 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004912 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004914 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004915 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004916 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004917 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004918 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004919 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004920
4921 rc = led_set_status(led, s);
4922 if (rc < 0)
4923 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 }
4925
4926 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004927}
4928
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004929static struct ibm_struct led_driver_data = {
4930 .name = "led",
4931 .read = led_read,
4932 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004933 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004934};
4935
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004936/*************************************************************************
4937 * Beep subdriver
4938 */
4939
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004940TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004941
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004942static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004943{
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004944 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
4945
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004946 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004947
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004948 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
4949 str_supported(beep_handle != NULL));
4950
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004951 return (beep_handle)? 0 : 1;
4952}
4953
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004954static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955{
4956 int len = 0;
4957
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004958 if (!beep_handle)
4959 len += sprintf(p + len, "status:\t\tnot supported\n");
4960 else {
4961 len += sprintf(p + len, "status:\t\tsupported\n");
4962 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
4963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
4965 return len;
4966}
4967
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004968static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969{
4970 char *cmd;
4971 int beep_cmd;
4972
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004973 if (!beep_handle)
4974 return -ENODEV;
4975
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004977 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
4978 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 /* beep_cmd set */
4980 } else
4981 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004982 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 return -EIO;
4984 }
4985
4986 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004987}
4988
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004989static struct ibm_struct beep_driver_data = {
4990 .name = "beep",
4991 .read = beep_read,
4992 .write = beep_write,
4993};
4994
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004995/*************************************************************************
4996 * Thermal subdriver
4997 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004998
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004999enum thermal_access_mode {
5000 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5001 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5002 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5003 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5004 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5005};
5006
5007enum { /* TPACPI_THERMAL_TPEC_* */
5008 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5009 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5010 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
5011};
5012
5013#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5014struct ibm_thermal_sensors_struct {
5015 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5016};
5017
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005018static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005019
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005020/* idx is zero-based */
5021static int thermal_get_sensor(int idx, s32 *value)
5022{
5023 int t;
5024 s8 tmp;
5025 char tmpi[5];
5026
5027 t = TP_EC_THERMAL_TMP0;
5028
5029 switch (thermal_read_mode) {
5030#if TPACPI_MAX_THERMAL_SENSORS >= 16
5031 case TPACPI_THERMAL_TPEC_16:
5032 if (idx >= 8 && idx <= 15) {
5033 t = TP_EC_THERMAL_TMP8;
5034 idx -= 8;
5035 }
5036 /* fallthrough */
5037#endif
5038 case TPACPI_THERMAL_TPEC_8:
5039 if (idx <= 7) {
5040 if (!acpi_ec_read(t + idx, &tmp))
5041 return -EIO;
5042 *value = tmp * 1000;
5043 return 0;
5044 }
5045 break;
5046
5047 case TPACPI_THERMAL_ACPI_UPDT:
5048 if (idx <= 7) {
5049 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5050 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5051 return -EIO;
5052 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5053 return -EIO;
5054 *value = (t - 2732) * 100;
5055 return 0;
5056 }
5057 break;
5058
5059 case TPACPI_THERMAL_ACPI_TMP07:
5060 if (idx <= 7) {
5061 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5062 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5063 return -EIO;
5064 if (t > 127 || t < -127)
5065 t = TP_EC_THERMAL_TMP_NA;
5066 *value = t * 1000;
5067 return 0;
5068 }
5069 break;
5070
5071 case TPACPI_THERMAL_NONE:
5072 default:
5073 return -ENOSYS;
5074 }
5075
5076 return -EINVAL;
5077}
5078
5079static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5080{
5081 int res, i;
5082 int n;
5083
5084 n = 8;
5085 i = 0;
5086
5087 if (!s)
5088 return -EINVAL;
5089
5090 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5091 n = 16;
5092
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005093 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005094 res = thermal_get_sensor(i, &s->temp[i]);
5095 if (res)
5096 return res;
5097 }
5098
5099 return n;
5100}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005101
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005102/* sysfs temp##_input -------------------------------------------------- */
5103
5104static ssize_t thermal_temp_input_show(struct device *dev,
5105 struct device_attribute *attr,
5106 char *buf)
5107{
5108 struct sensor_device_attribute *sensor_attr =
5109 to_sensor_dev_attr(attr);
5110 int idx = sensor_attr->index;
5111 s32 value;
5112 int res;
5113
5114 res = thermal_get_sensor(idx, &value);
5115 if (res)
5116 return res;
5117 if (value == TP_EC_THERMAL_TMP_NA * 1000)
5118 return -ENXIO;
5119
5120 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5121}
5122
5123#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005124 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5125 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005126
5127static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5128 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5129 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5130 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5131 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5132 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5133 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5134 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5135 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5136 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5137 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5138 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5139 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5140 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5141 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5142 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5143 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5144};
5145
5146#define THERMAL_ATTRS(X) \
5147 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5148
5149static struct attribute *thermal_temp_input_attr[] = {
5150 THERMAL_ATTRS(8),
5151 THERMAL_ATTRS(9),
5152 THERMAL_ATTRS(10),
5153 THERMAL_ATTRS(11),
5154 THERMAL_ATTRS(12),
5155 THERMAL_ATTRS(13),
5156 THERMAL_ATTRS(14),
5157 THERMAL_ATTRS(15),
5158 THERMAL_ATTRS(0),
5159 THERMAL_ATTRS(1),
5160 THERMAL_ATTRS(2),
5161 THERMAL_ATTRS(3),
5162 THERMAL_ATTRS(4),
5163 THERMAL_ATTRS(5),
5164 THERMAL_ATTRS(6),
5165 THERMAL_ATTRS(7),
5166 NULL
5167};
5168
5169static const struct attribute_group thermal_temp_input16_group = {
5170 .attrs = thermal_temp_input_attr
5171};
5172
5173static const struct attribute_group thermal_temp_input8_group = {
5174 .attrs = &thermal_temp_input_attr[8]
5175};
5176
5177#undef THERMAL_SENSOR_ATTR_TEMP
5178#undef THERMAL_ATTRS
5179
5180/* --------------------------------------------------------------------- */
5181
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005182static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005183{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005184 u8 t, ta1, ta2;
5185 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005186 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005187 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005188
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005189 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5190
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005191 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005192
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005193 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005194 /*
5195 * Direct EC access mode: sensors at registers
5196 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5197 * non-implemented, thermal sensors return 0x80 when
5198 * not available
5199 */
5200
5201 ta1 = ta2 = 0;
5202 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005203 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005204 ta1 |= t;
5205 } else {
5206 ta1 = 0;
5207 break;
5208 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005209 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005210 ta2 |= t;
5211 } else {
5212 ta1 = 0;
5213 break;
5214 }
5215 }
5216 if (ta1 == 0) {
5217 /* This is sheer paranoia, but we handle it anyway */
5218 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005219 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005220 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005221 "falling back to ACPI TMPx access "
5222 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005223 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005224 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005225 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005226 "ThinkPad ACPI EC access misbehaving, "
5227 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005228 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005229 }
5230 } else {
5231 thermal_read_mode =
5232 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005233 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005234 }
5235 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005236 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
5237 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005238 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005239 } else {
5240 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005241 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005242 }
5243 } else {
5244 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005245 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005246 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005247
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005248 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5249 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5250 thermal_read_mode);
5251
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005252 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005253 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005254 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005255 &thermal_temp_input16_group);
5256 if (res)
5257 return res;
5258 break;
5259 case TPACPI_THERMAL_TPEC_8:
5260 case TPACPI_THERMAL_ACPI_TMP07:
5261 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005262 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005263 &thermal_temp_input8_group);
5264 if (res)
5265 return res;
5266 break;
5267 case TPACPI_THERMAL_NONE:
5268 default:
5269 return 1;
5270 }
5271
5272 return 0;
5273}
5274
5275static void thermal_exit(void)
5276{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005277 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005278 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005279 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005280 &thermal_temp_input16_group);
5281 break;
5282 case TPACPI_THERMAL_TPEC_8:
5283 case TPACPI_THERMAL_ACPI_TMP07:
5284 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005285 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005286 &thermal_temp_input16_group);
5287 break;
5288 case TPACPI_THERMAL_NONE:
5289 default:
5290 break;
5291 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005292}
5293
5294static int thermal_read(char *p)
5295{
5296 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005297 int n, i;
5298 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005299
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005300 n = thermal_get_sensors(&t);
5301 if (unlikely(n < 0))
5302 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005303
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005304 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005305
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005306 if (n > 0) {
5307 for (i = 0; i < (n - 1); i++)
5308 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
5309 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
5310 } else
5311 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005312
5313 return len;
5314}
5315
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005316static struct ibm_struct thermal_driver_data = {
5317 .name = "thermal",
5318 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005319 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005320};
5321
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005322/*************************************************************************
5323 * EC Dump subdriver
5324 */
5325
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005326static u8 ecdump_regs[256];
5327
5328static int ecdump_read(char *p)
5329{
5330 int len = 0;
5331 int i, j;
5332 u8 v;
5333
5334 len += sprintf(p + len, "EC "
5335 " +00 +01 +02 +03 +04 +05 +06 +07"
5336 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5337 for (i = 0; i < 256; i += 16) {
5338 len += sprintf(p + len, "EC 0x%02x:", i);
5339 for (j = 0; j < 16; j++) {
5340 if (!acpi_ec_read(i + j, &v))
5341 break;
5342 if (v != ecdump_regs[i + j])
5343 len += sprintf(p + len, " *%02x", v);
5344 else
5345 len += sprintf(p + len, " %02x", v);
5346 ecdump_regs[i + j] = v;
5347 }
5348 len += sprintf(p + len, "\n");
5349 if (j != 16)
5350 break;
5351 }
5352
5353 /* These are way too dangerous to advertise openly... */
5354#if 0
5355 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
5356 " (<offset> is 00-ff, <value> is 00-ff)\n");
5357 len += sprintf(p + len, "commands:\t0x<offset> <value> "
5358 " (<offset> is 00-ff, <value> is 0-255)\n");
5359#endif
5360 return len;
5361}
5362
5363static int ecdump_write(char *buf)
5364{
5365 char *cmd;
5366 int i, v;
5367
5368 while ((cmd = next_cmd(&buf))) {
5369 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5370 /* i and v set */
5371 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5372 /* i and v set */
5373 } else
5374 return -EINVAL;
5375 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5376 if (!acpi_ec_write(i, v))
5377 return -EIO;
5378 } else
5379 return -EINVAL;
5380 }
5381
5382 return 0;
5383}
5384
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005385static struct ibm_struct ecdump_driver_data = {
5386 .name = "ecdump",
5387 .read = ecdump_read,
5388 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005389 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005390};
5391
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005392/*************************************************************************
5393 * Backlight/brightness subdriver
5394 */
Holger Macht8acb0252006-10-20 14:30:28 -07005395
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005396#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5397
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005398enum {
5399 TP_EC_BACKLIGHT = 0x31,
5400
5401 /* TP_EC_BACKLIGHT bitmasks */
5402 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5403 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5404 TP_EC_BACKLIGHT_MAPSW = 0x20,
5405};
5406
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005407static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005408static int brightness_mode;
5409static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5410
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005411static struct mutex brightness_mutex;
5412
5413/*
5414 * ThinkPads can read brightness from two places: EC 0x31, or
5415 * CMOS NVRAM byte 0x5E, bits 0-3.
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005416 *
5417 * EC 0x31 has the following layout
5418 * Bit 7: unknown function
5419 * Bit 6: unknown function
5420 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5421 * Bit 4: must be set to zero to avoid problems
5422 * Bit 3-0: backlight brightness level
5423 *
5424 * brightness_get_raw returns status data in the EC 0x31 layout
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005425 */
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005426static int brightness_get_raw(int *status)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005427{
5428 u8 lec = 0, lcmos = 0, level = 0;
5429
5430 if (brightness_mode & 1) {
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005431 if (!acpi_ec_read(TP_EC_BACKLIGHT, &lec))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005432 return -EIO;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005433 level = lec & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005434 };
5435 if (brightness_mode & 2) {
5436 lcmos = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5437 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5438 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5439 lcmos &= (tp_features.bright_16levels)? 0x0f : 0x07;
5440 level = lcmos;
5441 }
5442
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005443 if (brightness_mode == 3) {
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005444 *status = lec; /* Prefer EC, CMOS is just a backing store */
5445 lec &= TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005446 if (lec == lcmos)
5447 tp_warned.bright_cmos_ec_unsync = 0;
5448 else {
5449 if (!tp_warned.bright_cmos_ec_unsync) {
5450 printk(TPACPI_ERR
5451 "CMOS NVRAM (%u) and EC (%u) do not "
5452 "agree on display brightness level\n",
5453 (unsigned int) lcmos,
5454 (unsigned int) lec);
5455 tp_warned.bright_cmos_ec_unsync = 1;
5456 }
5457 return -EIO;
5458 }
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005459 } else {
5460 *status = level;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005461 }
5462
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005463 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005464}
5465
5466/* May return EINTR which can always be mapped to ERESTARTSYS */
5467static int brightness_set(int value)
5468{
5469 int cmos_cmd, inc, i, res;
5470 int current_value;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005471 int command_bits;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005472
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005473 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
5474 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005475 return -EINVAL;
5476
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02005477 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005478 if (res < 0)
5479 return res;
5480
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005481 res = brightness_get_raw(&current_value);
5482 if (res < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005483 goto errout;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005484
5485 command_bits = current_value & TP_EC_BACKLIGHT_CMDMSK;
5486 current_value &= TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005487
5488 cmos_cmd = value > current_value ?
5489 TP_CMOS_BRIGHTNESS_UP :
5490 TP_CMOS_BRIGHTNESS_DOWN;
5491 inc = (value > current_value)? 1 : -1;
5492
5493 res = 0;
5494 for (i = current_value; i != value; i += inc) {
5495 if ((brightness_mode & 2) &&
5496 issue_thinkpad_cmos_command(cmos_cmd)) {
5497 res = -EIO;
5498 goto errout;
5499 }
5500 if ((brightness_mode & 1) &&
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005501 !acpi_ec_write(TP_EC_BACKLIGHT,
5502 (i + inc) | command_bits)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005503 res = -EIO;
5504 goto errout;;
5505 }
5506 }
5507
5508errout:
5509 mutex_unlock(&brightness_mutex);
5510 return res;
5511}
5512
5513/* sysfs backlight class ----------------------------------------------- */
5514
5515static int brightness_update_status(struct backlight_device *bd)
5516{
5517 /* it is the backlight class's job (caller) to handle
5518 * EINTR and other errors properly */
5519 return brightness_set(
5520 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
5521 bd->props.power == FB_BLANK_UNBLANK) ?
5522 bd->props.brightness : 0);
5523}
Holger Macht8acb0252006-10-20 14:30:28 -07005524
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005525static int brightness_get(struct backlight_device *bd)
5526{
5527 int status, res;
5528
5529 res = brightness_get_raw(&status);
5530 if (res < 0)
5531 return 0; /* FIXME: teach backlight about error handling */
5532
5533 return status & TP_EC_BACKLIGHT_LVLMSK;
5534}
5535
Richard Purdie599a52d2007-02-10 23:07:48 +00005536static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005537 .get_brightness = brightness_get,
5538 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005539};
5540
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005541/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03005542
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005543static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005544{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005545 int b;
5546
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005547 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
5548
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03005549 mutex_init(&brightness_mutex);
5550
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03005551 /*
5552 * We always attempt to detect acpi support, so as to switch
5553 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
5554 * going to publish a backlight interface
5555 */
5556 b = tpacpi_check_std_acpi_brightness_support();
5557 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02005558
5559 if (acpi_video_backlight_support()) {
5560 if (brightness_enable > 1) {
5561 printk(TPACPI_NOTICE
5562 "Standard ACPI backlight interface "
5563 "available, not loading native one.\n");
5564 return 1;
5565 } else if (brightness_enable == 1) {
5566 printk(TPACPI_NOTICE
5567 "Backlight control force enabled, even if standard "
5568 "ACPI backlight interface is available\n");
5569 }
5570 } else {
5571 if (brightness_enable > 1) {
5572 printk(TPACPI_NOTICE
5573 "Standard ACPI backlight interface not "
5574 "available, thinkpad_acpi native "
5575 "brightness control enabled\n");
5576 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02005577 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02005578 }
5579
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03005580 if (!brightness_enable) {
5581 dbg_printk(TPACPI_DBG_INIT,
5582 "brightness support disabled by "
5583 "module parameter\n");
5584 return 1;
5585 }
5586
5587 if (b > 16) {
5588 printk(TPACPI_ERR
5589 "Unsupported brightness interface, "
5590 "please contact %s\n", TPACPI_MAIL);
5591 return 1;
5592 }
5593 if (b == 16)
5594 tp_features.bright_16levels = 1;
5595
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03005596 if (!brightness_mode) {
5597 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO)
5598 brightness_mode = 2;
5599 else
5600 brightness_mode = 3;
5601
5602 dbg_printk(TPACPI_DBG_INIT, "selected brightness_mode=%d\n",
5603 brightness_mode);
5604 }
5605
5606 if (brightness_mode > 3)
5607 return -EINVAL;
5608
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005609 if (brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03005610 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005611
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005612 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005613 printk(TPACPI_INFO
5614 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005615
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03005616 ibm_backlight_device = backlight_device_register(
5617 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
5618 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005619 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005620 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005621 return PTR_ERR(ibm_backlight_device);
5622 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005623 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005624
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005625 ibm_backlight_device->props.max_brightness =
5626 (tp_features.bright_16levels)? 15 : 7;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005627 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02005628 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00005629
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005630 return 0;
5631}
5632
5633static void brightness_exit(void)
5634{
5635 if (ibm_backlight_device) {
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005636 vdbg_printk(TPACPI_DBG_EXIT,
5637 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005638 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02005639 }
5640}
5641
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005642static int brightness_read(char *p)
5643{
5644 int len = 0;
5645 int level;
5646
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005647 level = brightness_get(NULL);
5648 if (level < 0) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005649 len += sprintf(p + len, "level:\t\tunreadable\n");
5650 } else {
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005651 len += sprintf(p + len, "level:\t\t%d\n", level);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005652 len += sprintf(p + len, "commands:\tup, down\n");
5653 len += sprintf(p + len, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005654 " (<level> is 0-%d)\n",
5655 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005656 }
5657
5658 return len;
5659}
5660
5661static int brightness_write(char *buf)
5662{
5663 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005664 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005665 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02005666 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005667
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005668 level = brightness_get(NULL);
5669 if (level < 0)
5670 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005671
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005672 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005673 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005674 if (level < max_level)
5675 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005676 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005677 if (level > 0)
5678 level--;
5679 } else if (sscanf(cmd, "level %d", &level) == 1 &&
5680 level >= 0 && level <= max_level) {
5681 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005682 } else
5683 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005684 }
5685
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02005686 /*
5687 * Now we know what the final level should be, so we try to set it.
5688 * Doing it this way makes the syscall restartable in case of EINTR
5689 */
5690 rc = brightness_set(level);
5691 return (rc == -EINTR)? ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005692}
5693
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005694static struct ibm_struct brightness_driver_data = {
5695 .name = "brightness",
5696 .read = brightness_read,
5697 .write = brightness_write,
5698 .exit = brightness_exit,
5699};
5700
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005701/*************************************************************************
5702 * Volume subdriver
5703 */
5704
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005705static int volume_offset = 0x30;
5706
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005707static int volume_read(char *p)
5708{
5709 int len = 0;
5710 u8 level;
5711
5712 if (!acpi_ec_read(volume_offset, &level)) {
5713 len += sprintf(p + len, "level:\t\tunreadable\n");
5714 } else {
5715 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
5716 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
5717 len += sprintf(p + len, "commands:\tup, down, mute\n");
5718 len += sprintf(p + len, "commands:\tlevel <level>"
5719 " (<level> is 0-15)\n");
5720 }
5721
5722 return len;
5723}
5724
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005725static int volume_write(char *buf)
5726{
5727 int cmos_cmd, inc, i;
5728 u8 level, mute;
5729 int new_level, new_mute;
5730 char *cmd;
5731
5732 while ((cmd = next_cmd(&buf))) {
5733 if (!acpi_ec_read(volume_offset, &level))
5734 return -EIO;
5735 new_mute = mute = level & 0x40;
5736 new_level = level = level & 0xf;
5737
5738 if (strlencmp(cmd, "up") == 0) {
5739 if (mute)
5740 new_mute = 0;
5741 else
5742 new_level = level == 15 ? 15 : level + 1;
5743 } else if (strlencmp(cmd, "down") == 0) {
5744 if (mute)
5745 new_mute = 0;
5746 else
5747 new_level = level == 0 ? 0 : level - 1;
5748 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
5749 new_level >= 0 && new_level <= 15) {
5750 /* new_level set */
5751 } else if (strlencmp(cmd, "mute") == 0) {
5752 new_mute = 0x40;
5753 } else
5754 return -EINVAL;
5755
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005756 if (new_level != level) {
5757 /* mute doesn't change */
5758
5759 cmos_cmd = (new_level > level) ?
5760 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005761 inc = new_level > level ? 1 : -1;
5762
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005763 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005764 !acpi_ec_write(volume_offset, level)))
5765 return -EIO;
5766
5767 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005768 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005769 !acpi_ec_write(volume_offset, i + inc))
5770 return -EIO;
5771
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005772 if (mute &&
5773 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
5774 !acpi_ec_write(volume_offset, new_level + mute))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005775 return -EIO;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005776 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005777 }
5778
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005779 if (new_mute != mute) {
5780 /* level doesn't change */
5781
5782 cmos_cmd = (new_mute) ?
5783 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005784
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005785 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005786 !acpi_ec_write(volume_offset, level + new_mute))
5787 return -EIO;
5788 }
5789 }
5790
5791 return 0;
5792}
5793
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005794static struct ibm_struct volume_driver_data = {
5795 .name = "volume",
5796 .read = volume_read,
5797 .write = volume_write,
5798};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005799
5800/*************************************************************************
5801 * Fan subdriver
5802 */
5803
5804/*
5805 * FAN ACCESS MODES
5806 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005807 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005808 * ACPI GFAN method: returns fan level
5809 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005810 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005811 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005812 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005813 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005814 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
5815 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005816 * EC 0x2f (HFSP) might be available *for reading*, but do not use
5817 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005818 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005819 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005820 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
5821 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005822 *
5823 * Fan speed changes of any sort (including those caused by the
5824 * disengaged mode) are usually done slowly by the firmware as the
5825 * maximum ammount of fan duty cycle change per second seems to be
5826 * limited.
5827 *
5828 * Reading is not available if GFAN exists.
5829 * Writing is not available if SFAN exists.
5830 *
5831 * Bits
5832 * 7 automatic mode engaged;
5833 * (default operation mode of the ThinkPad)
5834 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005835 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005836 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005837 * the tachometer while the fan controller ramps up
5838 * the speed (which can take up to a few *minutes*).
5839 * Speeds up fan to 100% duty-cycle, which is far above
5840 * the standard RPM levels. It is not impossible that
5841 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005842 * 5-3 unused in some models. Extra bits for fan level
5843 * in others, but still useless as all values above
5844 * 7 map to the same speed as level 7 in these models.
5845 * 2-0 fan level (0..7 usually)
5846 * 0x00 = stop
5847 * 0x07 = max (set when temperatures critical)
5848 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005849 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005850 *
5851 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
5852 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
5853 * does so, its initial value is meaningless (0x07).
5854 *
5855 * For firmware bugs, refer to:
5856 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5857 *
5858 * ----
5859 *
5860 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
5861 * Main fan tachometer reading (in RPM)
5862 *
5863 * This register is present on all ThinkPads with a new-style EC, and
5864 * it is known not to be present on the A21m/e, and T22, as there is
5865 * something else in offset 0x84 according to the ACPI DSDT. Other
5866 * ThinkPads from this same time period (and earlier) probably lack the
5867 * tachometer as well.
5868 *
5869 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
5870 * was never fixed by IBM to report the EC firmware version string
5871 * probably support the tachometer (like the early X models), so
5872 * detecting it is quite hard. We need more data to know for sure.
5873 *
5874 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
5875 * might result.
5876 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03005877 * FIRMWARE BUG: may go stale while the EC is switching to full speed
5878 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005879 *
5880 * For firmware bugs, refer to:
5881 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5882 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005883 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005884 * ThinkPad X31, X40, X41. Not available in the X60.
5885 *
5886 * FANS ACPI handle: takes three arguments: low speed, medium speed,
5887 * high speed. ACPI DSDT seems to map these three speeds to levels
5888 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
5889 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
5890 *
5891 * The speeds are stored on handles
5892 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
5893 *
5894 * There are three default speed sets, acessible as handles:
5895 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
5896 *
5897 * ACPI DSDT switches which set is in use depending on various
5898 * factors.
5899 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005900 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005901 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
5902 * but the ACPI tables just mention level 7.
5903 */
5904
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005905enum { /* Fan control constants */
5906 fan_status_offset = 0x2f, /* EC register 0x2f */
5907 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
5908 * 0x84 must be read before 0x85 */
5909
5910 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
5911 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
5912
5913 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
5914};
5915
5916enum fan_status_access_mode {
5917 TPACPI_FAN_NONE = 0, /* No fan status or control */
5918 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
5919 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
5920};
5921
5922enum fan_control_access_mode {
5923 TPACPI_FAN_WR_NONE = 0, /* No fan control */
5924 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
5925 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
5926 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
5927};
5928
5929enum fan_control_commands {
5930 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
5931 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
5932 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
5933 * and also watchdog cmd */
5934};
5935
5936static int fan_control_allowed;
5937
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02005938static enum fan_status_access_mode fan_status_access_mode;
5939static enum fan_control_access_mode fan_control_access_mode;
5940static enum fan_control_commands fan_control_commands;
5941
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02005942static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005943static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02005944static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005945static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005946
5947static struct mutex fan_mutex;
5948
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005949static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05005950static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02005951
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005952TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
5953TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005954 "\\FSPD", /* 600e/x, 770e, 770x */
5955 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005956TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005957 "JFNS", /* 770x-JL */
5958 ); /* all others */
5959
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03005960/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02005961 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
5962 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
5963 * be in auto mode (0x80).
5964 *
5965 * This is corrected by any write to HFSP either by the driver, or
5966 * by the firmware.
5967 *
5968 * We assume 0x07 really means auto mode while this quirk is active,
5969 * as this is far more likely than the ThinkPad being in level 7,
5970 * which is only used by the firmware during thermal emergencies.
5971 */
5972
5973static void fan_quirk1_detect(void)
5974{
5975 /* In some ThinkPads, neither the EC nor the ACPI
5976 * DSDT initialize the HFSP register, and it ends up
5977 * being initially set to 0x07 when it *could* be
5978 * either 0x07 or 0x80.
5979 *
5980 * Enable for TP-1Y (T43), TP-78 (R51e),
5981 * TP-76 (R52), TP-70 (T43, R52), which are known
5982 * to be buggy. */
5983 if (fan_control_initial_status == 0x07) {
5984 switch (thinkpad_id.ec_model) {
5985 case 0x5931: /* TP-1Y */
5986 case 0x3837: /* TP-78 */
5987 case 0x3637: /* TP-76 */
5988 case 0x3037: /* TP-70 */
5989 printk(TPACPI_NOTICE
5990 "fan_init: initial fan status is unknown, "
5991 "assuming it is in auto mode\n");
5992 tp_features.fan_ctrl_status_undef = 1;
5993 ;;
5994 }
5995 }
5996}
5997
5998static void fan_quirk1_handle(u8 *fan_status)
5999{
6000 if (unlikely(tp_features.fan_ctrl_status_undef)) {
6001 if (*fan_status != fan_control_initial_status) {
6002 /* something changed the HFSP regisnter since
6003 * driver init time, so it is not undefined
6004 * anymore */
6005 tp_features.fan_ctrl_status_undef = 0;
6006 } else {
6007 /* Return most likely status. In fact, it
6008 * might be the only possible status */
6009 *fan_status = TP_EC_FAN_AUTO;
6010 }
6011 }
6012}
6013
6014/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006015 * Call with fan_mutex held
6016 */
6017static void fan_update_desired_level(u8 status)
6018{
6019 if ((status &
6020 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6021 if (status > 7)
6022 fan_control_desired_level = 7;
6023 else
6024 fan_control_desired_level = status;
6025 }
6026}
6027
6028static int fan_get_status(u8 *status)
6029{
6030 u8 s;
6031
6032 /* TODO:
6033 * Add TPACPI_FAN_RD_ACPI_FANS ? */
6034
6035 switch (fan_status_access_mode) {
6036 case TPACPI_FAN_RD_ACPI_GFAN:
6037 /* 570, 600e/x, 770e, 770x */
6038
6039 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
6040 return -EIO;
6041
6042 if (likely(status))
6043 *status = s & 0x07;
6044
6045 break;
6046
6047 case TPACPI_FAN_RD_TPEC:
6048 /* all except 570, 600e/x, 770e, 770x */
6049 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
6050 return -EIO;
6051
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006052 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006053 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006054 fan_quirk1_handle(status);
6055 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006056
6057 break;
6058
6059 default:
6060 return -ENXIO;
6061 }
6062
6063 return 0;
6064}
6065
6066static int fan_get_status_safe(u8 *status)
6067{
6068 int rc;
6069 u8 s;
6070
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006071 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006072 return -ERESTARTSYS;
6073 rc = fan_get_status(&s);
6074 if (!rc)
6075 fan_update_desired_level(s);
6076 mutex_unlock(&fan_mutex);
6077
6078 if (status)
6079 *status = s;
6080
6081 return rc;
6082}
6083
6084static int fan_get_speed(unsigned int *speed)
6085{
6086 u8 hi, lo;
6087
6088 switch (fan_status_access_mode) {
6089 case TPACPI_FAN_RD_TPEC:
6090 /* all except 570, 600e/x, 770e, 770x */
6091 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
6092 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
6093 return -EIO;
6094
6095 if (likely(speed))
6096 *speed = (hi << 8) | lo;
6097
6098 break;
6099
6100 default:
6101 return -ENXIO;
6102 }
6103
6104 return 0;
6105}
6106
6107static int fan_set_level(int level)
6108{
6109 if (!fan_control_allowed)
6110 return -EPERM;
6111
6112 switch (fan_control_access_mode) {
6113 case TPACPI_FAN_WR_ACPI_SFAN:
6114 if (level >= 0 && level <= 7) {
6115 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
6116 return -EIO;
6117 } else
6118 return -EINVAL;
6119 break;
6120
6121 case TPACPI_FAN_WR_ACPI_FANS:
6122 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006123 if (!(level & TP_EC_FAN_AUTO) &&
6124 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006125 ((level < 0) || (level > 7)))
6126 return -EINVAL;
6127
6128 /* safety net should the EC not support AUTO
6129 * or FULLSPEED mode bits and just ignore them */
6130 if (level & TP_EC_FAN_FULLSPEED)
6131 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01006132 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006133 level |= 4; /* safety min speed 4 */
6134
6135 if (!acpi_ec_write(fan_status_offset, level))
6136 return -EIO;
6137 else
6138 tp_features.fan_ctrl_status_undef = 0;
6139 break;
6140
6141 default:
6142 return -ENXIO;
6143 }
6144 return 0;
6145}
6146
6147static int fan_set_level_safe(int level)
6148{
6149 int rc;
6150
6151 if (!fan_control_allowed)
6152 return -EPERM;
6153
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006154 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006155 return -ERESTARTSYS;
6156
6157 if (level == TPACPI_FAN_LAST_LEVEL)
6158 level = fan_control_desired_level;
6159
6160 rc = fan_set_level(level);
6161 if (!rc)
6162 fan_update_desired_level(level);
6163
6164 mutex_unlock(&fan_mutex);
6165 return rc;
6166}
6167
6168static int fan_set_enable(void)
6169{
6170 u8 s;
6171 int rc;
6172
6173 if (!fan_control_allowed)
6174 return -EPERM;
6175
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006176 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006177 return -ERESTARTSYS;
6178
6179 switch (fan_control_access_mode) {
6180 case TPACPI_FAN_WR_ACPI_FANS:
6181 case TPACPI_FAN_WR_TPEC:
6182 rc = fan_get_status(&s);
6183 if (rc < 0)
6184 break;
6185
6186 /* Don't go out of emergency fan mode */
6187 if (s != 7) {
6188 s &= 0x07;
6189 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
6190 }
6191
6192 if (!acpi_ec_write(fan_status_offset, s))
6193 rc = -EIO;
6194 else {
6195 tp_features.fan_ctrl_status_undef = 0;
6196 rc = 0;
6197 }
6198 break;
6199
6200 case TPACPI_FAN_WR_ACPI_SFAN:
6201 rc = fan_get_status(&s);
6202 if (rc < 0)
6203 break;
6204
6205 s &= 0x07;
6206
6207 /* Set fan to at least level 4 */
6208 s |= 4;
6209
6210 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006211 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006212 else
6213 rc = 0;
6214 break;
6215
6216 default:
6217 rc = -ENXIO;
6218 }
6219
6220 mutex_unlock(&fan_mutex);
6221 return rc;
6222}
6223
6224static int fan_set_disable(void)
6225{
6226 int rc;
6227
6228 if (!fan_control_allowed)
6229 return -EPERM;
6230
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006231 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006232 return -ERESTARTSYS;
6233
6234 rc = 0;
6235 switch (fan_control_access_mode) {
6236 case TPACPI_FAN_WR_ACPI_FANS:
6237 case TPACPI_FAN_WR_TPEC:
6238 if (!acpi_ec_write(fan_status_offset, 0x00))
6239 rc = -EIO;
6240 else {
6241 fan_control_desired_level = 0;
6242 tp_features.fan_ctrl_status_undef = 0;
6243 }
6244 break;
6245
6246 case TPACPI_FAN_WR_ACPI_SFAN:
6247 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
6248 rc = -EIO;
6249 else
6250 fan_control_desired_level = 0;
6251 break;
6252
6253 default:
6254 rc = -ENXIO;
6255 }
6256
6257
6258 mutex_unlock(&fan_mutex);
6259 return rc;
6260}
6261
6262static int fan_set_speed(int speed)
6263{
6264 int rc;
6265
6266 if (!fan_control_allowed)
6267 return -EPERM;
6268
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006269 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006270 return -ERESTARTSYS;
6271
6272 rc = 0;
6273 switch (fan_control_access_mode) {
6274 case TPACPI_FAN_WR_ACPI_FANS:
6275 if (speed >= 0 && speed <= 65535) {
6276 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
6277 speed, speed, speed))
6278 rc = -EIO;
6279 } else
6280 rc = -EINVAL;
6281 break;
6282
6283 default:
6284 rc = -ENXIO;
6285 }
6286
6287 mutex_unlock(&fan_mutex);
6288 return rc;
6289}
6290
6291static void fan_watchdog_reset(void)
6292{
6293 static int fan_watchdog_active;
6294
6295 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
6296 return;
6297
6298 if (fan_watchdog_active)
6299 cancel_delayed_work(&fan_watchdog_task);
6300
6301 if (fan_watchdog_maxinterval > 0 &&
6302 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
6303 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006304 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006305 msecs_to_jiffies(fan_watchdog_maxinterval
6306 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006307 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006308 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006309 "watchdog will not trigger\n");
6310 }
6311 } else
6312 fan_watchdog_active = 0;
6313}
6314
6315static void fan_watchdog_fire(struct work_struct *ignored)
6316{
6317 int rc;
6318
6319 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
6320 return;
6321
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006322 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006323 rc = fan_set_enable();
6324 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006325 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006326 "will try again later...\n", -rc);
6327 /* reschedule for later */
6328 fan_watchdog_reset();
6329 }
6330}
6331
6332/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006333 * SYSFS fan layout: hwmon compatible (device)
6334 *
6335 * pwm*_enable:
6336 * 0: "disengaged" mode
6337 * 1: manual mode
6338 * 2: native EC "auto" mode (recommended, hardware default)
6339 *
6340 * pwm*: set speed in manual mode, ignored otherwise.
6341 * 0 is level 0; 255 is level 7. Intermediate points done with linear
6342 * interpolation.
6343 *
6344 * fan*_input: tachometer reading, RPM
6345 *
6346 *
6347 * SYSFS fan layout: extensions
6348 *
6349 * fan_watchdog (driver):
6350 * fan watchdog interval in seconds, 0 disables (default), max 120
6351 */
6352
6353/* sysfs fan pwm1_enable ----------------------------------------------- */
6354static ssize_t fan_pwm1_enable_show(struct device *dev,
6355 struct device_attribute *attr,
6356 char *buf)
6357{
6358 int res, mode;
6359 u8 status;
6360
6361 res = fan_get_status_safe(&status);
6362 if (res)
6363 return res;
6364
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006365 if (status & TP_EC_FAN_FULLSPEED) {
6366 mode = 0;
6367 } else if (status & TP_EC_FAN_AUTO) {
6368 mode = 2;
6369 } else
6370 mode = 1;
6371
6372 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
6373}
6374
6375static ssize_t fan_pwm1_enable_store(struct device *dev,
6376 struct device_attribute *attr,
6377 const char *buf, size_t count)
6378{
6379 unsigned long t;
6380 int res, level;
6381
6382 if (parse_strtoul(buf, 2, &t))
6383 return -EINVAL;
6384
6385 switch (t) {
6386 case 0:
6387 level = TP_EC_FAN_FULLSPEED;
6388 break;
6389 case 1:
6390 level = TPACPI_FAN_LAST_LEVEL;
6391 break;
6392 case 2:
6393 level = TP_EC_FAN_AUTO;
6394 break;
6395 case 3:
6396 /* reserved for software-controlled auto mode */
6397 return -ENOSYS;
6398 default:
6399 return -EINVAL;
6400 }
6401
6402 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03006403 if (res == -ENXIO)
6404 return -EINVAL;
6405 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006406 return res;
6407
6408 fan_watchdog_reset();
6409
6410 return count;
6411}
6412
6413static struct device_attribute dev_attr_fan_pwm1_enable =
6414 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
6415 fan_pwm1_enable_show, fan_pwm1_enable_store);
6416
6417/* sysfs fan pwm1 ------------------------------------------------------ */
6418static ssize_t fan_pwm1_show(struct device *dev,
6419 struct device_attribute *attr,
6420 char *buf)
6421{
6422 int res;
6423 u8 status;
6424
6425 res = fan_get_status_safe(&status);
6426 if (res)
6427 return res;
6428
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006429 if ((status &
6430 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
6431 status = fan_control_desired_level;
6432
6433 if (status > 7)
6434 status = 7;
6435
6436 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
6437}
6438
6439static ssize_t fan_pwm1_store(struct device *dev,
6440 struct device_attribute *attr,
6441 const char *buf, size_t count)
6442{
6443 unsigned long s;
6444 int rc;
6445 u8 status, newlevel;
6446
6447 if (parse_strtoul(buf, 255, &s))
6448 return -EINVAL;
6449
6450 /* scale down from 0-255 to 0-7 */
6451 newlevel = (s >> 5) & 0x07;
6452
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006453 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02006454 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006455
6456 rc = fan_get_status(&status);
6457 if (!rc && (status &
6458 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6459 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03006460 if (rc == -ENXIO)
6461 rc = -EINVAL;
6462 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006463 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03006464 fan_watchdog_reset();
6465 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006466 }
6467
6468 mutex_unlock(&fan_mutex);
6469 return (rc)? rc : count;
6470}
6471
6472static struct device_attribute dev_attr_fan_pwm1 =
6473 __ATTR(pwm1, S_IWUSR | S_IRUGO,
6474 fan_pwm1_show, fan_pwm1_store);
6475
6476/* sysfs fan fan1_input ------------------------------------------------ */
6477static ssize_t fan_fan1_input_show(struct device *dev,
6478 struct device_attribute *attr,
6479 char *buf)
6480{
6481 int res;
6482 unsigned int speed;
6483
6484 res = fan_get_speed(&speed);
6485 if (res < 0)
6486 return res;
6487
6488 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
6489}
6490
6491static struct device_attribute dev_attr_fan_fan1_input =
6492 __ATTR(fan1_input, S_IRUGO,
6493 fan_fan1_input_show, NULL);
6494
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006495/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006496static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
6497 char *buf)
6498{
6499 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
6500}
6501
6502static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
6503 const char *buf, size_t count)
6504{
6505 unsigned long t;
6506
6507 if (parse_strtoul(buf, 120, &t))
6508 return -EINVAL;
6509
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03006510 if (!fan_control_allowed)
6511 return -EPERM;
6512
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006513 fan_watchdog_maxinterval = t;
6514 fan_watchdog_reset();
6515
6516 return count;
6517}
6518
6519static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
6520 fan_fan_watchdog_show, fan_fan_watchdog_store);
6521
6522/* --------------------------------------------------------------------- */
6523static struct attribute *fan_attributes[] = {
6524 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
6525 &dev_attr_fan_fan1_input.attr,
6526 NULL
6527};
6528
6529static const struct attribute_group fan_attr_group = {
6530 .attrs = fan_attributes,
6531};
6532
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006533static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006534{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006535 int rc;
6536
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006537 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
6538
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03006539 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006540 fan_status_access_mode = TPACPI_FAN_NONE;
6541 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006542 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006543 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03006544 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006545 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006546
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006547 TPACPI_ACPIHANDLE_INIT(fans);
6548 TPACPI_ACPIHANDLE_INIT(gfan);
6549 TPACPI_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006550
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006551 if (gfan_handle) {
6552 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006553 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006554 } else {
6555 /* all other ThinkPads: note that even old-style
6556 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02006557 if (likely(acpi_ec_read(fan_status_offset,
6558 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006559 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006560 fan_quirk1_detect();
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006561 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006562 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006563 "ThinkPad ACPI EC access misbehaving, "
6564 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006565 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006566 }
6567 }
6568
6569 if (sfan_handle) {
6570 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006571 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02006572 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006573 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006574 } else {
6575 if (!gfan_handle) {
6576 /* gfan without sfan means no fan control */
6577 /* all other models implement TP EC 0x2f control */
6578
6579 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02006580 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006581 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006582 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006583 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006584 TPACPI_FAN_CMD_SPEED |
6585 TPACPI_FAN_CMD_LEVEL |
6586 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006587 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006588 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02006589 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006590 TPACPI_FAN_CMD_LEVEL |
6591 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006592 }
6593 }
6594 }
6595
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006596 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
6597 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
6598 fan_control_access_mode != TPACPI_FAN_WR_NONE),
6599 fan_status_access_mode, fan_control_access_mode);
6600
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03006601 /* fan control master switch */
6602 if (!fan_control_allowed) {
6603 fan_control_access_mode = TPACPI_FAN_WR_NONE;
6604 fan_control_commands = 0;
6605 dbg_printk(TPACPI_DBG_INIT,
6606 "fan control features disabled by parameter\n");
6607 }
6608
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006609 /* update fan_control_desired_level */
6610 if (fan_status_access_mode != TPACPI_FAN_NONE)
6611 fan_get_status_safe(NULL);
6612
6613 if (fan_status_access_mode != TPACPI_FAN_NONE ||
6614 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006615 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006616 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006617 if (rc < 0)
6618 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03006619
6620 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
6621 &driver_attr_fan_watchdog);
6622 if (rc < 0) {
6623 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
6624 &fan_attr_group);
6625 return rc;
6626 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006627 return 0;
6628 } else
6629 return 1;
6630}
6631
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006632static void fan_exit(void)
6633{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006634 vdbg_printk(TPACPI_DBG_EXIT,
6635 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006636
6637 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006638 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006639 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
6640 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006641
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006642 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03006643 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006644}
6645
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006646static void fan_suspend(pm_message_t state)
6647{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006648 int rc;
6649
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006650 if (!fan_control_allowed)
6651 return;
6652
6653 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006654 fan_control_resume_level = 0;
6655 rc = fan_get_status_safe(&fan_control_resume_level);
6656 if (rc < 0)
6657 printk(TPACPI_NOTICE
6658 "failed to read fan level for later "
6659 "restore during resume: %d\n", rc);
6660
6661 /* if it is undefined, don't attempt to restore it.
6662 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006663 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006664 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006665}
6666
6667static void fan_resume(void)
6668{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006669 u8 current_level = 7;
6670 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006671 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006672
6673 /* DSDT *always* updates status on resume */
6674 tp_features.fan_ctrl_status_undef = 0;
6675
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006676 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006677 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006678 (fan_get_status_safe(&current_level) < 0))
6679 return;
6680
6681 switch (fan_control_access_mode) {
6682 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006683 /* never decrease fan level */
6684 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006685 break;
6686 case TPACPI_FAN_WR_ACPI_FANS:
6687 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006688 /* never decrease fan level, scale is:
6689 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
6690 *
6691 * We expect the firmware to set either 7 or AUTO, but we
6692 * handle FULLSPEED out of paranoia.
6693 *
6694 * So, we can safely only restore FULLSPEED or 7, anything
6695 * else could slow the fan. Restoring AUTO is useless, at
6696 * best that's exactly what the DSDT already set (it is the
6697 * slower it uses).
6698 *
6699 * Always keep in mind that the DSDT *will* have set the
6700 * fans to what the vendor supposes is the best level. We
6701 * muck with it only to speed the fan up.
6702 */
6703 if (fan_control_resume_level != 7 &&
6704 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
6705 return;
6706 else
6707 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
6708 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006709 break;
6710 default:
6711 return;
6712 }
6713 if (do_set) {
6714 printk(TPACPI_NOTICE
6715 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006716 fan_control_resume_level);
6717 rc = fan_set_level_safe(fan_control_resume_level);
6718 if (rc < 0)
6719 printk(TPACPI_NOTICE
6720 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006721 }
6722}
6723
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006724static int fan_read(char *p)
6725{
6726 int len = 0;
6727 int rc;
6728 u8 status;
6729 unsigned int speed = 0;
6730
6731 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006732 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006733 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006734 rc = fan_get_status_safe(&status);
6735 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006736 return rc;
6737
6738 len += sprintf(p + len, "status:\t\t%s\n"
6739 "level:\t\t%d\n",
6740 (status != 0) ? "enabled" : "disabled", status);
6741 break;
6742
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006743 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006744 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006745 rc = fan_get_status_safe(&status);
6746 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006747 return rc;
6748
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006749 len += sprintf(p + len, "status:\t\t%s\n",
6750 (status != 0) ? "enabled" : "disabled");
6751
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006752 rc = fan_get_speed(&speed);
6753 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006754 return rc;
6755
6756 len += sprintf(p + len, "speed:\t\t%d\n", speed);
6757
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006758 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006759 /* Disengaged mode takes precedence */
6760 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006761 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006762 len += sprintf(p + len, "level:\t\tauto\n");
6763 else
6764 len += sprintf(p + len, "level:\t\t%d\n", status);
6765 break;
6766
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006767 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006768 default:
6769 len += sprintf(p + len, "status:\t\tnot supported\n");
6770 }
6771
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006772 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006773 len += sprintf(p + len, "commands:\tlevel <level>");
6774
6775 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006776 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006777 len += sprintf(p + len, " (<level> is 0-7)\n");
6778 break;
6779
6780 default:
6781 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006782 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006783 break;
6784 }
6785 }
6786
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006787 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006788 len += sprintf(p + len, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006789 "commands:\twatchdog <timeout> (<timeout> "
6790 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006791
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006792 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006793 len += sprintf(p + len, "commands:\tspeed <speed>"
6794 " (<speed> is 0-65535)\n");
6795
6796 return len;
6797}
6798
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006799static int fan_write_cmd_level(const char *cmd, int *rc)
6800{
6801 int level;
6802
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02006803 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006804 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006805 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006806 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006807 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02006808 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006809 return 0;
6810
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006811 *rc = fan_set_level_safe(level);
6812 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006813 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006814 "access mode %d", fan_control_access_mode);
6815
6816 return 1;
6817}
6818
6819static int fan_write_cmd_enable(const char *cmd, int *rc)
6820{
6821 if (strlencmp(cmd, "enable") != 0)
6822 return 0;
6823
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006824 *rc = fan_set_enable();
6825 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006826 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006827 "access mode %d", fan_control_access_mode);
6828
6829 return 1;
6830}
6831
6832static int fan_write_cmd_disable(const char *cmd, int *rc)
6833{
6834 if (strlencmp(cmd, "disable") != 0)
6835 return 0;
6836
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006837 *rc = fan_set_disable();
6838 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006839 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006840 "access mode %d", fan_control_access_mode);
6841
6842 return 1;
6843}
6844
6845static int fan_write_cmd_speed(const char *cmd, int *rc)
6846{
6847 int speed;
6848
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02006849 /* TODO:
6850 * Support speed <low> <medium> <high> ? */
6851
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006852 if (sscanf(cmd, "speed %d", &speed) != 1)
6853 return 0;
6854
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006855 *rc = fan_set_speed(speed);
6856 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006857 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006858 "access mode %d", fan_control_access_mode);
6859
6860 return 1;
6861}
6862
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006863static int fan_write_cmd_watchdog(const char *cmd, int *rc)
6864{
6865 int interval;
6866
6867 if (sscanf(cmd, "watchdog %d", &interval) != 1)
6868 return 0;
6869
6870 if (interval < 0 || interval > 120)
6871 *rc = -EINVAL;
6872 else
6873 fan_watchdog_maxinterval = interval;
6874
6875 return 1;
6876}
6877
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006878static int fan_write(char *buf)
6879{
6880 char *cmd;
6881 int rc = 0;
6882
6883 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006884 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006885 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006886 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006887 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006888 fan_write_cmd_disable(cmd, &rc) ||
6889 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006890 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006891 fan_write_cmd_speed(cmd, &rc))
6892 )
6893 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006894 else if (!rc)
6895 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006896 }
6897
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02006898 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006899}
6900
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006901static struct ibm_struct fan_driver_data = {
6902 .name = "fan",
6903 .read = fan_read,
6904 .write = fan_write,
6905 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03006906 .suspend = fan_suspend,
6907 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006908};
6909
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006910/****************************************************************************
6911 ****************************************************************************
6912 *
6913 * Infrastructure
6914 *
6915 ****************************************************************************
6916 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006918/* sysfs name ---------------------------------------------------------- */
6919static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
6920 struct device_attribute *attr,
6921 char *buf)
6922{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006923 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006924}
6925
6926static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
6927 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
6928
6929/* --------------------------------------------------------------------- */
6930
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006931/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03006932static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006933
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006934/*
6935 * Module and infrastructure proble, init and exit handling
6936 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006938static int force_load;
6939
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006940#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006941static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006942{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006943 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006944
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006945 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006946}
6947#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
6948
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006949static void ibm_exit(struct ibm_struct *ibm)
6950{
6951 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
6952
6953 list_del_init(&ibm->all_drivers);
6954
6955 if (ibm->flags.acpi_notify_installed) {
6956 dbg_printk(TPACPI_DBG_EXIT,
6957 "%s: acpi_remove_notify_handler\n", ibm->name);
6958 BUG_ON(!ibm->acpi);
6959 acpi_remove_notify_handler(*ibm->acpi->handle,
6960 ibm->acpi->type,
6961 dispatch_acpi_notify);
6962 ibm->flags.acpi_notify_installed = 0;
6963 ibm->flags.acpi_notify_installed = 0;
6964 }
6965
6966 if (ibm->flags.proc_created) {
6967 dbg_printk(TPACPI_DBG_EXIT,
6968 "%s: remove_proc_entry\n", ibm->name);
6969 remove_proc_entry(ibm->name, proc_dir);
6970 ibm->flags.proc_created = 0;
6971 }
6972
6973 if (ibm->flags.acpi_driver_registered) {
6974 dbg_printk(TPACPI_DBG_EXIT,
6975 "%s: acpi_bus_unregister_driver\n", ibm->name);
6976 BUG_ON(!ibm->acpi);
6977 acpi_bus_unregister_driver(ibm->acpi->driver);
6978 kfree(ibm->acpi->driver);
6979 ibm->acpi->driver = NULL;
6980 ibm->flags.acpi_driver_registered = 0;
6981 }
6982
6983 if (ibm->flags.init_called && ibm->exit) {
6984 ibm->exit();
6985 ibm->flags.init_called = 0;
6986 }
6987
6988 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
6989}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006990
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006991static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992{
6993 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006994 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995 struct proc_dir_entry *entry;
6996
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006997 BUG_ON(ibm == NULL);
6998
6999 INIT_LIST_HEAD(&ibm->all_drivers);
7000
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007001 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 return 0;
7003
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007004 dbg_printk(TPACPI_DBG_INIT,
7005 "probing for %s\n", ibm->name);
7006
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007007 if (iibm->init) {
7008 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007009 if (ret > 0)
7010 return 0; /* probe failed */
7011 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007013
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007014 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 }
7016
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007017 if (ibm->acpi) {
7018 if (ibm->acpi->hid) {
7019 ret = register_tpacpi_subdriver(ibm);
7020 if (ret)
7021 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007022 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007023
7024 if (ibm->acpi->notify) {
7025 ret = setup_acpi_notify(ibm);
7026 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007027 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007028 ibm->name);
7029 ret = 0;
7030 goto err_out;
7031 }
7032 if (ret < 0)
7033 goto err_out;
7034 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007035 }
7036
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007037 dbg_printk(TPACPI_DBG_INIT,
7038 "%s installed\n", ibm->name);
7039
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007040 if (ibm->read) {
7041 entry = create_proc_entry(ibm->name,
7042 S_IFREG | S_IRUGO | S_IWUSR,
7043 proc_dir);
7044 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007045 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007046 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007047 ret = -ENODEV;
7048 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007049 }
7050 entry->owner = THIS_MODULE;
7051 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007052 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007053 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007054 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007055 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007058 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
7059
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007061
7062err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007063 dbg_printk(TPACPI_DBG_INIT,
7064 "%s: at error exit path with result %d\n",
7065 ibm->name, ret);
7066
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007067 ibm_exit(ibm);
7068 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069}
7070
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007071/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007073/* returns 0 - probe ok, or < 0 - probe error.
7074 * Probe ok doesn't mean thinkpad found.
7075 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
7076static int __must_check __init get_thinkpad_model_data(
7077 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007078{
Jeff Garzik18552562007-10-03 15:15:40 -04007079 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007080 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007081 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007082
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007083 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007084 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007085
7086 memset(tp, 0, sizeof(*tp));
7087
7088 if (dmi_name_in_vendors("IBM"))
7089 tp->vendor = PCI_VENDOR_ID_IBM;
7090 else if (dmi_name_in_vendors("LENOVO"))
7091 tp->vendor = PCI_VENDOR_ID_LENOVO;
7092 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007093 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007094
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007095 s = dmi_get_system_info(DMI_BIOS_VERSION);
7096 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
7097 if (s && !tp->bios_version_str)
7098 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007099 if (!tp->bios_version_str)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007100 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007101 tp->bios_model = tp->bios_version_str[0]
7102 | (tp->bios_version_str[1] << 8);
7103
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007104 /*
7105 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
7106 * X32 or newer, all Z series; Some models must have an
7107 * up-to-date BIOS or they will not be detected.
7108 *
7109 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
7110 */
7111 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007112 if (sscanf(dev->name,
7113 "IBM ThinkPad Embedded Controller -[%17c",
7114 ec_fw_string) == 1) {
7115 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
7116 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007117
7118 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007119 if (!tp->ec_version_str)
7120 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007121 tp->ec_model = ec_fw_string[0]
7122 | (ec_fw_string[1] << 8);
7123 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007124 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007125 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007126
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007127 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
7128 if (s && !strnicmp(s, "ThinkPad", 8)) {
7129 tp->model_str = kstrdup(s, GFP_KERNEL);
7130 if (!tp->model_str)
7131 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007132 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03007133
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007134 s = dmi_get_system_info(DMI_PRODUCT_NAME);
7135 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
7136 if (s && !tp->nummodel_str)
7137 return -ENOMEM;
7138
7139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140}
7141
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007142static int __init probe_for_thinkpad(void)
7143{
7144 int is_thinkpad;
7145
7146 if (acpi_disabled)
7147 return -ENODEV;
7148
7149 /*
7150 * Non-ancient models have better DMI tagging, but very old models
7151 * don't.
7152 */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007153 is_thinkpad = (thinkpad_id.model_str != NULL);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007154
7155 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007156 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007157 if (!ec_handle) {
7158 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007159 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007160 "Not yet supported ThinkPad detected!\n");
7161 return -ENODEV;
7162 }
7163
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007164 /*
7165 * Risks a regression on very old machines, but reduces potential
7166 * false positives a damn great deal
7167 */
7168 if (!is_thinkpad)
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007169 is_thinkpad = (thinkpad_id.vendor == PCI_VENDOR_ID_IBM);
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007170
7171 if (!is_thinkpad && !force_load)
7172 return -ENODEV;
7173
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007174 return 0;
7175}
7176
7177
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007178/* Module init, exit, parameters */
7179
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007180static struct ibm_init_struct ibms_init[] __initdata = {
7181 {
7182 .init = thinkpad_acpi_driver_init,
7183 .data = &thinkpad_acpi_driver_data,
7184 },
7185 {
7186 .init = hotkey_init,
7187 .data = &hotkey_driver_data,
7188 },
7189 {
7190 .init = bluetooth_init,
7191 .data = &bluetooth_driver_data,
7192 },
7193 {
7194 .init = wan_init,
7195 .data = &wan_driver_data,
7196 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02007197 {
7198 .init = uwb_init,
7199 .data = &uwb_driver_data,
7200 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007201#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007202 {
7203 .init = video_init,
7204 .data = &video_driver_data,
7205 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02007206#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007207 {
7208 .init = light_init,
7209 .data = &light_driver_data,
7210 },
7211#ifdef CONFIG_THINKPAD_ACPI_DOCK
7212 {
7213 .init = dock_init,
7214 .data = &dock_driver_data[0],
7215 },
7216 {
Henrique de Moraes Holschuhd94a7f12007-04-27 22:00:15 -03007217 .init = dock_init2,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007218 .data = &dock_driver_data[1],
7219 },
7220#endif
7221#ifdef CONFIG_THINKPAD_ACPI_BAY
7222 {
7223 .init = bay_init,
7224 .data = &bay_driver_data,
7225 },
7226#endif
7227 {
7228 .init = cmos_init,
7229 .data = &cmos_driver_data,
7230 },
7231 {
7232 .init = led_init,
7233 .data = &led_driver_data,
7234 },
7235 {
7236 .init = beep_init,
7237 .data = &beep_driver_data,
7238 },
7239 {
7240 .init = thermal_init,
7241 .data = &thermal_driver_data,
7242 },
7243 {
7244 .data = &ecdump_driver_data,
7245 },
7246 {
7247 .init = brightness_init,
7248 .data = &brightness_driver_data,
7249 },
7250 {
7251 .data = &volume_driver_data,
7252 },
7253 {
7254 .init = fan_init,
7255 .data = &fan_driver_data,
7256 },
7257};
7258
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007259static int __init set_ibm_param(const char *val, struct kernel_param *kp)
7260{
7261 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007262 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007263
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02007264 if (!kp || !kp->name || !val)
7265 return -EINVAL;
7266
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007267 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
7268 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02007269 WARN_ON(ibm == NULL);
7270
7271 if (!ibm || !ibm->name)
7272 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007273
7274 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
7275 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007276 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007277 strcpy(ibms_init[i].param, val);
7278 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007279 return 0;
7280 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007281 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007282
7283 return -EINVAL;
7284}
7285
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007286module_param(experimental, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007287MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007288 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007289
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03007290module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007291MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03007292
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03007293module_param(force_load, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007294MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007295 "Attempts to load the driver even on a "
7296 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03007297
Henrique de Moraes Holschuh86cc9442007-07-18 23:45:41 -03007298module_param_named(fan_control, fan_control_allowed, bool, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007299MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007300 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007301
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03007302module_param_named(brightness_mode, brightness_mode, int, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007303MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007304 "Selects brightness control strategy: "
7305 "0=auto, 1=EC, 2=CMOS, 3=both");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03007306
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02007307module_param(brightness_enable, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007308MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007309 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02007310
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03007311module_param(hotkey_report_mode, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007312MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007313 "used for backwards compatibility with userspace, "
7314 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03007315
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007316#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007317 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02007318 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007319 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007320
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007321TPACPI_PARAM(hotkey);
7322TPACPI_PARAM(bluetooth);
7323TPACPI_PARAM(video);
7324TPACPI_PARAM(light);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03007325#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007326TPACPI_PARAM(dock);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007327#endif
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03007328#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007329TPACPI_PARAM(bay);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -03007330#endif /* CONFIG_THINKPAD_ACPI_BAY */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007331TPACPI_PARAM(cmos);
7332TPACPI_PARAM(led);
7333TPACPI_PARAM(beep);
7334TPACPI_PARAM(ecdump);
7335TPACPI_PARAM(brightness);
7336TPACPI_PARAM(volume);
7337TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007338
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02007339#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
7340module_param(dbg_wlswemul, uint, 0);
7341MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
7342module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
7343MODULE_PARM_DESC(wlsw_state,
7344 "Initial state of the emulated WLSW switch");
7345
7346module_param(dbg_bluetoothemul, uint, 0);
7347MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
7348module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
7349MODULE_PARM_DESC(bluetooth_state,
7350 "Initial state of the emulated bluetooth switch");
7351
7352module_param(dbg_wwanemul, uint, 0);
7353MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
7354module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
7355MODULE_PARM_DESC(wwan_state,
7356 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02007357
7358module_param(dbg_uwbemul, uint, 0);
7359MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
7360module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
7361MODULE_PARM_DESC(uwb_state,
7362 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02007363#endif
7364
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007365static void thinkpad_acpi_module_exit(void)
7366{
7367 struct ibm_struct *ibm, *itmp;
7368
7369 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
7370
7371 list_for_each_entry_safe_reverse(ibm, itmp,
7372 &tpacpi_all_drivers,
7373 all_drivers) {
7374 ibm_exit(ibm);
7375 }
7376
7377 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
7378
7379 if (tpacpi_inputdev) {
7380 if (tp_features.input_device_registered)
7381 input_unregister_device(tpacpi_inputdev);
7382 else
7383 input_free_device(tpacpi_inputdev);
7384 }
7385
7386 if (tpacpi_hwmon)
7387 hwmon_device_unregister(tpacpi_hwmon);
7388
7389 if (tp_features.sensors_pdev_attrs_registered)
7390 device_remove_file(&tpacpi_sensors_pdev->dev,
7391 &dev_attr_thinkpad_acpi_pdev_name);
7392 if (tpacpi_sensors_pdev)
7393 platform_device_unregister(tpacpi_sensors_pdev);
7394 if (tpacpi_pdev)
7395 platform_device_unregister(tpacpi_pdev);
7396
7397 if (tp_features.sensors_pdrv_attrs_registered)
7398 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
7399 if (tp_features.platform_drv_attrs_registered)
7400 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
7401
7402 if (tp_features.sensors_pdrv_registered)
7403 platform_driver_unregister(&tpacpi_hwmon_pdriver);
7404
7405 if (tp_features.platform_drv_registered)
7406 platform_driver_unregister(&tpacpi_pdriver);
7407
7408 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007409 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007410
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007411 if (tpacpi_wq)
7412 destroy_workqueue(tpacpi_wq);
7413
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007414 kfree(thinkpad_id.bios_version_str);
7415 kfree(thinkpad_id.ec_version_str);
7416 kfree(thinkpad_id.model_str);
7417}
7418
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007419
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03007420static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421{
7422 int ret, i;
7423
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03007424 tpacpi_lifecycle = TPACPI_LIFE_INIT;
7425
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03007426 /* Parameter checking */
7427 if (hotkey_report_mode > 2)
7428 return -EINVAL;
7429
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007430 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007431
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007432 ret = get_thinkpad_model_data(&thinkpad_id);
7433 if (ret) {
7434 printk(TPACPI_ERR
7435 "unable to get DMI data: %d\n", ret);
7436 thinkpad_acpi_module_exit();
7437 return ret;
7438 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007439 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007440 if (ret) {
7441 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007442 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007445 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007446
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007447 TPACPI_ACPIHANDLE_INIT(ecrd);
7448 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007450 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
7451 if (!tpacpi_wq) {
7452 thinkpad_acpi_module_exit();
7453 return -ENOMEM;
7454 }
7455
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007456 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007458 printk(TPACPI_ERR
7459 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03007460 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461 return -ENODEV;
7462 }
7463 proc_dir->owner = THIS_MODULE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007464
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007465 ret = platform_driver_register(&tpacpi_pdriver);
7466 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007467 printk(TPACPI_ERR
7468 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007469 thinkpad_acpi_module_exit();
7470 return ret;
7471 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03007472 tp_features.platform_drv_registered = 1;
7473
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007474 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
7475 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007476 printk(TPACPI_ERR
7477 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007478 thinkpad_acpi_module_exit();
7479 return ret;
7480 }
7481 tp_features.sensors_pdrv_registered = 1;
7482
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03007483 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03007484 if (!ret) {
7485 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007486 ret = tpacpi_create_driver_attributes(
7487 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03007488 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03007489 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007490 printk(TPACPI_ERR
7491 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03007492 thinkpad_acpi_module_exit();
7493 return ret;
7494 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03007495 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03007496
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007497
7498 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007499 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007500 NULL, 0);
7501 if (IS_ERR(tpacpi_pdev)) {
7502 ret = PTR_ERR(tpacpi_pdev);
7503 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007504 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007505 thinkpad_acpi_module_exit();
7506 return ret;
7507 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007508 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007509 TPACPI_HWMON_DRVR_NAME,
7510 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007511 if (IS_ERR(tpacpi_sensors_pdev)) {
7512 ret = PTR_ERR(tpacpi_sensors_pdev);
7513 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007514 printk(TPACPI_ERR
7515 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007516 thinkpad_acpi_module_exit();
7517 return ret;
7518 }
7519 ret = device_create_file(&tpacpi_sensors_pdev->dev,
7520 &dev_attr_thinkpad_acpi_pdev_name);
7521 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007522 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007523 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007524 thinkpad_acpi_module_exit();
7525 return ret;
7526 }
7527 tp_features.sensors_pdev_attrs_registered = 1;
7528 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007529 if (IS_ERR(tpacpi_hwmon)) {
7530 ret = PTR_ERR(tpacpi_hwmon);
7531 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007532 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03007533 thinkpad_acpi_module_exit();
7534 return ret;
7535 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03007536 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007537 tpacpi_inputdev = input_allocate_device();
7538 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007539 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007540 thinkpad_acpi_module_exit();
7541 return -ENOMEM;
7542 } else {
7543 /* Prepare input device, but don't register */
7544 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007545 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007546 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03007547 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
7548 thinkpad_id.vendor :
7549 PCI_VENDOR_ID_IBM;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007550 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
7551 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
7552 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007553 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
7554 ret = ibm_init(&ibms_init[i]);
7555 if (ret >= 0 && *ibms_init[i].param)
7556 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03007558 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 return ret;
7560 }
7561 }
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007562 ret = input_register_device(tpacpi_inputdev);
7563 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007564 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03007565 thinkpad_acpi_module_exit();
7566 return ret;
7567 } else {
7568 tp_features.input_device_registered = 1;
7569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03007571 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572 return 0;
7573}
7574
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03007575MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
7576
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007577/*
7578 * DMI matching for module autoloading
7579 *
7580 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
7581 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
7582 *
7583 * Only models listed in thinkwiki will be supported, so add yours
7584 * if it is not there yet.
7585 */
7586#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01007587 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007588
7589/* Non-ancient thinkpads */
7590MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*");
7591MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*");
7592
7593/* Ancient thinkpad BIOSes have to be identified by
7594 * BIOS type or model number, and there are far less
7595 * BIOS types than model numbers... */
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01007596IBM_BIOS_MODULE_ALIAS("I[BDHIMNOTWVYZ]");
7597IBM_BIOS_MODULE_ALIAS("1[0368A-GIKM-PST]");
7598IBM_BIOS_MODULE_ALIAS("K[UX-Z]");
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007599
7600MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007601MODULE_DESCRIPTION(TPACPI_DESC);
7602MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02007603MODULE_LICENSE("GPL");
7604
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03007605module_init(thinkpad_acpi_module_init);
7606module_exit(thinkpad_acpi_module_exit);